分享
 
 
 

关于正则表达式匹配无异常资源耗尽的解决方案

王朝other·作者佚名  2008-05-31
窄屏简体版  字體: |||超大  

在c#中使用正则表达式进行匹配,有时候我们会遇到这种情况,cpu使用率100%,但是正则表达式并没有异常抛出,正则一直处于匹配过程中,这将导致系统资源被耗尽,应用程序被卡住,这是由于正则不完全匹配,而且Regex中没有Timeout属性,使正则处理器陷入了死循环。

这种情况尤其可能发生在对非可靠的被匹配对象的匹配过程中,例如在我的个人网站www.eahan.com项目中,对多个网站页面的自动采集匹配,就经常发生该问题。为了避免资源耗尽的情况发生,我写了一个AsynchronousRegex类,顾名思义,异步的Regex。给该类一个设置一个Timeout属性,将Regex匹配的动作置于单独的线程中,AsynchronousRegex监控Regex匹配超过Timeout限定时销毁线程。

using System;

using System.Text.RegularExpressions;

using System.Threading;

namespace LZT.Eahan.Common

{

public class AsynchronousRegex

{

private MatchCollection mc;

private int _timeout; // 最长休眠时间(超时),毫秒

private int sleepCounter;

private int sleepInterval; // 休眠间隔,毫秒

private bool _isTimeout;

public bool IsTimeout

{

get {return this._isTimeout;}

}

public AsynchronousRegex(int timeout)

{

this._timeout = timeout;

this.sleepCounter = 0;

this.sleepInterval = 100;

this._isTimeout = false;

this.mc = null;

}

public MatchCollection Matchs(Regex regex, string input)

{

Reg r = new Reg(regex, input);

r.OnMatchComplete += new Reg.MatchCompleteHandler(this.MatchCompleteHandler);

Thread t = new Thread(new ThreadStart(r.Matchs));

t.Start();

this.Sleep(t);

t = null;

return mc;

}

private void Sleep(Thread t)

{

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);

}

}

}

private void MatchCompleteHandler(MatchCollection mc)

{

this.mc = mc;

}

class Reg

{

internal delegate void MatchCompleteHandler(MatchCollection mc);

internal event MatchCompleteHandler OnMatchComplete;

public Reg(Regex regex, string input)

{

this._regex = regex;

this._input = input;

}

private string _input;

public string Input

{

get {return this._input;}

set {this._input = value;}

}

private Regex _regex;

public Regex Regex

{

get {return this._regex;}

set {this._regex = value;}

}

internal void Matchs()

{

MatchCollection mc = this._regex.Matches(this._input);

if (mc != null && mc.Count > 0) // 这里有可能造成cpu资源耗尽

{

this.OnMatchComplete(mc);

}

}

}

}

}

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有