GM6000 Digital Heater Controller Branch: main
SDX-1330
atob.h
Go to the documentation of this file.
1#ifndef Cpl_Text_atob_h_
2#define Cpl_Text_atob_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 a collection of methods that wrap the standard C
16 library functions for converting text/string to binary values.
17
18*/
19
20#include <stdlib.h>
21#include "colony_map.h"
23
24
25///
26namespace Cpl {
27///
28namespace Text {
29
30
31
32/** This method converts the specified string to an integer. The method returns
33 true if the conversion was successful. When false is returned, the
34 'convertedValue' argument is NOT updated. By default the conversion assumes
35 a base 10 number and that the 'end-of-number' is end-of-string. If endptr
36 is specified and the conversation was successful, a pointer to the first
37 character 'after' the number is returned.
38 */
39bool a2i( int& convertedValue, const char* string, int base=10, const char* validStopChars=0, const char** endptr=0 );
40
41/** This method is the same as a2i() except that it converts unsigned integer.
42 */
43bool a2ui( unsigned& convertedValue, const char* string, int base=10, const char* validStopChars=0, const char** endptr=0 );
44
45/** This method is the same as a2i() except that it converts long integer.
46 */
47bool a2l( long& convertedValue, const char* string, int base=10, const char* validStopChars=0, const char** endptr=0 );
48
49/** This method is the same as a2i() except that it converts unsigned long
50 integer.
51 */
52bool a2ul( unsigned long& convertedValue, const char* string, int base=10, const char* validStopChars=0, const char** endptr=0 );
53
54
55/** This method is the same as a2i() except that it converts long long
56 integer.
57 */
58bool a2ll( long long& convertedValue, const char* string, int base=10, const char* validStopChars=0, const char** endptr=0 );
59
60/** This method is the same as a2i() except that it converts unsigned long long
61 integer.
62 */
63bool a2ull( unsigned long long& convertedValue, const char* string, int base=10, const char* validStopChars=0, const char** endptr=0 );
64
65
66/** This method converts the specified string to an double. The method returns
67 true if the conversion was successful. When false is returned, the
68 'convertedValue' argument is NOT updated. By default the conversion assumes
69 that the 'end-of-number' is end-of-string. If endptr is specified and the
70 method returns true, a pointer to the first character 'after' the number is
71 returned.
72 */
73bool a2d( double& convertedValue, const char* string, const char* validStopChars=0, const char** endptr=0 );
74
75
76/** This method convert the specified string to an boolean. The method returns
77 true if the conversion was successful. When false is returned, the
78 'convertedValue' argument is NOT updated. If the first N characters of
79 'string' match the specified boolean token - the conversion is consider
80 successful (i.e. there is no required separator/terminator character for
81 a boolean token). If endptr is specified and the method returns true, a
82 pointer to the first character 'after' the boolean token is returned.
83 */
84bool a2b( bool& convertedValue, const char* string, const char* trueToken="T", const char* falseToken="F", const char** endptr=0 );
85
86
87/** This method will convert an 'ASCII HEX' string to an equivalent binary
88 buffer, i.e. the reverse of bufferToAsciiHex() in format.h. If the entire
89 string was not able to be converted then -1 is returned, else the number
90 of converted bytes are returned.
91 */
92long asciiHexToBuffer( void* dstBinary, const char* srcString, size_t dstMaxLen );
93
94/** This method will convert an 'ASCII BINARY' string to an equivalent binary
95 buffer, i.e. the reverse of bufferToAsciiBinary() in format.h. The
96 'reverse' argument when set to true will store the binary data starting
97 with the last byte of 'dstBinary'.
98
99 If the number of '1' and '0' in 'srcString' is not a multiple of eight - the
100 'missing' bits will be set to zero in the binary output.
101
102 If the entire string was not able to be converted then -1 is returned OR if
103 there are non '1'/'0' characters in the srcString; else the number of
104 converted bits are returned.
105
106 Note: 'srcString' MUST be a null terminated string
107 */
108long asciiBinaryToBuffer( void* dstBinary, const char* srcString, size_t dstMaxLen, bool reverse=false );
109
110
111/** This method parses a 'timestamp' with the following format: [DD ]HH:MM:SS[.sss]
112 The method returns true if the parse was successful.
113 */
114bool parsePrecisionTimeStamp( const char* timeStampToParse, Cpl::System::ElapsedTime::Precision_T& convertedValue );
115
116
117}; // end namespaces
118};
119#endif // end header latch
long asciiBinaryToBuffer(void *dstBinary, const char *srcString, size_t dstMaxLen, bool reverse=false)
This method will convert an 'ASCII BINARY' string to an equivalent binary buffer, i....
long asciiHexToBuffer(void *dstBinary, const char *srcString, size_t dstMaxLen)
This method will convert an 'ASCII HEX' string to an equivalent binary buffer, i.e.
bool a2ul(unsigned long &convertedValue, const char *string, int base=10, const char *validStopChars=0, const char **endptr=0)
This method is the same as a2i() except that it converts unsigned long integer.
bool a2ull(unsigned long long &convertedValue, const char *string, int base=10, const char *validStopChars=0, const char **endptr=0)
This method is the same as a2i() except that it converts unsigned long long integer.
bool parsePrecisionTimeStamp(const char *timeStampToParse, Cpl::System::ElapsedTime::Precision_T &convertedValue)
This method parses a 'timestamp' with the following format: [DD ]HH:MM:SS[.sss] The method returns tr...
bool a2ll(long long &convertedValue, const char *string, int base=10, const char *validStopChars=0, const char **endptr=0)
This method is the same as a2i() except that it converts long long integer.
bool a2ui(unsigned &convertedValue, const char *string, int base=10, const char *validStopChars=0, const char **endptr=0)
This method is the same as a2i() except that it converts unsigned integer.
bool a2i(int &convertedValue, const char *string, int base=10, const char *validStopChars=0, const char **endptr=0)
This method converts the specified string to an integer.
bool a2d(double &convertedValue, const char *string, const char *validStopChars=0, const char **endptr=0)
This method converts the specified string to an double.
bool a2b(bool &convertedValue, const char *string, const char *trueToken="T", const char *falseToken="F", const char **endptr=0)
This method convert the specified string to an boolean.
bool a2l(long &convertedValue, const char *string, int base=10, const char *validStopChars=0, const char **endptr=0)
This method is the same as a2i() except that it converts long integer.
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