]> git.sesse.net Git - casparcg/blob - common/utility/timer.h
git-svn-id: https://casparcg.svn.sourceforge.net/svnroot/casparcg/server/branches...
[casparcg] / common / utility / timer.h
1 /*\r
2 * copyright (c) 2010 Sveriges Television AB <info@casparcg.com>\r
3 *\r
4 *  This file is part of CasparCG.\r
5 *\r
6 *    CasparCG is free software: you can redistribute it and/or modify\r
7 *    it under the terms of the GNU General Public License as published by\r
8 *    the Free Software Foundation, either version 3 of the License, or\r
9 *    (at your option) any later version.\r
10 *\r
11 *    CasparCG is distributed in the hope that it will be useful,\r
12 *    but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14 *    GNU General Public License for more details.\r
15 \r
16 *    You should have received a copy of the GNU General Public License\r
17 *    along with CasparCG.  If not, see <http://www.gnu.org/licenses/>.\r
18 *\r
19 */\r
20 #pragma once\r
21 \r
22 #define NOMINMAX\r
23 \r
24 #include <windows.h>\r
25 \r
26 namespace caspar {\r
27         \r
28 class high_prec_timer\r
29 {\r
30 public:\r
31         high_prec_timer()\r
32         {\r
33                 QueryPerformanceFrequency(&freq_);\r
34                 QueryPerformanceCounter(&time_);\r
35         }\r
36 \r
37         // Author: Ryan M. Geiss\r
38         // http://www.geisswerks.com/ryan/FAQS/timing.html\r
39         void tick(double interval)\r
40         {       \r
41                 LARGE_INTEGER t;\r
42                 QueryPerformanceCounter(&t);\r
43 \r
44                 if (time_.QuadPart != 0)\r
45                 {\r
46                         __int64 ticks_to_wait = static_cast<int>(static_cast<double>(freq_.QuadPart) * interval);\r
47                         __int64 done = 0;\r
48                         do\r
49                         {\r
50                                 QueryPerformanceCounter(&t);\r
51                                 \r
52                                 __int64 ticks_passed = static_cast<__int64>(t.QuadPart) - static_cast<__int64>(time_.QuadPart);\r
53                                 __int64 ticks_left = ticks_to_wait - ticks_passed;\r
54 \r
55                                 if (t.QuadPart < time_.QuadPart)    // time wrap\r
56                                         done = 1;\r
57                                 if (ticks_passed >= ticks_to_wait)\r
58                                         done = 1;\r
59                                 \r
60                                 if (!done)\r
61                                 {\r
62                                         // if > 0.002s left, do Sleep(1), which will actually sleep some \r
63                                         //   steady amount, probably 1-2 ms,\r
64                                         //   and do so in a nice way (cpu meter drops; laptop battery spared).\r
65                                         // otherwise, do a few Sleep(0)'s, which just give up the timeslice,\r
66                                         //   but don't really save cpu or battery, but do pass a tiny\r
67                                         //   amount of time.\r
68                                         if (ticks_left > static_cast<__int64>((freq_.QuadPart*2)/1000))\r
69                                                 Sleep(1);\r
70                                         else                        \r
71                                                 for (int i = 0; i < 10; ++i) \r
72                                                         Sleep(0);  // causes thread to give up its timeslice\r
73                                 }\r
74                         }\r
75                         while (!done);            \r
76                 }\r
77 \r
78                 time_ = t;\r
79         }               \r
80 private:        \r
81         LARGE_INTEGER freq_;\r
82         LARGE_INTEGER time_;\r
83 };\r
84 \r
85 \r
86 }