linux下C語言實現(xiàn)寫日志功能
發(fā)布日期:2022-04-01 10:31 | 文章來源:CSDN
先上程序,該程序經(jīng)過測試能夠很好的實現(xiàn)寫日志要求
/*************************************************************************
> File Name: log.c
> Author:
************************************************************************/
#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <stdarg.h>
#include <time.h>
#include <pthread.h>
int safe_asprintf(char **strp, const char *fmt, ...);
int safe_vasprintf(char **strp, const char *fmt, va_list ap);
void plog(const char *format, ...) ;
void pinfo(const char *format, ...) ;
#define DEBUG
#ifdef DEBUG
void plog(const char *format, ...);
void pinfo(const char *format, ...);
#define debug(fmt, args...) plog(fmt, ##args)
#else
#define debug(fmt, args...) do{}while(0)
#endif
static pthread_mutex_t fileMutex = PTHREAD_MUTEX_INITIALIZER;
int main(int argc, char *argv)
{
return 0;
}
/*
* safe_asprintf();
*/
int safe_asprintf(char **strp, const char *fmt, ...)
{
va_list ap;
int retval;
va_start(ap, fmt);
retval = safe_vasprintf(strp, fmt, ap);
va_end(ap);
return retval;
}
/*
* safe_vasprintf();
*/
int safe_vasprintf(char **strp, const char *fmt, va_list ap)
{
int retval;
retval = vasprintf(strp, fmt, ap);
if (retval == -1)
{
printf("Failed to vasprintf: %s. Bailing out\n", strerror(errno));
return 1;
}
return retval;
}
/*
* plog();
*/
void plog(const char *format, ...)
{
pthread_mutex_lock(&fileMutex);
FILE *fp = NULL;
va_list vlist;
char *fmt = NULL;
// Open debug info output file.
if (!(fp = fopen("log.txt", "a+"))) {
pthread_mutex_unlock(&fileMutex);
return;
}
va_start(vlist, format);
safe_vasprintf(&fmt, format, vlist);
va_end(vlist);
if (!fmt) {
pthread_mutex_unlock(&fileMutex);
return;
}
time_t timep;
struct tm *ptm = NULL;
time(&timep);
ptm = localtime(&timep);
fprintf(fp, "[%04d-%02d-%02d-%02d-%02d-%02d] %s",
ptm->tm_year + 1900,
ptm->tm_mon + 1,
ptm->tm_mday,
ptm->tm_hour,
ptm->tm_min,
ptm->tm_sec,
fmt);
free(fmt);
fsync(fileno(fp));
fclose(fp);
pthread_mutex_unlock(&fileMutex);
}
/*
* pinfo();
*/
void pinfo(const char *format, ...)
{
pthread_mutex_lock(&fileMutex);
FILE *fp = NULL;
va_list vlist;
char *fmt = NULL;
// Open debug info output file.
if (!(fp = fopen("log.txt", "a+"))) {
pthread_mutex_unlock(&fileMutex);
return;
}
va_start(vlist, format);
safe_vasprintf(&fmt, format, vlist);
va_end(vlist);
if (!fmt) {
pthread_mutex_unlock(&fileMutex);
return;
}
fprintf(fp, "%s", fmt);
free(fmt);
fsync(fileno(fp));
fclose(fp);
pthread_mutex_unlock(&fileMutex);
}
程序?qū)崿F(xiàn)的日志格式為:
時間 + 空格 + 具體實現(xiàn)(自己的調(diào)試內(nèi)容)
本段程序值得學(xué)習(xí)的地方:
- va_list 結(jié)構(gòu)體的使用
- linux 的格式化輸出字符串
- 文件操作過程中pthread_mutex鎖的使用,以及他的優(yōu)點
- linux DEBUG 的應(yīng)用,方便調(diào)試
linux如何查看日志:
使用tail 命令可以實現(xiàn)日志的查詢,以及其他功能,不了解的話,自行查資料解決。
對上面應(yīng)用不明白的請自行查資料解決。
版權(quán)聲明:本站文章來源標(biāo)注為YINGSOO的內(nèi)容版權(quán)均為本站所有,歡迎引用、轉(zhuǎn)載,請保持原文完整并注明來源及原文鏈接。禁止復(fù)制或仿造本網(wǎng)站,禁止在非maisonbaluchon.cn所屬的服務(wù)器上建立鏡像,否則將依法追究法律責(zé)任。本站部分內(nèi)容來源于網(wǎng)友推薦、互聯(lián)網(wǎng)收集整理而來,僅供學(xué)習(xí)參考,不代表本站立場,如有內(nèi)容涉嫌侵權(quán),請聯(lián)系alex-e#qq.com處理。
相關(guān)文章
關(guān)注官方微信