GM6000 Digital Heater Controller Branch: main
SDX-1330
Tx.h
Go to the documentation of this file.
1#ifndef Driver_Tpipe_Tx_h_
2#define Driver_Tpipe_Tx_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
15#include "Cpl/Text/String.h"
16#include <string.h>
17
18///
19namespace Driver {
20///
21namespace TPipe {
22
23/** This abstract class defines the 'Transmit Command' interface for the
24 TPipe.
25 */
26class Tx
27{
28public:
29 /** Synchronously transmits a complete 'text command'. The method will
30 provide the proper TPipe framing and send the framed contents through
31 the pipe.
32
33 The method returns true once the frame data has been transferred to
34 the TPipe's outbound stream. If an a Stream error occurred the method
35 returns false.
36
37 NOTE: The method will block if there is currently a transmission of a
38 frame in progress.
39 */
40 virtual bool sendCommand( const char* completeCommandText, size_t numBytes ) noexcept = 0;
41
42 /// Convenience method to send a command that is contain in Text string object
43 inline bool sendCommand( Cpl::Text::String& command ) noexcept
44 {
45 return sendCommand( command.getString(), command.length() );
46 }
47
48 /// Convenience method to send a command that is a contained in a null terminated string
49 inline bool sendCommand( const char* commandString ) noexcept
50 {
51 return sendCommand( commandString, strlen( commandString ) );
52 }
53
54 /** This is an OPTIMIZATION - use with care!!
55
56 The method sends the data un-encoded to speed up the transfer of large
57 commands. THe application is responsible for managing the framing
58 */
59 virtual bool sendRawCommand( const char* completeCommandText, size_t numBytes ) noexcept = 0;
60
61public:
62 /// Virtual destructor
63 virtual ~Tx() {}
64};
65
66
67}; // end namespaces
68};
69#endif // end header latch
This abstract class defines the operations that can be before on a NULL terminated string.
Definition String.h:40
This abstract class defines the 'Transmit Command' interface for the TPipe.
Definition Tx.h:27
virtual bool sendCommand(const char *completeCommandText, size_t numBytes) noexcept=0
Synchronously transmits a complete 'text command'.
virtual ~Tx()
Virtual destructor.
Definition Tx.h:63
bool sendCommand(Cpl::Text::String &command) noexcept
Convenience method to send a command that is contain in Text string object.
Definition Tx.h:43
virtual bool sendRawCommand(const char *completeCommandText, size_t numBytes) noexcept=0
This is an OPTIMIZATION - use with care!!
bool sendCommand(const char *commandString) noexcept
Convenience method to send a command that is a contained in a null terminated string.
Definition Tx.h:49
namespace