GNUNET_DISK_OPEN_READ
[oweals/gnunet.git] / src / util / test_scheduler_delay.c
1 /*
2      This file is part of GNUnet.
3      (C) 2001, 2002, 2003, 2004, 2006 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 2, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20 /**
21  * @file util/test_scheduler_delay.c
22  * @brief testcase for delay of scheduler, measures how
23  *  precise the timers are.  Expect values between 10 and 20 ms on
24  *  modern machines.
25  */
26 #include "platform.h"
27 #include "gnunet_common.h"
28 #include "gnunet_scheduler_lib.h"
29 #include "gnunet_time_lib.h"
30
31 #define VERBOSE GNUNET_NO
32
33 static struct GNUNET_TIME_Absolute target;
34
35 static int i;
36
37 static unsigned long long cumDelta;
38
39 #define INCR 47
40
41 #define MAXV 1500
42
43 /**
44  * Signature of the main function of a task.
45  *
46  * @param cls closure
47  * @param tc context
48  */
49 static void
50 test_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
51 {
52   struct GNUNET_TIME_Absolute now;
53
54   now = GNUNET_TIME_absolute_get ();
55   if (now.value > target.value)
56     cumDelta += (now.value - target.value);
57   else
58     cumDelta += (target.value - now.value);
59   target =
60     GNUNET_TIME_relative_to_absolute (GNUNET_TIME_relative_multiply
61                                       (GNUNET_TIME_UNIT_MILLISECONDS, i));
62   fprintf (stderr, ".");
63   if (i > MAXV)
64     {
65       fprintf (stderr, "\n");
66       return;
67     }
68   GNUNET_SCHEDULER_add_delayed (tc->sched,
69                                 GNUNET_NO,
70                                 GNUNET_SCHEDULER_PRIORITY_DEFAULT,
71                                 GNUNET_SCHEDULER_NO_PREREQUISITE_TASK,
72                                 GNUNET_TIME_relative_multiply
73                                 (GNUNET_TIME_UNIT_MILLISECONDS, i),
74                                 &test_task, NULL);
75   i += INCR;
76 }
77
78 static int
79 check ()
80 {
81   target = GNUNET_TIME_absolute_get ();
82   GNUNET_SCHEDULER_run (&test_task, NULL);
83   FPRINTF (stdout,
84            "Sleep precision: %llu ms. ", cumDelta / 1000 / (MAXV / INCR));
85   if (cumDelta <= 10 * MAXV / INCR)
86     fprintf (stdout, "Timer precision is excellent.\n");
87   else if (cumDelta <= 50 * MAXV / INCR)        /* 50 ms average deviation */
88     fprintf (stdout, "Timer precision is good.\n");
89   else if (cumDelta > 250 * MAXV / INCR)
90     fprintf (stdout, "Timer precision is awful.\n");
91   else
92     fprintf (stdout, "Timer precision is acceptable.\n");
93   return 0;
94 }
95
96 int
97 main (int argc, char *argv[])
98 {
99   int ret;
100
101   GNUNET_log_setup ("test-scheduler-delay", "WARNING", NULL);
102   ret = check ();
103
104   return ret;
105 }
106
107 /* end of test_scheduler_delay.c */