mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
stringUtils.cpp
Go to the documentation of this file.
1/** \file stringUtils.cpp
2 * \brief Implementation of utilities for working with strings
3 *
4 * \author Jared R. Males (jaredmales@gmail.com)
5 *
6 * \ingroup stringutils
7 *
8 */
9
10//***********************************************************************//
11// Copyright 2020 Jared R. Males (jaredmales@gmail.com)
12//
13// This file is part of mxlib.
14//
15// mxlib is free software: you can redistribute it and/or modify
16// it under the terms of the GNU General Public License as published by
17// the Free Software Foundation, either version 3 of the License, or
18// (at your option) any later version.
19//
20// mxlib is distributed in the hope that it will be useful,
21// but WITHOUT ANY WARRANTY; without even the implied warranty of
22// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23// GNU General Public License for more details.
24//
25// You should have received a copy of the GNU General Public License
26// along with mxlib. If not, see <http://www.gnu.org/licenses/>.
27//***********************************************************************//
28
30
31namespace mx
32{
33namespace ioutils
34{
35
36// Specialization of convertToString to avoid converting a string to a string
37template <>
38std::string convertToString<std::string>( const std::string &value, int precision )
39{
40 static_cast<void>( precision );
41 return value;
42}
43
44// Template specialization of convertFromString for char
45template <>
46char convertFromString<char>( const std::string &str )
47{
48 return (char)atoi( str.c_str() );
49}
50
51// Template specialization of convertFromString for char16_t
52template <>
53char16_t convertFromString<char16_t>( const std::string &str )
54{
55 return (char16_t)atoi( str.c_str() );
56}
57
58// Template specialization of convertFromString for char32_t
59template <>
60char32_t convertFromString<char32_t>( const std::string &str )
61{
62 return (char32_t)atoi( str.c_str() );
63}
64
65// Template specialization of convertFromString for char32_t
66template <>
67wchar_t convertFromString<wchar_t>( const std::string &str )
68{
69 return (wchar_t)atoi( str.c_str() );
70}
71
72// Template specialization of convertFromString for unsigned char
73template <>
74signed char convertFromString<signed char>( const std::string &str )
75{
76 return (signed char)atoi( str.c_str() );
77}
78
79// Template specialization of convertFromString for unsigned char
80template <>
81unsigned char convertFromString<unsigned char>( const std::string &str )
82{
83 return (unsigned char)atoi( str.c_str() );
84}
85
86// Template specialization of convertFromString for short
87template <>
88short convertFromString<short>( const std::string &str )
89{
90 return (short)atoi( str.c_str() );
91}
92
93// Template specialization of convertFromString for unsigned short
94template <>
95unsigned short convertFromString<unsigned short>( const std::string &str )
96{
97 return (unsigned short)atoi( str.c_str() );
98}
99
100// Template specialization of convertFromString for int
101template <>
102int convertFromString<int>( const std::string &str )
103{
104 return atoi( str.c_str() );
105}
106
107// Template specialization of convertFromString for unsigned int
108template <>
109unsigned int convertFromString<unsigned int>( const std::string &str )
110{
111 return (unsigned int)strtoul( str.c_str(), 0, 0 );
112}
113
114// Template specialization of convertFromString for long
115template <>
116long convertFromString<long>( const std::string &str )
117{
118 return strtol( str.c_str(), 0, 0 );
119}
120
121// Template specialization of convertFromString for unsigned long
122template <>
123unsigned long convertFromString<unsigned long>( const std::string &str )
124{
125 return strtoul( str.c_str(), 0, 0 );
126}
127
128// Template specialization of convertFromString for long long
129template <>
130long long convertFromString<long long>( const std::string &str )
131{
132 return strtoll( str.c_str(), 0, 0 );
133}
134
135// Template specialization of convertFromString for unsigned long long
136template <>
137unsigned long long convertFromString<unsigned long long>( const std::string &str )
138{
139 return strtoull( str.c_str(), 0, 0 );
140}
141
142// Template specialization of convertFromString for float
143template <>
144float convertFromString<float>( const std::string &str )
145{
146 return strtof( str.c_str(), 0 );
147}
148
149// Template specialization of convertFromString for double
150template <>
151double convertFromString<double>( const std::string &str )
152{
153 return strtod( str.c_str(), 0 );
154}
155
156// Template specialization of convertFromString for long double
157template <>
158long double convertFromString<long double>( const std::string &str )
159{
160 return strtold( str.c_str(), 0 );
161}
162
163// Template specialization of convertFromString for bool
164template <>
165bool convertFromString<bool>( const std::string &str )
166{
167 char c = str[0];
168 size_t i = 0;
169 while( isspace( c ) && i < str.length() )
170 c = str[i++];
171
172 if( c == '0' || c == 'f' || c == 'F' )
173 return false;
174 if( c == '1' || c == 't' || c == 'T' )
175 return true;
176
177 return (bool)convertFromString<int>( str );
178}
179
180// Convert a string to all lower case.
181void toLower( std::string &outstr, const std::string &instr )
182{
183 outstr.resize( instr.size() );
184
185 for( size_t i = 0; i < instr.size(); ++i )
186 outstr[i] = tolower( instr[i] );
187}
188
189// Convert a string to all lower case.
190std::string toLower( const std::string &instr )
191{
192 std::string outstr;
193
194 toLower( outstr, instr );
195
196 return outstr;
197}
198
199// vConvert a string to all upper case.
200void toUpper( std::string &outstr, const std::string &instr )
201{
202 outstr.resize( instr.size() );
203
204 for( size_t i = 0; i < instr.size(); ++i )
205 outstr[i] = toupper( instr[i] );
206}
207
208// Convert a string to all upper case.
209std::string toUpper( const std::string &instr )
210{
211 std::string outstr;
212
213 toUpper( outstr, instr );
214
215 return outstr;
216}
217
218// Remove all white space from a string.
219void removeWhiteSpace( std::string &outstr, const std::string &instr )
220{
221 outstr = instr;
222
223 outstr.erase( std::remove_if( outstr.begin(), outstr.end(), ::isspace ), outstr.end() );
224}
225
226// Remove all white space from a string.
227std::string removeWhiteSpace( const std::string &instr )
228{
229 std::string outstr;
230
231 removeWhiteSpace( outstr, instr );
232
233 return outstr;
234}
235
236// Wrap a string by breaking it into smaller sized portions of a desired width
237int stringWrap( std::vector<std::string> &lines, const std::string &str, int width )
238{
239 int L = str.length();
240
241 if( L == 0 )
242 return 0;
243 int startPos, tmpPos, endPos;
244
245 bool done = false;
246
247 startPos = 0;
248
249 while( !done )
250 {
251 if( startPos == L )
252 --startPos; // Just to make sure
253
254 endPos = startPos + width;
255
256 if( endPos >= L )
257 {
258 lines.push_back( str.substr( startPos, L - startPos ) );
259 done = true;
260 }
261 else
262 {
263 // Backup to nearest space
264 tmpPos = endPos;
265 while( !isspace( str[tmpPos] ) && tmpPos >= startPos )
266 --tmpPos;
267
268 // If we aren't at the beginning (i.e. splitting consecutive characters) we use new end position
269 if( tmpPos > startPos )
270 endPos = tmpPos;
271
272 lines.push_back( str.substr( startPos, endPos - startPos ) );
273
274 startPos = endPos;
275
276 // Clear 1 space
277 if( str[startPos] == ' ' )
278 ++startPos;
279 }
280 }
281
282 return 0;
283}
284
285} // namespace ioutils
286} // namespace mx
void toUpper(std::string &outstr, const std::string &instr)
Convert a string to all upper case.
int stringWrap(std::vector< std::string > &lines, const std::string &str, int width)
Wrap a string by breaking it into smaller sized portions of a desired width.
void toLower(std::string &outstr, const std::string &instr)
Convert a string to all lower case.
bool convertFromString< bool >(const std::string &str)
Template specialization of convertFromString for bool.
void removeWhiteSpace(std::string &outstr, const std::string &instr)
Remove all white space from a string.
The mxlib c++ namespace.
Definition mxError.hpp:106
Utilities for working with strings.