1 // ANNA - Anna is Not Nothingness Anymore //
3 // (c) Copyright 2005-2015 Eduardo Ramos Testillano & Francisco Ruiz Rayo //
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 //
9 #ifndef example_diameter_launcher_Launcher_hpp
10 #define example_diameter_launcher_Launcher_hpp
18 #include <anna/core/core.hpp>
19 #include <anna/comm/comm.hpp>
20 #include <anna/time/Date.hpp>
23 #include "MyCommunicator.hpp"
24 #include "MyCounterRecorder.hpp"
38 // RealmNode resources
40 typedef std::map<std::string, RealmNode*> realm_nodes_t;
41 typedef std::map<std::string, RealmNode*>::const_iterator realm_nodes_it;
42 typedef std::map<std::string, RealmNode*>::iterator realm_nodes_nc_it;
45 class Launcher : public anna::comm::Application {
48 anna::time::Date a_start_time;
51 MyCommunicator *a_communicator;
52 anna::diameter::codec::Engine *a_codecEngine;
53 anna::timex::Engine* a_timeEngine;
54 MyCounterRecorder *a_counterRecorder;
55 MyCounterRecorderClock *a_counterRecorderClock;
58 realm_nodes_t a_nodes;
59 RealmNode *a_workingNode;
62 anna::comm::ServerSocket* a_httpServerSocket; // HTTP
65 void servicesFromXML(const anna::xml::Node* servicesNode, bool eventOperation) throw(anna::RuntimeException);
66 anna::Millisecond checkTimeMeasure(const std::string ¶meter, const std::string &value) throw(anna::RuntimeException);
67 void initialize() throw(anna::RuntimeException); // HTTP
68 void run() throw(anna::RuntimeException);
74 void loadServices(const std::string & xmlPathFile, bool eventOperation = false) throw(anna::RuntimeException);
75 void startServices() throw(anna::RuntimeException);
77 anna::diameter::codec::Engine *getCodecEngine() const throw() { return a_codecEngine; }
78 RealmNode *getWorkingNode() const throw(anna::RuntimeException); // management operations working node
79 bool setWorkingNode(const std::string &name) throw(); // we could update ignoreFlagsOnValidation/integrationAndDebugging over the global codec engine
80 // but finally, that configuration issues will be global to the process.
82 RealmNode *getRealmNode(const std::string &realmName) const throw();
85 MyCommunicator *getCommunicator() throw() { return a_communicator; }
86 void eventOperation(const std::string &, std::string &) throw(anna::RuntimeException);
87 void forceCountersRecord() throw(anna::RuntimeException) { if (a_counterRecorderClock) a_counterRecorderClock->tick(); }
89 anna::xml::Node* asXML(anna::xml::Node* parent) const throw();
90 void resetStatistics() throw();
91 void resetCounters() throw();
92 void signalUSR2() throw(anna::RuntimeException);
93 std::string help() const throw();
96 bool getDataBlockFromHexFile(const std::string &pathfile, anna::DataBlock &db) const throw();