2015-12-31 06:39:56 +00:00
|
|
|
// Copyright (c) 2014-2016, The Monero Project
|
2015-05-31 11:40:18 +00:00
|
|
|
//
|
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// Redistribution and use in source and binary forms, with or without modification, are
|
|
|
|
// permitted provided that the following conditions are met:
|
|
|
|
//
|
|
|
|
// 1. Redistributions of source code must retain the above copyright notice, this list of
|
|
|
|
// conditions and the following disclaimer.
|
|
|
|
//
|
|
|
|
// 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
|
|
|
// of conditions and the following disclaimer in the documentation and/or other
|
|
|
|
// materials provided with the distribution.
|
|
|
|
//
|
|
|
|
// 3. Neither the name of the copyright holder nor the names of its contributors may be
|
|
|
|
// used to endorse or promote products derived from this software without specific
|
|
|
|
// prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
|
|
|
|
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
|
|
|
|
// THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
// STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
|
|
|
|
// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
2015-02-12 19:59:39 +00:00
|
|
|
#ifndef INCLUDED_p2p_data_logger_hpp
|
|
|
|
#define INCLUDED_p2p_data_logger_hpp
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <map>
|
|
|
|
#include <fstream>
|
|
|
|
#include <memory>
|
|
|
|
#include <thread>
|
|
|
|
#include <mutex>
|
|
|
|
#include <atomic>
|
|
|
|
|
|
|
|
namespace epee
|
|
|
|
{
|
|
|
|
namespace net_utils
|
|
|
|
{
|
2015-02-24 19:12:56 +00:00
|
|
|
|
|
|
|
enum class data_logger_state { state_before_init, state_during_init, state_ready_to_use, state_dying };
|
2015-02-12 19:59:39 +00:00
|
|
|
|
2015-02-24 19:12:56 +00:00
|
|
|
/***
|
|
|
|
@note: use it ONLY via singleton! It will be spawned then, and will auto destruct on program exit.
|
|
|
|
@note: do call ::kill_instance() before exiting main, at end of main. But before make sure no one else (e.g. no other threads) will try to use this/singleton
|
|
|
|
@note: it is not allowed to use this class from code "runnig before or after main", e.g. from ctors of static objects, because of static-creation-order races
|
|
|
|
@note: on creation (e.g. from singleton), it spawns a thread that saves all data in background
|
|
|
|
*/
|
2015-02-12 19:59:39 +00:00
|
|
|
class data_logger {
|
|
|
|
public:
|
2015-02-24 19:12:56 +00:00
|
|
|
static data_logger &get_instance(); ///< singleton
|
|
|
|
static void kill_instance(); ///< call this before ending main to allow more gracefull shutdown of the main singleton and it's background thread
|
|
|
|
~data_logger(); ///< destr, will be called when singleton is killed when global m_obj dies. will kill theads etc
|
|
|
|
|
|
|
|
private:
|
|
|
|
data_logger(); ///< constructor is private, use only via singleton get_instance
|
|
|
|
|
|
|
|
public:
|
|
|
|
data_logger(const data_logger &ob) = delete; // use only one per program
|
2015-02-12 19:59:39 +00:00
|
|
|
data_logger(data_logger &&ob) = delete;
|
2015-02-24 19:12:56 +00:00
|
|
|
data_logger & operator=(const data_logger&) = delete;
|
|
|
|
data_logger & operator=(data_logger&&) = delete;
|
|
|
|
|
|
|
|
void add_data(std::string filename, unsigned int data); ///< use this to append data here. Use it only the singleton. It locks itself.
|
|
|
|
|
|
|
|
static std::atomic<bool> m_save_graph; ///< global setting flag, should we save all the data or not (can disable logging graphs data)
|
2015-04-01 17:00:45 +00:00
|
|
|
static bool is_dying();
|
2015-02-24 19:12:56 +00:00
|
|
|
|
2015-02-12 19:59:39 +00:00
|
|
|
private:
|
2015-02-24 19:12:56 +00:00
|
|
|
static std::once_flag m_singleton; ///< to guarantee singleton creates the object exactly once
|
|
|
|
static data_logger_state m_state; ///< state of the singleton object
|
|
|
|
static std::atomic<bool> m_thread_maybe_running; ///< is the background thread (more or less) running, or is it fully finished
|
|
|
|
static std::unique_ptr<data_logger> m_obj; ///< the singleton object. Only use it via get_instance(). Can be killed by kill_instance()
|
|
|
|
|
|
|
|
/***
|
|
|
|
* one graph/file with data
|
|
|
|
*/
|
|
|
|
class fileData {
|
2015-02-12 19:59:39 +00:00
|
|
|
public:
|
2015-02-24 19:12:56 +00:00
|
|
|
fileData() = default;
|
2015-02-20 21:28:03 +00:00
|
|
|
fileData(const fileData &ob) = delete;
|
2015-02-12 19:59:39 +00:00
|
|
|
fileData(std::string pFile);
|
|
|
|
|
|
|
|
std::shared_ptr<std::ofstream> mFile;
|
2015-02-24 19:12:56 +00:00
|
|
|
long int mDataToSave = 0; ///< sum of the data (in current interval, will be counted from 0 on next interval)
|
2015-02-12 19:59:39 +00:00
|
|
|
static double get_current_time();
|
|
|
|
void save();
|
2015-02-20 21:28:03 +00:00
|
|
|
std::string mPath;
|
2015-02-24 19:12:56 +00:00
|
|
|
bool mLimitFile = false; ///< this holds a number (that is not additive) - e.g. the limit setting
|
2015-02-12 19:59:39 +00:00
|
|
|
};
|
|
|
|
|
2015-02-24 19:12:56 +00:00
|
|
|
std::map<std::string, fileData> mFilesMap;
|
|
|
|
std::mutex mMutex;
|
|
|
|
void saveToFile(); ///< write data to the target files. do not use this directly
|
2015-02-12 19:59:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#endif
|