實(shí)現(xiàn)ASP程序執(zhí)行時(shí)間統(tǒng)計(jì)類的代碼
第一次寫(xiě)asp類,實(shí)現(xiàn)功能:分段統(tǒng)計(jì)程序執(zhí)行時(shí)間,輸出統(tǒng)計(jì)表等.
class ccclsprocesstimerecorder
'程序作者:明月星光
'作者主頁(yè):http://www.5iya.com/blog
'http://www.kuozhanming.com
'asp程序代碼執(zhí)行時(shí)間統(tǒng)計(jì)類
private ccinti,ccintnoncetime,ccintdecimal
private ccintstarttime,ccintendtime,ccintnow,ccintnonce
private ccstrinterval,ccstrevent,ccstrtime,ccstrstatisticlog,ccstrformatinterval
private ccarrevent,ccarrtime
private sub class_initialize
ccstrinterval = "|" '默認(rèn)分隔符
ccintdecimal = 4 '小數(shù)點(diǎn)后位數(shù)
ccstrevent = ""
ccstrtime = ""
ccstrformatinterval = "
" & vbcrlf
ccintstarttime = timer
ccintnow = ccintstarttime
ccintnonce = ccintstarttime
end sub
public sub record(ccstreventname)
ccstrevent = ccstrevent & ccstrinterval & replace(ccstreventname,ccstrinterval,"")
ccstrtime = ccstrtime & ccstrinterval & formatnumber(timer-ccintnow,ccintdecimal,true,false,true)
ccintnow = timer
end sub
public property let format(ccstrformattype)
if lcase(trim(ccstrformattype)) = "html" then
ccstrformatinterval = "
" & vbcrlf
else
ccstrformatinterval = vbcrlf
end if
end property
public function statistic
if instr(ccstrevent,ccstrinterval) > 0 then
ccintendtime = timer
ccarrevent = split(ccstrevent,ccstrinterval)
ccarrtime = split(ccstrtime,ccstrinterval)
ccstrstatisticlog = ccstrstatisticlog & "process time record" & ccstrformatinterval
ccstrstatisticlog = ccstrstatisticlog & "--------------------------------------" & ccstrformatinterval
for ccinti = 1 to ubound(ccarrevent)
ccstrstatisticlog = ccstrstatisticlog & ccarrevent(ccinti) & " : " & ccarrtime(ccinti) & " s" & ccstrformatinterval
next
ccstrstatisticlog = ccstrstatisticlog & "--------------------------------------" & ccstrformatinterval
ccstrstatisticlog = ccstrstatisticlog & "total : " & formatnumber(ccintendtime-ccintstarttime,ccintdecimal,true,false,true) & " s"
statistic = ccstrstatisticlog
else
statistic = "no record"
end if
end function
public function nonce
ccintnoncetime = formatnumber(timer-ccintnonce,ccintdecimal,true,false,true)
ccintnonce = timer
nonce = ccintnoncetime
end function
public function total
total = formatnumber(timer-ccintstarttime,ccintdecimal,true,false,true)
end function
end class
類屬性:
1.format
輸出時(shí)是否帶html換行標(biāo)簽
-html:輸出html換行標(biāo)簽和文本換行符(默認(rèn))
-text:僅輸出文本換行符
類方法:
1.record("code name")
統(tǒng)計(jì)自上一次調(diào)用record方法至現(xiàn)在的時(shí)間(第一次調(diào)用時(shí)統(tǒng)計(jì)聲明類時(shí)至調(diào)用時(shí)時(shí)間),最后在statistic中輸出
類函數(shù):(即時(shí)返回信息)
1.nonce
輸出自上一次調(diào)用nonce函數(shù)至現(xiàn)在的時(shí)間(第一次調(diào)用時(shí)統(tǒng)計(jì)聲明類時(shí)至調(diào)用時(shí)時(shí)間)
2.total
輸出聲明類到現(xiàn)在總時(shí)間
3.statistic
輸出所有record統(tǒng)計(jì)信息和總程序時(shí)間
實(shí)例代碼:
dim objrecord,i,k,j,x
set objrecord = new ccclsprocesstimerecorder
objrecord.format = "html"
for i = 1 to 100000
x = 2 + 2
next
call objrecord.record("加法")
for j = 1 to 100000
x = 2 * 2
next
call objrecord.record("乘法")
for k = 1 to 100000
x = 2 ^ 2
next
call objrecord.record("開(kāi)方")
response.write objrecord.statistic
輸出:
process time record
--------------------------------------
加法 : 0.0625 s
乘法 : 0.0469 s
開(kāi)方 : 0.1094 s
--------------------------------------
total : 0.2188 s
代碼如下:
class ccclsprocesstimerecorder
'程序作者:明月星光
'作者主頁(yè):http://www.5iya.com/blog
'http://www.kuozhanming.com
'asp程序代碼執(zhí)行時(shí)間統(tǒng)計(jì)類
private ccinti,ccintnoncetime,ccintdecimal
private ccintstarttime,ccintendtime,ccintnow,ccintnonce
private ccstrinterval,ccstrevent,ccstrtime,ccstrstatisticlog,ccstrformatinterval
private ccarrevent,ccarrtime
private sub class_initialize
ccstrinterval = "|" '默認(rèn)分隔符
ccintdecimal = 4 '小數(shù)點(diǎn)后位數(shù)
ccstrevent = ""
ccstrtime = ""
ccstrformatinterval = "
" & vbcrlf
ccintstarttime = timer
ccintnow = ccintstarttime
ccintnonce = ccintstarttime
end sub
public sub record(ccstreventname)
ccstrevent = ccstrevent & ccstrinterval & replace(ccstreventname,ccstrinterval,"")
ccstrtime = ccstrtime & ccstrinterval & formatnumber(timer-ccintnow,ccintdecimal,true,false,true)
ccintnow = timer
end sub
public property let format(ccstrformattype)
if lcase(trim(ccstrformattype)) = "html" then
ccstrformatinterval = "
" & vbcrlf
else
ccstrformatinterval = vbcrlf
end if
end property
public function statistic
if instr(ccstrevent,ccstrinterval) > 0 then
ccintendtime = timer
ccarrevent = split(ccstrevent,ccstrinterval)
ccarrtime = split(ccstrtime,ccstrinterval)
ccstrstatisticlog = ccstrstatisticlog & "process time record" & ccstrformatinterval
ccstrstatisticlog = ccstrstatisticlog & "--------------------------------------" & ccstrformatinterval
for ccinti = 1 to ubound(ccarrevent)
ccstrstatisticlog = ccstrstatisticlog & ccarrevent(ccinti) & " : " & ccarrtime(ccinti) & " s" & ccstrformatinterval
next
ccstrstatisticlog = ccstrstatisticlog & "--------------------------------------" & ccstrformatinterval
ccstrstatisticlog = ccstrstatisticlog & "total : " & formatnumber(ccintendtime-ccintstarttime,ccintdecimal,true,false,true) & " s"
statistic = ccstrstatisticlog
else
statistic = "no record"
end if
end function
public function nonce
ccintnoncetime = formatnumber(timer-ccintnonce,ccintdecimal,true,false,true)
ccintnonce = timer
nonce = ccintnoncetime
end function
public function total
total = formatnumber(timer-ccintstarttime,ccintdecimal,true,false,true)
end function
end class
類屬性:
1.format
輸出時(shí)是否帶html換行標(biāo)簽
-html:輸出html換行標(biāo)簽和文本換行符(默認(rèn))
-text:僅輸出文本換行符
類方法:
1.record("code name")
統(tǒng)計(jì)自上一次調(diào)用record方法至現(xiàn)在的時(shí)間(第一次調(diào)用時(shí)統(tǒng)計(jì)聲明類時(shí)至調(diào)用時(shí)時(shí)間),最后在statistic中輸出
類函數(shù):(即時(shí)返回信息)
1.nonce
輸出自上一次調(diào)用nonce函數(shù)至現(xiàn)在的時(shí)間(第一次調(diào)用時(shí)統(tǒng)計(jì)聲明類時(shí)至調(diào)用時(shí)時(shí)間)
2.total
輸出聲明類到現(xiàn)在總時(shí)間
3.statistic
輸出所有record統(tǒng)計(jì)信息和總程序時(shí)間
實(shí)例代碼:
代碼如下:
dim objrecord,i,k,j,x
set objrecord = new ccclsprocesstimerecorder
objrecord.format = "html"
for i = 1 to 100000
x = 2 + 2
next
call objrecord.record("加法")
for j = 1 to 100000
x = 2 * 2
next
call objrecord.record("乘法")
for k = 1 to 100000
x = 2 ^ 2
next
call objrecord.record("開(kāi)方")
response.write objrecord.statistic
輸出:
process time record
--------------------------------------
加法 : 0.0625 s
乘法 : 0.0469 s
開(kāi)方 : 0.1094 s
--------------------------------------
total : 0.2188 s
相關(guān)文章
- JavaScript面向?qū)ο蟮膬煞N書(shū)寫(xiě)方法以及差別
- 用ASP編寫(xiě)的加密和解密類
- ASPJPEG綜合操作的CLASS類
- asp的通用數(shù)據(jù)分頁(yè)類
- VBS、ASP代碼語(yǔ)法加亮顯示的類
- MusicGet 類
- 日期函數(shù)擴(kuò)展類Ver0.1.1
- Asp類 的數(shù)據(jù)庫(kù)領(lǐng)域
- [ASP]精華代碼
- newasp中下載類
- ASP怎么談到應(yīng)用到類的?
- 域名查詢系統(tǒng)用到的類
- CacheCls緩存的應(yīng)用
- ASP中一個(gè)字符串處理類
- Object對(duì)象的一些的隱藏函數(shù)介紹
- 淺談ASP中的類
- 一個(gè)簡(jiǎn)單的asp數(shù)據(jù)庫(kù)操作類
- ASP類編寫(xiě)詳細(xì)說(shuō)明
- 如何編寫(xiě)一個(gè)ASP類
- ASP 類 Class入門(mén)