Changed LICENSE. Now referenced to web site and file on project root directory
[anna.git] / include / anna / diameter.comm / ClientSession.hpp
1 // ANNA - Anna is Not Nothingness Anymore                                                         //
2 //                                                                                                //
3 // (c) Copyright 2005-2015 Eduardo Ramos Testillano & Francisco Ruiz Rayo                         //
4 //                                                                                                //
5 // See project site at http://redmine.teslayout.com/projects/anna-suite                           //
6 // See accompanying file LICENSE or copy at http://www.teslayout.com/projects/public/anna.LICENSE //
7
8
9 #ifndef anna_diameter_comm_ClientSession_hpp
10 #define anna_diameter_comm_ClientSession_hpp
11
12
13 // STL
14 #include <string>
15
16 #include <anna/core/util/SortedVector.hpp>
17 #include <anna/core/util/Millisecond.hpp>
18 #include <anna/core/RuntimeException.hpp>
19
20 #include <anna/diameter.comm/Session.hpp>
21 #include <anna/diameter/defines.hpp>
22 #include <anna/diameter.comm/Message.hpp>
23 #include <anna/diameter.comm/ClientSessionReceiver.hpp>
24 #include <anna/diameter.comm/ReceiverFactoryImpl.hpp>
25
26
27 namespace anna {
28 class DataBlock;
29 namespace timex {
30 class Engine;
31 }
32
33 namespace comm {
34 class Server;
35 }
36 }
37
38
39 namespace anna {
40
41 namespace diameter {
42
43 namespace comm {
44
45 class Server;
46
47
48 /**
49    Modela la conexion realizada contra un servidor diameter.
50 */
51 class ClientSession : public Session {
52
53   // Helper:
54   static std::string getKey(const std::string & addr, int port, int socketId) throw() {
55     return (anna::functions::asString("%s:%d|%d", addr.c_str(), port, socketId));
56   }
57
58   bool a_hidden; // hide resource for restricted delivery over servers/entities
59
60
61 public:
62
63   ClientSession();
64
65
66   /* virtual */void initialize() throw();
67
68   /**
69    * Default watchdog period for the diameter client-session health.
70    */
71   static const anna::Millisecond DefaultWatchdogPeriod;
72
73   /**
74      Client session key: <address ip or hostname>:<remote port>|<socket id: 0..N-1>
75   */
76   std::string getKey() const throw() { return ClientSession::getKey(getAddress(), getPort(), getSocketId()); }
77
78   /**
79      Diameter server address (IPv4 or hostname)
80      \return Diameter server address
81   */
82   /* virtual */const std::string& getAddress() const throw();
83
84   /**
85      Diameter server listen port
86      \return Diameter server listen port
87   */
88   /* virtual */int getPort() const throw();
89
90   /**
91      Diameter parent server.
92      \return Diameter parent server.
93   */
94   const Server *getParent() const throw() { return a_parent; }
95
96   /**
97      Diameter server created at diameter::comm::Engine::createClientSession.
98      \return Diameter server
99   */
100   anna::comm::Server * getServer() throw() { return a_server; }
101
102   /**
103      Disables server resource (avoid the use of the server)
104   */
105   void disable() throw() { a_server->disable(); }
106
107   /**
108      Sets auto recovery indicator. When a connection is lost, by default it will be recovered automatically.
109      \param autoRecovery Auto recovery indicator. TRue by default.
110   */
111   void setAutoRecovery(bool autoRecovery = true) throw() { a_autoRecovery = autoRecovery; a_server->setAutoRecovery(autoRecovery); }
112
113   /**
114      Gets the auto recovery indicator for the client connection (client-session).
115
116      @return Auto recovery indicator.
117   */
118   bool getAutoRecovery() const throw() { return a_autoRecovery; }
119
120   /**
121      Sets the milliseconds wait to achieve a client connection to server by mean connect primitive.
122      This allow to perform specific configurations (some servers could be slower than others).
123      Changes will be taken into account on the next connect operation.
124
125      \param maxConnectionDelay Milliseconds wait to get connection
126   */
127   void setMaxConnectionDelay(const anna::Millisecond & maxConnectionDelay) throw() { a_server->setMaxConnectionDelay(maxConnectionDelay); }
128
129   /**
130      Gets the milliseconds wait to achieve a client connection to server by mean connect primitive.
131
132      \return Milliseconds wait to get connection
133   */
134   const anna::Millisecond & getMaxConnectionDelay() throw() { return a_server->getMaxConnectionDelay(); }
135
136   /**
137    * Sets CER and DWR diameter messages to be used over created client-sessions
138    *
139    * @param cer Capabilities-Exchange-Request message (encoded) for the client-sessions bind.
140    * @param dwr Device-Watchdog-Request message (encoded) for the client-sessions keep-alive.
141    */
142   void setCERandDWR(const anna::DataBlock & cer, const anna::DataBlock & dwr) throw(anna::RuntimeException);
143
144   // Internal
145   void bind() throw(anna::RuntimeException);
146
147   /* virtual */const Response* send(const Message* message) throw(anna::RuntimeException);
148   /* virtual */bool unbind(bool forceDisconnect /* se usa en timer, para el actionTimer del tipo SessionUnbind, etc. */ = false) throw(anna::RuntimeException); // returns true if done at call time (no pendings or ignore pendings, except Disconnecting state by mean DPR/DPA)
149
150   /**
151      Deny resource for delivery restriction
152   */
153   void hide() throw() { a_hidden = true; }
154
155   /**
156      Allow resource for delivery permission
157   */
158   void show() throw() { a_hidden = false; }
159
160   /**
161      Returns true when client session resource is hidden for application messages delivery
162   */
163   bool hidden() const throw() { return a_hidden; }
164
165   /**
166      Returns true when client session resource is shown for application messages delivery
167   */
168   bool shown() const throw() { return !a_hidden; }
169
170
171   /**
172      Class string representation
173      \return String with relevant information for this instance.
174   */
175   /* virtual */std::string asString() const throw();
176
177
178   /**
179      Class xml representation
180      \param parent Parent XML node on which hold this instance information.
181      \return XML document with relevant information for this instance.
182   */
183   /* virtual */anna::xml::Node* asXML(anna::xml::Node* parent) const throw();
184
185
186 private:
187
188   // Receiver factory
189   ReceiverFactoryImpl<ClientSession, ClientSessionReceiver> a_receiverFactory;
190
191   // Parent information
192   Server *a_parent;
193
194   // ClientSession messages:
195   Message a_cer;
196   Message a_dwr;
197
198   // Connectivity
199   bool a_autoRecovery;
200
201   // Server
202   anna::comm::Server *a_server;
203
204   // Watchdog control:
205   struct WatchdogState {
206     enum _v {
207       TimerStopped,           // Until CEA (bound state), timer is stopped
208       WaitingTimerExpiration, // DWA has been received and we wait for next expiration to send DWR
209       WaitingDWA              // DWR has been sent, but DWA hasn't been received yet
210     };
211   };
212   WatchdogState::_v a_watchdogState;
213   void setWatchdogState(WatchdogState::_v wState) throw();
214
215   /* virtual */void expire(anna::timex::Engine *timeController) throw(anna::RuntimeException);
216   void setWatchdogPeriod(const anna::Millisecond & watchdogPeriod) throw();
217
218   /*virtual*/ void timerStopped() throw();
219   /*virtual*/ void timerStarted() throw();
220
221
222   // Activity:
223   /* virtual */void updateIncomingActivityTime() throw();
224   /* virtual */void updateOutgoingActivityTime() throw();
225   void countSendings(const diameter::CommandId & cid, bool ok) throw();
226
227   // Handlers:
228   /**
229      Handler about event break connection from diameter server over this client-session.
230
231      When notified, ANNA.diameter.comm generates an diameter::comm::ClientSession::eventResponse for every request with pending answers.
232   */
233   void eventPeerShutdown() throw();
234
235   /**
236      Handler for diameter server (client-session) responses
237
238      \param response Answer container object for corresponding diameter request
239   */
240   void eventResponse(const Response& response) throw(anna::RuntimeException);
241
242   /**
243      Handler for diameter server (client-session) requests
244
245      \param request Request data block object for corresponding diameter reception
246   */
247   void eventRequest(const anna::DataBlock& request) throw(anna::RuntimeException);
248   //void eventRequest(const Message& request) throw(anna::RuntimeException);
249
250   /**
251      Handler for diameter server (client-session) responses out of context
252
253      \param response Answer data block object without context match
254   */
255   void eventUnknownResponse(const anna::DataBlock& response) throw(anna::RuntimeException);
256
257   /**
258      Handler for diameter server (client-session) Disconnect-Peer-Answer messages
259
260      \param response Answer data block object without context match
261   */
262   void eventDPA(const anna::DataBlock& response) throw(anna::RuntimeException);
263
264
265
266   /**
267   * Handlers for receptions
268   */
269   /* virtual */void receive(const anna::comm::Message& message) throw(anna::RuntimeException);
270   /* virtual */void finalize() throw();
271   void recover() throw();
272
273   /* virtual */void expireResponse(Response*) throw();
274   /* virtual */void setState(State::_v state) throw();
275
276   void sendDWAToServer(const anna::DataBlock& dwrDB) throw(anna::RuntimeException); // non-usual behaviour, but DWR could be received from server
277
278   // helpers
279   static const char* asText(const WatchdogState::_v) throw();
280
281
282   friend class Server;
283   friend class Engine;
284   friend class ClientSessionReceiver;
285 };
286
287 }
288 }
289 }
290
291 #endif
292