#ifndef _MTRC_ #define _MTRC_ #include #include #include #include #include #include #include using namespace std; namespace marcelb { /** * A template class for measuring arbitrary statistics */ template class Metrics { mutable shared_mutex mtx; // Mutex for concurrent read, exclusive write map> counters; // Supports any K (e.g., string, int) public: /** * Constructor, without predefining the name of the counter */ Metrics(); /** * Constructor, with predefined counters from the passed object */ Metrics(map _counters); /** * Operator[] to access each measurement counter */ atomic& operator[](const K& key); /** * Operator++ to increment the measurement counter incrementally */ Metrics& operator++(int n); /** * Method to set the counter from the passed object */ void set(map _counters); /** * A method to reset the counter */ void clear(); /** * A method that returns a vector of strings of all counter names */ vector keys() const; /** * The method returns a map of all measurements */ map get_data() const; /** * The method returns a map of all measurements and resets the counters */ map get_data_and_clear(); }; } #endif