GM6000 Digital Heater Controller Branch: main
SDX-1330
RxFrameHandler.h
Go to the documentation of this file.
1#ifndef Driver_Tpipe_RxFrameHandler_h_
2#define Driver_Tpipe_RxFrameHandler_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
16#include "Cpl/Container/Map.h"
17#include "Cpl/Container/Key.h"
18
19///
20namespace Driver {
21///
22namespace TPipe {
23
24/** This partially concrete class provides functionality that is common to
25 all Frame handlers. Most notably, this class implements the self-registration
26 of a Frame handler. All concrete Frame Handler classes should inherit
27 from this class.
28 */
30{
31protected:
32 /// Constructor
33 RxFrameHandler( Cpl::Container::Map<RxFrameHandlerApi>& handlerList, const char* verb ) noexcept;
34
35
36public:
37 /// See Driver::TPipe::RxFrameHandlerApi
38 const char* getVerb() const noexcept;
39
40protected:
41 /// See Cpl::Container::Key
42 const Cpl::Container::Key& getKey() const noexcept;
43
44protected:
45 /// Verb
46 Cpl::Container::KeyLiteralString m_mapKey;
47};
48
49
50}; // end namespaces
51};
52#endif // end header latch
This template class implements a THREAD SAFE Ring Buffer.
Definition RingBufferMT.h:33
This abstract class defines the 'Received Frame Handler' interface for the TPipe.
Definition RxFrameHandlerApi.h:29
This partially concrete class provides functionality that is common to all Frame handlers.
Definition RxFrameHandler.h:30
const char * getVerb() const noexcept
See Driver::TPipe::RxFrameHandlerApi.
const Cpl::Container::Key & getKey() const noexcept
See Cpl::Container::Key.
Cpl::Container::KeyLiteralString m_mapKey
Verb.
Definition RxFrameHandler.h:46
RxFrameHandler(Cpl::Container::Map< RxFrameHandlerApi > &handlerList, const char *verb) noexcept
Constructor.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20
namespace