c++日志练习
使用ostream流创建写入log日志文件
使用宏 配置文件大小和间隔时间 当创建文件时间间隔或文件大小大于指定数字 则创建新文件
文件名由时间自动命名
群号码:324164944
欢迎c c++ windows驱动爱好者 服务器程序员沟通交流
#include "stdafx.h"
#include "StreamLog.h"
#include <sstream> namespace DEFTOOLS {
LogFile::LogFile():pOfsLogFile_(NULL){
filePath_ = "";
fileName_ = filePath_ + MakeFileName();
} LogFile::LogFile(const std::string& filePath): pOfsLogFile_(NULL){
filePath_ = filePath;
fileName_ = filePath_ + MakeFileName();
} const std::string LogFile::MakeFileName() {
struct tm t = tm_.GetCurrentDataTime();
std::stringstream s;
std::string str;
s << t.tm_year + << "_" << t.tm_mon + << "_"
<< t.tm_mday << "_" << t.tm_hour << "_" <<
t.tm_min << "_" << t.tm_sec << ".log";
s >> str;
return str;
}
bool LogFile::CreateFile() {
bool bRet = false;
try {
pOfsLogFile_ = new std::ofstream(fileName_.c_str(), std::ios_base::app);
if (NULL == pOfsLogFile_ || pOfsLogFile_->bad())
{
pOfsLogFile_ = NULL;
std::exception e("open ofstream error");
throw e;
}
tm_.SetBeginTime();
bRet = true;
}
catch (const std::exception& error)
{
std::cerr << error.what() << std::endl;
} return bRet;
} bool LogFile::InitFunc() {
return CreateFile();
} LogFile::~LogFile(){
if (NULL != pOfsLogFile_)
{
pOfsLogFile_->close();
delete pOfsLogFile_;
}
} void LogFile::CheckFile() {
tm_.SetEndTime();
if ((tm_.GetDeltaTime() > DEFAULT_DELTA_TIME) ||
GetFileSize() > DEFAULT_FILE_SIZE) {
if (NULL != pOfsLogFile_) {
pOfsLogFile_->close();
delete pOfsLogFile_;
pOfsLogFile_ = NULL;
}
fileName_ = filePath_ + MakeFileName();
CreateFile();
}
} const std::string LogFile::GetCurrentTimeString()
{
struct tm t = tm_.GetCurrentDataTime();
std::stringstream s;
std::string str;
std::string strTime;
s << t.tm_year + << "-" << t.tm_mon + << "-"
<< t.tm_mday;
s >> str;
s.clear();
s << t.tm_hour << ":" <<
t.tm_min << ":" << t.tm_sec << "\t\t";
s >> strTime; str += " ";
str += strTime;
return str;
} std::string LogFile::GetLevelString(const WriteLevel wl) {
std::string levelStr;
switch (wl)
{
case NORMAL_L:
levelStr = "[normal ]\t";
break;
case WARNING_L:
levelStr = "[warning]\t";
break;
case ERROR_L:
levelStr = "[error ]\t";
break;
case UNKNOWN_L:
levelStr = "[unknown]\t";
break;
default:
levelStr = "[???????]\t";
break;
}
return levelStr;
} bool LogFile::WriteLog( std::string wrtieStr, const WriteLevel wl) {
bool bRet = false;
CheckFile();
if (!pOfsLogFile_) {
return bRet;
}
(*pOfsLogFile_) << GetCurrentTimeString() << GetLevelString(wl) << wrtieStr << std::endl;
bRet = true;
return bRet;
} }//namespace DEFTOOLS
#pragma once #include <time.h>
#include <string>
#include <fstream>
#include <iostream>
#include <string> namespace DEFTOOLS {
#define DEFAULT_DELTA_TIME (60*2) //日志切换时间
#define DEFAULT_FILE_SIZE (1024*1024*1024) //日志切换文件大小 typedef enum WRITE_LEVEL
{
NORMAL_L = ,
WARNING_L,
ERROR_L,
UNKNOWN_L
}WriteLevel; // Time 管理时间及时间差 以及年月日
class LogTime {
public:
LogTime() :timeBegin_(time(NULL)), timeEnd_(time(NULL)) {
time_t t = time(NULL);
localtime_s(&tm_, &t);
} void SetBeginTime() { timeBegin_ = time(NULL); }
void SetEndTime() { timeEnd_ = time(NULL); } time_t GetBeginTime() { return timeBegin_; }
time_t GetEndTime() { return timeEnd_; }
time_t GetDeltaTime() { return timeEnd_ - timeBegin_; }
struct tm GetCurrentDataTime() {
time_t t = time(NULL);
localtime_s(&tm_, &t);
return tm_;
};
private:
time_t timeBegin_;
time_t timeEnd_;
struct tm tm_;
}; class LogFile {
public:
LogFile();
LogFile(const std::string& filePath);
virtual ~LogFile();
bool InitFunc();
std::streampos GetFileSize() { if (!pOfsLogFile_) { return ; }return pOfsLogFile_->tellp(); };
void CheckFile();
bool WriteLog(const std::string wrtieStr, const WriteLevel wl = NORMAL_L);
//============================
void WriteFileTest() {
CheckFile();
if (!pOfsLogFile_){
return;
}
(*pOfsLogFile_) << "测试1234" << std::endl;
}
//============================
private:
bool CreateFile();
const std::string GetCurrentTimeString();
const std::string MakeFileName();
std::string LogFile::GetLevelString(const WriteLevel wl);
std::string fileName_;
std::string filePath_;
std::ofstream* pOfsLogFile_;
LogTime tm_;
}; }//namespace DEFTOOLS
运行效果图
c++日志练习的更多相关文章
- .NetCore中的日志(2)集成第三方日志工具
.NetCore中的日志(2)集成第三方日志工具 0x00 在.NetCore的Logging组件中集成NLog 上一篇讨论了.NetCore中日志框架的结构,这一篇讨论一下.NetCore的Logg ...
- .NetCore中的日志(1)日志组件解析
.NetCore中的日志(1)日志组件解析 0x00 问题的产生 日志记录功能在开发中很常用,可以记录程序运行的细节,也可以记录用户的行为.在之前开发时我一般都是用自己写的小工具来记录日志,输出目标包 ...
- Logstash实践: 分布式系统的日志监控
文/赵杰 2015.11.04 1. 前言 服务端日志你有多重视? 我们没有日志 有日志,但基本不去控制需要输出的内容 经常微调日志,只输出我们想看和有用的 经常监控日志,一方面帮助日志微调,一方面及 ...
- SQLServer事务同步下如何收缩日志
事务同步是SQLServer做读写分离的一种常用的方式. 随着业务数据的不断增长,数据库积攒了大量的日志,为了腾出硬盘空间,需要对数据库日志进行清理 订阅数据库的日志清理 因为订阅数据库所有的数据都来 ...
- 如何正确使用日志Log
title: 如何正确使用日志Log date: 2015-01-08 12:54:46 categories: [Python] tags: [Python,log] --- 文章首发地址:http ...
- 前端学HTTP之日志记录
前面的话 几乎所有的服务器和代理都会记录下它们所处理的HTTP事务摘要.这么做出于一系列的原因:跟踪使用情况.安全性.计费.错误检测等等.本文将谥介绍日志记录 记录内容 大多数情况下,日志的记录出于两 ...
- ASP.NET Core应用中如何记录和查看日志
日志记录不仅对于我们开发的应用,还是对于ASP.NET Core框架功能都是一项非常重要的功能特性.我们知道ASP.NET Core使用的是一个极具扩展性的日志系统,该系统由Logger.Logger ...
- .NET Core的日志[5]:利用TraceSource写日志
从微软推出第一个版本的.NET Framework的时候,就在“System.Diagnostics”命名空间中提供了Debug和Trace两个类帮助我们完成针对调试和跟踪信息的日志记录.在.NET ...
- .NET Core的日志[4]:将日志写入EventLog
面向Windows的编程人员应该不会对Event Log感到陌生,以至于很多人提到日志,首先想到的就是EventLog.EventLog不仅仅记录了Windows系统自身针对各种事件的日志,我们的应用 ...
- .NET Core的日志[3]:将日志写入Debug窗口
定义在NuGet包"Microsoft.Extensions.Logging.Debug"中的DebugLogger会直接调用Debug的WriteLine方法来写入分发给它的日志 ...
随机推荐
- 随着firefox的迭代更新:FireBug不能用了?使用火狐Try Xpath插件替代Firebug和Firepath
本篇文章讲解如何在火狐中安装和使用Try Xpath(插件替代Firebug和Firepath). 在火狐中安装Try Xpath 1. 打开火狐浏览器 FireFox57以上的版本 2. 在火狐菜单 ...
- Angular5 UI post 请求 输出 文件下载
this.httpClient.post(url1, JSON.parse(data1) , {responseType: 'blob'}).subscribe(data => { const ...
- VB6 创建控制台应用程序
' 功能:为VB程序创建一个consolewindow.Private Declare Function AllocConsole Lib "kernel32" () As Lon ...
- UI5-文档-2.5-开发混合Web容器
开发混合Web容器 您可以将移动应用程序开发为混合应用程序,该混合应用程序由本机应用程序包装程序(例如PhoneGap)和HTML查看器组成,用于在用户界面上显示内容. 混合应用程序的优点是可以在应用 ...
- python之内置函数:map ,filter ,reduce总结
map函数: #处理序列中的每个元素,得到的结果是一个'列表',该列表元素个数及位置与原来一样 filter函数: #遍历序列中的每个元素,判断每个元素得到一个布尔值,如果是true,则留下来 peo ...
- 脚本中 %~dp0
cmd窗口中 for /? 查询参数含义 %~dp0, 将参数转换为磁盘路径+名字 例: 脚本中一行 %~dp0abc.exe (abc.exe位置c:\test\abc.exe) 展开后则为 c:\ ...
- win32允许前置窗口
win32允许前置窗口函数 AllowSetForegroundWindow(HWND hWnd) 该函数允许其他窗口调用SetForegroundWindow()(将窗口设为前置窗口),前提是调用A ...
- Maven的配置以及IDEA导入本地Maven
1.首先看你的电脑jdk的环境变量是否配成功 2.Maven的下载地址:http://maven.apache.org/download.cgi 3.下载完成后解压到你要安装的目录,我的是直接放在D: ...
- kernel TCP time wait bucket table overflow
# 故障描述 有一个需求是实时分析API接口访问日志,提取token去数据库查询对应的uid,然后收集一些指标存入到hbase中. 当程序执行一会后会被系统杀死 Killed ! # 故障排查 .CP ...
- dll is in timestamps but is not known in guidmapper… 错误
解决方法是:在Assets下右键,Reimport All