New feature to allow to register components with different names for same class:...
[anna.git] / example / diameter / launcher / MyDiameterEntity.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 example_diameter_launcher_MyDiameterEntity_hpp
10 #define example_diameter_launcher_MyDiameterEntity_hpp
11
12 // Project
13 #include <anna/diameter.comm/Entity.hpp>
14
15 // Process
16 #include "ProgrammedAnswers.hpp"
17
18 namespace anna {
19   namespace diameter {
20     namespace codec {
21       class Engine;
22     }
23   }
24 }
25
26 class MyDiameterEntity : public anna::diameter::comm::Entity {
27
28   void eventResponse(const anna::diameter::comm::Response&) throw(anna::RuntimeException);
29   void eventRequest(anna::diameter::comm::ClientSession *, const anna::DataBlock&) throw(anna::RuntimeException);
30   void eventUnknownResponse(anna::diameter::comm::ClientSession *, const anna::DataBlock&) throw(anna::RuntimeException);
31   void eventDPA(anna::diameter::comm::ClientSession *, const anna::DataBlock&) throw(anna::RuntimeException);
32
33   // Reimplementation
34   int readSocketId(const anna::diameter::comm::Message* message, int maxClientSessions) const throw();
35
36 public:
37
38   ProgrammedAnswers a_reactingAnswers;
39   void setProgrammedAnswersCodecEngine(anna::diameter::codec::Engine *codecEngine) throw() { a_reactingAnswers.setCodecEngine(codecEngine); }
40   ProgrammedAnswers *getReactingAnswers() throw() { return (ProgrammedAnswers *)&a_reactingAnswers; }
41 };
42
43 #endif