Updated license
[anna.git] / source / ldap / Response.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/core/functions.hpp>
38 #include <anna/core/tracing/Logger.hpp>
39
40 #include <anna/ldap/Response.hpp>
41 #include <anna/ldap/Attribute.hpp>
42 #include <anna/ldap/TimerManager.hpp>
43
44 using namespace std;
45 using namespace anna;
46
47 ldap::Response::response_pool ldap::Response::st_responses;
48
49 //----------------------------------------------------------------------------------------
50 // Se invocan desde ldap::Session
51 //----------------------------------------------------------------------------------------
52 ldap::Response* ldap::Response::instance(const ClassCode::_v classCode, const IdMessage idMessage)
53 throw(RuntimeException) {
54   ldap::Response* result = st_responses.create();
55   result->a_classCode = classCode;
56   result->a_idMessage = idMessage;
57   result->clear();
58   LOGDEBUG(
59     string msg("anna::ldap::Response::instance | ");
60     msg += result->asString();
61     Logger::debug(msg, ANNA_FILE_LOCATION);
62   );
63   return result;
64 }
65
66 void ldap::Response::release(ldap::Response* response)
67 throw() {
68   try {
69     st_responses.release(response);
70   } catch(Exception& ex) {
71     ex.trace();
72   }
73 }
74
75 ldap::Response::Response() :
76   a_classCode(ClassCode::Undefined),
77   a_idMessage(0),
78   a_session(NULL),
79   a_timer(NULL),
80   a_request(NULL) {
81 }
82
83 void ldap::Response::clear()
84 throw() {
85   a_session = NULL;
86   a_resultCode.clear();
87   a_name.clear();
88
89   for(attribute_iterator ii = attribute_begin(), maxii = attribute_end(); ii != maxii; ii ++)
90     attribute(ii)->clear();
91
92   a_attributes.clear();
93   a_referrals.clear();
94   a_timer = NULL;
95   a_request = NULL;
96 }
97
98 void ldap::Response::activateTimer()
99 throw(RuntimeException) {
100   a_timer = TimerManager::instantiate().createTimer(this);
101 }
102
103 void ldap::Response::cancelTimer()
104 throw() {
105   if(a_timer != NULL) {
106     try {
107       TimerManager::instantiate().cancel(a_timer);
108     } catch(RuntimeException& ex) {
109       ex.trace();
110     }
111
112     a_timer = NULL;
113   }
114 }
115
116 ldap::Attribute* ldap::Response::createAttribute(const string& name)
117 throw(RuntimeException) {
118   Attribute* result = a_attributes.create();
119   result->setName(name);
120   return result;
121 }
122
123 string ldap::Response::asString() const
124 throw() {
125   string result("ldap::Response { ");
126   result += ClassCode::asString(a_classCode);
127   result += functions::asText(" | IdMessage: ", a_idMessage);
128   result += " | ";
129   result += a_resultCode.asString();
130   return result += " }";
131 }
132