X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;f=include%2Fanna%2Fstatistics%2FEngine.hpp;h=1852e1a73bdc332996b55dbfa63febb20870cf44;hb=eb446c670d53aa275d78b366ef1faf2b32ca964e;hp=bb376f872a798b4929416342998e7eac8195e035;hpb=93366a0bda79e6fd6e7dad6316bfcf8cc82f5731;p=anna.git diff --git a/include/anna/statistics/Engine.hpp b/include/anna/statistics/Engine.hpp index bb376f8..1852e1a 100644 --- a/include/anna/statistics/Engine.hpp +++ b/include/anna/statistics/Engine.hpp @@ -11,6 +11,8 @@ #include #include +#include +#include // Standard #include @@ -32,6 +34,9 @@ namespace anna { namespace statistics { +class Accumulator; + + typedef struct { std::string SampleFile; // Sample file to optional writtings @@ -45,6 +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::map _accumulator_map_t; +typedef std::map ::const_iterator _accumulator_map_it; +typedef std::map ::iterator _accumulator_map_nc_it; /** @@ -57,6 +65,9 @@ class Engine : public anna::Singleton { public: + /** Destructor */ + ~Engine(); + // Sets /** @@ -104,11 +115,12 @@ public: /** * Disable sample log for statistics processings * - * @param id Concept identification. + * @param id Concept identification. If -1 value is provided, all concepts will be deactivated. * * @return @em false if not concept is registered with provided id + * @warning Many systems add concepts dynamically. This method only affects to current concepts registered at statistics engine. */ - bool disableSampleLog(const int & id) throw(); + bool disableSampleLog(const int & id = -1) throw(); // Gets @@ -131,6 +143,26 @@ public: bool enabled(void) const throw() { return (a_enabled); } + /** + * 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 * @@ -154,8 +186,10 @@ private: Engine(); // private constructor _concept_identification_map_t a_concept_identification_map; + _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 bool logSample(const int & conceptId, const anna::Millisecond & unixTimestamp, const double & value) const throw();