forked from NewLifeX/X
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathICounter.cs
58 lines (48 loc) · 1.84 KB
/
ICounter.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
using System;
using System.Diagnostics;
using NewLife.Reflection;
namespace NewLife.Log
{
/// <summary>性能计数器接口</summary>
public interface ICounter
{
/// <summary>数值</summary>
Int64 Value { get; }
/// <summary>次数</summary>
Int64 Times { get; }
/// <summary>速度</summary>
Int64 Speed { get; }
/// <summary>平均耗时,单位us</summary>
Int64 Cost { get; }
/// <summary>增加</summary>
/// <param name="value">增加的数量</param>
/// <param name="usCost">耗时,单位us</param>
void Increment(Int64 value, Int64 usCost);
}
/// <summary>计数器助手</summary>
public static class CounterHelper
{
private static readonly Double tickFrequency;
static CounterHelper()
{
var type = typeof(Stopwatch);
var fi = type.GetFieldEx("tickFrequency") ?? type.GetFieldEx("s_tickFrequency");
if (fi != null) tickFrequency = (Double)(fi.GetValue(null) ?? 0);
}
/// <summary>开始计时</summary>
/// <param name="counter"></param>
/// <returns></returns>
public static Int64 StartCount(this ICounter? counter) => counter == null ? 0 : Stopwatch.GetTimestamp();
/// <summary>结束计时</summary>
/// <param name="counter"></param>
/// <param name="startTicks"></param>
public static Int64 StopCount(this ICounter? counter, Int64? startTicks)
{
if (counter == null || startTicks == null) return 0;
var ticks = Stopwatch.GetTimestamp() - startTicks.Value;
var usCost = (Int64)(ticks * tickFrequency / 10);
counter.Increment(1, usCost);
return usCost;
}
}
}