TickCount.cxx
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:6k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. /* ====================================================================
  2.  * The Vovida Software License, Version 1.0 
  3.  * 
  4.  * Copyright (c) 2000 Vovida Networks, Inc.  All rights reserved.
  5.  * 
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  * 
  10.  * 1. Redistributions of source code must retain the above copyright
  11.  *    notice, this list of conditions and the following disclaimer.
  12.  * 
  13.  * 2. Redistributions in binary form must reproduce the above copyright
  14.  *    notice, this list of conditions and the following disclaimer in
  15.  *    the documentation and/or other materials provided with the
  16.  *    distribution.
  17.  * 
  18.  * 3. The names "VOCAL", "Vovida Open Communication Application Library",
  19.  *    and "Vovida Open Communication Application Library (VOCAL)" must
  20.  *    not be used to endorse or promote products derived from this
  21.  *    software without prior written permission. For written
  22.  *    permission, please contact vocal@vovida.org.
  23.  *
  24.  * 4. Products derived from this software may not be called "VOCAL", nor
  25.  *    may "VOCAL" appear in their name, without prior written
  26.  *    permission of Vovida Networks, Inc.
  27.  * 
  28.  * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
  29.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  30.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
  31.  * NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA
  32.  * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
  33.  * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
  34.  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  35.  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  36.  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  37.  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  38.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  39.  * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
  40.  * DAMAGE.
  41.  * 
  42.  * ====================================================================
  43.  * 
  44.  * This software consists of voluntary contributions made by Vovida
  45.  * Networks, Inc. and many individuals on behalf of Vovida Networks,
  46.  * Inc.  For more information on Vovida Networks, Inc., please see
  47.  * <http://www.vovida.org/>.
  48.  *
  49.  */
  50. #include <unistd.h>
  51. #include <sys/types.h>
  52. #include <sys/time.h>
  53. #include <stdio.h>
  54. #include <sys/socket.h>
  55. #include <sys/stat.h>
  56. #include <fcntl.h>
  57. #include <iostream>
  58. #include <iomanip>
  59. #include "TickCount.hxx"
  60. #include "Duration.hxx"
  61. #include "ScopedDuration.hxx"
  62. using namespace std;
  63. using Vocal::Statistics::TickCount;
  64. using Vocal::Statistics::Duration;
  65. using Vocal::Statistics::ScopedDuration;
  66. inline void foo()
  67. {
  68.     int i; (void)i;
  69. }
  70. void bar()
  71. {
  72.     unsigned int i; (void)i;
  73. }
  74. void feh(int i)
  75. {
  76.     for (int n = 0; n < i; n++ )
  77.     {
  78.      bar();
  79.     }
  80. }
  81. int logging = 1;
  82. #define COUT  if ( !logging ); else cout << setw(20)
  83. int main(int argc, char** argv)
  84. {
  85.     if ( argc > 1 )
  86.     {
  87.      logging = !logging;
  88.     }
  89.     Duration    main_d;
  90.     int64_t total = 0;
  91.     {
  92.      ScopedDuration sd(main_d);
  93. Duration d;
  94. TickCount start, end, tc;
  95. TickCount::calibrate();
  96. main_d.start();
  97. COUT << "Ticks per second: " << TickCount::ticksPerSec << endl;
  98. start.set();
  99. sleep(0);
  100. end.set();
  101. COUT << "sleep(0): " << end - start << endl;
  102. total += d.length();
  103. start.set();
  104. end.set();
  105. COUT << "Noop: " << end - start << endl;
  106. total += d.length();
  107. d.start();
  108. d.stop();
  109. COUT << "Noop: " << d.length() << endl;
  110. total += d.length();
  111. start.set();
  112. tc.set();
  113. end.set();
  114. COUT << "TickCounter::set(): " << end - start << endl;
  115. total += d.length();
  116. d.start();
  117. int i = 0;
  118. d.stop();
  119. COUT << "int construction: " << d.length() << endl;
  120. total += d.length();
  121. d.start();
  122. i++;
  123. d.stop();
  124. COUT << "int increment: " << d.length() << endl;
  125. total += d.length();
  126. d.start();
  127. times(0);
  128. d.stop();
  129. COUT << "times: " << d.length() << endl;
  130. total += d.length();
  131. timeval tv;
  132. d.start();
  133. gettimeofday(&tv, 0);
  134. d.stop();
  135. COUT << "gettimeofday: " << d.length() << endl;
  136. total += d.length();
  137. d.start();
  138. foo();
  139. d.stop();
  140. COUT << "inline foo: " << d.length() << endl;
  141. total += d.length();
  142. d.start();
  143. foo();
  144. d.stop();
  145. COUT << "inline foo: " << d.length() << endl;
  146. total += d.length();
  147. d.start();
  148. foo();
  149. d.stop();
  150. COUT << "inline foo: " << d.length() << endl;
  151. total += d.length();
  152. d.start();
  153. bar();
  154. d.stop();
  155. COUT << "bar: " << d.length() << endl;
  156. total += d.length();
  157. d.start();
  158. bar();
  159. d.stop();
  160. COUT << "bar: " << d.length() << endl;
  161. total += d.length();
  162. d.start();
  163. bar();
  164. d.stop();
  165. COUT << "bar: " << d.length() << endl;
  166. total += d.length();
  167. d.start();
  168. feh(10);
  169. d.stop();
  170. COUT << "10 func calls: " << d.length() << endl;
  171. total += d.length();
  172. d.start();
  173. feh(20);
  174. d.stop();
  175. COUT << "20 func calls: " << d.length() << endl;
  176. total += d.length();
  177. int k = 8;
  178. unsigned j;    
  179. d.start();
  180. j = static_cast<unsigned int>(k);
  181. d.stop();
  182. COUT << "static cast: " << d.length() << endl;
  183. total += d.length();
  184. d.start();
  185. printf("printf()n");
  186. d.stop();
  187. COUT << ": " << d.length() << endl;
  188. total += d.length();
  189. d.start();
  190. cout << "cout ..." << endl;
  191. d.stop();
  192. COUT << ": " << d.length() << endl;
  193. total += d.length();
  194. d.start();
  195. int fd = socket(AF_INET, SOCK_DGRAM, 0);
  196. d.stop();
  197. COUT << "socket(): " << d.length() << endl;
  198. total += d.length();
  199. d.start();
  200. close(fd);
  201. d.stop();
  202. COUT << "close(socket): " << d.length() << endl;
  203. total += d.length();
  204. d.start();
  205. fd = open("foo.txt", O_CREAT | O_WRONLY, S_IRUSR | S_IWUSR);
  206. d.stop();
  207. COUT << "open(): " << d.length() << endl;
  208. total += d.length();
  209. char  s[] = "Testing";
  210. d.start();
  211. write(fd, s, sizeof(s)-1);
  212. d.stop();
  213. COUT << "write(): " << d.length() << endl;
  214. total += d.length();
  215. d.start();
  216. close(fd);
  217. d.stop();
  218. COUT << "close(file): " << d.length() << endl;
  219. total += d.length();
  220. d.start();
  221. unlink("foo.txt");
  222. d.stop();
  223. COUT << "unlink(file): " << d.length() << endl;
  224. total += d.length();
  225.     }
  226.     cout << endl << setw(20) << "main: " << main_d.length() << endl;
  227.     cout << setw(20) << "total: " << total << endl;        
  228.     return ( 0 );
  229. }