MagAO-X
Operations Applications Utilities Source
logFileRaw.hpp
Go to the documentation of this file.
1 /** \file logFileRaw.hpp
2  * \brief Manage a raw log file.
3  * \author Jared R. Males (jaredmales@gmail.com)
4  *
5  * \ingroup logger_files
6  *
7  * History:
8  * - 2017-08-28 created by JRM
9  */
10 
11 #ifndef logger_logFileRaw_hpp
12 #define logger_logFileRaw_hpp
13 
14 
15 #include <iostream>
16 
17 #include <string>
18 
19 
20 #include <mx/ioutils/stringUtils.hpp>
21 
22 #include "../common/defaults.hpp"
23 #include <flatlogs/flatlogs.hpp>
24 
25 namespace MagAOX
26 {
27 namespace logger
28 {
29 
30 /// A class to manage raw binary log files
31 /** Manages a binary file containing MagAO-X logs.
32  *
33  * The log entries are written as a binary stream of a configurable
34  * maximum size. If this size will be exceed by the next entry, then a new file is created.
35  *
36  * Filenames have a standard form of: [path]/[name]_YYYYMMDDHHMMSSNNNNNNNNN.[ext] where fields in [] are configurable.
37  *
38  * The timestamp is from the first entry of the file.
39  *
40  */
42 {
43 
44 protected:
45 
46  /** \name Configurable Parameters
47  *@{
48  */
49  std::string m_logPath {"."}; ///< The base path for the log files.
50  std::string m_logName {"xlog"}; ///< The base name for the log files.
51  std::string m_logExt {MAGAOX_default_logExt}; ///< The extension for the log files.
52 
53  size_t m_maxLogSize {MAGAOX_default_max_logSize}; ///< The maximum file size in bytes. Default is 10 MB.
54  ///@}
55 
56  /** \name Internal State
57  *@{
58  */
59 
60  FILE * m_fout {0}; ///< The file pointer
61 
62  size_t m_currFileSize {0}; ///< The current file size.
63 
64  ///@}
65 
66 public:
67 
68  /// Default constructor
69  /** Currently does nothing.
70  */
71  logFileRaw();
72 
73  ///Destructor
74  /** Closes the file if open
75  */
76  ~logFileRaw();
77 
78  /// Set the path.
79  /**
80  *
81  * \returns 0 on success
82  * \returns -1 on error
83  */
84  int logPath( const std::string & newPath /**< [in] the new value of _path */ );
85 
86  /// Get the path.
87  /**
88  * \returns the current value of m_logPath.
89  */
90  std::string logPath();
91 
92  /// Set the log name
93  /**
94  *
95  * \returns 0 on success
96  * \returns -1 on error
97  */
98  int logName( const std::string & newName /**< [in] the new value of m_logName */ );
99 
100  /// Get the name
101  /**
102  * \returns the current value of _name.
103  */
104  std::string logName();
105 
106  /// Set the log extension
107  /**
108  *
109  * \returns 0 on success
110  * \returns -1 on error
111  */
112  int logExt( const std::string & newExt /**< [in] the new value of m_logExt */ );
113 
114  /// Get the log extension
115  /**
116  * \returns the current value of m_logExt.
117  */
118  std::string logExt();
119 
120  /// Set the maximum file size
121  /**
122  *
123  * \returns 0 on success
124  * \returns -1 on error
125  */
126  int maxLogSize( size_t newMaxFileSize/**< [in] the new value of _maxLogSize */);
127 
128  /// Get the maximum file size
129  /**
130  * \returns the current value of m_maxLogSize
131  */
132  size_t maxLogSize();
133 
134  ///Write a log entry to the file
135  /** Checks if this write will exceed m_maxLogSize, and if so opens a new file.
136  * The new file will have the timestamp of this log entry.
137  *
138  * \returns 0 on success
139  * \returns -1 on error
140  */
141  int writeLog( flatlogs::bufferPtrT & data ///< [in] the log entry to write to disk
142  );
143 
144  /// Flush the stream
145  /**
146  * \returns 0 on success
147  * \returns -1 on error
148  */
149  int flush();
150 
151  ///Close the file pointer
152  /**
153  * \returns 0 on success
154  * \returns -1 on error
155  */
156  int close();
157 
158 protected:
159 
160  ///Create a new file
161  /** Closes the current file if open. Then creates a new file with a name of the form
162  * [path]/[name]_YYYYMMDDHHMMSSNNNNNNNNN.[ext]
163  *
164  *
165  * \returns 0 on success
166  * \returns -1 on error
167  */
168  int createFile(flatlogs::timespecX & ts /**< [in] A MagAOX timespec, used to set the timestamp */);
169 
170 
171 };
172 
173 
174 inline
176 {
177 }
178 
179 inline
181 {
182  close();
183 }
184 
185 inline
186 int logFileRaw::logPath( const std::string & newPath)
187 {
188  m_logPath = newPath;
189  return 0;
190 }
191 
192 inline
193 std::string logFileRaw::logPath()
194 {
195  return m_logPath;
196 }
197 
198 inline
199 int logFileRaw::logName( const std::string & newName)
200 {
201  m_logName = newName;
202  return 0;
203 }
204 
205 inline
206 std::string logFileRaw::logName()
207 {
208  return m_logName;
209 }
210 
211 inline
212 int logFileRaw::logExt( const std::string & newExt)
213 {
214  m_logExt = newExt;
215  return 0;
216 }
217 
218 inline
219 std::string logFileRaw::logExt()
220 {
221  return m_logExt;
222 }
223 
224 inline
225 int logFileRaw::maxLogSize( size_t newMaxFileSize )
226 {
227  m_maxLogSize = newMaxFileSize;
228  return 0;
229 }
230 
231 inline
233 {
234  return m_maxLogSize;
235 }
236 
237 inline
239 {
240  size_t N = flatlogs::logHeader::totalSize(data);
241 
242  //Check if we need a new file
243  if(m_currFileSize + N > m_maxLogSize || m_fout == 0)
244  {
246  if( createFile(ts) < 0 ) return -1;
247  }
248 
249  size_t nwr = fwrite( data.get(), sizeof(char), N, m_fout);
250 
251  if(nwr != N*sizeof(char))
252  {
253  std::cerr << "logFileRaw::writeLog: Error by fwrite. At: " << __FILE__ << " " << __LINE__ << "\n";
254  std::cerr << "logFileRaw::writeLog: errno says: " << strerror(errno) << "\n";
255  return -1;
256  }
257 
258  m_currFileSize += N;
259 
260  return 0;
261 }
262 
263 inline
265 {
266  if(m_fout) fflush(m_fout);
267 
268  return 0;
269 }
270 
271 inline
273 {
274  if(m_fout) fclose(m_fout);
275 
276  return 0;
277 }
278 
279 
280 inline
282 {
283  std::string tstamp = ts.timeStamp();
284 
285  //Create the standard log name
286  std::string fname = m_logPath + "/" + m_logName + "_" + tstamp + "." + m_logExt;
287 
288  if(m_fout) fclose(m_fout);
289 
290  errno = 0;
291  ///\todo handle case where file exists (only if another instance tries at same ns -- pathological)
292  m_fout = fopen(fname.c_str(), "wb");
293 
294  if(m_fout == 0)
295  {
296  std::cerr << "logFileRaw::createFile: Error by fopen. At: " << __FILE__ << " " << __LINE__ << "\n";
297  std::cerr << "logFileRaw::createFile: errno says: " << strerror(errno) << "\n";
298  std::cerr << "logFileRaw::createFile: fname = " << fname << "\n";
299  return -1;
300  }
301 
302  //Reset counters.
303  m_currFileSize = 0;
304 
305  return 0;
306 }
307 
308 } //namespace logger
309 } //namespace MagAOX
310 
311 #endif //logger_logFileRaw_hpp
size_t maxLogSize()
Get the maximum file size.
Definition: logFileRaw.hpp:232
#define MAGAOX_default_max_logSize
The default maximum log file size.
Definition: defaults.hpp:39
size_t m_maxLogSize
The maximum file size in bytes. Default is 10 MB.
Definition: logFileRaw.hpp:53
int timeStamp(std::string &tstamp)
Get the filename timestamp for this timespecX.
Definition: timespecX.hpp:90
int writeLog(flatlogs::bufferPtrT &data)
Write a log entry to the file.
Definition: logFileRaw.hpp:238
std::string logName()
Get the name.
Definition: logFileRaw.hpp:206
std::string m_logName
The base name for the log files.
Definition: logFileRaw.hpp:50
int close()
Close the file pointer.
Definition: logFileRaw.hpp:272
std::string logPath()
Get the path.
Definition: logFileRaw.hpp:193
A class to manage raw binary log files.
Definition: logFileRaw.hpp:41
static size_t totalSize(bufferPtrT &logBuffer)
Get the total size of the log entry, including the message buffer.
Definition: logHeader.hpp:429
std::string m_logPath
The base path for the log files.
Definition: logFileRaw.hpp:49
size_t m_currFileSize
The current file size.
Definition: logFileRaw.hpp:62
#define MAGAOX_default_logExt
The extension for MagAO-X binary log files.
Definition: defaults.hpp:21
int createFile(flatlogs::timespecX &ts)
Create a new file.
Definition: logFileRaw.hpp:281
static timespecX timespec(bufferPtrT &logBuffer)
Extract the timespec of a log entry.
Definition: logHeader.hpp:323
logFileRaw()
Default constructor.
Definition: logFileRaw.hpp:175
std::string logExt()
Get the log extension.
Definition: logFileRaw.hpp:219
std::shared_ptr< char > bufferPtrT
The log entry buffer smart pointer.
Definition: logHeader.hpp:57
std::string m_logExt
The extension for the log files.
Definition: logFileRaw.hpp:51
int flush()
Flush the stream.
Definition: logFileRaw.hpp:264
Flatlogs single include file.
FILE * m_fout
The file pointer.
Definition: logFileRaw.hpp:60
A fixed-width timespec structure.
Definition: timespecX.hpp:31