Updated license
[anna.git] / source / core / util / String.cpp
1 // ANNA - Anna is Not Nothingness Anymore
2 //
3 // (c) Copyright 2005-2014 Eduardo Ramos Testillano & Francisco Ruiz Rayo
4 //
5 // https://bitbucket.org/testillano/anna
6 //
7 // Redistribution and use in source and binary forms, with or without
8 // modification, are permitted provided that the following conditions
9 // are met:
10 //
11 //     * Redistributions of source code must retain the above copyright
12 // notice, this list of conditions and the following disclaimer.
13 //     * Redistributions in binary form must reproduce the above
14 // copyright notice, this list of conditions and the following disclaimer
15 // in the documentation and/or other materials provided with the
16 // distribution.
17 //     * Neither the name of Google Inc. nor the names of its
18 // contributors may be used to endorse or promote products derived from
19 // this software without specific prior written permission.
20 //
21 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 //
33 // Authors: eduardo.ramos.testillano@gmail.com
34 //          cisco.tierra@gmail.com
35
36
37 #include <cctype> // for toupper
38 #include <string>
39 #include <algorithm>
40
41 #include <anna/core/util/String.hpp>
42 #include <anna/core/functions.hpp>
43 #include <anna/core//DataBlock.hpp>
44
45 using namespace std;
46 using namespace anna;
47
48 void String::toUpper()
49 throw() {
50   std::transform(begin(), end(), begin(), (int(*)(int)) toupper);
51 }
52
53 void String::toLower()
54 throw() {
55   std::transform(begin(), end(), begin(), (int(*)(int)) tolower);
56 }
57
58 String& String::operator<< (const char* vv)
59 throw() {
60   if(vv == NULL) {
61     if(a_flags & Flag::ShowNull)
62       string::operator+= ("<null>");
63   } else
64     string::operator+= (vv);
65
66   return *this;
67 }
68
69 String& String::operator<< (const int vv)
70 throw() {
71   char aux [16];
72   sprintf(aux, "%d", vv);
73   string::operator+= (aux);
74   return *this;
75 }
76
77 String& String::operator<< (const unsigned int vv)
78 throw() {
79   char aux [16];
80   sprintf(aux, "%u", vv);
81   string::operator+= (aux);
82   return *this;
83 }
84
85 String& String::operator<< (const S64 vv)
86 throw() {
87   char aux [32];
88   sprintf(aux, "%lld", vv);
89   /*
90   #ifdef __anna64__
91      sprintf (aux, "%ld", vv);
92   #else
93      sprintf (aux, "%lld", vv);
94   #endif
95   */
96   string::operator+= (aux);
97   return *this;
98 }
99
100 String& String::operator<< (const U64 vv)
101 throw() {
102   char aux [32];
103   sprintf(aux, "%llu", vv);
104   /*
105    #ifdef __anna64__
106       sprintf (aux, "%lu", vv);
107    #else
108       sprintf (aux, "%llu", vv);
109    #endif
110   */
111   string::operator+= (aux);
112   return *this;
113 }
114
115 String& String::operator<< (const float vv)
116 throw() {
117   char aux [64];
118   sprintf(aux, "%f", vv);
119   string::operator+= (aux);
120   return *this;
121 }
122
123 String& String::operator<< (const double vv)
124 throw() {
125   char aux [64];
126   sprintf(aux, "%e", vv);
127   string::operator+= (aux);
128   return *this;
129 }
130
131 String& String::operator<< (const DataBlock& vv)
132 throw() {
133   return *this += vv.asString();
134 }
135
136 //static
137 String String::format(const DataBlock& vv, const int characterByLine)
138 throw() {
139   return String(vv.asString(characterByLine));
140 }