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;
}
相关推荐
汤姆_5113 分钟前
【c语言】深入理解指针2
c语言·开发语言
愚润求学15 分钟前
【C++】map和set
开发语言·c++·笔记
末央&20 分钟前
【C++】priority_queue的底层封装和实现
开发语言·c++
Better Rose33 分钟前
【2025“华中杯”大学生数学建模挑战赛】C题:就业状态分析与预测 详细解题思路
c语言·开发语言·数学建模
网络安全研发随想40 分钟前
C语言核心结构+难点精讲+工程技巧
c语言·开发语言·算法
superior tigre1 小时前
C++学习:六个月从基础到就业——面向对象编程:虚函数与抽象类
开发语言·c++·学习
ademen1 小时前
关于 IntelliJ IDEA 中频繁出现的 Kotlin 及其核心作用
java·开发语言·kotlin
superior tigre2 小时前
C++学习:六个月从基础到就业——面向对象编程:重载运算符(下)
c++·学习
m0_zj2 小时前
41.[前端开发-JavaScript高级]Day06-原型关系图-ES6类的使用-ES6转ES5
开发语言·javascript·es6
海棠蚀omo2 小时前
C++笔记-list
开发语言·c++·笔记