分享
 
 
 

一个记录程序运行时间表的控件

王朝c#·作者佚名  2006-12-17
窄屏简体版  字體: |||超大  

一个记录程序运行时间表的控件

一个记录程序运行时间表的控件 using System;

using System.Collections;

using System.Data;

namespace MyTools

{

/// <summary>

/// Summary description for TimeTest.

/// </summary>

public class TimeTest

{

private DataTable manager = new DataTable('manager');

private DataTable timeList = new DataTable('timeList');

public TimeTest()

{

#region initialize the ManagerTable to save the test cases

DataColumn tempColumn = new DataColumn('name',typeof(System.String));

manager.Columns.Add(tempColumn);

tempColumn = new DataColumn('description',typeof(System.String));

manager.Columns.Add(tempColumn);

tempColumn = new DataColumn('totalTime',typeof(System.TimeSpan));

manager.Columns.Add(tempColumn);

tempColumn = new DataColumn('startTime',typeof(System.DateTime));

manager.Columns.Add(tempColumn);

tempColumn = new DataColumn('testCount',typeof(System.Int32));

manager.Columns.Add(tempColumn);

manager.PrimaryKey = new DataColumn[]{manager.Columns['name']};

#endregion

#region initialize the TimeListTable to save the list of time span

tempColumn = new DataColumn('name',typeof(System.String));

timeList.Columns.Add(tempColumn);

tempColumn = new DataColumn('time',typeof(System.TimeSpan));

timeList.Columns.Add(tempColumn);

tempColumn = new DataColumn('description',typeof(System.String));

timeList.Columns.Add(tempColumn);

#endregion

#region initialize a test case

this.AddProcess('__mainTest__','The default test is created by system!');

#endregion

}

public TimeTest(string testName,string description)

{

#region initialize the ManagerTable to save the test cases

DataColumn tempColumn = new DataColumn('name',typeof(System.String));

manager.Columns.Add(tempColumn);

tempColumn = new DataColumn('description',typeof(System.String));

manager.Columns.Add(tempColumn);

tempColumn = new DataColumn('totalTime',typeof(System.TimeSpan));

manager.Columns.Add(tempColumn);

tempColumn = new DataColumn('startTime',typeof(System.DateTime));

manager.Columns.Add(tempColumn);

tempColumn = new DataColumn('testCount',typeof(System.Int32));

manager.Columns.Add(tempColumn);

manager.PrimaryKey = new DataColumn[]{manager.Columns['name']};

#endregion

#region initialize the TimeListTable to save the list of time span

tempColumn = new DataColumn('name',typeof(System.String));

timeList.Columns.Add(tempColumn);

tempColumn = new DataColumn('time',typeof(System.TimeSpan));

timeList.Columns.Add(tempColumn);

tempColumn = new DataColumn('description',typeof(System.String));

timeList.Columns.Add(tempColumn);

#endregion

#region initialize a test case

this.AddProcess(testName,description);

#endregion

}

private void AddProcess(string testName,string description)

{

DataRow tempRow = this.manager.NewRow();

tempRow['name'] = testName;

tempRow['description'] = description;

tempRow['startTime'] = DateTime.Now;

tempRow['totalTime'] = TimeSpan.Zero;

tempRow['testCount'] = 0;

this.manager.Rows.Add(tempRow);

}

#region Begin a test

public void BeginTest(string testName,string description)

{

DataRow tempRow = this.manager.Rows.Find(testName);

if(null != tempRow)

{

tempRow['startTime'] = DateTime.Now;

}

else

{

this.AddProcess(testName,description);

}

}

public void BeginTest(string testName)

{

this.BeginTest(testName,'');

}

public void Begin()

{

this.BeginTest(this.manager.Rows[0]['name'].ToString(),'');

}

#endregion

#region End a test

public void EndTest(string testName,string description)

{

DataRow tempRow = this.manager.Rows.Find(testName);

if(null == tempRow)

{

return;

}

DateTime tempTime = (DateTime)tempRow['startTime'];

// tempRow = this.timeList.NewRow();

// tempRow['time'] = DateTime.Now - tempTime;

// tempRow['name'] = testName;

// tempRow['description'] = description;

// this.timeList.Rows.Add(tempRow);

this.manager.Rows.Find(testName)['startTime'] = DateTime.Now;

this.manager.Rows.Find(testName)['totalTime'] = (TimeSpan)(this.manager.Rows.Find(testName)['totalTime']) + (DateTime.Now - tempTime);

this.manager.Rows.Find(testName)['testCount'] = (int)this.manager.Rows.Find(testName)['testCount'] + 1;

}

public void EndTest(string testName)

{

this.EndTest(testName,'');

}

public void End()

{

this.EndTest(this.manager.Rows[0]['name'].ToString(),'');

}

public void End(string description)

{

this.EndTest(this.manager.Rows[0]['name'].ToString(),description);

}

#endregion

public DataTable GetTestListByName(string testName)

{

DataTable RtnTable = this.timeList.Clone();

RtnTable.Columns['time'].DataType = typeof(System.Double);

DataRow row;

foreach(DataRow tempRow in this.timeList.Select('name = '' + testName +'''))

{

row = RtnTable.NewRow();

if(tempRow['name'].ToString().Trim().Equals('__mainTest__'))

{

row['name'] = '[System Default]';

}

else

{

row['name'] = tempRow['name'];

}

row['description'] = tempRow['description'];

row['time'] = ((TimeSpan)tempRow['time']).TotalMilliseconds;

RtnTable.Rows.Add(row);

}

return RtnTable;

}

public DataTable GetTestListByName()

{

return GetTestListByName(this.manager.Rows[0]['name'].ToString());

}

public double GetTestTimeByName(string testName)

{

return ((TimeSpan)this.manager.Rows.Find(testName)['totalTime']).TotalMilliseconds;

}

public double GetTestTimeByName()

{

return GetTestTimeByName(this.manager.Rows[0]['name'].ToString());

}

public DataTable GetAllTestTime()

{

DataTable RtnTable = this.manager.Clone();

RtnTable.Columns['totalTime'].DataType = typeof(System.Double);

RtnTable.Columns.Remove('startTime');

DataRow row;

foreach(DataRow tempRow in this.manager.Rows)

{

row = RtnTable.NewRow();

if(tempRow['name'].ToString().Trim().Equals('__mainTest__'))

{

row['name'] = '[System Default]';

}

else

{

row['name'] = tempRow['name'];

}

row['description'] = tempRow['description'];

row['totalTime'] = ((TimeSpan)tempRow['totalTime']).TotalMilliseconds;

row['testCount'] = tempRow['testCount'];

RtnTable.Rows.Add(row);

}

return RtnTable;

}

public DataTable GetAllTestList()

{

DataTable RtnTable = this.timeList.Clone();

RtnTable.Columns['time'].DataType = typeof(System.Double);

DataRow row;

foreach(DataRow tempRow in this.timeList.Rows)

{

row = RtnTable.NewRow();

if(tempRow['name'].ToString().Trim().Equals('__mainTest__'))

{

row['name'] = '[System Default]';

}

else

{

row['name'] = tempRow['name'];

}

row['description'] = tempRow['description'];

row['time'] = ((TimeSpan)tempRow['time']).TotalMilliseconds;

RtnTable.Rows.Add(row);

}

return RtnTable;

}

}

}

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
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- 王朝網路 版權所有