2 This file is part of GNUnet.
3 Copyright (C) 2011-2013 GNUnet e.V.
5 GNUnet is free software: you can redistribute it and/or modify it
6 under the terms of the GNU Affero General Public License as published
7 by the Free Software Foundation, either version 3 of the License,
8 or (at your option) any later version.
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 Affero General Public License for more details.
15 You should have received a copy of the GNU Affero General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
18 SPDX-License-Identifier: AGPL3.0-or-later
22 * @file util/speedup.c
23 * @author Matthias Wachs
24 * @brief functions to speedup peer execution by manipulation system time
27 #include "gnunet_util_lib.h"
30 #define LOG(kind,...) GNUNET_log_from (kind, "util-speedup", __VA_ARGS__)
33 static struct GNUNET_TIME_Relative interval;
35 static struct GNUNET_TIME_Relative delta;
37 static struct GNUNET_SCHEDULER_Task *speedup_task;
41 do_speedup (void *cls)
43 static long long current_offset;
47 current_offset += delta.rel_value_us;
48 GNUNET_TIME_set_offset (current_offset);
49 LOG (GNUNET_ERROR_TYPE_DEBUG,
50 "Speeding up execution time by %s\n",
51 GNUNET_STRINGS_relative_time_to_string (delta, GNUNET_NO));
52 speedup_task = GNUNET_SCHEDULER_add_delayed (interval,
59 * Start task that may speed up our system clock artificially
61 * @param cfg configuration to use
62 * @return #GNUNET_OK on success, #GNUNET_SYSERR if the speedup was not configured
65 GNUNET_SPEEDUP_start_ (const struct GNUNET_CONFIGURATION_Handle *cfg)
67 GNUNET_assert (NULL == speedup_task);
69 GNUNET_CONFIGURATION_get_value_time (cfg,
75 GNUNET_CONFIGURATION_get_value_time (cfg,
81 if ( (0 == interval.rel_value_us) ||
82 (0 == delta.rel_value_us) )
84 LOG (GNUNET_ERROR_TYPE_DEBUG,
85 "Speed up disabled\n");
88 LOG (GNUNET_ERROR_TYPE_DEBUG,
89 "Speed up execution by %s\n",
90 GNUNET_STRINGS_relative_time_to_string (delta, GNUNET_NO));
91 LOG (GNUNET_ERROR_TYPE_DEBUG,
92 "Speed up executed every %s\n",
93 GNUNET_STRINGS_relative_time_to_string (interval, GNUNET_NO));
94 speedup_task = GNUNET_SCHEDULER_add_now_with_lifeness (GNUNET_NO,
102 * Stop tasks that modify clock behavior.
105 GNUNET_SPEEDUP_stop_ ()
107 if (NULL != speedup_task)
109 GNUNET_SCHEDULER_cancel (speedup_task);
112 if ( (0 != interval.rel_value_us) &&
113 (0 != delta.rel_value_us) )
114 LOG (GNUNET_ERROR_TYPE_DEBUG,
115 "Stopped execution speed up\n");
118 /* end of speedup.c */