Graphite Version 3
An experimental 3D geometry processing program
Loading...
Searching...
No Matches
string.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2000-2022 Inria
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
7 *
8 * * Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above copyright notice,
11 * this list of conditions and the following disclaimer in the documentation
12 * and/or other materials provided with the distribution.
13 * * Neither the name of the ALICE Project-Team nor the names of its
14 * contributors may be used to endorse or promote products derived from this
15 * software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
21 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27 * POSSIBILITY OF SUCH DAMAGE.
28 *
29 * Contact: Bruno Levy
30 *
31 * https://www.inria.fr/fr/bruno-levy
32 *
33 * Inria,
34 * Domaine de Voluceau,
35 * 78150 Le Chesnay - Rocquencourt
36 * FRANCE
37 *
38 */
39
40#ifndef GEOGRAM_BASIC_STRING
41#define GEOGRAM_BASIC_STRING
42
45
46#include <string>
47#include <sstream>
48#include <stdexcept>
49#include <iomanip>
50
51#include <vector>
52#include <stdlib.h>
53#include <string.h>
54#include <errno.h>
55#include <stdio.h>
56#include <limits.h>
57
63namespace GEO {
64
65 /*
66 * \brief String manipulation utilities.
67 */
68 namespace String {
69
81 void GEOGRAM_API split_string(
82 const std::string& in,
83 char separator,
84 std::vector<std::string>& out,
85 bool skip_empty_fields = true
86 );
87
99 void GEOGRAM_API split_string(
100 const std::string& in,
101 const std::string& separator,
102 std::vector<std::string>& out,
103 bool skip_empty_fields = true
104 );
105
119 bool GEOGRAM_API split_string(
120 const std::string& in,
121 char separator,
122 std::string& left,
123 std::string& right
124 );
125
135 std::string GEOGRAM_API join_strings(
136 const std::vector<std::string>& in,
137 char separator
138 );
139
149 std::string GEOGRAM_API join_strings(
150 const std::vector<std::string>& in,
151 const std::string& separator
152 );
153
160 std::string GEOGRAM_API to_lowercase(const std::string& s);
161
168 std::string GEOGRAM_API to_uppercase(const std::string& s);
169
175 inline std::string char_to_string(char c) {
176 char s[2];
177 s[0] = c;
178 s[1] = '\0';
179 return std::string(s);
180 }
181
190 std::string GEOGRAM_API quote(
191 const std::string& s, char quotes = '\"'
192 );
193
201 bool GEOGRAM_API string_starts_with(
202 const std::string& haystack, const std::string& needle
203 );
204
212 bool GEOGRAM_API string_ends_with(
213 const std::string& haystack, const std::string& needle
214 );
215
221 std::string GEOGRAM_API format(const char* format, ...)
222#ifndef GOMGEN
223#ifdef GEO_COMPILER_GCC_FAMILY
224 // Tells the compiler that format is a printf-like format
225 // string, so that it can check that the arguments match
226 // the format string and bark at you if it is not the case.
227 __attribute__ ((__format__(printf, 1, 2)))
228#endif
229#endif
230 ;
231
238 std::string GEOGRAM_API format_time(double seconds, bool HMS_only=false);
239
245 template <class T>
246 inline std::string to_string(const T& value) {
247 std::ostringstream out;
248 // Makes sure that double-precision number are displayed
249 // with a sufficient number of digits. This is important
250 // to avoid losing precision when using ASCII files.
251 out << std::setprecision(17);
252 out << value;
253 return out.str();
254 }
255
263 template <class T>
264 inline std::string to_display_string(const T& value) {
265 return to_string(value);
266 }
267
268
276 template <>
277 inline std::string to_display_string(const double& value) {
278 std::ostringstream out;
279 out << value;
280 return out.str();
281 }
282
290 template <>
291 inline std::string to_display_string(const float& value) {
292 std::ostringstream out;
293 out << value;
294 return out.str();
295 }
296
303 template <>
304 inline std::string to_string(const bool& value) {
305 return value ? "true" : "false";
306 }
307
314 class GEOGRAM_API ConversionError : public std::logic_error {
315 public:
321 ConversionError(const std::string& s, const std::string& type);
322
326 const char* what() const GEO_NOEXCEPT override;
327 };
328
339 template <class T>
340 inline bool from_string(const char* s, T& value) {
341 std::istringstream in(s);
342 return (in >> value) && (in.eof() || ((in >> std::ws) && in.eof()));
343 }
344
355 template <class T>
356 inline bool from_string(const std::string& s, T& value) {
357 return from_string(s.c_str(), value);
358 }
359
367 template <>
368 inline bool from_string(const char* s, double& value) {
369 errno = 0;
370 char* end;
371 value = strtod(s, &end);
372 return end != s && *end == '\0' && errno == 0;
373 }
374
382 template <typename T>
383 inline bool string_to_signed_integer(const char* s, T& value) {
384 errno = 0;
385 char* end;
386#ifdef GEO_OS_WINDOWS
387 Numeric::int64 v = _strtoi64(s, &end, 10);
388#else
389 Numeric::int64 v = strtoll(s, &end, 10);
390#endif
391 if(
392 end != s && *end == '\0' && errno == 0 &&
393 v >= std::numeric_limits<T>::min() &&
394 v <= std::numeric_limits<T>::max()
395 ) {
396 value = static_cast<T>(v);
397 return true;
398 }
399
400 return false;
401 }
402
407 template <>
408 inline bool from_string(const char* s, Numeric::int8& value) {
409 return string_to_signed_integer(s, value);
410 }
411
416 template <>
417 inline bool from_string(const char* s, Numeric::int16& value) {
418 return string_to_signed_integer(s, value);
419 }
420
425 template <>
426 inline bool from_string(const char* s, Numeric::int32& value) {
427 return string_to_signed_integer(s, value);
428 }
429
433 template <>
434 inline bool from_string(const char* s, Numeric::int64& value) {
435 errno = 0;
436 char* end;
437#ifdef GEO_OS_WINDOWS
438 value = _strtoi64(s, &end, 10);
439#else
440 value = strtoll(s, &end, 10);
441#endif
442 return end != s && *end == '\0' && errno == 0;
443 }
444
452 template <typename T>
453 inline bool string_to_unsigned_integer(const char* s, T& value) {
454 errno = 0;
455 char* end;
456#ifdef GEO_OS_WINDOWS
457 Numeric::uint64 v = _strtoui64(s, &end, 10);
458#else
459 Numeric::uint64 v = strtoull(s, &end, 10);
460#endif
461 if(
462 end != s && *end == '\0' && errno == 0 &&
463 v <= std::numeric_limits<T>::max()
464 ) {
465 value = static_cast<T>(v);
466 return true;
467 }
468
469 return false;
470 }
471
476 template <>
477 inline bool from_string(const char* s, Numeric::uint8& value) {
478 return string_to_unsigned_integer(s, value);
479 }
480
485 template <>
486 inline bool from_string(const char* s, Numeric::uint16& value) {
487 return string_to_unsigned_integer(s, value);
488 }
489
494 template <>
495 inline bool from_string(const char* s, Numeric::uint32& value) {
496 return string_to_unsigned_integer(s, value);
497 }
498
502 template <>
503 inline bool from_string(const char* s, Numeric::uint64& value) {
504 errno = 0;
505 char* end;
506#ifdef GEO_OS_WINDOWS
507 value = _strtoui64(s, &end, 10);
508#else
509 value = strtoull(s, &end, 10);
510#endif
511 return end != s && *end == '\0' && errno == 0;
512 }
513
524 template <>
525 inline bool from_string(const char* s, bool& value) {
526 if(strcmp(s, "true") == 0 ||
527 strcmp(s, "True") == 0 ||
528 strcmp(s, "1") == 0
529 ) {
530 value = true;
531 return true;
532 }
533 if(strcmp(s, "false") == 0 ||
534 strcmp(s, "False") == 0 ||
535 strcmp(s, "0") == 0
536 ) {
537 value = false;
538 return true;
539 }
540 return false;
541 }
542
552 inline int to_int(const std::string& s) {
553 int value;
554 if(!from_string(s, value)) {
555 throw ConversionError(s, "integer");
556 }
557 return value;
558 }
559
569 inline unsigned int to_uint(const std::string& s) {
570 unsigned int value;
571 if(!from_string(s, value)) {
572 throw ConversionError(s, "integer");
573 }
574 return value;
575 }
576
586 inline double to_double(const std::string& s) {
587 double value;
588 if(!from_string(s, value)) {
589 throw ConversionError(s, "double");
590 }
591 return value;
592 }
593
603 inline bool to_bool(const std::string& s) {
604 bool value;
605 if(!from_string(s, value)) {
606 throw ConversionError(s, "boolean");
607 }
608 return value;
609 }
610
616 std::string GEOGRAM_API wchar_to_UTF8(const wchar_t* in);
617 }
618}
619
620#endif
Conversion exception.
Definition string.h:314
ConversionError(const std::string &s, const std::string &type)
Constructs a conversion exception.
const char * what() const GEO_NOEXCEPT override
Gets the string identifying the exception.
Common include file, providing basic definitions. Should be included before anything else by all head...
uint8_t uint8
Definition numeric.h:135
uint64_t uint64
Definition numeric.h:144
int8_t int8
Definition numeric.h:123
int32_t int32
Definition numeric.h:129
uint16_t uint16
Definition numeric.h:138
uint32_t uint32
Definition numeric.h:141
int16_t int16
Definition numeric.h:126
int64_t int64
Definition numeric.h:132
Global Vorpaline namespace.
Types and functions for numbers manipulation.
Functions for string manipulation.
std::string to_string(const T &value)
Converts a typed value to a string.
Definition string.h:246
bool string_to_unsigned_integer(const char *s, T &value)
Converts a string to a unsigned integer value.
Definition string.h:453
std::string wchar_to_UTF8(const wchar_t *in)
Converts a wide char string into an UTF8 string.
std::string to_uppercase(const std::string &s)
Converts a string to uppercase.
std::string char_to_string(char c)
Creates a one char string.
Definition string.h:175
bool from_string(const char *s, T &value)
Converts a C string to a typed value.
Definition string.h:340
void split_string(const std::string &in, char separator, std::vector< std::string > &out, bool skip_empty_fields=true)
Splits a string into parts.
int to_int(const std::string &s)
Converts a string to an int.
Definition string.h:552
bool string_starts_with(const std::string &haystack, const std::string &needle)
Checks if a string starts with a substring.
bool string_ends_with(const std::string &haystack, const std::string &needle)
Checks if a string ends with a substring.
std::string format(const char *format,...)
Creates a string from a format string and additional arguments. Works like sprintf()
std::string format_time(double seconds, bool HMS_only=false)
Converts a time in seconds into a human-readable string.
std::string join_strings(const std::vector< std::string > &in, char separator)
Join multiple strings.
std::string quote(const std::string &s, char quotes='\"' )
Adds quotes to a string.
unsigned int to_uint(const std::string &s)
Converts a string to an unsigned int.
Definition string.h:569
std::string to_lowercase(const std::string &s)
Converts a string to lowercase.
std::string to_display_string(const T &value)
Converts a typed value to a string for display.
Definition string.h:264
bool to_bool(const std::string &s)
Converts a string to a boolean.
Definition string.h:603
bool string_to_signed_integer(const char *s, T &value)
Converts a string to a signed integer value.
Definition string.h:383
double to_double(const std::string &s)
Converts a string to a double.
Definition string.h:586