在c#中使用正则表达式进行匹配,有时候我们会遇到这种情况,cpu使用率100%,但是正则表达式并没有异常抛出,正则一直处于匹配过程中,这将导致系统资源被耗尽,应用程序被卡住,这是由于正则不完全匹配,而且Regex中没有Timeout属性,使正则处理器陷入了死循环。 using System.Text.RegularExpressions; namespace LZT.Eahan.Common public bool IsTimeout public AsynchronousRegex(int timeout) this.mc = null; public MatchCollection Matchs(Regex regex, string input) this.Sleep(t); t = null; private void Sleep(Thread t) private void MatchCompleteHandler(MatchCollection mc) class Reg public Reg(Regex regex, string input) private string _input; private Regex _regex; internal void Matchs()
这种情况尤其可能发生在对非可靠的被匹配对象的匹配过程中,例如在我的个人网站www.eahan.com项目中,对多个网站页面的自动采集匹配,就经常发生该问题。为了避免资源耗尽的情况发生,我写了一个AsynchronousRegex类,顾名思义,异步的Regex。给该类一个设置一个Timeout属性,将Regex匹配的动作置于单独的线程中,AsynchronousRegex监控Regex匹配超过Timeout限定时销毁线程。
using System;
using System.Threading;
{
public class AsynchronousRegex
{
private MatchCollection mc;
private int _timeout; // 最长休眠时间(超时),毫秒
private int sleepCounter;
private int sleepInterval; // 休眠间隔,毫秒
private bool _isTimeout;
{
get {return this._isTimeout;}
}
{
this._timeout = timeout;
this.sleepCounter = 0;
this.sleepInterval = 100;
this._isTimeout = false;
}
{
Reg r = new Reg(regex, input);
r.OnMatchComplete += new Reg.MatchCompleteHandler(this.MatchCompleteHandler);
Thread t = new Thread(new ThreadStart(r.Matchs));
t.Start();
return mc;
}
{
if (t != null && t.IsAlive)
{
Thread.Sleep(TimeSpan.FromMilliseconds(this.sleepInterval));
this.sleepCounter ++;
if (this.sleepCounter * this.sleepInterval >= this._timeout)
{
t.Abort();
this._isTimeout = true;
}
else
{
this.Sleep(t);
}
}
}
{
this.mc = mc;
}
{
internal delegate void MatchCompleteHandler(MatchCollection mc);
internal event MatchCompleteHandler OnMatchComplete;
{
this._regex = regex;
this._input = input;
}
public string Input
{
get {return this._input;}
set {this._input = value;}
}
public Regex Regex
{
get {return this._regex;}
set {this._regex = value;}
}
{
MatchCollection mc = this._regex.Matches(this._input);
if (mc != null && mc.Count > 0) // 这里有可能造成cpu资源耗尽
{
this.OnMatchComplete(mc);
}
}
}
}
}
关于正则表达式匹配无异常资源耗尽的解决方案_c#应用
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 关于正则表达式匹配无异常资源耗尽的解决方案_c#应用
相关推荐
-      利用c#远程存取access数据库_c#应用
-      c# 3.0新特性系列:隐含类型var_c#教程
-      c#动态生成树型结构的web程序设计_c#应用
-      论c#变得越来越臃肿是不可避免的_c#应用
-      用c#监控并显示cpu状态信息_c#应用
-      c#中实现vb中的createobject方法_c#应用
-      photoshop给花瓶打造彩绘效果_photoshop教程
-      使用c#创建sql server的存储过程_c#应用