A Simple Log Writer And Log Searching Class

2:10 AM
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;

class clsLog
{

    private StringBuilder strLog;
    private string strFileName = string.Empty;

    //Initialize Logging
    //###############################################################################################################################
    public void StartLogging(string strLogFileName)
    {
        strLog = new StringBuilder();
        strLog.Append("Logging Started At :     [" + DateTime.Now.ToString("MM/dd/yyyy hh:mm:ss tt") + "]" + Environment.NewLine + Environment.NewLine);
        strFileName = strLogFileName;
    }
    //###############################################################################################################################


    //Write Log Entry
    //###############################################################################################################################
    public void WriteLogEntry(string strEntry)
    {
        strLog.Append("[" + DateTime.Now.ToString("MM/dd/yyyy hh:mm:ss tt") + "]     " + strEntry + Environment.NewLine);
    }
    //###############################################################################################################################


    //New Line
    //###############################################################################################################################
    public void NewLine()
    {
        strLog.Append(Environment.NewLine);
    }
    //###############################################################################################################################


    //Stop Logging
    //###############################################################################################################################
    public void StopLogging()
    {
        strLog.Append(Environment.NewLine + "Logging Stopped At :     [" + DateTime.Now.ToString("MM/dd/yyyy hh:mm:ss tt") + "]" + Environment.NewLine);
        if (System.IO.File.Exists(strFileName))
        {
            using (StreamWriter sw = File.AppendText(strFileName))
            {
                sw.Write(strLog.ToString());
                sw.Close();
            }
        }
        else
        {
            System.IO.File.WriteAllText(strFileName,strLog.ToString());
        }
    }
    //###############################################################################################################################

    //Search Log
    //###############################################################################################################################
    public string SearchLog(string strLogFileName, DateTime dtFrom, DateTime dtTo)
    {
        if (!File.Exists(strLogFileName)) { return null; }

        string strReturnString = string.Empty;
        using (StreamReader sr = new StreamReader(strLogFileName)) //strFileName
        {
            String line;
            while ((line = sr.ReadLine()) != null)
            {
                DateTime strDateTime;
                if (line.Length > 22)
                {
                    DateTime.TryParse(line.Substring(0, 25).Replace('[', ' ').Replace(']', ' ').Trim(), out strDateTime);
                    if (strDateTime >= dtFrom && strDateTime <= dtTo)
                    {
                        strReturnString += line + Environment.NewLine;
                    }
                }
            }
        }

        return strReturnString;
    }
    //###############################################################################################################################


}


0 comments:

Post a Comment