search
HomeBackend DevelopmentC#.Net TutorialIntroduction to WPF MaterialDesign sample open source project
Introduction to WPF MaterialDesign sample open source projectJun 23, 2017 pm 03:01 PM
managertimeOpen sourceproject

Hello all, I’m back again

This time we really started to talk about the development ideas of small but useful modules or components in open source projects .

At the same time, the software has been updated to version 1.60, which supports new user registration, and you can no longer use a unified test account.

You can download it through the following path:

1. Fellow the project on GitHub, download it locally, and generate it to get the latest version of the program.

2. Users whose local version is beta v0.5 can directly click Update in the upper right corner of the program

3. The last compressed package for non-Microsoft developers is the following compressed package, which can be directly decompressed. be usable.


If you still don’t know what the software is, you can check out this blog post:

[WPF MaterialDesign sample open source project] Work Time Manager

Today, let’s talk about the client’s log component.

I don’t know if components are appropriate. Anyway, they are small modules that are part of the software and can be reused. I call them components.

This time the log class is a very typical component. The log has many characteristics;

1. It will be used anywhere in the software.

2. It will be used at any time. Being called

3, extremely high usage

4, frequent io operations

When I just came into contact with c# I had used Log4net when I was a child, but the idea that came to my mind at that time was that my program might only be a few meters in size, and a log component would be bigger than my main program. This was obviously inappropriate.

So before I graduated two years ago, I started making my first log component.

[.net] Create your own log component - improved version

The basic idea is still good, including: threads, blocking, resource competition, etc. have been taken into consideration.

As the saying goes, a newborn calf is not afraid of tigers, so he just started doing it without knowing anything.

Written the first version of the log component by opening threads.

However, after all, he is young, and the problem is still obvious. Typing 100 messages in one second will not work.

So when I started C# development again, I took some time to refactor.

First, let’s start with the overall architecture:
- Features of old components:
* Use Multi-thread queue, using mutually exclusive variables to control thread writing of text.
* Control the contention of resources through singleton locking
* Threads are randomly selected to lock, and the log time sequence of writing is May be wrong
* One thread operates one text operation, switches are operated in one thread, and only one variable is written at a time
- Advantages:
* Multi-threaded operation, superficially improving operation efficiency
* Single instance locking to ensure uniqueness
- Disadvantages:
* Low performance, excessive operation of io Leading to severe redundancy in performance
* Only write one item at a time
-Improvement
* Use the producer-consumer model, separate operations, and limit the number of threads
* Use stack queue, first in, first out, to ensure log order
* Single instance IO variable, batch write operations
Transformation results:
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>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 /// 判断是否存在日志文件/// private static void Isexist()
        {string path = Environment.CurrentDirectory + @"\Log\";if (!File.Exists(path))
            {
                Directory.CreateDirectory(path);
            }
        }
    }
}

The code does not have the application of third-party components, just copy this file and use it.

We have not dealt with some special situations for the time being, such as log files being occupied, temporary software shutdown, and considerations such as queue trigger time and batch write number. This is just a basic demo,

Of course, if you want to know about subsequent improvements, you can follow the project's GitHub.

Of course, I look forward to your better suggestions. Let’s learn together. If you have a good idea but don’t want to write it yourself, I’ll help you realize it!


The above is the detailed content of Introduction to WPF MaterialDesign sample open source project. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
分享PyCharm项目打包的简易方法分享PyCharm项目打包的简易方法Dec 30, 2023 am 09:34 AM

简单易懂的PyCharm项目打包方法分享随着Python的流行,越来越多的开发者使用PyCharm作为Python开发的主要工具。PyCharm是功能强大的集成开发环境,它提供了许多方便的功能来帮助我们提高开发效率。其中一个重要的功能就是项目的打包。本文将介绍如何在PyCharm中简单易懂地打包项目,并提供具体的代码示例。为什么要打包项目?在Python开发

制作 iPhone 上 iOS 17 提醒应用程序中的购物清单的方法制作 iPhone 上 iOS 17 提醒应用程序中的购物清单的方法Sep 21, 2023 pm 06:41 PM

如何在iOS17中的iPhone上制作GroceryList在“提醒事项”应用中创建GroceryList非常简单。你只需添加一个列表,然后用你的项目填充它。该应用程序会自动将您的商品分类,您甚至可以与您的伴侣或扁平伙伴合作,列出您需要从商店购买的东西。以下是执行此操作的完整步骤:步骤1:打开iCloud提醒事项听起来很奇怪,苹果表示您需要启用来自iCloud的提醒才能在iOS17上创建GroceryList。以下是它的步骤:前往iPhone上的“设置”应用,然后点击[您的姓名]。接下来,选择i

Nginx Proxy Manager教程:快速入门指南Nginx Proxy Manager教程:快速入门指南Sep 27, 2023 pm 05:39 PM

NginxProxyManager教程:快速入门指南,需要具体代码示例引言:随着网络技术的发展,代理服务器成为我们日常使用互联网的一部分。NginxProxyManager是一个基于Nginx的代理服务器管理平台,可以帮助我们快速建立和管理代理服务器。本篇文章将为大家介绍NginxProxyManager的快速入门指南,以及一些具体的代码示例。一

time包的单调时钟处理time包的单调时钟处理Aug 04, 2023 pm 05:45 PM

我们今天主要是来看一看golang time 包的时间应用方式。两者的一般规则是「wall time」用于告知时间,而「monotonic clock」用于测量时间;除外还有其他的时钟处理方式。

react启动项目报错怎么办react启动项目报错怎么办Dec 27, 2022 am 10:36 AM

react启动项目报错的解决办法:1、进入项目文件夹,启动项目并查看报错信息;2、执行“npm install”或“npm install react-scripts”命令;3、执行“npm install @ant-design/pro-field --save”命令。

基于开源的 ChatGPT Web UI 项目,快速构建属于自己的 ChatGPT 站点基于开源的 ChatGPT Web UI 项目,快速构建属于自己的 ChatGPT 站点Apr 15, 2023 pm 07:43 PM

作为一个技术博主,了不起比较喜欢各种折腾,之前给大家介绍过ChatGPT​接入微信,钉钉和知识星球(如果没看过的可以翻翻前面的文章),最近再看开源项目的时候,发现了一个ChatGPTWebUI项目。想着刚好之前没有将ChatGPT​接入过WebUI,有了这个开源项目可以拿来使用,真是不错,下面是实操的安装步骤,分享给大家。安装官方在Github​的项目文档上提供了很多中的安装方式,包括手动安装,docker​部署,以及远程部署等方法,了不起在选择部署方式的时候,一开始为了简单想着

电脑开机就进入boot manager怎么解决?电脑开机就进入boot manager怎么解决?Feb 14, 2024 pm 10:36 PM

正常情况下,电脑开机是直接进入系统桌面,但是最近有用户的电脑一开机就进入bootmanager,这是什么情况?计算机启动出现问题要如何解决呢?下面小编就给大家分享一开机就进入bootmanager的解决方法。1、检查启动设备-确保计算机正在从正确的启动设备(如硬盘驱动器)启动。在BIOS设置中查找启动选项,并确保启动顺序正确设置。2、检查硬盘驱动器-启动问题可能是由于硬盘驱动器出现问题导致的。在Windows恢复环境中,可以使用磁盘检查工具检查硬盘驱动器的健康状况。在Windows10中,可以通

快速掌握PyCharm项目打包的基础知识快速掌握PyCharm项目打包的基础知识Dec 30, 2023 pm 01:17 PM

从零开始,快速上手PyCharm项目打包技巧概述:在Python开发中,将项目打包成可执行文件是非常重要的一步。它可以方便地分享和分发项目,而无需安装Python解释器和依赖包。PyCharm作为一个功能强大的Python集成开发环境,提供了快速上手项目打包的技巧和工具。本文将介绍如何利用PyCharm从零开始打包你的Python项目,并提供具体的代码示例。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.