Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
/* log.h
Mark Woolrich, FMRIB Image Analysis Group
Copyright (C) 1999-2000 University of Oxford */
/* CCOPYRIGHT */
#if !defined(log_h)
#define log_h
#include <iostream>
#include <fstream>
#include <string>
#include <strstream>
#include "newmatap.h"
#include "newmatio.h"
// for the Exception class:
using namespace NEWMAT;
namespace Utilities{
template<class t> string tostring(const t obj)
{
char strc[100];
ostrstream str(strc,100);
str << obj << '\0';
return string(strc);
}
class Logger;
template<class t> Logger& operator<<(Logger& log, const t& obj)
{
if(log.stream_to_logfile)
log.logfileout << obj;
if(log.stream_to_cout)
cout << obj;
return log;
}
class Logger
{
public:
Logger():logEstablished(false) {}
Logger(const string& pdirname, const string& plogfilename = "logfile", bool pstream_to_logfile = true, bool pstream_to_cout = false, bool makedir = true):logEstablished(false)
{
if(makedir)
makeDir(pdirname, plogfilename, pstream_to_logfile, pstream_to_cout);
else
setDir(pdirname, plogfilename, pstream_to_logfile, pstream_to_cout);
}
~Logger() { logfileout.close(); }
/** Need to call makeDir or setDir before Logger can be used */
/** Makes a directory to place results into:
keeps adding "+" to pdirname until unique directory is made. */
/** The stream_to* variables define the streaming behaviour */
void makeDir(const string& pdirname, const string& plogfilename = "logfile", bool pstream_to_logfile = true, bool pstream_to_cout = false);
/** Sets an existing directory to place results into. */
/** The stream_to* variables define the streaming behaviour */
void setDir(const string& pdirname, const string& plogfilename = "logfile", bool pstream_to_logfile = true, bool pstream_to_cout = false);
/** Closes old logfile buffer and attempts to open new one with name specified and sets streaming to logfile on */
void setLogFile(const string& plogfilename);
const string& getDir() const { if(!logEstablished)throw Exception("Log not setup");return dir; }
const string& getLogFileName() const { if(!logEstablished)throw Exception("Log not setup");return logfilename; }
/** returns passed in filename appended onto the end of the dir name */
const string appendDir(const string& filename) const;
/** allows streaming into cout and/or logfile depending upon the */
/** stream_to_cout and stream_to_logfile respectively */
/** use like a normal ostream, e.g. log.str() << "hello" << endl */
/** NOTE: can simply stream straight to Log instead, e.g. log << "hello" << endl */
Logger& str();
/** sets whether or not you stream to cout */
void set_stream_to_cout(bool in = true) { stream_to_cout = in; }
/** sets whether or not you stream to logfile */
void set_stream_to_logfile(bool in = true) {
if(!stream_to_logfile && in)
{
if(logfileout.bad())
{
cerr << "Warning: Unable to stream to logfile " << logfilename << ". Need to have called log.setLogFile. Therefore, no streaming to logfile will be performed" << endl;
}
}
else stream_to_logfile = in;
}
private:
const Logger& operator=(Logger&);
Logger(Logger&);
string dir;
ofstream logfileout;
string logfilename;
bool logEstablished;
bool stream_to_logfile;
bool stream_to_cout;
template<class t>
friend Logger& operator<<(Logger& log, const t& obj);
};
class LogSingleton
{
public:
static Logger& getInstance();
~LogSingleton() { delete logger; }
/** hacked in utility provides a global counter for general use: */
static int counter() { return count++; }
private:
LogSingleton() {}
const LogSingleton& operator=(LogSingleton&);
LogSingleton(LogSingleton&);
static Logger* logger;
static int count;
};
typedef LogSingleton Log;
inline Logger& LogSingleton::getInstance(){
if(logger == NULL)
logger = new Logger();
return *logger;
}
inline void Logger::setLogFile(const string& plogfilename) {
if(!logEstablished)
{
throw Exception("Log not setup");
}
logfileout.close();
logfilename = plogfilename;
// setup logfile
logfileout.open((dir + "/" + logfilename).c_str(), ios::out);
if(logfileout.bad())
{
throw Exception(string(string("Unable to setup logfile ")+logfilename+string(" in directory ")+dir).c_str());
}
stream_to_logfile = true;
logEstablished = true;
}
inline Logger& Logger::str() {
if(!logEstablished)
{
throw Exception("Log not setup");
}
return *this;
}
inline const string Logger::appendDir(const string& filename) const {
if(!logEstablished)
{
throw Exception("Log not setup");
}
return dir + "/" + filename;
}
}
#endif