First commit
[anna.git] / source / dbms / ResultCode.cpp
1 // ANNA - Anna is Not 'N' 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 <anna/core/functions.hpp>
38
39 #include <anna/dbms/ResultCode.hpp>
40
41 using namespace std;
42 using namespace anna::dbms;
43
44 bool ResultCode::notFound() const
45 throw(anna::RuntimeException) {
46   if(a_errorDecoder == NULL) {
47     string msg(asString());
48     msg += " | Has no decoder for associated error";
49     throw anna::RuntimeException(msg, ANNA_FILE_LOCATION);
50   }
51
52   return a_errorDecoder->notFound(a_errorCode);
53 }
54
55 bool ResultCode::successful() const
56 throw(anna::RuntimeException) {
57   if(a_errorDecoder == NULL) {
58     string msg(asString());
59     msg += " | Has no decoder for associated error";
60     throw anna::RuntimeException(msg, ANNA_FILE_LOCATION);
61   }
62
63   return a_errorDecoder->successful(a_errorCode);
64 }
65
66 bool ResultCode::locked() const
67 throw(anna::RuntimeException) {
68   if(a_errorDecoder == NULL) {
69     string msg(asString());
70     msg += " | Has no decoder for associated error";
71     throw anna::RuntimeException(msg, ANNA_FILE_LOCATION);
72   }
73
74   return a_errorDecoder->locked(a_errorCode);
75 }
76
77 bool ResultCode::lostConnection() const
78 throw(anna::RuntimeException) {
79   if(a_errorDecoder == NULL) {
80     string msg(asString());
81     msg += " | Has no decoder for associated error";
82     throw anna::RuntimeException(msg, ANNA_FILE_LOCATION);
83   }
84
85   return a_errorDecoder->lostConnection(a_errorCode);
86 }
87
88 //
89 // No usamos la std::string porque la gran mayoría de las veces la ejecución de las sentencias SQL será
90 // correcta => no hará falta reservar ninguna memoria.
91 //
92 void ResultCode::copy(const char* text)
93 throw() {
94   if(text == NULL) {
95     if(a_errorText != NULL) {
96       free(a_errorText);
97       a_errorText = NULL;
98     }
99   } else {
100     char* aux;
101
102     if((aux = anna_strchr((char*) text, '\n')) != NULL)
103       * aux = 0;
104
105     const int textLen = anna_strlen(text);
106
107     if(a_errorText == NULL)
108       a_errorText = strdup(text);
109     else if(anna_strlen(a_errorText) >= textLen)
110       anna_strcpy(a_errorText, text);
111     else {
112       free(a_errorText);
113       a_errorText = strdup(text);
114     }
115   }
116 }
117
118 std::string ResultCode::asString() const
119 throw() {
120   std::string result("dbms::ResultCode { Error: ");
121   result += functions::asString(a_errorCode);
122   result += " | Error: ";
123   result += (a_errorText == NULL) ? "(null)" : a_errorText;
124   result += " | Correct: ";
125
126   if(a_errorDecoder != NULL)
127     result += functions::asString(successful());
128   else
129     result += "<No ErrorDecoder>";
130
131   return result += " }";
132 }