/*! \file \brief Loggers for storing results of experiments \author Vaclav Smidl. ----------------------------------- BDM++ - C++ library for Bayesian Decision Making under Uncertainty Using IT++ for numerical operations ----------------------------------- */ #ifndef LGR_H #define LGR_H #include "bdmbase.h" #include "user_info.h" namespace bdm { using std::string; /*! * Logging into matrices in data format in memory, optionally persisted into a file. */ class memlog : public logger { protected: //! Maximum length of vectors stored in memory int maxlen; //! Currect record to be written int ind; //! Storage Array vectors; //! name of it file to save results string itfilename; public: //! convenience constructor memlog ( int maxlen0, string itf = "" ) : maxlen ( maxlen0 ), ind ( 0 ), vectors ( 0 ), itfilename ( itf ) {} //!Default constructor memlog() : maxlen ( 0 ), ind ( 0 ), vectors ( 0 ) {} //! Initialize storage void init(); void step() { if ( ind < maxlen ) ind++; else bdm_error ( "memlog::ind is too high;" ); } void logit ( int id, const vec &v ) { bdm_assert ( id < vectors.length(), "Logger was not initialized, run init()." ); if ( id >= 0 ) { vectors ( id ).set_row ( ind, v ); } } void logit ( int id, const double &d ) { bdm_assert_debug ( id < vectors.length(), "Logger was not initialized, run init()." ); bdm_assert_debug ( vectors ( id ).cols() == 1, "Vector expected" ); if ( id >= 0 ) { vectors ( id ) ( ind ) = d; } } //! Save values into an itfile named after \c fname. void itsave ( const char* fname ); //! void finalize() { if ( itfilename.length() > 0 ) itsave ( itfilename.c_str() ); }; /*! \brief UI for memlog TODO dat tam kam patri, a to celej blok \code logger = { class = "memlog"; filename = "file_name.it"; // resulting filename with results in it format maxlen = 100; // size of memory buffer } \endcode */ void from_setting ( const Setting &set ); // TODO dodelat void to_setting( Setting &set ) const; }; UIREGISTER ( memlog ); SHAREDPTR ( memlog ); /*! \brief Simple logger used for debugging All data records are written out to std from where they could be send to file */ class stdlog: public memlog{ public: //! default constructor stdlog():memlog(1){}; void init() { memlog::init(); for (int i=0; i scalarnames; public: /*!\brief Default constructor @param dirname0 name of the directory in which to store the results @param maxlen0 length of the memory buffers, when full the buffers will be dumped to HDD and returned to the beginning. */ dirfilelog ( string dirname0, int maxlen0 ) : memlog ( maxlen0 ), dirname ( dirname0 ), scalarnames ( 0 ) {} dirfilelog() {} //! Initialize storage void init(); void step(); void finalize(); /*! \brief Write memory storage to disk. @param Len length of buffer to be written, if 0 the file is truncated at 0. */ void write_buffers ( int Len ); /*! \brief UI for dirfilelog (Kst file format) \code logger = { class = "dirfilelog"; dirname = "directory_for_files"; // resulting files will be stored there maxlen = 100; // size of memory buffer, when full results are written to disk } \endcode */ void from_setting ( const Setting &set ); // TODO dodelat void to_setting( Setting &set ) const; }; UIREGISTER ( dirfilelog ); SHAREDPTR ( dirfilelog ); }; #endif // LGR_H