New feature to allow to register components with different names for same class:...
[anna.git] / example / diameter / launcher / Launcher.hpp
index 9a61627..25f20c8 100644 (file)
@@ -15,6 +15,7 @@
 #include <fstream>
 
 // Project
+#include <anna/core/core.hpp>
 #include <anna/comm/comm.hpp>
 #include <anna/diameter.comm/Entity.hpp>
 #include <anna/time/Date.hpp>
@@ -41,6 +42,7 @@ class Launcher : public anna::comm::Application {
   MyCommunicator *a_communicator;
   MyDiameterEngine *a_myDiameterEngine;
   MyDiameterEntity *a_entity;
+  anna::diameter::codec::Engine *a_codecEngine;
   std::string a_logFile, a_burstLogFile;
   std::ofstream a_burstLogStream;
   bool a_splitLog, a_detailedLog, a_dumpLog;
@@ -61,6 +63,10 @@ class Launcher : public anna::comm::Application {
   int a_otaRequest;
   int a_burstPopCounter;
 
+  // comm Messages factory:
+  anna::Recycler<anna::diameter::comm::Message> a_commMessages;
+  anna::Recycler<anna::diameter::codec::Message> a_codecMessages;
+
   anna::comm::ServerSocket* a_httpServerSocket; // HTTP
   MyLocalServer* a_diameterLocalServer; // DIAMETER
   void checkTimeMeasure(const char * commandLineParameter, bool optional = true) throw(anna::RuntimeException);
@@ -70,6 +76,7 @@ class Launcher : public anna::comm::Application {
 public:
   Launcher();
 
+  anna::diameter::codec::Engine *getCodecEngine() const throw() { return a_codecEngine; }
   MyCommunicator *getCommunicator() throw() { return a_communicator; }
   MyDiameterEngine* getMyDiameterEngine() const throw() { return (a_myDiameterEngine); }
   void baseProtocolSetupAsClient(void) throw(anna::RuntimeException);
@@ -90,6 +97,12 @@ public:
   void signalUSR2() throw(anna::RuntimeException);
   std::string help() const throw();
 
+  // Messages factory:
+  anna::diameter::comm::Message *createCommMessage() throw(anna::RuntimeException);
+  void releaseCommMessage(anna::diameter::comm::Message*) throw();
+  anna::diameter::codec::Message *createCodecMessage() throw(anna::RuntimeException);
+  void releaseCodecMessage(anna::diameter::codec::Message*) throw();
+
   // helpers
   bool getDataBlockFromHexFile(const std::string &pathfile, anna::DataBlock &db) const throw();