2022-11-25 16:32:29 +08:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2020 rxi
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
* of this software and associated documentation files (the "Software"), to
|
|
|
|
|
* deal in the Software without restriction, including without limitation the
|
|
|
|
|
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
|
|
|
* sell copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
|
|
* IN THE SOFTWARE.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <string.h>
|
2023-03-27 15:52:47 +08:00
|
|
|
#include <strings.h>
|
2022-11-25 16:32:29 +08:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#include <pthread.h>
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
|
|
|
|
#include "log.h"
|
|
|
|
|
|
|
|
|
|
#define ALLOC(type, number) ((type *)calloc(sizeof(type), number))
|
|
|
|
|
|
2023-03-15 11:36:54 +08:00
|
|
|
typedef enum {
|
|
|
|
|
LOG_OP_IFACE_CONSOLE,
|
|
|
|
|
LOG_OP_IFACE_FILE,
|
|
|
|
|
RT_LOG_OP_IFACE_MAX,
|
|
|
|
|
}log_op_iface;
|
2022-11-25 16:32:29 +08:00
|
|
|
|
|
|
|
|
struct log_handle
|
|
|
|
|
{
|
|
|
|
|
int level;
|
|
|
|
|
int enable;
|
2023-03-15 11:36:54 +08:00
|
|
|
FILE *fp;
|
|
|
|
|
va_list ap;
|
|
|
|
|
char defined_log_fn[1024];
|
|
|
|
|
char runtime_log_fn[1024];
|
2022-11-25 16:32:29 +08:00
|
|
|
pthread_mutex_t mutex;
|
2023-03-15 11:36:54 +08:00
|
|
|
log_op_iface iface;
|
2022-11-25 16:32:29 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static unsigned char weekday_str[7][4] = {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"};
|
|
|
|
|
|
|
|
|
|
static unsigned char month_str[12][4] = {"Jan", "Feb", "Mar", "Apr","May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"};
|
|
|
|
|
|
|
|
|
|
static int log_create_dir(const char *dir_path, int path_len)
|
|
|
|
|
{
|
|
|
|
|
if(dir_path == NULL)
|
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
char *buf = (char *)calloc(path_len+1, 1);
|
|
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
|
|
memcpy(buf, dir_path, path_len);
|
|
|
|
|
if(access(buf, R_OK) != 0)
|
|
|
|
|
{
|
|
|
|
|
if(mkdir(buf, 0755)!= 0)
|
|
|
|
|
ret = -1;
|
|
|
|
|
else
|
|
|
|
|
ret = 0;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
ret = 1;
|
|
|
|
|
free(buf);
|
|
|
|
|
buf = NULL;
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-15 11:36:54 +08:00
|
|
|
static void log_close_file(struct log_handle *handle)
|
2022-11-25 16:32:29 +08:00
|
|
|
{
|
2023-03-15 11:36:54 +08:00
|
|
|
pthread_mutex_lock(&handle->mutex);
|
|
|
|
|
if(handle->fp != NULL)
|
2022-11-25 16:32:29 +08:00
|
|
|
{
|
2023-03-15 11:36:54 +08:00
|
|
|
fclose(handle->fp);
|
|
|
|
|
handle->fp = NULL;
|
2022-11-25 16:32:29 +08:00
|
|
|
}
|
2023-03-15 11:36:54 +08:00
|
|
|
pthread_mutex_unlock(&handle->mutex);
|
2022-11-25 16:32:29 +08:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-15 11:36:54 +08:00
|
|
|
int log_open_file(char *file_name, struct log_handle *handle)
|
2022-11-25 16:32:29 +08:00
|
|
|
{
|
|
|
|
|
FILE *fp = NULL;
|
2023-03-15 11:36:54 +08:00
|
|
|
log_close_file(handle);
|
2022-11-25 16:32:29 +08:00
|
|
|
if(NULL == (fp = fopen(file_name, "a")))
|
|
|
|
|
{
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
2023-03-15 11:36:54 +08:00
|
|
|
memcpy(handle->runtime_log_fn, file_name, strlen(file_name));
|
|
|
|
|
handle->fp = fp;
|
2022-11-25 16:32:29 +08:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int log_create_path(const char *file_path)
|
|
|
|
|
{
|
|
|
|
|
FILE *fp = NULL;
|
|
|
|
|
|
|
|
|
|
if(file_path == NULL)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
char *p_path = rindex(file_path, '/');
|
|
|
|
|
if(p_path==0)
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const char *p_cur = file_path;
|
|
|
|
|
int path_len = p_path - file_path;
|
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
|
|
if(log_create_dir(file_path, path_len) >= 0)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
for(;i<=path_len;i++,p_cur++)
|
|
|
|
|
{
|
|
|
|
|
if(*p_cur == '/')
|
|
|
|
|
{
|
|
|
|
|
if(log_create_dir(file_path, i+1) < 0)
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(NULL == (fp = fopen(file_path, "w")))
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2023-01-30 21:59:35 +08:00
|
|
|
fclose(fp);
|
2022-11-25 16:32:29 +08:00
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-15 11:36:54 +08:00
|
|
|
int log_create_log_file(struct log_handle *handle)
|
2022-11-25 16:32:29 +08:00
|
|
|
{
|
|
|
|
|
time_t t;
|
|
|
|
|
struct tm local_time;
|
2023-03-15 11:36:54 +08:00
|
|
|
char tmp_log_file_name[1024+128];
|
2022-11-25 16:32:29 +08:00
|
|
|
|
|
|
|
|
time(&t);
|
|
|
|
|
if(NULL == (localtime_r(&t, &local_time)))
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2023-03-15 11:36:54 +08:00
|
|
|
snprintf(tmp_log_file_name, sizeof(tmp_log_file_name), "%s.%04d-%02d-%02d", handle->defined_log_fn, local_time.tm_year + 1900, local_time.tm_mon + 1, local_time.tm_mday);
|
2022-11-25 16:32:29 +08:00
|
|
|
|
2023-03-15 11:36:54 +08:00
|
|
|
if(handle->fp == NULL)
|
2022-11-25 16:32:29 +08:00
|
|
|
{
|
2023-03-15 11:36:54 +08:00
|
|
|
if(0 != log_open_file(tmp_log_file_name, handle)) return 0;
|
2022-11-25 16:32:29 +08:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2023-03-15 11:36:54 +08:00
|
|
|
if (0 != memcmp(tmp_log_file_name, handle->runtime_log_fn, strlen(tmp_log_file_name)))
|
2022-11-25 16:32:29 +08:00
|
|
|
{
|
2023-03-15 11:36:54 +08:00
|
|
|
if(0 != log_open_file(tmp_log_file_name, handle))return 0;
|
2022-11-25 16:32:29 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-15 11:36:54 +08:00
|
|
|
static void log_print_file(struct log_handle *handle, int level, const char *module, va_list ap, const char *fmt)
|
2022-11-25 16:32:29 +08:00
|
|
|
{
|
2023-03-15 11:36:54 +08:00
|
|
|
char buf[64]={0};
|
|
|
|
|
time_t t;
|
2022-11-25 16:32:29 +08:00
|
|
|
struct tm local_time;
|
2023-03-15 11:36:54 +08:00
|
|
|
const char *level_str_map[]= {"TRACE", "DEBUG", "INFO", "WARN", "ERROR", "FATAL"};
|
2022-11-25 16:32:29 +08:00
|
|
|
|
|
|
|
|
time(&t);
|
|
|
|
|
if(NULL == (localtime_r(&t, &local_time))) return;
|
|
|
|
|
snprintf(buf, sizeof(buf), "%s %s %d %02d:%02d:%02d %d", weekday_str[local_time.tm_wday],
|
|
|
|
|
month_str[local_time.tm_mon], local_time.tm_mday, local_time.tm_hour, local_time.tm_min, local_time.tm_sec, local_time.tm_year+1900);
|
|
|
|
|
|
2023-03-15 11:36:54 +08:00
|
|
|
log_create_log_file(handle);
|
|
|
|
|
fprintf(handle->fp, "%s, %s, %s, ", buf, level_str_map[level], module);
|
2022-11-25 16:32:29 +08:00
|
|
|
|
2023-03-15 11:36:54 +08:00
|
|
|
vfprintf(handle->fp, fmt, ap);
|
|
|
|
|
fprintf(handle->fp, "\n");
|
|
|
|
|
fflush(handle->fp);
|
2022-11-25 16:32:29 +08:00
|
|
|
}
|
|
|
|
|
|
2023-03-15 11:36:54 +08:00
|
|
|
static void log_print_console(struct log_handle *handle, int level, const char *module, va_list ap, const char *fmt)
|
2022-11-25 16:32:29 +08:00
|
|
|
{
|
|
|
|
|
char buf[64]={0};
|
|
|
|
|
time_t t;
|
|
|
|
|
struct tm local_time;
|
|
|
|
|
const char *level_str_map[]= {"TRACE", "DEBUG", "INFO", "WARN", "ERROR", "FATAL"};
|
|
|
|
|
|
|
|
|
|
time(&t);
|
|
|
|
|
if(NULL == (localtime_r(&t, &local_time))) return;
|
|
|
|
|
snprintf(buf, sizeof(buf), "%s %s %d %02d:%02d:%02d %d", weekday_str[local_time.tm_wday],
|
|
|
|
|
month_str[local_time.tm_mon], local_time.tm_mday, local_time.tm_hour, local_time.tm_min, local_time.tm_sec, local_time.tm_year+1900);
|
2023-03-15 11:36:54 +08:00
|
|
|
fprintf(handle->fp, "%s, %s, %s, ", buf, level_str_map[level], module);
|
2022-11-25 16:32:29 +08:00
|
|
|
|
2023-03-15 11:36:54 +08:00
|
|
|
vfprintf(handle->fp, fmt, ap);
|
|
|
|
|
fprintf(handle->fp, "\n");
|
|
|
|
|
fflush(handle->fp);
|
2022-11-25 16:32:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void log_options_set_level(struct log_handle * handle, int level)
|
|
|
|
|
{
|
2023-03-15 11:36:54 +08:00
|
|
|
if(handle != NULL)
|
2022-11-25 16:32:29 +08:00
|
|
|
{
|
2023-03-15 11:36:54 +08:00
|
|
|
handle->level = level;
|
2022-11-25 16:32:29 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void log_options_set_enable(struct log_handle * handle, int enable)
|
|
|
|
|
{
|
2023-03-15 11:36:54 +08:00
|
|
|
if(handle != NULL)
|
2022-11-25 16:32:29 +08:00
|
|
|
{
|
2023-03-15 11:36:54 +08:00
|
|
|
handle->enable = enable;
|
2022-11-25 16:32:29 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct log_handle *log_handle_create(const char *file_path, int level)
|
|
|
|
|
{
|
2023-03-15 11:36:54 +08:00
|
|
|
struct log_handle *handle = ALLOC(struct log_handle, 1);
|
|
|
|
|
if(!handle)
|
2022-11-25 16:32:29 +08:00
|
|
|
{
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2023-03-15 11:36:54 +08:00
|
|
|
handle->enable=1;
|
|
|
|
|
handle->level = level;
|
|
|
|
|
strncpy(handle->defined_log_fn, file_path, 1024);
|
|
|
|
|
pthread_mutex_init(&handle->mutex,NULL);
|
2022-11-25 16:32:29 +08:00
|
|
|
|
2023-03-15 11:36:54 +08:00
|
|
|
if(handle->enable)
|
|
|
|
|
{
|
|
|
|
|
log_create_path(handle->defined_log_fn);
|
|
|
|
|
}
|
2022-11-25 16:32:29 +08:00
|
|
|
|
2023-03-15 11:36:54 +08:00
|
|
|
return handle;
|
2022-11-25 16:32:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void log_handle_destroy(struct log_handle * handle)
|
|
|
|
|
{
|
2023-03-15 11:36:54 +08:00
|
|
|
if(!handle)
|
2022-11-25 16:32:29 +08:00
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
2023-03-15 11:36:54 +08:00
|
|
|
|
|
|
|
|
if(handle->iface == LOG_OP_IFACE_FILE && handle->fp != NULL)
|
2022-11-25 16:32:29 +08:00
|
|
|
{
|
2023-03-15 11:36:54 +08:00
|
|
|
fclose(handle->fp);
|
|
|
|
|
handle->fp=NULL;
|
2022-11-25 16:32:29 +08:00
|
|
|
}
|
2023-03-15 11:36:54 +08:00
|
|
|
|
|
|
|
|
pthread_mutex_destroy(&(handle->mutex));
|
2022-11-25 16:32:29 +08:00
|
|
|
free(handle);
|
|
|
|
|
handle = NULL;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void log_print(struct log_handle *handle, int level, const char *module, const char *fmt, ...)
|
|
|
|
|
{
|
2023-03-15 11:36:54 +08:00
|
|
|
va_list ap;
|
2022-11-25 16:32:29 +08:00
|
|
|
|
2023-03-15 11:36:54 +08:00
|
|
|
if(handle->enable != 1 && level >= handle->level)
|
2022-11-25 16:32:29 +08:00
|
|
|
{
|
2023-03-15 11:36:54 +08:00
|
|
|
handle->fp = stdout;
|
|
|
|
|
handle->iface = LOG_OP_IFACE_CONSOLE;
|
|
|
|
|
va_start(handle->ap, fmt);
|
|
|
|
|
log_print_console(handle, level, module, ap, fmt);
|
|
|
|
|
va_end(handle->ap);
|
2022-11-25 16:32:29 +08:00
|
|
|
}
|
2023-03-15 11:36:54 +08:00
|
|
|
if (handle->enable == 1 && level >= handle->level)
|
2022-11-25 16:32:29 +08:00
|
|
|
{
|
2023-03-15 11:36:54 +08:00
|
|
|
handle->iface = LOG_OP_IFACE_FILE;
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
|
log_print_file(handle, level, module, ap, fmt);
|
|
|
|
|
va_end(ap);
|
2022-11-25 16:32:29 +08:00
|
|
|
}
|
2023-03-27 15:52:47 +08:00
|
|
|
}
|