mirror of
https://github.com/yanyiwu/cppjieba.git
synced 2025-07-18 00:00:12 +08:00
69 lines
2.2 KiB
C++
69 lines
2.2 KiB
C++
/************************************
|
|
* file enc : utf8
|
|
* author : wuyanyi09@gmail.com
|
|
************************************/
|
|
#ifndef LIMONP_LOGGER_H
|
|
#define LIMONP_LOGGER_H
|
|
|
|
#include <vector>
|
|
#include <iostream>
|
|
#include <fstream>
|
|
#include <string>
|
|
#include <cstring>
|
|
#include <stdio.h>
|
|
#include <cstdlib>
|
|
#include <stdarg.h>
|
|
#include <time.h>
|
|
#include <cassert>
|
|
|
|
#define LogDebug(fmt, ...) limonp::Logger::LoggingF(limonp::LL_DEBUG, __FILE__, __LINE__, fmt, ## __VA_ARGS__)
|
|
#define LogInfo(fmt, ...) limonp::Logger::LoggingF(limonp::LL_INFO, __FILE__, __LINE__, fmt, ## __VA_ARGS__)
|
|
#define LogWarn(fmt, ...) limonp::Logger::LoggingF(limonp::LL_WARN, __FILE__, __LINE__, fmt, ## __VA_ARGS__)
|
|
#define LogError(fmt, ...) limonp::Logger::LoggingF(limonp::LL_ERROR, __FILE__, __LINE__, fmt, ## __VA_ARGS__)
|
|
#define LogFatal(fmt, ...) {limonp::Logger::LoggingF(limonp::LL_FATAL, __FILE__, __LINE__, fmt, ## __VA_ARGS__); abort();}
|
|
|
|
namespace limonp {
|
|
using namespace std;
|
|
enum {LL_DEBUG = 0, LL_INFO = 1, LL_WARN = 2, LL_ERROR = 3, LL_FATAL = 4, LEVEL_ARRAY_SIZE = 5, CSTR_BUFFER_SIZE = 32};
|
|
static const char * LOG_LEVEL_ARRAY[LEVEL_ARRAY_SIZE]= {"DEBUG","INFO","WARN","ERROR","FATAL"};
|
|
static const char * LOG_FORMAT = "%s %s:%d %s %s\n";
|
|
static const char * LOG_TIME_FORMAT = "%Y-%m-%d %H:%M:%S";
|
|
|
|
class Logger {
|
|
public:
|
|
static void Logging(size_t level, const string& msg, const char* fileName, int lineno) {
|
|
assert(level <= LL_FATAL);
|
|
char buf[CSTR_BUFFER_SIZE];
|
|
time_t timeNow;
|
|
time(&timeNow);
|
|
strftime(buf, sizeof(buf), LOG_TIME_FORMAT, localtime(&timeNow));
|
|
fprintf(stderr, LOG_FORMAT, buf, fileName, lineno,LOG_LEVEL_ARRAY[level], msg.c_str());
|
|
}
|
|
static void LoggingF(size_t level, const char* fileName, int lineno, const char* const fmt, ...) {
|
|
#ifdef LOGGER_LEVEL
|
|
if(level < LOGGER_LEVEL) return;
|
|
#endif
|
|
int size = 256;
|
|
string msg;
|
|
va_list ap;
|
|
while (1) {
|
|
msg.resize(size);
|
|
va_start(ap, fmt);
|
|
int n = vsnprintf((char *)msg.c_str(), size, fmt, ap);
|
|
va_end(ap);
|
|
if (n > -1 && n < size) {
|
|
msg.resize(n);
|
|
break;
|
|
}
|
|
if (n > -1)
|
|
size = n + 1;
|
|
else
|
|
size *= 2;
|
|
}
|
|
Logging(level, msg, fileName, lineno);
|
|
}
|
|
};
|
|
}
|
|
|
|
#endif
|