First commit
[anna.git] / source / statistics / Meter.cpp
1 // ANNA - Anna is Not 'N' Anymore
2 //
3 // (c) Copyright 2005-2014 Eduardo Ramos Testillano & Francisco Ruiz Rayo
4 //
5 // https://bitbucket.org/testillano/anna
6 //
7 // Redistribution and use in source and binary forms, with or without
8 // modification, are permitted provided that the following conditions
9 // are met:
10 //
11 //     * Redistributions of source code must retain the above copyright
12 // notice, this list of conditions and the following disclaimer.
13 //     * Redistributions in binary form must reproduce the above
14 // copyright notice, this list of conditions and the following disclaimer
15 // in the documentation and/or other materials provided with the
16 // distribution.
17 //     * Neither the name of Google Inc. nor the names of its
18 // contributors may be used to endorse or promote products derived from
19 // this software without specific prior written permission.
20 //
21 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 //
33 // Authors: eduardo.ramos.testillano@gmail.com
34 //          cisco.tierra@gmail.com
35
36
37 //------------------------------------------------------------------------------
38 //--------------------------------------------------------------------- #include
39 //------------------------------------------------------------------------------
40
41
42 // Local
43 #include <anna/statistics/Meter.hpp>
44 #include <anna/statistics/Engine.hpp>
45 #include <anna/xml/xml.hpp>
46
47
48 using namespace anna::statistics;
49
50
51 //******************************************************************************
52 //------------------------------------------------------------------------------
53 //--------------------------------------------------------------- Meter::Meter()
54 //------------------------------------------------------------------------------
55
56 // Default Constructor
57 Meter::Meter(const std::string & description) {
58   Engine& statsEngine = Engine::instantiate();
59   a_single_accumulator_concept_id = statsEngine.addConcept(description, "ms", true);
60 }
61
62
63 Meter::~Meter() {
64 // LOGMETHOD (TraceMethod tttm ("anna::statistics::Meter", "Destructor", FILE_LOCATION));
65 }
66
67
68
69 //------------------------------------------------------------------------------
70 //------------------------------------------------------------- Meter::operator=
71 //------------------------------------------------------------------------------
72 const Meter & Meter::operator = (const Meter & meter) {
73 // LOGMETHOD (TraceMethod tttm ("anna::statistics::Meter", "operator=", FILE_LOCATION));
74   // Avoid self copy: i.e., Meter a,b; a=&b; a=b; b=a;
75   if(this == &meter) return (*this);
76
77   a_meter = meter.a_meter;
78   a_accumulator = meter.a_accumulator;
79   a_single_accumulator_concept_id = meter.a_single_accumulator_concept_id;
80   return (*this);
81 }
82
83
84
85 //------------------------------------------------------------------------------
86 //------------------------------------------------------------ Meter::asString()
87 //------------------------------------------------------------------------------
88 std::string Meter::asString(const int & numberOfDecimals) const throw() {
89   std::string trace;
90   trace =  "\n=====";
91   trace += "\nMeter";
92   trace += "\n=====\n\n";
93   trace += a_accumulator.asString(numberOfDecimals);
94   return (trace);
95 }
96
97
98 //------------------------------------------------------------------------------
99 //--------------------------------------------------------------- Meter::asXML()
100 //------------------------------------------------------------------------------
101 anna::xml::Node* Meter::asXML(anna::xml::Node* parent, const int & numberOfDecimals) const throw() {
102   anna::xml::Node* result = parent->createChild("anna.statistics.Meter");
103   return (a_accumulator.asXML(result, numberOfDecimals));
104 }