1 // ANNA - Anna is Not 'N' Anymore
3 // (c) Copyright 2005-2014 Eduardo Ramos Testillano & Francisco Ruiz Rayo
5 // https://bitbucket.org/testillano/anna
7 // Redistribution and use in source and binary forms, with or without
8 // modification, are permitted provided that the following conditions
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
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.
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.
33 // Authors: eduardo.ramos.testillano@gmail.com
34 // cisco.tierra@gmail.com
37 #ifndef anna_core_oam_CounterScope_hpp
38 #define anna_core_oam_CounterScope_hpp
40 #include <anna/core/functions.hpp>
41 #include <anna/core/RuntimeException.hpp>
42 #include <anna/core/mt/Mutex.hpp>
44 #include <anna/core/oam/Counter.hpp>
63 Ámbito de contadores. Contiene un grupo logico de contadores.
65 class CounterScope : public Mutex {
68 * Accesor que permite modificar el valor de los contadores asociados a un ámbito de forma segura.
69 * \see anna::oam::CounterScope.
75 * \param counterScope Ámbito de contadores a bloquear para aplicar cambios.
76 * \param Texto que identifica el punto de bloqueo.
78 Safe(timex::Engine* ttcc, CounterScope& counterScope, const char* whatis);
86 * Incrementa el contador recibido como parámetro.
87 * \warning La invocación a este método deberá hacerse sobre una sección crítica que proteja
89 * \return El valor actual del contador.
91 Counter::type_t increment(const int counter, const Counter::type_t value) throw(RuntimeException) { return a_counterScope.increment(counter, value); }
94 * Establece el valor del contador recibido como parámetro.
95 * \warning La invocación a este método deberá hacerse sobre una sección crítica que proteja
97 * \return El valor actual del contador.
99 Counter::type_t assign(const int counter, const Counter::type_t value) throw(RuntimeException) { return a_counterScope.assign(counter, value); }
102 CounterScope& a_counterScope;
106 static const int MaxCounter = 1000; /**< Numero maximo de contador por cada ambito */
114 Devuelve el nombre logico del contador, que coincidira con el indicado a la hora
115 de crear el contador mediante el metodo CounterScope::create.
116 \return El nombre logico del contador.
118 const std::string& getName() const throw() { return a_name; }
121 Devuelve el identificador del ambito, que coincidira con el indicado a la hora
122 de crear el contador mediante el metodo CounterManager::create.
123 \return El identificador del ambito.
125 const int getId() const throw() { return a_id; }
128 Devuelve el gestor de contadores asociado a este ambito.
129 \return El gestor de contadores asociado a este ambito.
131 CounterManager& getCounterManager() throw() { return a_counterManager; }
134 Crea un nuevo contador.
135 \param counter Numero logico del contador a crear. Debera ser menor de MaxCounter.
136 \param name Nombre logico del ambito.
138 void create(const int counter, const char* name) throw(RuntimeException);
141 Devuelve una cadena con la informacion relevante de este objeto.
142 \return Una cadena con la informacion relevante de este objeto.
144 std::string asString() const throw();
147 * Devuelve la información relevante de esta instancia en un documento XML.
148 * \return la información relevante de esta instancia en un documento XML.
150 xml::Node* asXML(xml::Node* parent) const throw(RuntimeException);
154 * Incrementa el contador recibido como parámetro.
155 * \warning La invocación a este método deberá hacerse sobre una sección crítica que proteja
157 * \return El valor actual del contador.
159 Counter::type_t increment(const int counter, const Counter::type_t value) throw(RuntimeException);
162 * Establece el valor del contador recibido como parámetro.
163 * \warning La invocación a este método deberá hacerse sobre una sección crítica que proteja
165 * \return El valor actual del contador.
167 Counter::type_t assign(const int counter, const Counter::type_t value) throw(RuntimeException);
170 * Devuelve el valor actual del contador pasado como parámetro.
171 * \param counter Identificador del contedor cuyo valor queremos obtener.
173 Counter::type_t getValue(const int counter) const throw(RuntimeException);
176 * Devuelve la instancia del contador. Puede ser NULL.
177 * \return la instancia del contador.
179 const Counter* getCounter(const int counter) const throw(RuntimeException);
184 * Devuelve el valor actual acumulado del contador pasado como parámetro.
185 * \param counter Identificador del contedor cuyo valor acumulado queremos obtener.
187 Unsigned64 getAccValue(const int counter) const throw(RuntimeException);
190 * Resetea los valores acumulados totales de los contadores incluidos en el ámbito.
191 * \return Numero de contadores afectados que tenian un acumulado no nulo.
193 int resetAccValues() throw(RuntimeException);
196 CounterManager& a_counterManager;
198 const std::string a_name;
199 Counter* a_counters [MaxCounter];
201 CounterScope(CounterManager& counterManager, const int id, const char* name) :
202 Mutex(Mutex::Mode::Recursive),
203 a_counterManager(counterManager),
206 anna_memset(a_counters, 0, sizeof(a_counters));
210 friend class CounterManager;