forked from awslabs/aws-c-common
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlog.c
304 lines (259 loc) · 8.18 KB
/
log.c
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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
/*
* Copyright 2010 - 2018 Amazon.com, Inc. or its affiliates.All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file.This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied.See the License for the specific language governing
* permissions and limitations under the License.
*/
#include <aws/common/condition_variable.h>
#include <aws/common/linked_list.h>
#include <aws/common/log.h>
//#include <aws/common/memory_pool.h>
#include <aws/common/mutex.h>
#include <aws/common/thread.h>
#include <inttypes.h>
#include <stdio.h>
#include <time.h>
struct s_msg {
struct aws_linked_list_node node;
const char *tag;
};
struct s_log_ctx {
struct aws_allocator *alloc;
void *msg_pool;
size_t message_size;
struct aws_linked_list messages;
};
/* Logging globals. */
struct s_log_ctx *s_ctx;
struct aws_mutex s_mutex = AWS_MUTEX_INIT;
aws_log_report_fn *s_report;
enum aws_log_level s_level;
/* Logging thread state. */
volatile bool s_log_thread_running;
struct aws_thread s_log_thread;
struct aws_condition_variable s_cv = AWS_CONDITION_VARIABLE_INIT;
struct aws_mutex s_cv_mutex = AWS_MUTEX_INIT;
static inline struct s_msg *s_msg_new(void) {
if (!s_ctx) {
return NULL;
}
aws_mutex_lock(&s_mutex);
struct s_msg *msg = (struct s_msg *)aws_mem_acquire(s_ctx->alloc, sizeof(struct s_msg) + s_ctx->message_size);
aws_mutex_unlock(&s_mutex);
return msg;
}
static inline void s_msg_destroy(struct s_msg *msg) {
if (s_ctx) {
aws_mutex_lock(&s_mutex);
aws_mem_release(s_ctx->alloc, msg);
aws_mutex_unlock(&s_mutex);
}
}
static inline char *s_get_msg_data(struct s_msg *msg) {
return (char *)(msg + 1);
}
void aws_log_set_reporting_callback(aws_log_report_fn *report_callback) {
aws_mutex_lock(&s_mutex);
s_report = report_callback;
aws_mutex_unlock(&s_mutex);
}
int aws_log_system_init(
struct aws_allocator *alloc,
size_t max_message_len,
int memory_pool_message_count,
enum aws_log_level level) {
if (!alloc) {
return aws_raise_error(AWS_ERROR_LOG_FAILURE);
}
if (max_message_len < 16) {
/*
* Must be least greater than 2, to ensure buffer formatting code never underflows.
* 16 seemed like a reasonable number to enfore here, since 2 is impractical anyways.
*/
max_message_len = 16;
}
s_ctx = (struct s_log_ctx *)aws_mem_acquire(alloc, sizeof(*s_ctx));
if (!s_ctx) {
return aws_raise_error(AWS_ERROR_LOG_FAILURE);
}
s_ctx->alloc = alloc;
s_ctx->msg_pool = NULL;
s_ctx->message_size = max_message_len;
(void)memory_pool_message_count;
aws_mutex_init(&s_mutex);
aws_linked_list_init(&s_ctx->messages);
aws_log_system_set_level(level);
return AWS_OP_SUCCESS;
}
void aws_log_system_set_level(enum aws_log_level level) {
aws_mutex_lock(&s_mutex);
s_level = level;
aws_mutex_unlock(&s_mutex);
}
enum aws_log_level aws_log_system_get_level(void) {
return s_level;
}
void aws_log_system_clean_up() {
/* Null out s_ctx and cleanup messages. */
aws_mutex_lock(&s_mutex);
while (!aws_linked_list_empty(&s_ctx->messages)) {
struct s_msg *msg = AWS_CONTAINER_OF(aws_linked_list_pop_front(&s_ctx->messages), struct s_msg, node);
aws_mem_release(s_ctx->alloc, msg);
}
struct s_log_ctx *ctx = s_ctx;
s_ctx = NULL;
aws_mutex_unlock(&s_mutex);
aws_log_destroy_log_thread();
aws_mem_release(ctx->alloc, ctx);
}
int aws_log(enum aws_log_level level, const char *tag, const char *fmt, ...) {
if (!(level != AWS_LOG_LEVEL_OFF && level >= s_level)) {
return AWS_OP_SUCCESS;
}
if (!s_ctx) {
return aws_raise_error(AWS_ERROR_LOG_FAILURE);
}
va_list va_args;
va_start(va_args, fmt);
int ret = aws_vlog(level, tag, fmt, va_args);
va_end(va_args);
return ret;
}
int aws_vlog(enum aws_log_level level, const char *tag, const char *fmt, va_list va_args) {
if (!(level != AWS_LOG_LEVEL_OFF && level >= s_level)) {
return AWS_OP_SUCCESS;
}
if (!s_ctx) {
return aws_raise_error(AWS_ERROR_LOG_FAILURE);
}
/* Make new message. */
struct s_msg *msg = s_msg_new();
msg->tag = tag;
char *msg_data = s_get_msg_data(msg);
/* Format date and log prefix info. */
char date[256];
time_t now = time(NULL);
#ifdef _MSC_VER
struct tm *t = localtime(&now);
strftime(date, sizeof(date) - 1, "%m-%d-%Y %H:%M:%S:%z", t);
#else
struct tm t;
localtime_r(&now, &t);
strftime(date, sizeof(date) - 1, "%m-%d-%Y %H:%M:%S:%z", &t);
#endif
char date_prefix[256];
int prefix_len = snprintf(
date_prefix,
sizeof(date_prefix),
"[%s] %s [%" PRIu64 "] ",
aws_log_level_to_string(level),
date,
aws_thread_current_thread_id());
if ((size_t)prefix_len >= s_ctx->message_size) {
return aws_raise_error(AWS_ERROR_LOG_FAILURE);
}
/* Perform log format, and cat with prefix. Append a newline. */
memcpy(msg_data, date_prefix, prefix_len);
int len = prefix_len + vsnprintf(msg_data + prefix_len, s_ctx->message_size - prefix_len, fmt, va_args);
if ((size_t)len >= s_ctx->message_size - 2) {
msg_data[s_ctx->message_size - 2] = '\n';
} else {
msg_data[len - 1] = '\n';
msg_data[len] = 0;
}
/* Push message onto queue. */
aws_mutex_lock(&s_mutex);
aws_linked_list_push_front(&s_ctx->messages, &msg->node);
aws_mutex_unlock(&s_mutex);
if (s_log_thread_running) {
/* Notify log thread. */
aws_mutex_lock(&s_cv_mutex);
aws_condition_variable_notify_one(&s_cv);
aws_mutex_unlock(&s_cv_mutex);
}
return AWS_OP_SUCCESS;
}
const char *aws_log_level_to_string(enum aws_log_level level) {
switch (level) {
case AWS_LOG_LEVEL_OFF:
return "OFF";
case AWS_LOG_LEVEL_FATAL:
return "FATAL";
case AWS_LOG_LEVEL_ERROR:
return "ERROR";
case AWS_LOG_LEVEL_WARN:
return "WARN";
case AWS_LOG_LEVEL_TRACE:
return "TRACE";
default:
return NULL;
}
}
int aws_log_flush() {
if (!s_ctx) {
return aws_raise_error(AWS_ERROR_LOG_FAILURE);
}
while (1) {
/* Pop message off of queue. */
aws_mutex_lock(&s_mutex);
if (!s_ctx || aws_linked_list_empty(&s_ctx->messages)) {
aws_mutex_unlock(&s_mutex);
break;
}
struct s_msg *msg = AWS_CONTAINER_OF(aws_linked_list_pop_back(&s_ctx->messages), struct s_msg, node);
aws_mutex_unlock(&s_mutex);
/* Report message. */
char *msg_data = s_get_msg_data(msg);
if (s_report) {
s_report(msg->tag, msg_data);
}
/* Clean up message. */
s_msg_destroy(msg);
}
return AWS_OP_SUCCESS;
}
bool s_has_msgs(void *arg) {
(void)arg;
bool empty = false;
aws_mutex_lock(&s_mutex);
if (s_ctx) {
empty = aws_linked_list_empty(&s_ctx->messages);
}
aws_mutex_unlock(&s_mutex);
return !empty || !s_log_thread_running;
}
void s_log_thread_function(void *arg) {
(void)arg;
while (s_log_thread_running) {
if (aws_log_flush() != AWS_OP_SUCCESS) {
aws_log_destroy_log_thread();
break;
}
aws_mutex_lock(&s_cv_mutex);
aws_condition_variable_wait_pred(&s_cv, &s_cv_mutex, s_has_msgs, NULL);
aws_mutex_unlock(&s_cv_mutex);
}
}
int aws_log_spawn_log_thread(struct aws_allocator *alloc) {
int ret = aws_thread_init(&s_log_thread, alloc);
if (ret != AWS_OP_SUCCESS) {
return ret;
}
s_log_thread_running = true;
ret = aws_thread_launch(&s_log_thread, s_log_thread_function, NULL, NULL);
return ret;
}
void aws_log_destroy_log_thread() {
aws_mutex_lock(&s_cv_mutex);
s_log_thread_running = false;
aws_condition_variable_notify_one(&s_cv);
aws_mutex_unlock(&s_cv_mutex);
}