您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關關于WPF MaterialDesign 示例的開源項目,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
今天,我們聊聊客戶端的日志組件。
我也不知道說組件合不合適,反正就是屬于軟件一部分并且可以被重復利用的小模塊我稱之為組件。
這次的日志類就是很典型的一個組件,日志有很多特點;
1、會被使用在軟件的任意一個地方
2、隨時都會被調用
3、使用率極高
4、頻繁的io操作
在我剛剛接觸c#的時候,就使用過了Log4net,但是,那時候就萌生的想法是,我一個程序可能也才幾m大小,一個日志組件就比上我一個主程序了,這明顯是不合適的。
于是兩年前還沒有畢業的我著手做了自己的第一個日志組件。
基礎的思想還是好的,包括:線程,阻塞,資源競爭等都做了一定的考慮。
俗話說初生牛犢不怕虎,啥也不太知道的自己就這么開干了。
寫了第一版通過開線程來做的日志組件。
可是,畢竟年輕,問題還是顯而易見的。一秒打100條就不行了。
于是在我重新著手c#開發的時候,抽了點時間,來了一次重構。
using System;using System.Collections;using System.IO;using System.Text;using System.Threading;using System.Windows.Threading;namespace Helper {public static class LogHelper {private static readonly Queue LogQueue = new Queue();private static bool _isStreamClose = true;private static bool _isThreadBegin = false;private static StreamWriter _fileStreamWriter;private static readonly string fileName =@"BugLog.txt";static int _intervalTime = 10000;// 10sstatic System.Timers.Timer _timer = new System.Timers.Timer(_intervalTime);/// <summary>/// 添加日志隊列/// </summary>/// <param name="message"></param>public static void AddLog(string message) {string logContent = $"[{DateTime.Now:yyyy-MM-dd hh:mm:ss}] =>{message}"; LogQueue.Enqueue(logContent);if (!_isThreadBegin) { BeginThread(); } }public static void AddLog(Exception ex) {var logContent = $"[{DateTime.Now:yyyy-MM-dd hh:mm:ss}]錯誤發生在:{ex.Source},\r\n 內容:{ex.Message}"; logContent += $"\r\n 跟蹤:{ex.StackTrace}"; LogQueue.Enqueue(logContent);if (!_isThreadBegin) { BeginThread(); } }/// <summary>/// 讀取日志隊列的一條數據/// </summary>/// <returns></returns>private static object GetLog() {return LogQueue.Dequeue(); }/// <summary>/// 開啟定時查詢線程/// </summary>public static void BeginThread() { _isThreadBegin = true;//實例化Timer類,設置間隔時間為10000毫秒; _timer.Interval = _intervalTime; _timer.Elapsed += SetLog;//到達時間的時候執行事件; _timer.AutoReset = true;//設置是執行一次(false)還是一直執行(true); _timer.Enabled = true; }/// <summary>/// 寫入日志/// </summary>private static void SetLog(object source, System.Timers.ElapsedEventArgs e) {if (LogQueue.Count == 0) {if (_isStreamClose) return; _fileStreamWriter.Flush(); _fileStreamWriter.Close(); _isStreamClose = true;return; }if (_isStreamClose) { Isexist();string errLogFilePath = Environment.CurrentDirectory + @"\Log\" + fileName.Trim();if (!File.Exists(errLogFilePath)) { FileStream fs1 = new FileStream(errLogFilePath, FileMode.Create, FileAccess.Write); _fileStreamWriter = new StreamWriter(fs1); }else{ _fileStreamWriter = new StreamWriter(errLogFilePath, true); } _isStreamClose = false; }var strLog = new StringBuilder();var onceTime = 50;var lineNum = LogQueue.Count > onceTime ? onceTime : LogQueue.Count;for (var i = 0; i < lineNum; i++) { strLog.AppendLine(GetLog().ToString()); } _fileStreamWriter.WriteLine(strLog.ToString()); }/// <summary>/// 判斷是否存在日志文件/// </summary>private static void Isexist() {string path = Environment.CurrentDirectory + @"\Log\";if (!File.Exists(path)) { Directory.CreateDirectory(path); } } } }
代碼沒有第三方組件的應用,直接把這個文件復制即可使用。
現在暫時沒有對一些特殊情況做處理,例如日志文件被占用、軟件臨時關閉,以及隊列觸發時間和批量寫入個數等考慮,這只是一個最基礎的demo
關于關于WPF MaterialDesign 示例的開源項目就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。