GM6000 Digital Heater Controller Branch: main
SDX-1330
format.h
Go to the documentation of this file.
1#ifndef Cpl_Text_format_h_
2#define Cpl_Text_format_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 This file contains some general purpose string formatting functions.
16*/
17
18#include "Cpl/Text/String.h"
20#include <stdlib.h>
21
22
23///
24namespace Cpl {
25///
26namespace Text {
27
28
29
30/** This method will take a raw data buffer and convert it to an 'viewable'
31 string. Non-printable values will displayed as '.'. Note: The default
32 operation is to clear the destString before the conversion. The method
33 will return if buffer was successfully converted, i.e. the ENTIRE buffer
34 was converted; else false is returned (this include the cases of null
35 'buffer' pointer, 'len' equals zero, or not enough memory in 'destString'
36 to contain the final result).
37 */
38bool bufferToString( const void* buffer, int len, Cpl::Text::String& destString, bool appendToString=false );
39
40
41/** This method will convert a binary buffer to 'ASCII HEX', e.g.
42 given the binary data of { 12, F2, 54 }, destString:= "12F254". The
43 method will return true if buffer was successfully converted, i.e. the ENTIRE
44 buffer was converted to a string; else false is returned (this include the
45 cases of null 'buffer' pointer, 'len' equals zero, or not enough memory
46 in 'destString' to contain the final result).
47
48 If 'separator' does not equal '\0', then it inserted between bytes
49 in the output string.
50
51 Note: The default operation is to use uppercase text and to clear
52 the destString before the conversion.
53 */
54bool bufferToAsciiHex( const void* binaryData,
55 int len,
56 Cpl::Text::String& destString,
57 bool upperCase=true,
58 bool appendToString=false,
59 char separator='\0' );
60
61/** This method converts the binary buffer to a single string that is ASCII
62 BINARY. The number of digits in the output string is always a multiple of
63 8. The default order for traversing the 'binaryData' is to start with
64 binaryData[0].
65
66 The converted result is returned via 'buffer'. If the results where
67 truncated by the no enough memory in 'buffer' then false is returned; else
68 true is returned.
69
70 Examples:
71 binaryData = 0x844A, reverse=false, destString = "1000010001001010"
72 binaryData = 0x844A, reverse=true, destString = "0100101010000100"
73
74 */
75bool bufferToAsciiBinary( const void* binaryData, int len, Cpl::Text::String& destString, bool appendToString=false, bool reverse=false );
76
77/** This method converts the binary buffer to a single string that is the
78 ASCII HEX followed by 'separator', then by the binary data as 'viewable'
79 text. The converted result is returned via 'buffer'. If the results where
80 truncated by the no enough memory in 'buffer' then false is returned; else
81 true is returned.
82 */
83bool bufferToViewer( const void* binaryData, int len, Cpl::Text::String& destString, int bytesPerLine=16, const char* separator = " ", bool upperCase=true, bool appendToString=false );
84
85
86
87/** This method converts the binary millisecond count of 'timeStampInMsecs'
88 to a string with the following format: "DD HH:MM:SS.SSS". The converted
89 result is returned via 'buffer'. If the results where truncated by the no
90 enough memory in 'buffer' then false is returned; else true is returned.
91 */
92bool formatMsecTimeStamp( Cpl::Text::String& buffer, unsigned long long timeStampInMsecs, bool encodeDay=true, bool appendToString=false );
93
94/** This method converts the binary second count of 'timeStampInSecs'
95 to a string with the following format: "DD HH:MM:SS". The converted result
96 is returned via 'buffer'. If the results where truncated by the no enough
97 memory in 'buffer' then false is returned; else true is returned.
98 */
99bool formatSecTimeStamp( Cpl::Text::String& buffer, unsigned long long timeStampInSecs, bool encodeDay=true, bool appendToString=false );
100
101/** This method converts the Cpl::System::ElapsedTime::Precision_T value of
102 time into a string with the following format: "DD HH:MM:SS.SSS". The
103 converted result is returned via 'buffer'. If the results where truncated
104 by the no enough memory in 'buffer' then false is returned; else true
105 is returned.
106 */
107bool formatPrecisionTimeStamp( Cpl::Text::String& buffer, Cpl::System::ElapsedTime::Precision_T timeStamp, bool encodeDay=true, bool appendToString=false );
108
109}; // end namespaces
110};
111#endif // end header latch
112
This abstract class defines the operations that can be before on a NULL terminated string.
Definition String.h:40
bool bufferToViewer(const void *binaryData, int len, Cpl::Text::String &destString, int bytesPerLine=16, const char *separator=" ", bool upperCase=true, bool appendToString=false)
This method converts the binary buffer to a single string that is the ASCII HEX followed by 'separato...
bool bufferToAsciiBinary(const void *binaryData, int len, Cpl::Text::String &destString, bool appendToString=false, bool reverse=false)
This method converts the binary buffer to a single string that is ASCII BINARY.
bool formatPrecisionTimeStamp(Cpl::Text::String &buffer, Cpl::System::ElapsedTime::Precision_T timeStamp, bool encodeDay=true, bool appendToString=false)
This method converts the Cpl::System::ElapsedTime::Precision_T value of time into a string with the f...
bool bufferToString(const void *buffer, int len, Cpl::Text::String &destString, bool appendToString=false)
This method will take a raw data buffer and convert it to an 'viewable' string.
bool formatSecTimeStamp(Cpl::Text::String &buffer, unsigned long long timeStampInSecs, bool encodeDay=true, bool appendToString=false)
This method converts the binary second count of 'timeStampInSecs' to a string with the following form...
bool formatMsecTimeStamp(Cpl::Text::String &buffer, unsigned long long timeStampInMsecs, bool encodeDay=true, bool appendToString=false)
This method converts the binary millisecond count of 'timeStampInMsecs' to a string with the followin...
bool bufferToAsciiHex(const void *binaryData, int len, Cpl::Text::String &destString, bool upperCase=true, bool appendToString=false, char separator='\0')
This method will convert a binary buffer to 'ASCII HEX', e.g.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20
Data type for time in seconds with a 'fractional' millisecond precision.
Definition ElapsedTime.h:35