MagAO-X
Operations Applications Utilities Source
logDefs.hpp
Go to the documentation of this file.
1 /** \file logDefs.hpp
2  * \brief Type definitions for the flatlogs format.
3  * \author Jared R. Males (jaredmales@gmail.com)
4  *
5  * \ingroup flatlogs_files
6  *
7  * History:
8  * - 2018-08-17 created by JRM
9  */
10 #ifndef flatlogs_logDefs_hpp
11 #define flatlogs_logDefs_hpp
12 
13 namespace flatlogs
14 {
15 
16 /// The type of the log priority code.
17 /** \ingroup logDefs
18  */
19 typedef int8_t logPrioT;
20 
21 /// The type used for seconds.
22 /** Rationale: unsigned 32 bits gives us enough to last 168 yrs from the UNIX epoch, which is more than enough.
23  * 24 bits is just 1/2 year, so we would have to use a partial byte to be more optimum.
24  *
25  * \ingroup logDefs
26  */
27 typedef uint32_t secT;
28 
29 /// The type used for nanoseconds.
30 /** Rationale: unsigned 32 bits gives >4x10^9 nanoseconds, so enough for 1x10^9 nanoseconds.
31  */
32 typedef uint32_t nanosecT;
33 
34 /// The type of an event code (16-bit unsigned int).
35 /** Rationale: gives us 65,536 individual events.
36  * \ingroup logDefs
37  */
38 typedef uint16_t eventCodeT;
39 
40 /// The type used for the short message length
41 /** Rationale: most flatlog entries are short, so we use minimum space for this.
42  *
43  * \ingroup logDefs
44  */
45 typedef uint8_t msgLen0T;
46 
47 /// The type used for intermediate message length
48 /** Rationale: using 1+2 =3 bytes for a 256 byte message is 1.2%. 1+4 = 2.0%, and 1+8 = 3.5%.
49  *
50  * \ingroup logDefs
51  */
52 typedef uint16_t msgLen1T;
53 
54 /// The type used for long message length
55 /** Rationale: once messages are 65536 or longer, the length field is negligible. This
56  * admits messages of huge sizes.
57  *
58  * \ingroup logDefs
59  */
60 typedef uint64_t msgLen2T;
61 
62 /// The type used to refer to the message length, regardless of length.
63 /** This is not necessarily what is written to the buffer. Should always be msgLen2T so it is big enough
64  * to handle any possible length.
65  * \ingroup logDefs
66  */
67 typedef msgLen2T msgLenT;
68 
69 }//namespace flatlogs
70 
71 #endif //flatlogs_logDefs_hpp
72 
uint8_t msgLen0T
The type used for the short message length.
Definition: logDefs.hpp:45
uint16_t msgLen1T
The type used for intermediate message length.
Definition: logDefs.hpp:52
uint32_t secT
The type used for seconds.
Definition: logDefs.hpp:27
int8_t logPrioT
The type of the log priority code.
Definition: logDefs.hpp:19
uint32_t nanosecT
The type used for nanoseconds.
Definition: logDefs.hpp:32
msgLen2T msgLenT
The type used to refer to the message length, regardless of length.
Definition: logDefs.hpp:67
uint16_t eventCodeT
The type of an event code (16-bit unsigned int).
Definition: logDefs.hpp:38
uint64_t msgLen2T
The type used for long message length.
Definition: logDefs.hpp:60