2 * Claws Mail -- a GTK based, lightweight, and fast e-mail client
3 * Copyright (C) 2005-2012 Colin Leroy <colin@colino.net> & the Claws Mail team
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21 * This is a (quite naive) timer, to help determine the speed of various
22 * functions of Claws. By default START_TIMING() and END_TIMING() are NOPS,
23 * so that nothing gets printed out. If you change the #if, however, you'll
24 * be able to get functions timing information. As the implementation is
25 * naive, START_TIMING("message"); must be present just at the end of a
26 * declaration block (or compilation would fail with gcc 2.x), and the
27 * END_TIMING() call must be in the same scope.
35 #include "claws-features.h"
39 # define mytimersub(a, b, result) \
41 (result)->tv_sec = (a)->tv_sec - (b)->tv_sec; \
42 (result)->tv_usec = (a)->tv_usec - (b)->tv_usec; \
43 if ((result)->tv_usec < 0) { \
45 (result)->tv_usec += 1000000; \
49 #if 0 /* set to 0 to measure times at various places */
50 #define START_TIMING(str) do {} while(0);
51 #define END_TIMING() do {} while(0);
58 /* no {} by purpose */
59 #define START_TIMING(str) \
60 LARGE_INTEGER frequency; \
61 LARGE_INTEGER start; \
64 const char *timing_name=str; \
65 QueryPerformanceFrequency (&frequency); \
66 QueryPerformanceCounter (&start);
68 #define END_TIMING() \
69 QueryPerformanceCounter (&end); \
71 (end.QuadPart - start.QuadPart) \
72 * 1000000/frequency.QuadPart; \
73 debug_print("TIMING %s: %ds%03dms\n", timing_name, \
74 (unsigned int) (diff.QuadPart / 1000000), \
75 (unsigned int) ((diff.QuadPart / 1000) % 1000));
78 /* no {} by purpose */
79 #define START_TIMING(str) \
80 struct timeval start; \
82 struct timeval diff; \
83 const char *timing_name=str; \
84 gettimeofday(&start, NULL);
87 #define END_TIMING() \
88 gettimeofday(&end, NULL); \
89 mytimersub(&end, &start, &diff); \
90 debug_print("TIMING %s %s: %ds%03dms\n", \
92 timing_name, (unsigned int)diff.tv_sec, \
93 (unsigned int)diff.tv_usec/1000);
95 #define END_TIMING() \
96 gettimeofday(&end, NULL); \
97 mytimersub(&end, &start, &diff); \
98 debug_print("TIMING %s: %ds%03dms\n", \
99 timing_name, (unsigned int)diff.tv_sec, \
100 (unsigned int)diff.tv_usec/1000);