您的位置:首页 > 编程语言 > C#

[WorldWind学习]18.High-Performance Timer in C#

2013-08-08 22:16 344 查看
In some applications exact time measurement methods are very important.

一些应用程序中精确的时间测量是非常重要的。

The often used Windows API method GetTickCount() retrieves the number of milliseconds that have elapsed since the system was started, but the GetTickCount() function only archieve resolutions of 1ms and on the other side they are very imprecise.

常使用WindowApi方法GetTickCount()提取系统启动后使用的毫秒,但是GetTickCount()方法只检索1ms的精度,另一方面他也是非常不精确的

So, for exact time measurement we should find another method.

因此,为了提取精确的时间,我们需要寻找其他的方法。

High resolution timing is supported in Win32 by the QueryPerformanceCounter() and QueryPerformanceFrequency() API methods.

Win32通过QueryPerformanceCounter()和QueryPerformanceFrequency() API支持高精度的时间

This timer functions has much better resolution than the "standard" millisecond-based timer calls, like the GetTickCount() method.

这个时间函数比标准的毫秒级要精确的多

On the other side there is also a little bit overhead when calling this "unmanaged" API methods from C#, but it's better than using the very imprecise GetTickCount() API function.

也有一些开销用非托管的API方法,但是比使用不精确的GetTickCount() API好的多。

The first call, QueryPerformanceCounter(), queries the actual value of the high-resolution performance counter at any point.

The second function, QueryPerformanceFrequency(), will return the number of counts per second that the high-resolution counter performs.

To retrieve the elapsed time of a code section you have to get the actual value of the high-resolution performance counter immediately before and immediately after the section of code to be timed.

The difference of these values would indicate the counts that elapsed while the code executed.

这些值得变化可以指示代码执行花费的时间。

The elapsed time can be computed then, by dividing this difference by the number of counts per second that the high-resolution counter performs (the frequency of the high-resolution timer).

花费时间就可以计算,通过除以高精度时间的频率

duration = (stop - start) / frequency

For more information about QueryPerformanceCounter and QueryPerformanceFrequency read the documentation on MSDN.

http://www.codeproject.com/Articles/2635/High-Performance-Timer-in-C

WW中的类:

using System;
using System.Runtime.InteropServices;

namespace WorldWind
{
public sealed class PerformanceTimer
{
#region Instance Data

public static long TicksPerSecond;
#endregion

#region Creation

/// <summary>
/// Static class
/// </summary>
private PerformanceTimer()
{
}

/// <summary>
/// Static constructor
/// </summary>
static PerformanceTimer()
{
// Read timer frequency
long tickFrequency = 0;
if (!QueryPerformanceFrequency(ref tickFrequency))
throw new NotSupportedException("The machine doesn't appear to support high resolution timer.");
TicksPerSecond = tickFrequency;

System.Diagnostics.Debug.WriteLine("tickFrequency = " + tickFrequency);
}
#endregion

#region High Resolution Timer functions

[System.Security.SuppressUnmanagedCodeSecurity]
[DllImport("kernel32")]
private static extern bool QueryPerformanceFrequency(ref long PerformanceFrequency);

[System.Security.SuppressUnmanagedCodeSecurity]
[DllImport("kernel32")]
public static extern bool QueryPerformanceCounter(ref long PerformanceCount);

#endregion
}
}


备注:C#可以采用下面方案实现 :

Stopwatch 实例可以测量一个时间间隔的运行时间,也可以测量多个时间间隔的总运行时间。

Stopwatch 类为托管代码内与计时有关的性能计数器的操作提供帮助。 具体说来, Frequency 字段和 GetTimestamp 方法可以用于替换非托管 Win32 APIQueryPerformanceFrequency 和 QueryPerformanceCounter。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: