source: ThirdParty/CodePatterns/src/Observer/ObserverLog.cpp@ 41e8e2

Action_Thermostats Add_AtomRandomPerturbation Add_RotateAroundBondAction Add_SelectAtomByNameAction Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_StructOpt_integration_tests Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_ChronosMutex Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion GeometryObjects Gui_displays_atomic_force_velocity IndependentFragmentGrids_IntegrationTest JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks RotateToPrincipalAxisSystem_UndoRedo StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg ThirdParty_MPQC_rebuilt_buildsystem TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps Ubuntu_1604_changes stable
Last change on this file since 41e8e2 was 41e8e2, checked in by Frederik Heber <heber@…>, 8 years ago

Merge commit '084729c5923f0123e695fbe2548b393288c1f13d' as 'ThirdParty/CodePatterns'

  • Property mode set to 100644
File size: 3.3 KB
Line 
1/*
2 * Project: MoleCuilder
3 * Description: creates and alters molecular systems
4 * Copyright (C) 2010 University of Bonn. All rights reserved.
5 * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
6 */
7
8/*
9 * ObserverLog.cpp
10 *
11 * Created on: Dec 1, 2011
12 * Author: heber
13 */
14
15// include config.h
16#ifdef HAVE_CONFIG_H
17#include <config.h>
18#endif
19
20#include "CodePatterns/MemDebug.hpp"
21
22#include <fstream>
23#include <iostream>
24#include <sstream>
25
26#include <boost/thread/locks.hpp>
27
28#include "CodePatterns/Observer/ObserverLog.hpp"
29#include "CodePatterns/Singleton_impl.hpp"
30
31std::ostream* ObserverLog::nullstream = NULL;
32std::ostream* ObserverLog::outstream = NULL;
33
34ObserverLog::ObserverLog() :
35 count(0)
36{
37 boost::lock_guard<boost::recursive_mutex> guard(mutex);
38 nullstream = new std::ofstream("/dev/null");
39 outstream = nullstream;
40}
41
42ObserverLog::~ObserverLog()
43{
44 boost::lock_guard<boost::recursive_mutex> guard(mutex);
45 outstream = NULL;
46 delete nullstream;
47}
48
49/** Constructor of class Log.
50 *
51 * Log is just a tiny helper to bring the log message to screen and to the
52 * ObserverLog's log.
53 *
54 * @param _callback_ref
55 */
56ObserverLog::Log::Log(ObserverLog *_callback_ref) :
57 callback_ref(_callback_ref)
58{}
59
60/** Destructor of class Log.
61 *
62 * Prints to both ObserverLog::log and to ObserverLog::outstream.
63 *
64 */
65ObserverLog::Log::~Log()
66{
67 boost::lock_guard<boost::recursive_mutex> guard(callback_ref->mutex);
68 callback_ref->log << log.str() << std::endl;
69 *callback_ref->outstream << log.str() << std::endl;
70
71 callback_ref = NULL;
72}
73
74void ObserverLog::disableLogging()
75{
76 boost::lock_guard<boost::recursive_mutex> guard(mutex);
77 outstream = nullstream;
78}
79
80void ObserverLog::enableLogging()
81{
82 boost::lock_guard<boost::recursive_mutex> guard(mutex);
83 outstream = &std::cout;
84}
85
86std::string ObserverLog::getLog() { return log.str(); }
87
88std::string ObserverLog::getName(void* obj){
89 boost::lock_guard<boost::recursive_mutex> guard(mutex);
90 return names[obj];
91}
92
93bool ObserverLog::isObservable(void* obj){
94 boost::lock_guard<boost::recursive_mutex> guard(mutex);
95 return observables.count(obj);
96}
97
98void ObserverLog::addName(void* obj , std::string name){
99 boost::lock_guard<boost::recursive_mutex> guard(mutex);
100 std::stringstream sstr;
101 sstr << name << "_" << count++;
102 names[obj] = sstr.str();
103}
104
105void ObserverLog::addObservable(void* obj){
106 boost::lock_guard<boost::recursive_mutex> guard(mutex);
107 observables.insert(obj);
108}
109
110void ObserverLog::deleteName(void* obj){
111 boost::lock_guard<boost::recursive_mutex> guard(mutex);
112 names.erase(obj);
113}
114
115void ObserverLog::deleteObservable(void* obj){
116 boost::lock_guard<boost::recursive_mutex> guard(mutex);
117 observables.erase(obj);
118}
119
120/** Obtain Log reference to place another message (line) in log.
121 *
122 * \warning Don't append std::endl to the message, won't work and is done
123 * automatically.
124 *
125 * @param depth depth (indenting) of the message
126 * @return ref to Log class which can be ostreamed to
127 */
128boost::shared_ptr<ObserverLog::Log> ObserverLog::addMessage(int depth){
129 boost::lock_guard<boost::recursive_mutex> guard(mutex);
130 boost::shared_ptr<ObserverLog::Log> L(new Log(this));
131 for(int i=depth;i--;)
132 L->log << " ";
133 return L;
134}
135
136ObserverLog &observerLog()
137{
138 return ObserverLog::getInstance();
139}
140
141CONSTRUCT_SINGLETON(ObserverLog)
Note: See TracBrowser for help on using the repository browser.