c++日志单例实现

为了使项目的所有日志都打印到同一个日志中,必须使得所有类使用同一个日志,因此将日志类实现为单例。

.h文件

cpp 复制代码
#pragma once

#include<fstream>

class LogHablee
{
private:
	LogHablee(std::string& dbg_dir);
	LogHablee(const LogHablee&) = delete;
	LogHablee& operator=(const LogHablee&) = delete;


	static LogHablee* _ins;	

public:
	void getNowTimePrefix(std::string& now_time_prefix);


public:
	static LogHablee* getInstance(std::string& dbg_dir)
	{
		if (_ins == nullptr)
		{
			_ins = new LogHablee(dbg_dir);
		}
		return _ins;
	}

	std::ofstream log;
};

.cpp文件

cpp 复制代码
#include "LogHablee.h"
#include<string>


LogHablee* LogHablee::_ins = nullptr;

LogHablee::LogHablee(std::string& dbg_dir)
{
	std::string nowTimePrefix;
	getNowTimePrefix(nowTimePrefix);

	std::string logFilePath(dbg_dir + "/" + nowTimePrefix + "_log.txt");
	this->log.open(logFilePath, std::ios::trunc);
}

void LogHablee::getNowTimePrefix(std::string& now_time_prefix)
{
	std::time_t now_time;
	struct tm* p = new tm;
	std::time(&now_time);
	localtime_s(p, &now_time);
	int year = p->tm_year + 1900;
	int month = p->tm_mon + 1;
	int day = p->tm_mday;
	int hour = p->tm_hour;
	int minute = p->tm_min;
	int second = p->tm_sec;
	delete p;
	// 20221130_134024: 2022年11月30日13点40分24秒
	now_time_prefix = std::to_string(year)
		+ std::string(2 - std::to_string(month).length(), '0') + std::to_string(month)
		+ std::string(2 - std::to_string(day).length(), '0') + std::to_string(day)
		+ "_"
		+ std::string(2 - std::to_string(hour).length(), '0') + std::to_string(hour)
		+ std::string(2 - std::to_string(minute).length(), '0') + std::to_string(minute)
		+ std::string(2 - std::to_string(second).length(), '0') + std::to_string(second);
}

另一个使用到log的类的.h文件

cpp 复制代码
#pragma once
#include<string>


class AClass
{
public:
	AClass(std::string& dbg_dir):_dbgDir(dbg_dir) {}

	void test();

private:
	std::string _dbgDir;
};

# 另一个使用到log的类的.cpp文件

cpp 复制代码
#include "AClass.h"
#include"LogHablee.h"

void AClass::test()
{
	std::string nowTimePrefix;

	LogHablee* pHablee = LogHablee::getInstance(this->_dbgDir);

	pHablee->getNowTimePrefix(nowTimePrefix);
	pHablee->log << nowTimePrefix
		<< ": in AClass::test function"
		<< std::endl;
}

main函数

cpp 复制代码
#include"LogHablee.h"
#include<iostream>
#include"AClass.h"

int main()
{
	std::string nowTimePrefix;

	std::string dbgDir("./");
	LogHablee* pHablee = LogHablee::getInstance(dbgDir);


	pHablee->getNowTimePrefix(nowTimePrefix);
	pHablee->log << nowTimePrefix
		<< ": PROGRAM START, version 1.0.0.0"
		<< std::endl;


	AClass a(dbgDir);
	a.test(); // a.test()里面的日志内容也会写入到一开始创建的日志中

	return 0;
}
相关推荐
条tiao条6 分钟前
KMP 算法详解:告别暴力匹配,让字符串匹配 “永不回头”
开发语言·算法
干啥啥不行,秃头第一名11 分钟前
C++20概念(Concepts)入门指南
开发语言·c++·算法
2301_8073671938 分钟前
C++中的解释器模式变体
开发语言·c++·算法
always_TT1 小时前
C语言中的字符与字符串(char数组)
c语言·开发语言
forAllforMe1 小时前
LAN9252 从机寄存器配置--C语言举例
c语言·开发语言
weixin_537590452 小时前
《C程序设计语言》练习答案(练习1-4)
c语言·开发语言
chushiyunen2 小时前
python中的内置属性 todo
开发语言·javascript·python
麦麦鸡腿堡2 小时前
JavaWeb_请求参数,设置响应数据,分层解耦
java·开发语言·前端
2301_819414302 小时前
C++与区块链智能合约
开发语言·c++·算法
不想看见4043 小时前
Valid Parentheses栈和队列--力扣101算法题解笔记
开发语言·数据结构·c++