Updated license
[anna.git] / source / dbms / Sentence.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 <anna/xml/Node.hpp>
38 #include <anna/xml/Attribute.hpp>
39
40 #include <anna/dbms/Database.hpp>
41 #include <anna/dbms/Connection.hpp>
42 #include <anna/dbms/Sentence.hpp>
43 #include <anna/dbms/Statement.hpp>
44
45 using namespace std;
46 using namespace anna;
47
48 const string& dbms::Sentence::getName() const
49 throw() {
50   static string empty;
51   return (a_dbStatement == NULL) ? empty : a_dbStatement->getName();
52 }
53
54 void dbms::Sentence::initialize(dbms::Database& database)
55 throw(RuntimeException) {
56   Guard guard(this, "anna::dbms::Sentence (initialize)");
57   a_dbStatement = do_initialize(database);
58 }
59
60 //-------------------------------------------------------------------------------------
61 // Ojo!! No activamos la seccion critica en este metodo porque debera estar
62 // activa externamente ... para recoger datos multiples, etc, etc.
63 //-------------------------------------------------------------------------------------
64 dbms::ResultCode dbms::Sentence::execute(dbms::Connection& connection, dbms::Statement* statement)
65 throw(RuntimeException) {
66   using namespace anna::dbms;
67   ResultCode result;
68
69   try {
70     result = connection.execute(statement);
71
72     if(result.successful() == false) {
73       if(a_mode == Mode::SilentWhenNotFound && result.notFound() == true)
74         return result;
75
76       throw DatabaseException(result, ANNA_FILE_LOCATION);
77     }
78   } catch(DatabaseException& edb) {
79     string msg("Sentence: ");
80     msg += getName();
81     msg += " | ";
82     msg += edb.getText();
83     throw RuntimeException(msg, ANNA_FILE_LOCATION);
84   }
85
86   return result;
87 }
88
89 bool dbms::Sentence::fetch()
90 throw(RuntimeException) {
91   bool result = false;
92
93   try {
94     result = a_dbStatement->fetch();
95   } catch(dbms::DatabaseException& edb) {
96     throw RuntimeException(edb);
97   }
98
99   return result;
100 }
101
102 string dbms::Sentence::asString() const
103 /*virtual*/
104 throw() {
105   string result("dbms::Sentence { Mode: ");
106   result += (a_mode == Mode::SilentWhenNotFound) ? "SilentWhenNotFound" : "ExceptionWhenNotFound";
107   result += " | ";
108
109   if(a_dbStatement != NULL)
110     result += a_dbStatement->asString();
111   else
112     result += "dbms::Statement: <null>";
113
114   return result += " }";
115 }
116
117 /*virtual*/
118 xml::Node* dbms::Sentence::asXML(xml::Node* parent) const
119 throw() {
120   xml::Node* result = parent->createChild("dbms.Sentence");
121   result->createAttribute("Mode", (a_mode == Mode::SilentWhenNotFound) ? "SilentWhenNotFound" : "ExceptionWhenNotFound");
122
123   if(a_dbStatement)
124     a_dbStatement->asXML(result);
125
126   return result;
127 }