X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;f=source%2Fdiameter.comm%2FServer.cpp;h=9cbeb743af4aa6fe5df25df5ba51e9e0351fa886;hb=HEAD;hp=cfefec19cc04d2e3035fb535b2a637cfe1fadd2b;hpb=5bf5055ab79aaf464e2491cfbab173ba37ba3419;p=anna.git diff --git a/source/diameter.comm/Server.cpp b/source/diameter.comm/Server.cpp index cfefec1..9cbeb74 100644 --- a/source/diameter.comm/Server.cpp +++ b/source/diameter.comm/Server.cpp @@ -28,7 +28,7 @@ using namespace anna::diameter; using namespace anna::diameter::comm; -void Server::initialize() throw() { +void Server::initialize() { a_parent = NULL; a_engine = NULL; a_clientSessions.clear(); // importante (el recycler creo que no lo tocaba) @@ -36,39 +36,36 @@ void Server::initialize() throw() { a_maxClientSessions = 1; // mono client connection a_lastIncomingActivityTime = (anna::Millisecond)0; a_lastOutgoingActivityTime = (anna::Millisecond)0; - a_statisticsAccumulator = NULL; a_lastUsedResource = NULL; } -void Server::initializeStatisticResources() throw() { +void Server::initializeStatisticResources() { std::string accName = "remote server '"; accName += anna::functions::socketLiteralAsString(a_socket.first, a_socket.second); accName += "' from origin-realm '"; - accName += a_engine ? a_engine->getOriginRealm() : "unknown"; // it should be known (createServer) + accName += a_engine ? a_engine->getOriginRealmName() : "unknown"; // it should be known (createServer) accName += "' and origin-host '"; - accName += a_engine ? a_engine->getOriginHost() : "unknown"; // it should be known (createServer) + accName += a_engine ? a_engine->getOriginHostName() : "unknown"; // it should be known (createServer) accName += "'"; - a_statisticsAccumulator = anna::statistics::Engine::instantiate().createAccumulator(accName); - a_processing_time__StatisticConceptId = a_statisticsAccumulator->addConcept("Diameter requests processing time at", "ms", true/* integer values */); - a_received_message_size__StatisticConceptId = a_statisticsAccumulator->addConcept("Diameter message sizes received from", "bytes", true/* integer values */); + a_messageStatistics.initialize(accName); } -void Server::resetStatistics() throw() { - a_statisticsAccumulator->reset(); +void Server::resetStatistics() { + a_messageStatistics.getAccumulator()->reset(); } -void Server::updateProcessingTimeStatisticConcept(const double &value) throw() { - a_statisticsAccumulator->process(a_processing_time__StatisticConceptId, value); - LOGDEBUG(anna::Logger::debug(a_statisticsAccumulator->asString(), ANNA_FILE_LOCATION)); +void Server::updateProcessingTimeStatisticConcept(const double &value, const anna::diameter::CommandId &cid) { + a_messageStatistics.process(MessageStatistics::ConceptType::SentRequestProcessingTime, cid, value); + LOGDEBUG(anna::Logger::debug(a_messageStatistics.getAccumulator()->asString(), ANNA_FILE_LOCATION)); } -void Server::updateReceivedMessageSizeStatisticConcept(const double &value) throw() { - a_statisticsAccumulator->process(a_received_message_size__StatisticConceptId, value); - //LOGDEBUG(anna::Logger::debug(a_statisticsAccumulator->asString(), ANNA_FILE_LOCATION)); +void Server::updateReceivedMessageSizeStatisticConcept(const double &value, const anna::diameter::CommandId &cid) { + a_messageStatistics.process(MessageStatistics::ConceptType::ReceivedMessageSize, cid, value); + LOGDEBUG(anna::Logger::debug(a_messageStatistics.getAccumulator()->asString(), ANNA_FILE_LOCATION)); } -void Server::assertReady() throw(anna::RuntimeException) { +void Server::assertReady() noexcept(false) { if(a_clientSessions.size() != a_maxClientSessions) { std::string msg(asString()); msg += " | Non-configured server: you must add the remaining client-sessions before any operation (bind, send, etc.)"; @@ -78,7 +75,7 @@ void Server::assertReady() throw(anna::RuntimeException) { void Server::addClientSession(int socketId) -throw(anna::RuntimeException) { +noexcept(false) { if(a_clientSessions.size() == a_maxClientSessions) { LOGDEBUG ( @@ -97,7 +94,7 @@ throw(anna::RuntimeException) { a_clientSessions.push_back(s); } -int Server::getOTARequests() const throw() { +int Server::getOTARequests() const { int result = 0; for(std::vector::const_iterator it = begin(); it != end(); it++) @@ -107,7 +104,7 @@ int Server::getOTARequests() const throw() { } -bool Server::send(const Message* message, int socketId) throw(anna::RuntimeException) { +bool Server::send(const Message* message, int socketId) noexcept(false) { LOGMETHOD(anna::TraceMethod tttm("diameter::comm::Server", "send", ANNA_FILE_LOCATION)); assertReady(); bool fixedSocket = (socketId != -1); @@ -127,7 +124,7 @@ bool Server::send(const Message* message, int socketId) throw(anna::RuntimeExcep try { // Send: - const Response* response = a_lastUsedResource->send(message); + a_lastUsedResource->send(message); return true; // no matter if response is NULL (answers, i.e.) or not. } catch(anna::RuntimeException &ex) { LOGDEBUG( @@ -146,15 +143,14 @@ bool Server::send(const Message* message, int socketId) throw(anna::RuntimeExcep } -bool Server::broadcast(const Message* message) throw(anna::RuntimeException) { +bool Server::broadcast(const Message* message) noexcept(false) { LOGMETHOD(anna::TraceMethod tttm("diameter::comm::Server", "broadcast", ANNA_FILE_LOCATION)); assertReady(); - const Response* response; bool allok = true; for(std::vector::iterator it = begin(); it != end(); it++) { try { - response = (*it)->send(message); + (*it)->send(message); } catch(anna::RuntimeException &ex) { ex.trace(); allok = false; @@ -165,7 +161,7 @@ bool Server::broadcast(const Message* message) throw(anna::RuntimeException) { } -bool Server::bind() throw(anna::RuntimeException) { +bool Server::bind() noexcept(false) { LOGMETHOD(anna::TraceMethod tttm("diameter::comm::Server", "bind", ANNA_FILE_LOCATION)); assertReady(); a_deliveryIterator = begin(); @@ -183,7 +179,7 @@ bool Server::bind() throw(anna::RuntimeException) { return result; } -void Server::raiseAutoRecovery(bool autoRecovery) throw(anna::RuntimeException) { +void Server::raiseAutoRecovery(bool autoRecovery) noexcept(false) { LOGMETHOD(anna::TraceMethod tttm("diameter::comm::Server", "raiseAutoRecovery", ANNA_FILE_LOCATION)); assertReady(); a_deliveryIterator = begin(); @@ -192,7 +188,7 @@ void Server::raiseAutoRecovery(bool autoRecovery) throw(anna::RuntimeException) (*it)->setAutoRecovery(autoRecovery); } -void Server::setClassCodeTimeout(const ClassCode::_v v, const anna::Millisecond & millisecond) throw() { +void Server::setClassCodeTimeout(const ClassCode::_v v, const anna::Millisecond & millisecond) { LOGMETHOD(anna::TraceMethod tttm("diameter::comm::Server", "setClassCodeTimeout", ANNA_FILE_LOCATION)); assertReady(); @@ -207,7 +203,7 @@ void Server::setClassCodeTimeout(const ClassCode::_v v, const anna::Millisecond // Private close/destroy method -void Server::close(bool destroy) throw(anna::RuntimeException) { +void Server::close(bool destroy) noexcept(false) { LOGMETHOD(anna::TraceMethod tttm("diameter::comm::Server", "close", ANNA_FILE_LOCATION)); if(!a_engine) @@ -220,29 +216,29 @@ void Server::close(bool destroy) throw(anna::RuntimeException) { } -void Server::childIdle() const throw() { +void Server::childIdle() const { // Check father entity idleness: if(idle()) a_parent->childIdle(); } -void Server::hide() throw() { +void Server::hide() { for(std::vector::iterator it = begin(); it != end(); it++) (*it)->hide(); } -void Server::show() throw() { +void Server::show() { for(std::vector::iterator it = begin(); it != end(); it++) (*it)->show(); } -bool Server::hidden() const throw() { +bool Server::hidden() const { for(std::vector::const_iterator it = begin(); it != end(); it++) if((*it)->shown()) return false; return true; } -bool Server::shown() const throw() { +bool Server::shown() const { for(std::vector::const_iterator it = begin(); it != end(); it++) if((*it)->hidden()) return false; @@ -251,7 +247,7 @@ bool Server::shown() const throw() { -std::string Server::socketAsString() const throw() { +std::string Server::socketAsString() const { std::string result = getAddress(); result += ":"; result += anna::functions::asString(getPort()); @@ -259,7 +255,7 @@ std::string Server::socketAsString() const throw() { } -std::string Server::asString() const throw() { +std::string Server::asString() const { std::string result("diameter::comm::Server { "); result += " | Parent Entity: "; result += a_parent->getDescription(); @@ -281,7 +277,7 @@ std::string Server::asString() const throw() { result += " | Hidden: "; result += (hidden() ? "yes" : "no"); result += "\n"; - result += a_statisticsAccumulator->asString(); + result += a_messageStatistics.getAccumulator()->asString(); for(std::vector::const_iterator it = begin(); it != end(); it++) { result += "\n"; @@ -291,7 +287,7 @@ std::string Server::asString() const throw() { return result; } -anna::xml::Node* Server::asXML(anna::xml::Node* parent) const throw() { +anna::xml::Node* Server::asXML(anna::xml::Node* parent) const { anna::xml::Node* result = parent->createChild("diameter.Server"); result->createAttribute("ParentEntity", a_parent->getDescription()); result->createAttribute("ServerAddress", a_socket.first); @@ -305,7 +301,7 @@ anna::xml::Node* Server::asXML(anna::xml::Node* parent) const throw() { result->createAttribute("Hidden", hidden() ? "yes" : "no"); // Statistics anna::xml::Node* stats = result->createChild("Statistics"); - a_statisticsAccumulator->asXML(stats); + a_messageStatistics.getAccumulator()->asXML(stats); anna::xml::Node* clientSessions = result->createChild("Server.ClientSessions"); for(std::vector::const_iterator it = begin(); it != end(); it++) @@ -315,38 +311,38 @@ anna::xml::Node* Server::asXML(anna::xml::Node* parent) const throw() { } -void Server::eventPeerShutdown(const ClientSession *clientSession) throw() { +void Server::eventPeerShutdown(const ClientSession *clientSession) { // Inform father entity: a_parent->eventPeerShutdown(clientSession); } -void Server::eventRequestRetransmission(const ClientSession* clientSession, Message *request) throw() { +void Server::eventRequestRetransmission(const ClientSession* clientSession, Message *request) { // Inform father entity: a_parent->eventRequestRetransmission(clientSession, request); } -void Server::eventResponse(const Response& response) throw(anna::RuntimeException) { +void Server::eventResponse(const Response& response, const anna::diameter::comm::OriginHost *myNode) noexcept(false) { // Inform father entity: - a_parent->eventResponse(response); + a_parent->eventResponse(response, myNode); } -void Server::eventRequest(ClientSession *clientSession, const anna::DataBlock & request) throw(anna::RuntimeException) { +void Server::eventRequest(ClientSession *clientSession, const anna::DataBlock & request, const anna::diameter::comm::OriginHost *myNode) noexcept(false) { // Inform father entity: - a_parent->eventRequest(clientSession, request); + a_parent->eventRequest(clientSession, request, myNode); } -void Server::eventUnknownResponse(ClientSession *clientSession, const anna::DataBlock & response) throw(anna::RuntimeException) { +void Server::eventUnknownResponse(ClientSession *clientSession, const anna::DataBlock & response, const anna::diameter::comm::OriginHost *myNode) noexcept(false) { // Inform father entity: - a_parent->eventUnknownResponse(clientSession, response); + a_parent->eventUnknownResponse(clientSession, response, myNode); } -void Server::eventDPA(ClientSession *clientSession, const anna::DataBlock & response) throw(anna::RuntimeException) { +void Server::eventDPA(ClientSession *clientSession, const anna::DataBlock & response, const anna::diameter::comm::OriginHost *myNode) noexcept(false) { // Inform father entity: - a_parent->eventDPA(clientSession, response); + a_parent->eventDPA(clientSession, response, myNode); } -void Server::availabilityLost() throw() { +void Server::availabilityLost() { a_available = false; std::string socket = anna::functions::socketLiteralAsString(a_socket.first, a_socket.second); LOGDEBUG( @@ -359,12 +355,11 @@ void Server::availabilityLost() throw() { OamModule &oamModule = OamModule::instantiate(); oamModule.activateAlarm(OamModule::Alarm::c_LostAvailabilityOverServerDefinedAs__s__, socket.c_str()); oamModule.count(OamModule::Counter::LostAvailabilityOverServer); - a_engine->availabilityLost(this); a_parent->refreshAvailability(); } -void Server::availabilityRecovered() throw() { +void Server::availabilityRecovered() { a_available = true; std::string socket = anna::functions::socketLiteralAsString(a_socket.first, a_socket.second); LOGDEBUG( @@ -377,13 +372,12 @@ void Server::availabilityRecovered() throw() { OamModule &oamModule = OamModule::instantiate(); oamModule.cancelAlarm(OamModule::Alarm::c_LostAvailabilityOverServerDefinedAs__s__, socket.c_str()); oamModule.count(OamModule::Counter::RecoveredAvailabilityOverServer); - a_engine->availabilityRecovered(this); a_parent->refreshAvailability(); } -bool Server::refreshAvailability() throw() { +bool Server::refreshAvailability() { // Here available if(a_available) { // check not-bound state for all client-sessions: bool isolate = true; @@ -415,7 +409,7 @@ bool Server::refreshAvailability() throw() { //------------------------------------------------------------------------------ //---------------------------------------- Server::updateIncomingActivityTime() //------------------------------------------------------------------------------ -void Server::updateIncomingActivityTime() throw() { +void Server::updateIncomingActivityTime() { a_lastIncomingActivityTime = anna::functions::millisecond(); LOGDEBUG ( @@ -430,7 +424,7 @@ void Server::updateIncomingActivityTime() throw() { //------------------------------------------------------------------------------ //---------------------------------------- Server::updateOutgoingActivityTime() //------------------------------------------------------------------------------ -void Server::updateOutgoingActivityTime(void) throw() { +void Server::updateOutgoingActivityTime(void) { a_lastOutgoingActivityTime = anna::functions::millisecond(); LOGDEBUG (