X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;f=source%2Fstatistics%2FAccumulator.cpp;h=75eb76c155e67ef5bb17b2bfa19e95eb181557d2;hb=5a6cba5fde2b2f538a7515f8293cc0a8d9589dfa;hp=efd319ac39704452f94d01fe552f78e73fa762ee;hpb=884501d2411bc4fdfafae65948262c959e068d7d;p=anna.git diff --git a/source/statistics/Accumulator.cpp b/source/statistics/Accumulator.cpp index efd319a..75eb76c 100644 --- a/source/statistics/Accumulator.cpp +++ b/source/statistics/Accumulator.cpp @@ -1,37 +1,9 @@ -// ANNA - Anna is Not 'N' Anymore -// -// (c) Copyright 2005-2014 Eduardo Ramos Testillano & Francisco Ruiz Rayo -// -// https://bitbucket.org/testillano/anna -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions -// are met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Authors: eduardo.ramos.testillano@gmail.com -// cisco.tierra@gmail.com +// ANNA - Anna is Not Nothingness Anymore // +// // +// (c) Copyright 2005-2015 Eduardo Ramos Testillano & Francisco Ruiz Rayo // +// // +// See project site at http://redmine.teslayout.com/projects/anna-suite // +// See accompanying file LICENSE or copy at http://www.teslayout.com/projects/public/anna.LICENSE // //------------------------------------------------------------------------------ @@ -60,40 +32,32 @@ using namespace anna::statistics; using namespace anna::time; -//****************************************************************************** -//------------------------------------------------------------------------------ -//--------------------------------------------------- Accumulator::Accumulator() -//------------------------------------------------------------------------------ - -// Default Constructor -Accumulator::Accumulator() { - //reset (); no sense -} - - -Accumulator::~Accumulator() { -// LOGMETHOD (TraceMethod tttm ("anna::statistics::Accumulator", "Destructor", ANNA_FILE_LOCATION)); -} - - - // Private functions: //------------------------------------------------------------------------------ //---------------------------------------------------- Accumulator::initialize() //------------------------------------------------------------------------------ -void Accumulator::initialize(const int & conceptId) throw() { +void Accumulator::initialize(const int & conceptId) { _concept_data_t conceptData; conceptData.reset(); a_concept_data_map[conceptId] = conceptData; } +//------------------------------------------------------------------------------ +//---------------------------------------------------- Accumulator::addConcept() +//------------------------------------------------------------------------------ +int Accumulator::addConcept(const std::string & description, const std::string & unit, const bool & integerNatureSample, const char *conceptNameFormat) { + std::string conceptName = anna::functions::asString(conceptNameFormat, description.c_str(), a_name.c_str()); + return anna::statistics::Engine::instantiate().addConcept(conceptName, unit, integerNatureSample); +} + + //------------------------------------------------------------------------------ //---------------------------------------------------- Accumulator::getConcept() //------------------------------------------------------------------------------ -_concept_data_t * Accumulator::getConcept(const int & conceptId) const throw(anna::RuntimeException) { +_concept_data_t *Accumulator::getConcept(const int & conceptId) const noexcept(false) { _concept_data_map_iter it = a_concept_data_map.find(conceptId); if(it == a_concept_data_map.end()) { // not found @@ -110,7 +74,6 @@ _concept_data_t * Accumulator::getConcept(const int & conceptId) const throw(ann Accumulator * nc_this = const_cast(this); nc_this->initialize(conceptId); - // (la otra posibilidad era hacer mutable el mapa e inicializar poniendo el contenido de 'initialize()') it = a_concept_data_map.find(conceptId); } @@ -121,7 +84,7 @@ _concept_data_t * Accumulator::getConcept(const int & conceptId) const throw(ann //------------------------------------------------------------------------------ //--------------------------------------------------- Accumulator::floatFormat() //------------------------------------------------------------------------------ -std::string Accumulator::floatFormat(const int & numberOfDecimals) const throw() { +std::string Accumulator::floatFormat(const int & numberOfDecimals) const { std::string result = "%."; result += anna::functions::asString(numberOfDecimals); result += "f"; @@ -129,13 +92,10 @@ std::string Accumulator::floatFormat(const int & numberOfDecimals) const throw() } - - - //------------------------------------------------------------------------------ //------------------------------------------ Accumulator::getStandardDeviation() //------------------------------------------------------------------------------ -double Accumulator::getStandardDeviation(const _concept_data_t * conceptData) const throw(anna::RuntimeException) { +double Accumulator::getStandardDeviation(const _concept_data_t * conceptData) const noexcept(false) { // SD = sqrt (1/N SUM (xi^2) - X^2) = sqrt (SquareSum / N - Average^2) if(conceptData->Size == 0) throw anna::RuntimeException("Divide by zero: sample size = 0 for Standard Deviation !!", ANNA_FILE_LOCATION); @@ -147,7 +107,7 @@ double Accumulator::getStandardDeviation(const _concept_data_t * conceptData) co //------------------------------------------------------------------------------ //------------------------------------ Accumulator::getBesselStandardDeviation() //------------------------------------------------------------------------------ -double Accumulator::getBesselStandardDeviation(const _concept_data_t * conceptData) const throw(anna::RuntimeException) { +double Accumulator::getBesselStandardDeviation(const _concept_data_t * conceptData) const noexcept(false) { // BSD = sqrt (1/(N-1) SUM (xi^2) - N/(N-1) X^2) = sqrt (SquareSum / (N-1) - N/(N-1) Average^2) if(conceptData->Size == 1) throw anna::RuntimeException("Divide by zero: sample size = 1 for bessel's Standard Deviation !!", ANNA_FILE_LOCATION); @@ -164,7 +124,7 @@ double Accumulator::getBesselStandardDeviation(const _concept_data_t * conceptDa //------------------------------------------------------------------------------ //------------------------------------------------------- Accumulator::process() //------------------------------------------------------------------------------ -void Accumulator::process(const int & conceptId, const double & value) throw(anna::RuntimeException) { +void Accumulator::process(const int & conceptId, const double & value) noexcept(false) { // LOGMETHOD (TraceMethod tttm ("anna::statistics::Accumulator", "process", ANNA_FILE_LOCATION)); Engine& engine = Engine::instantiate(); @@ -173,7 +133,7 @@ void Accumulator::process(const int & conceptId, const double & value) throw(ann _concept_data_t *ptr_auxConceptData = getConcept(conceptId); anna::Millisecond current = anna::Millisecond::getTime(); // Optional sample file dump: - Engine::instantiate().logSample(conceptId, current, value); + Engine::instantiate().logSample(conceptId, current, value); // Accumulator is friend of Engine // Statistics calculations if(ptr_auxConceptData->Size == ULLONG_MAX) // Statistics is better during processing until reset @@ -235,7 +195,7 @@ const Accumulator & Accumulator::operator = (const Accumulator & accumulator) { //------------------------------------------------------------------------------ //--------------------------------------------------------- Accumulator::reset() //------------------------------------------------------------------------------ -void Accumulator::reset(void) throw() { +void Accumulator::reset(void) { // LOGMETHOD (TraceMethod tttm ("anna::statistics::Accumulator", "reset", ANNA_FILE_LOCATION)); _concept_data_map_iter it; _concept_data_map_iter it_min(a_concept_data_map.begin()); @@ -252,10 +212,12 @@ void Accumulator::reset(void) throw() { //------------------------------------------------------------------------------ //--------------------------------------------------------- Accumulator::reset() //------------------------------------------------------------------------------ -void Accumulator::reset(const int & conceptId) throw(anna::RuntimeException) { +void Accumulator::reset(const int & conceptId) noexcept(false) { // LOGMETHOD (TraceMethod tttm ("anna::statistics::Accumulator", "reset", ANNA_FILE_LOCATION)); - _concept_data_t *ptr_auxConceptData = getConcept(conceptId); - //if (ptr_auxConceptData == NULL) return; // Not possible: getConcept initializes it if not found. + _concept_data_t *ptr_auxConceptData = getConcept(conceptId); // will initialize if didn't associated to this accumulator, + // exception if engine knows nothing about such concept id. + //if (ptr_auxConceptData == NULL) return; // Not possible: getConcept initializes it if not found or exception was launched + // previously if the engine don't know the concept id. ptr_auxConceptData->reset(); } @@ -265,7 +227,7 @@ void Accumulator::reset(const int & conceptId) throw(anna::RuntimeException) { //------------------------------------------------------------------------------ //---------------------------------------------------- Accumulator::sampleSize() //------------------------------------------------------------------------------ -unsigned long long int Accumulator::sampleSize(const int & conceptId) const throw(anna::RuntimeException) { +unsigned long long int Accumulator::sampleSize(const int & conceptId) const noexcept(false) { // LOGMETHOD (TraceMethod tttm ("anna::statistics::Accumulator", "sampleSize", ANNA_FILE_LOCATION)); _concept_data_t *ptr_auxConceptData = getConcept(conceptId); //if (ptr_auxConceptData == NULL) return 0; // Not possible: getConcept initializes it if not found. @@ -276,7 +238,7 @@ unsigned long long int Accumulator::sampleSize(const int & conceptId) const thro //------------------------------------------------------------------------------ //------------------------------------------------------ Accumulator::getValue() //------------------------------------------------------------------------------ -double Accumulator::getValue(const int & conceptId, const Operation::Type & operation) const throw(anna::RuntimeException) { +double Accumulator::getValue(const int & conceptId, const Operation::Type & operation) const noexcept(false) { // LOGMETHOD (TraceMethod tttm ("anna::statistics::Accumulator", "getValue", ANNA_FILE_LOCATION)); const _concept_data_t *ptr_auxConceptData = getConcept(conceptId); @@ -304,7 +266,7 @@ double Accumulator::getValue(const int & conceptId, const Operation::Type & oper //------------------------------------------------------------------------------ //------------------------------------------------------ Accumulator::asString() //------------------------------------------------------------------------------ -std::string Accumulator::asString(const int & numberOfDecimals) const throw() { +std::string Accumulator::asString(const int & numberOfDecimals) const { std::string trace; _concept_data_map_iter iter; _concept_data_map_iter iter_min(a_concept_data_map.begin()); @@ -317,6 +279,8 @@ std::string Accumulator::asString(const int & numberOfDecimals) const throw() { trace = "\n====================="; trace += "\nStatistic Information"; trace += "\n====================="; + trace += "\nAccumulator name: "; + trace += a_name; trace += "\nCurrent Time: "; trace += time_now.asString(); @@ -396,8 +360,9 @@ std::string Accumulator::asString(const int & numberOfDecimals) const throw() { //------------------------------------------------------------------------------ //--------------------------------------------------------- Accumulator::asXML() //------------------------------------------------------------------------------ -anna::xml::Node* Accumulator::asXML(anna::xml::Node* parent, const int & numberOfDecimals) const throw() { +anna::xml::Node* Accumulator::asXML(anna::xml::Node* parent, const int & numberOfDecimals) const { anna::xml::Node* result = parent->createChild("anna.statistics.Accumulator"); + result->createAttribute("Name", a_name); _concept_data_map_iter iter; _concept_data_map_iter iter_min(a_concept_data_map.begin()); _concept_data_map_iter iter_max(a_concept_data_map.end()); @@ -430,7 +395,7 @@ anna::xml::Node* Accumulator::asXML(anna::xml::Node* parent, const int & numberO concept->createAttribute("Id", conceptId); concept->createAttribute("Description", conceptDescription); concept->createAttribute("Unit", conceptUnitDescription); - anna::xml::Node* data = concept->createChild("Data"); + anna::xml::Node* data = concept->createChild("Sample"); if(ptrConceptData->Size != 0) { data->createAttribute("Size", anna::functions::asString((anna::U64)ptrConceptData->Size)); @@ -475,7 +440,7 @@ anna::xml::Node* Accumulator::asXML(anna::xml::Node* parent, const int & numberO data->createAttribute("ProcessingRate", cad_aux); } } else { - concept->createAttribute("Data", "Not enough data to get statistics"); + concept->createAttribute("Sample", "Not enough data to get statistics"); } }