从CodeProject那里找到并且剥离出来的一个Trace Log类

本文涉及的产品
日志服务 SLS,月写入数据量 50GB 1个月
简介:
这个类还不错的说,希望看到原文的请到CodeProject去看,原文地址是:
http://www.codeproject.com/debug/logtrace.asp

下面我把源代码放上来.
////////////////////////////////////////////////////////////////////////
//   LogTrace.cpp -- Interface for the CLogTrace class
//   A class to do debug logging


#ifndef __LOGTRACE_H__
#define __LOGTRACE_H__

class CLogTrace
{
// Construction/Destruction
public:
    CLogTrace();
    ~CLogTrace();


// Attributes
public:
    CString m_strAppName;

protected:
    BOOL m_bActive;
    CString m_strFileName;
    BOOL m_bTimeStamp;

// Operations
public:
    void WriteLine(LPCTSTR szLine);
    void WriteLine(LPCTSTR szFormat, LPCTSTR szAddInfo);
    void WriteLine(LPCTSTR szFormat, int nAddInfo);
    void ResetFile();
    void OnStartup(BOOL bActive, BOOL bTimeStamp);
    void SetFileName(LPCTSTR szFileName);


protected:



// Inlines
public:
    inline void SetActive(BOOL bSet)
    {
        m_bActive = bSet;
    }

    inline CString GetFileName()
    {
        return m_strFileName;
    }

}
;


#endif  //  __LOGTRACE_H__

 

 

////////////////////////////////////////////////////////////////////////
//   LogTrace.cpp -- Implementation of the CLogTrace class


#include "stdafx.h"
#include <afxdisp.h>
#include "LogTrace.h"

/**************************************************

 How to use CLogTrace

    1.  Make a static CLogTrace object as a member of the application class

    2.    Add the following lines to the InitInstance of the program

    
    m_LogTrace.m_strAppName = "MyApp"; // use appropriate name here

    m_LogTrace.SetFileName("Log.txt"); // sets the log file name and puts it in the exe path

    m_LogTrace.OnStartup(TRUE, TRUE); // activates the log trace

    3.  Also in InitInstance, add the following line if you want to empty the log file
    each time the application starts
    
    m_LogTrace.ResetFile();


    4.  Any time you want to write to the log file, use the CLogTrace::WriteLine functions
    these will write the text along with date and time


******************************************************
*/




//////////////////////////////////////////////////////
//   Construction/Destruction

CLogTrace::CLogTrace()
{
    m_bActive = FALSE;
    m_bTimeStamp = TRUE;

    CString s;
}



CLogTrace::~CLogTrace()
{


}


////////////////////////////////////////////////////////
//   CLogTrace operations


void CLogTrace::ResetFile()
{
    CStdioFile f;
    CFileException fe;
    CString s;

    if (m_strFileName.IsEmpty()) return;

    if (f.Open(m_strFileName, CFile::modeWrite | CFile::modeCreate, &fe) == FALSE)
    {
        return;
    }


    f.Close();
}




//  bActive tells us if we want the trace to be active or not
//  bTimeStamp tells us if we want time stamps on each line
//  eliminating the time stamp allows us to use this class for a regular log file
void CLogTrace::OnStartup(BOOL bActive, BOOL bTimeStamp)
{
    m_bActive = bActive;
    m_bTimeStamp = bTimeStamp;
    if (bTimeStamp == FALSE) return;
    CString s;

    // these ***'s help to indicate when one ru of the program ends and another starts
    
// because we don't always overwrite the file each time

    WriteLine("\n\n******************************************\n\n");
    s.Format("%s Log Trace %s\n\n", m_strAppName, COleDateTime::GetCurrentTime().Format());
    WriteLine(s);
}




//  function to write a line of text to the log file
void CLogTrace::WriteLine(LPCTSTR szLine)
{
    CStdioFile f;
    CFileException fe;
    CString s;

    if (m_bActive == FALSE) return;
    if (m_strFileName.IsEmpty()) return;

    if (f.Open(m_strFileName, CFile::modeWrite | CFile::modeCreate |
        CFile::modeNoTruncate, &fe) == FALSE)
    {
        return;
    }


    try
    {
        f.SeekToEnd();
        TRACE("LOGGIN %s\n", szLine);
        if (m_bTimeStamp)
        {
            s.Format("%s\t%s\n", COleDateTime::GetCurrentTime().Format(),
                szLine);
        }

        else
        {
            s.Format("%s\n", szLine);
        }

        f.WriteString(s);
    }

    catch (CException* e)
    {
        e->Delete();
    }

    f.Close();
}


//  function to write a line of text, with an extra string
void CLogTrace::WriteLine(LPCTSTR szFormat, LPCTSTR szAddInfo)
{
    if (m_bActive == FALSE) return;
    CString s;
    s.Format(szFormat, szAddInfo);
    WriteLine(s);
}



//  funtion to write a line of text with an extra integer
void CLogTrace::WriteLine(LPCTSTR szFormat,  int nAddInfo)
{
    if (m_bActive == FALSE) return;
    CString s;
    s.Format(szFormat, nAddInfo);
    WriteLine(s);
}



//  function to set the log file name.  don't pass a fill path!
//  just pass something like "log.txt"
//  the file will be placed in the same dir as the exe file
void CLogTrace::SetFileName(LPCTSTR szFileName)
{
    TCHAR drive[_MAX_PATH], dir[_MAX_PATH], name[_MAX_PATH], ext[_MAX_PATH];

    const char *path = _pgmptr ;

    _splitpath(path, drive, dir, name, ext);

    m_strFileName.Format("%s%s%s", drive, dir, szFileName);

}
相关实践学习
日志服务之使用Nginx模式采集日志
本文介绍如何通过日志服务控制台创建Nginx模式的Logtail配置快速采集Nginx日志并进行多维度分析。
目录
相关文章
|
6月前
|
存储 数据采集 Kubernetes
一文详解K8s环境下Job类日志采集方案
本文介绍了K8s中Job和Cronjob控制器用于非常驻容器编排的场景,以及Job容器的特点:增删频率高、生命周期短和突发并发大。文章重点讨论了Job日志采集的关键考虑点,包括容器发现速度、开始采集延时和弹性支持,并对比了5种采集方案:DaemonSet采集、Sidecar采集、ECI采集、同容器采集和独立存储采集。对于短生命周期Job,建议使用Sidecar或ECI采集,通过调整参数确保数据完整性。对于突发大量Job,需要关注服务端资源限制和采集容器的资源调整。文章总结了不同场景下的推荐采集方案,并指出iLogtail和SLS未来可能的优化方向。
|
2月前
|
设计模式 SQL 安全
PHP中的设计模式:单例模式的深入探索与实践在PHP的编程实践中,设计模式是解决常见软件设计问题的最佳实践。单例模式作为设计模式中的一种,确保一个类只有一个实例,并提供全局访问点,广泛应用于配置管理、日志记录和测试框架等场景。本文将深入探讨单例模式的原理、实现方式及其在PHP中的应用,帮助开发者更好地理解和运用这一设计模式。
在PHP开发中,单例模式通过确保类仅有一个实例并提供一个全局访问点,有效管理和访问共享资源。本文详细介绍了单例模式的概念、PHP实现方式及应用场景,并通过具体代码示例展示如何在PHP中实现单例模式以及如何在实际项目中正确使用它来优化代码结构和性能。
49 2
|
2月前
|
存储 运维 监控
超级好用的C++实用库之日志类
超级好用的C++实用库之日志类
41 0
|
6月前
|
Java 计算机视觉 Python
我的自描外挂制作日志——FPS类游戏的自瞄【优化改进1】
我的自描外挂制作日志——FPS类游戏的自瞄【优化改进1】
126 1
|
3月前
|
数据采集 监控 Kubernetes
Job类日志采集问题之iLogtail以减小容器发现和开始采集的延时如何优化
Job类日志采集问题之iLogtail以减小容器发现和开始采集的延时如何优化
|
3月前
|
数据采集 Kubernetes Java
Job类日志采集问题之在日志中添加容器的元信息标签,如何操作
Job类日志采集问题之在日志中添加容器的元信息标签,如何操作
|
3月前
|
存储 容器
Job类日志采集问题之DaemonSet采集方式的参数以减小采集延时如何调整
Job类日志采集问题之DaemonSet采集方式的参数以减小采集延时如何调整
|
3月前
|
容器
Job类日志采集问题之ECI产品采集方式对于弹性扩缩容是如何支持的
Job类日志采集问题之ECI产品采集方式对于弹性扩缩容是如何支持的
|
3月前
|
存储 数据采集 容器
Job类日志采集问题之DaemonSet采集方式在Job日志采集上如何表现
Job类日志采集问题之DaemonSet采集方式在Job日志采集上如何表现
|
3月前
|
存储 Kubernetes 数据处理
Job类日志采集问题之为什么Job容器的日志采集要考虑容器发现速度和开始采集延时,如何理解
Job类日志采集问题之为什么Job容器的日志采集要考虑容器发现速度和开始采集延时,如何理解
下一篇
无影云桌面