-
Notifications
You must be signed in to change notification settings - Fork 0
/
message.h
259 lines (241 loc) · 6.21 KB
/
message.h
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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
// -----------------------------------------------------------------------------
// message.h message.h
// -----------------------------------------------------------------------------
/**
* @file
* @brief This file declares 'public' members of the @ref msg namespace.
* @author Col. Walter E. Kurtz
* @version 2016-10-30
* @copyright GNU General Public License - Version 3.0
*/
// -----------------------------------------------------------------------------
// One-Definition-Rule One-Definition-Rule
// -----------------------------------------------------------------------------
#ifndef MESSAGE_H_INCLUDE_NO1
#define MESSAGE_H_INCLUDE_NO1
// -----------------------------------------------------------------------------
// Includes Includes
// -----------------------------------------------------------------------------
#include <string>
// ---
// msg
// ---
/**
* @brief The @a msg namespace provides some functions that
* print (tagged) messages via stderr.
*
* The functions found here can be grouped as follows:
* * Printing
* - msg::nfo()
* - msg::wrn()
* - msg::err()
* * Concatenation
* - msg::cat()
* - msg::catq()
* - msg::qcat()
* - msg::ins()
* - msg::insq()
* * Type conversion
* - msg::str( int )
* - msg::str( unsigned int )
* - msg::str( double )
*/
namespace msg
{
// ---
// nfo
// ---
/**
* @brief This function prints a tagged @a info message via stderr.
*
* @par Example
* @code{.cpp}
* msg::nfo("Hello, world!"); // [INFO] Hello, world!
* @endcode
*
* @param message holds the line to print.
*
* @see msg::wrn()
* @see msg::err()
*/
void nfo(const std::string& message);
// ---
// wrn
// ---
/**
* @brief This function prints a tagged @a warning message via stderr.
*
* @par Example
* @code{.cpp}
* msg::wrn("Hello, world!"); // [WARNING] Hello, world!
* @endcode
*
* @param message holds the line to print.
*
* @see msg::nfo()
* @see msg::err()
*/
void wrn(const std::string& message);
// ---
// err
// ---
/**
* @brief This function prints a tagged @a error message via stderr.
*
* @par Example
* @code{.cpp}
* msg::err("Hello, world!"); // [ERROR] Hello, world!
* @endcode
*
* @param message holds the line to print.
*
* @see msg::nfo()
* @see msg::wrn()
*/
void err(const std::string& message);
// ---
// cat
// ---
/**
* @brief This function concatenates the two passed arguments.
*
* @par Example
* @code{.cpp}
* msg::cat("Hello, ", "world!"); // Hello, world!
* @endcode
*
* @param s1 holds the first part of the resulting string.
* @param s2 holds the second part of the resulting string.
*
* @return s1 + s2
*
* @see msg::catq()
* @see msg::qcat()
*/
std::string cat(const std::string& s1, const std::string& s2);
// ----
// catq
// ----
/**
* @brief This function concatenates the two passed arguments
* and puts the second argument in quotation marks.
*
* @par Example
* @code{.cpp}
* msg::catq("Hello, ", "world!"); // Hello, "world!"
* @endcode
*
* @param s1 holds the first part of the resulting string.
* @param s2 holds the second part of the resulting string.
*
* @return s1 + "s2"
*
* @see msg::cat()
* @see msg::qcat()
*/
std::string catq(const std::string& s1, const std::string& s2);
// ----
// qcat
// ----
/**
* @brief This function concatenates the two passed arguments
* and puts the first argument in quotation marks.
*
* @par Example
* @code{.cpp}
* msg::qcat("Hello", ", world!"); // "Hello", world!
* @endcode
*
* @param s1 holds the first part of the resulting string.
* @param s2 holds the second part of the resulting string.
*
* @return "s1" + s2
*
* @see msg::cat()
* @see msg::catq()
*/
std::string qcat(const std::string& s1, const std::string& s2);
// ---
// ins
// ---
/**
* @brief This function replaces each ~ (tilde) character in the
* first argument with the second one.
*
* @par Example
* @code{.cpp}
* msg::ins("Hello, ~!", "world"); // Hello, world!
* @endcode
*
* @param s1 defines the 'template' string.
* @param s2 holds the string to insert.
*
* @return s1a + s2 + s1b
*
* @see msg::insq()
*/
std::string ins(const std::string& s1, const std::string& s2);
// ----
// insq
// ----
/**
* @brief This function replaces each ~ (tilde) character in the
* first argument with the second one quoted.
*
* @par Example
* @code{.cpp}
* msg::insq("Hello, ~!", "world"); // Hello, "world"!
* @endcode
*
* @param s1 defines the 'template' string.
* @param s2 holds the string to insert.
*
* @return s1a + "s2" + s1b
*
* @see msg::ins()
*/
std::string insq(const std::string& s1, const std::string& s2);
// ---
// str
// ---
/**
* @brief This function converts its argument to string.
*
* @param num is the number to convert.
*
* @return a string of decimal digits representing the passed number
*
* @see msg::str( unsigned int )
* @see msg::str( double )
*/
std::string str(int num);
// ---
// str
// ---
/**
* @brief This function converts its argument to string.
*
* @param num is the number to convert.
*
* @return a string of decimal digits representing the passed number
*
* @see msg::str( int )
* @see msg::str( double )
*/
std::string str(unsigned int num);
// ---
// str
// ---
/**
* @brief This function converts its argument to string.
*
* @param num is the number to convert.
*
* @return a string of decimal digits representing the passed number
*
* @see msg::str( int )
* @see msg::str( unsigned int )
*/
std::string str(double num);
}
#endif /* #ifndef MESSAGE_H_INCLUDE_NO1 */