MagAO-X
Operations Applications Utilities Source
MagAOX::logger::software_log::messageT Struct Reference

The type of the message. More...

#include <software_log.hpp>

Inheritance diagram for MagAOX::logger::software_log::messageT:
Inheritance graph
Collaboration diagram for MagAOX::logger::software_log::messageT:
Collaboration graph

Public Member Functions

 messageT (const char *file, const uint32_t line, const int32_t code_errno, const int32_t code_other, const char *expl)
 C'tor with full specification. More...
 
 messageT (const char *file, const uint32_t line, const int32_t code_errno, const int32_t code_other, const std::string &expl)
 C'tor with full specification, overloaded for a std::string in explanation. More...
 
 messageT (const char *file, const uint32_t line, const int32_t code_errno)
 C'tor for errno only – code explanation can be looked up later. More...
 
 messageT (const char *file, const uint32_t line, const int32_t code_errno, const char *expl)
 C'tor for errno with additional explanation. More...
 
 messageT (const char *file, const uint32_t line, const int32_t code_errno, const std::string &expl)
 C'tor for errno with additional explanation, std::string overload. More...
 
 messageT (const char *file, const uint32_t line, const std::string &expl)
 C'tor with no codes, just the explanation. More...
 
 messageT (const char *file, const uint32_t line)
 C'tor for a trace log, only the file and line. More...
 

Public Attributes

flatbuffers::FlatBufferBuilder builder
 

Detailed Description

The type of the message.

Definition at line 35 of file software_log.hpp.

Constructor & Destructor Documentation

◆ messageT() [1/7]

MagAOX::logger::software_log::messageT::messageT ( const char *  file,
const uint32_t  line,
const int32_t  code_errno,
const int32_t  code_other,
const char *  expl 
)
inline

C'tor with full specification.

Parameters
[in]fileThe file of the error, should always be __FILE__
[in]lineThe line number of the error, should always be __LINE__
[in]code_errnoThe errno code at the time of the log entry. Only errno should be passed here, so strerror can be used later.
[in]code_otherSome other error code, such as a return value or library code.
[in]explexplanatory text about the software event

Definition at line 38 of file software_log.hpp.

◆ messageT() [2/7]

MagAOX::logger::software_log::messageT::messageT ( const char *  file,
const uint32_t  line,
const int32_t  code_errno,
const int32_t  code_other,
const std::string &  expl 
)
inline

C'tor with full specification, overloaded for a std::string in explanation.

This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.

Parameters
[in]fileThe file of the error, should always be __FILE__
[in]lineThe line number of the error, should always be __LINE__
[in]code_errnoThe errno code at the time of the log entry. Only errno should be passed here, so strerror can be used later.
[in]code_otherSome other error code, such as a return value or library code.
[in]explexplanatory text about the software event

Definition at line 55 of file software_log.hpp.

◆ messageT() [3/7]

MagAOX::logger::software_log::messageT::messageT ( const char *  file,
const uint32_t  line,
const int32_t  code_errno 
)
inline

C'tor for errno only – code explanation can be looked up later.

Parameters
[in]fileThe file of the error, should always be __FILE__
[in]lineThe line number of the error, should always be __LINE__
[in]code_errnoThe errno code at the time of the log entry. Only errno should be passed here, so strerror can be used later.

Definition at line 70 of file software_log.hpp.

◆ messageT() [4/7]

MagAOX::logger::software_log::messageT::messageT ( const char *  file,
const uint32_t  line,
const int32_t  code_errno,
const char *  expl 
)
inline

C'tor for errno with additional explanation.

Parameters
[in]fileThe file of the error, should always be __FILE__
[in]lineThe line number of the error, should always be __LINE__
[in]code_errnoThe errno code at the time of the log entry. Only errno should be passed here, so strerror can be used later.
[in]explexplanatory text about the software event

Definition at line 82 of file software_log.hpp.

◆ messageT() [5/7]

MagAOX::logger::software_log::messageT::messageT ( const char *  file,
const uint32_t  line,
const int32_t  code_errno,
const std::string &  expl 
)
inline

C'tor for errno with additional explanation, std::string overload.

Parameters
[in]fileThe file of the error, should always be __FILE__
[in]lineThe line number of the error, should always be __LINE__
[in]code_errnoThe errno code at the time of the log entry. Only errno should be passed here, so strerror can be used later.
[in]explexplanatory text about the software event

Definition at line 96 of file software_log.hpp.

◆ messageT() [6/7]

MagAOX::logger::software_log::messageT::messageT ( const char *  file,
const uint32_t  line,
const std::string &  expl 
)
inline

C'tor with no codes, just the explanation.

Parameters
[in]fileThe file of the error, should always be __FILE__
[in]lineThe line number of the error, should always be __LINE__
[in]explexplanatory text about the software event

Definition at line 110 of file software_log.hpp.

◆ messageT() [7/7]

MagAOX::logger::software_log::messageT::messageT ( const char *  file,
const uint32_t  line 
)
inline

C'tor for a trace log, only the file and line.

Parameters
[in]fileThe file of the error, should always be __FILE__
[in]lineThe line number of the error, should always be __LINE__

Definition at line 123 of file software_log.hpp.

Member Data Documentation

◆ builder


The documentation for this struct was generated from the following file: