X-Git-Url: https://git.teslayout.com/public/public/public/?p=anna.git;a=blobdiff_plain;f=include%2Fanna%2Fstatistics%2FEngine.hpp;h=5300cfa3e2e3e780fbf5b6915c2f59f04d8a20ea;hp=61a9fe61d0e65ae38f30fd4102338b74c6fbbda4;hb=028006fc5ee34967fcfffff24a2b1c8b410c26c3;hpb=3b71d6454d211ec50c2f3e04b04c607c382f2f29 diff --git a/include/anna/statistics/Engine.hpp b/include/anna/statistics/Engine.hpp index 61a9fe6..5300cfa 100644 --- a/include/anna/statistics/Engine.hpp +++ b/include/anna/statistics/Engine.hpp @@ -11,11 +11,11 @@ #include #include +#include #include // Standard #include -#include #include // Local @@ -34,6 +34,9 @@ namespace anna { namespace statistics { +class Accumulator; + + typedef struct { std::string SampleFile; // Sample file to optional writtings @@ -47,8 +50,9 @@ typedef std::map _concept_identification_map_t; typedef std::map ::const_iterator _concept_identification_map_iter; typedef std::map ::iterator _concept_identification_map_nc_iter; -typedef std::vector _accumulator_vector_t; -typedef std::vector ::const_iterator _accumulator_vector_it; +typedef std::map _accumulator_map_t; +typedef std::map ::const_iterator _accumulator_map_it; +typedef std::map ::iterator _accumulator_map_nc_it; /** @@ -137,16 +141,26 @@ public: */ bool enabled(void) const throw() { return (a_enabled); } + /** - * There is an advantage creating Accumulators over the engine: the #asXML method will show all the controlled information - * easily. Anyway, you could allocate this class objects without using this. Then, this is a helper to create accumulators - * and centralize their reports. - * - * @param name Accumulator name - * - * @return New allocated accumulator, to be used by the client - */ - Accumulator *createAccumulator(const std::string &name) throw(); + * Creates a statistic accumulator + * + * @param name Accumulator name + * + * \return The accumulator created or exception when already exists for the provided name. + */ + Accumulator *createAccumulator(const std::string &name) throw(anna::RuntimeException); + + /** + * Returns accumulator instance identified by name. + * + * \param name Accumulator name + * + * \return The accumulator instance identified by name provided, NULL if not found + */ + Accumulator* getAccumulator(const std::string &name) throw(); + + /** * Class string representation @@ -171,7 +185,7 @@ private: Engine(); // private constructor _concept_identification_map_t a_concept_identification_map; - _accumulator_vector_t a_accumulators; // you could create accumulators regardless the engine, but this is easier and asXML will show all the information easily + _accumulator_map_t a_accumulators; // you could create accumulators regardless the engine, but this is easier and asXML will show all the information easily bool a_enabled; int a_sequence_concept_id; anna::Mutex a_mutex; // for logSample