linuxの下でC言語はログを書く機能を実現します
4050 ワード
まずプログラムに上がって、このプログラムはテストを経てよくログを書く要求を実現することができます
プログラム実装のログ形式は次のとおりです.
時間+スペース+インプリメンテーション(独自のデバッグ内容)
このプログラムの学習に値する点: va_List構造体の使用 linuxのフォーマット出力文字列 ファイル操作中pthread_mutexロックの使用、および彼の利点 linux DEBUGの応用、便利なデバッグ linuxはログを表示する方法:
tailコマンドを使用すると、ログのクエリーやその他の機能を実現できます.知らない場合は、自分で資料を調べて解決します.
上の応用が分からない場合は、自分で資料を調べて解決してください.
/*************************************************************************
> File Name: log.c
> Author:
************************************************************************/
#include
#include
#include
#include
#include
#include
#include
#include
#include
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
", 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);
}
プログラム実装のログ形式は次のとおりです.
時間+スペース+インプリメンテーション(独自のデバッグ内容)
このプログラムの学習に値する点:
tailコマンドを使用すると、ログのクエリーやその他の機能を実現できます.知らない場合は、自分で資料を調べて解決します.
上の応用が分からない場合は、自分で資料を調べて解決してください.