MagAO-X
|
||||
|
The standard MagAOX log manager, used for both process logs and telemetry streams. More...
#include <logManager.hpp>
Public Member Functions | |
logManager () | |
Default c'tor. More... | |
~logManager () | |
Destructor. More... | |
int | writePause (const unsigned long &wp) |
Set a new value of writePause. More... | |
unsigned long | writePause () |
Get the current value of writePause. More... | |
int | logLevel (logPrioT newLev) |
Set a new value of logLevel. More... | |
logPrioT | logLevel () |
Get the current value of logLevel. More... | |
int | logThreadPrio (int newPrio) |
Set a new value of logThreadPrio. More... | |
int | logThreadPrio () |
Get the current value of logThreadPrio. More... | |
bool | logThreadRunning () |
Get status of the log thread running flag. More... | |
int | setupConfig (mx::appConfigurator &config) |
Setup an application configurator for the logger section. More... | |
int | loadConfig (mx::appConfigurator &config) |
Load the logger section from an application configurator. More... | |
int | logThreadStart () |
Start the logger thread. More... | |
void | logThreadExec () |
Execute the logger thread. More... | |
template<typename logT > | |
void | log (const typename logT::messageT &msg, logPrioT level=logPrio::LOG_DEFAULT) |
Make a log entry, including a message. More... | |
template<typename logT > | |
void | log (timespecX &ts, const typename logT::messageT &msg, logPrioT level=logPrio::LOG_DEFAULT) |
Make a log entry, including a message. More... | |
template<typename logT > | |
void | log (logPrioT level=logPrio::LOG_DEFAULT) |
Make a log entry with no message. More... | |
template<typename logT > | |
void | log (timespecX &ts, logPrioT level=logPrio::LOG_DEFAULT) |
Make a log entry with no message. More... | |
Static Public Member Functions | |
static void | _logThreadStart (logManager *l) |
Thread starter, called by logThreadStart on thread construction. Calls logThreadExec. More... | |
template<typename logT > | |
static int | createLog (bufferPtrT &logBuffer, const typename logT::messageT &msg, const logPrioT &level) |
Create a log formatted log entry, filling in a buffer. More... | |
template<typename logT > | |
static int | createLog (bufferPtrT &logBuffer, const timespecX &ts, const typename logT::messageT &msg, const logPrioT &level) |
Create a log formatted log entry, filling in a buffer. More... | |
Public Attributes | |
std::list< bufferPtrT > | m_logQueue |
Log entries are stored here, and writen to the file by the log thread. More... | |
std::thread | m_logThread |
A separate thread for actually writing to the file. More... | |
std::mutex | m_qMutex |
Mutex for accessing the m_logQueue. More... | |
bool | m_logShutdown {false} |
Flag to signal the log thread to shutdown. More... | |
unsigned long | m_writePause {MAGAOX_default_writePause} |
Time, in nanoseconds, to pause between successive batch writes to the file. Default is 1e9. Configure with logger.writePause. More... | |
logPrioT | m_logLevel {logPrio::LOG_INFO} |
The minimum log level to actually record. Logs with level below this are rejected. Default is INFO. Configure with logger.logLevel. More... | |
int | m_logThreadPrio {0} |
bool | m_logThreadRunning {false} |
The standard MagAOX log manager, used for both process logs and telemetry streams.
Manages the formatting and queueing of the log entries.
A log entry is made using one of the standard log types. These are formatted into a binary stream and stored in a std::list. This occurs in the calling thread. The insertion into the list is mutex-ed, so it is safe to make logs from different threads concurrently.
Write-to-disk occurs in a separate thread, which is normally set to the lowest priority so as not to interfere with higher-priority tasks. The log thread cycles through pending log entries in the list, dispatching them to the logFile.
The template parameter logFileT is one of the logFile types, which is used to actually write to disk.
Example:
logFileT | a logFile type with a writeLog method. |
Definition at line 68 of file logManager.hpp.
MagAOX::logger::logManager< logFileT >::logManager | ( | ) |
Default c'tor.
Definition at line 225 of file logManager.hpp.
MagAOX::logger::logManager< logFileT >::~logManager | ( | ) |
Destructor.
Definition at line 230 of file logManager.hpp.
|
static |
Thread starter, called by logThreadStart on thread construction. Calls logThreadExec.
[in] | l | a pointer to a logger instance (normally this) |
Definition at line 351 of file logManager.hpp.
|
static |
Create a log formatted log entry, filling in a buffer.
This is where the timestamp of the log entry is set.
logT | is a log entry type |
[out] | logBuffer | a shared_ptr<logBuffer>, which will be allocated and populated with the log entry |
[in] | msg | the message to log (could be of type emptyMessage) |
[in] | level | the level (verbosity) of this log |
Definition at line 450 of file logManager.hpp.
|
static |
Create a log formatted log entry, filling in a buffer.
This version has the timestamp provided.
logT | is a log entry type |
[out] | logBuffer | a shared_ptr<logBuffer>, which will be allocated and populated with the log entry |
[in] | ts | the timestamp of this log entry. |
[in] | msg | the message to log (could be of type emptyMessage) |
[in] | level | the level (verbosity) of this log |
Definition at line 464 of file logManager.hpp.
int MagAOX::logger::logManager< logFileT >::loadConfig | ( | mx::appConfigurator & | config | ) |
Load the logger section from an application configurator.
[in] | config | an application configuration from which to load values |
Definition at line 309 of file logManager.hpp.
Referenced by MagAOX::app::MagAOXApp< _useINDI >::loadBasicConfig().
void MagAOX::logger::logManager< logFileT >::log | ( | const typename logT::messageT & | msg, |
logPrioT | level = logPrio::LOG_DEFAULT |
||
) |
Make a log entry, including a message.
logT | is a log entry type |
[in] | msg | the message to log |
[in] | level | [optional] the log level. The default is used if not specified. |
Definition at line 475 of file logManager.hpp.
Referenced by MagAOX::app::MagAOXApp< _useINDI >::log().
void MagAOX::logger::logManager< logFileT >::log | ( | timespecX & | ts, |
const typename logT::messageT & | msg, | ||
logPrioT | level = logPrio::LOG_DEFAULT |
||
) |
Make a log entry, including a message.
logT | is a log entry type |
[in] | ts | the timestamp of the log entry |
[in] | msg | the message to log |
[in] | level | [optional] the log level. The default is used if not specified. |
Definition at line 497 of file logManager.hpp.
void MagAOX::logger::logManager< logFileT >::log | ( | logPrioT | level = logPrio::LOG_DEFAULT | ) |
Make a log entry with no message.
logT | is a log entry type |
[in] | level | [optional] the log level. The default is used if not specified. |
Definition at line 519 of file logManager.hpp.
void MagAOX::logger::logManager< logFileT >::log | ( | timespecX & | ts, |
logPrioT | level = logPrio::LOG_DEFAULT |
||
) |
Make a log entry with no message.
logT | is a log entry type |
[in] | ts | the timestamp of the log entry |
[in] | level | [optional] the log level. The default is used if not specified. |
Definition at line 526 of file logManager.hpp.
int MagAOX::logger::logManager< logFileT >::logLevel | ( | logPrioT | newLev | ) |
Set a new value of logLevel.
Updates m_logLevel with new value. Will return an error and take no actions if the argument is outside the range of the logLevels enum.
[in] | newLev | the new value of logLevel |
Definition at line 258 of file logManager.hpp.
logPrioT MagAOX::logger::logManager< logFileT >::logLevel | ( | ) |
Get the current value of logLevel.
Definition at line 268 of file logManager.hpp.
void MagAOX::logger::logManager< logFileT >::logThreadExec | ( | ) |
Execute the logger thread.
Definition at line 397 of file logManager.hpp.
Referenced by MagAOX::logger::logManager< logFileT >::_logThreadStart().
int MagAOX::logger::logManager< logFileT >::logThreadPrio | ( | int | newPrio | ) |
Set a new value of logThreadPrio.
Updates m_logThreadPrio with new value. If the argument is < 0, this sets m_logThreadPrio to 0. Will not set > 98, and returns -1 with no changes in this case.
[in] | newPrio | the new value of logThreadPrio |
Definition at line 274 of file logManager.hpp.
int MagAOX::logger::logManager< logFileT >::logThreadPrio | ( | ) |
Get the current value of logThreadPrio.
Definition at line 284 of file logManager.hpp.
bool MagAOX::logger::logManager< logFileT >::logThreadRunning | ( | ) |
Get status of the log thread running flag.
Definition at line 290 of file logManager.hpp.
Referenced by MagAOX::app::MagAOXApp< _useINDI >::execute().
int MagAOX::logger::logManager< logFileT >::logThreadStart | ( | ) |
Start the logger thread.
Definition at line 357 of file logManager.hpp.
Referenced by MagAOX::app::MagAOXApp< _useINDI >::execute().
int MagAOX::logger::logManager< logFileT >::setupConfig | ( | mx::appConfigurator & | config | ) |
Setup an application configurator for the logger section.
[in] | config | an application configuration to setup |
Definition at line 296 of file logManager.hpp.
Referenced by MagAOX::app::MagAOXApp< _useINDI >::setupBasicConfig().
int MagAOX::logger::logManager< logFileT >::writePause | ( | const unsigned long & | wp | ) |
Set a new value of writePause.
Updates m_writePause with new value.
[in] | wp | the new value of writePause |
Definition at line 242 of file logManager.hpp.
unsigned long MagAOX::logger::logManager< logFileT >::writePause | ( | ) |
Get the current value of writePause.
Definition at line 252 of file logManager.hpp.
logPrioT MagAOX::logger::logManager< logFileT >::m_logLevel {logPrio::LOG_INFO} |
The minimum log level to actually record. Logs with level below this are rejected. Default is INFO. Configure with logger.logLevel.
Definition at line 81 of file logManager.hpp.
std::list<bufferPtrT> MagAOX::logger::logManager< logFileT >::m_logQueue |
Log entries are stored here, and writen to the file by the log thread.
Definition at line 72 of file logManager.hpp.
bool MagAOX::logger::logManager< logFileT >::m_logShutdown {false} |
Flag to signal the log thread to shutdown.
Definition at line 77 of file logManager.hpp.
std::thread MagAOX::logger::logManager< logFileT >::m_logThread |
A separate thread for actually writing to the file.
Definition at line 74 of file logManager.hpp.
int MagAOX::logger::logManager< logFileT >::m_logThreadPrio {0} |
Definition at line 83 of file logManager.hpp.
bool MagAOX::logger::logManager< logFileT >::m_logThreadRunning {false} |
Definition at line 85 of file logManager.hpp.
std::mutex MagAOX::logger::logManager< logFileT >::m_qMutex |
Mutex for accessing the m_logQueue.
Definition at line 75 of file logManager.hpp.
unsigned long MagAOX::logger::logManager< logFileT >::m_writePause {MAGAOX_default_writePause} |
Time, in nanoseconds, to pause between successive batch writes to the file. Default is 1e9. Configure with logger.writePause.
Definition at line 79 of file logManager.hpp.