finishing gnunet-nat-server
[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 3, 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.abs_value > target.abs_value)
56     cumDelta += (now.abs_value - target.abs_value);
57   else
58     cumDelta += (target.abs_value - now.abs_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 (GNUNET_TIME_relative_multiply
69                                 (GNUNET_TIME_UNIT_MILLISECONDS, i),
70                                 &test_task, NULL);
71   i += INCR;
72 }
73
74 static int
75 check ()
76 {
77   target = GNUNET_TIME_absolute_get ();
78   GNUNET_SCHEDULER_run (&test_task, NULL);
79   FPRINTF (stdout,
80            "Sleep precision: %llu ms. ", cumDelta / 1000 / (MAXV / INCR));
81   if (cumDelta <= 10 * MAXV / INCR)
82     fprintf (stdout, "Timer precision is excellent.\n");
83   else if (cumDelta <= 50 * MAXV / INCR)        /* 50 ms average deviation */
84     fprintf (stdout, "Timer precision is good.\n");
85   else if (cumDelta > 250 * MAXV / INCR)
86     fprintf (stdout, "Timer precision is awful.\n");
87   else
88     fprintf (stdout, "Timer precision is acceptable.\n");
89   return 0;
90 }
91
92 int
93 main (int argc, char *argv[])
94 {
95   int ret;
96
97   GNUNET_log_setup ("test-scheduler-delay", "WARNING", NULL);
98   ret = check ();
99
100   return ret;
101 }
102
103 /* end of test_scheduler_delay.c */