2008-04-16 Marek Habersack <mhabersack@novell.com>
[mono.git] / mcs / class / System / System.Diagnostics / Stopwatch.cs
1 //
2 // System.Diagnostics.Stopwatch.cs
3 //
4 // Authors:
5 //   Zoltan Varga (vargaz@gmail.com)
6 //   Atsushi Enomoto  <atsushi@ximian.com>
7 //
8 // (C) 2006 Novell, Inc.
9 //
10
11 //
12 // Permission is hereby granted, free of charge, to any person obtaining
13 // a copy of this software and associated documentation files (the
14 // "Software"), to deal in the Software without restriction, including
15 // without limitation the rights to use, copy, modify, merge, publish,
16 // distribute, sublicense, and/or sell copies of the Software, and to
17 // permit persons to whom the Software is furnished to do so, subject to
18 // the following conditions:
19 // 
20 // The above copyright notice and this permission notice shall be
21 // included in all copies or substantial portions of the Software.
22 // 
23 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
27 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
28 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
29 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30 //
31
32 #if NET_2_0
33
34 using System;
35 using System.ComponentModel;
36 using System.Runtime.InteropServices;
37 using System.Runtime.CompilerServices;
38
39 namespace System.Diagnostics
40 {
41         public class Stopwatch
42         {
43                 [MethodImplAttribute(MethodImplOptions.InternalCall)]
44                 public static extern long GetTimestamp ();
45
46                 public static readonly long Frequency = 10000000;
47
48                 public static readonly bool IsHighResolution = true;
49
50                 public static Stopwatch StartNew ()
51                 {
52                         Stopwatch s = new Stopwatch ();
53                         s.Start ();
54                         return s;
55                 }
56
57                 public Stopwatch ()
58                 {
59                 }
60
61                 long elapsed;
62                 long started;
63                 bool is_running;
64
65                 public TimeSpan Elapsed {\r
66                         get {\r
67                                 if (IsHighResolution) {\r
68                                         // convert our ticks to TimeSpace ticks, 100 nano second units\r
69                                         return TimeSpan.FromTicks ((long)(TimeSpan.TicksPerSecond * ElapsedTicks / Frequency));\r
70                                 }\r
71                                 else {\r
72                                         return TimeSpan.FromTicks (ElapsedTicks); \r
73                                 }
74                         }
75                 }
76
77                 public long ElapsedMilliseconds {
78                         get { 
79                                 checked {\r
80                                         if (IsHighResolution) {\r
81                                                 return (long)(1000 * ElapsedTicks / Frequency);\r
82                                         }\r
83                                         else {\r
84                                                 return (long) Elapsed.TotalMilliseconds;\r
85                                         }
86                                 } 
87                         }
88                 }
89
90                 public long ElapsedTicks {
91                         get { return is_running ? GetTimestamp () - started + elapsed : elapsed; }
92                 }
93
94                 public bool IsRunning {
95                         get { return is_running; }
96                 }
97
98                 public void Reset ()
99                 {
100                         elapsed = 0;
101                         is_running = false;
102                 }
103
104                 public void Start ()
105                 {
106                         if (is_running)
107                                 return;
108                         started = GetTimestamp ();
109                         is_running = true;
110                 }
111
112                 public void Stop ()
113                 {
114                         if (!is_running)
115                                 return;
116                         elapsed += GetTimestamp () - started;
117                         is_running = false;
118                 }
119         }
120 }
121
122 #endif\r