9983d10289070aa082affadf9b6c0906db20b887
[anna.git] / source / dbms / String.cpp
1 // ANNA - Anna is Not Nothingness Anymore
2 //
3 // (c) Copyright 2005-2014 Eduardo Ramos Testillano & Francisco Ruiz Rayo
4 //
5 // http://redmine.teslayout.com/projects/anna-suite
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 the copyright holder 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 <anna/dbms/String.hpp>
38
39 using namespace anna;
40 using namespace anna::dbms;
41
42 String& String::operator = (const String & other)
43 throw(RuntimeException) {
44   if(this == &other)
45     return *this;
46
47   if(other.isNull() == true) {
48     setNull(true);
49     a_value [0] = 0;
50     return *this;
51   }
52
53   return operator= (other.a_value);
54 }
55
56 String& String::operator = (const char * str)
57 throw(RuntimeException) {
58   if(a_value != str) {
59     if(anna_strlen(str) > Data::getMaxSize())
60       throw RuntimeException(
61         functions::asString("'%s' out of range | MaxLen: %d | Len: %d ", str, Data::getMaxSize(), anna_strlen(str)),
62         ANNA_FILE_LOCATION
63       );
64
65     anna_strcpy(a_value, str);
66   }
67
68   Data::setNull(false);
69   return *this;
70 }
71
72 char* String::strip(char *str)
73 throw() {
74   int len;
75
76   if(str == NULL || (len = anna_strlen(str)) == 0)
77     return str;
78
79   register int end = len - 1;
80
81   while(end >= 0 && str [end] == ' ') end --;
82
83   if(end >= 0)
84     str [++ end] = 0;
85
86   return str;
87 }
88
89 std::string dbms::String::asString() const
90 throw() {
91   std::string result("dbms::String { ");
92   result += dbms::Data::asString();
93   result += " | Value: ";
94   result += a_value;
95   return result += " }";
96 }
97