| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- /*
- *
- * Embedded Linux library
- *
- * Copyright (C) 2019 Intel Corporation. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
- *
- */
- #ifdef HAVE_CONFIG_H
- #include <config.h>
- #endif
- #define _GNU_SOURCE
- #include <time.h>
- #include "time.h"
- #include "time-private.h"
- #include "random.h"
- #include "private.h"
- /**
- * l_time_now:
- *
- * Get the running clocktime in microseconds
- *
- * Returns: Current clock time in microseconds
- **/
- LIB_EXPORT uint64_t l_time_now(void)
- {
- struct timespec now;
- clock_gettime(CLOCK_BOOTTIME, &now);
- return (uint64_t) now.tv_sec * 1000000 + now.tv_nsec / 1000;
- }
- /**
- * l_time_after
- *
- * Returns: True if time a is after time b
- **/
- /**
- * l_time_before
- *
- * Returns: True if time a is before time b
- **/
- /**
- * l_time_offset
- *
- * @time: Start time to calculate offset
- * @offset: Amount of time to add to 'time'
- *
- * Adds an offset to a time value. This checks for overflow, and if detected
- * returns UINT64_MAX.
- *
- * Returns: A time value 'time' + 'offset'. Or UINT64_MAX if time + offset
- * exceeds UINT64_MAX.
- **/
- /* Compute ms + RAND*ms where RAND is in range -0.1 .. 0.1 */
- uint64_t _time_fuzz_msecs(uint64_t ms)
- {
- /* We do this by subtracting 0.1ms and adding 0.1ms * rand[0 .. 2] */
- return ms - ms / 10 +
- (l_getrandom_uint32() % (2 * L_MSEC_PER_SEC)) *
- ms / 10 / L_MSEC_PER_SEC;
- }
- uint64_t _time_pick_interval_secs(uint32_t min_secs, uint32_t max_secs)
- {
- uint64_t min_ms = min_secs * L_MSEC_PER_SEC;
- uint64_t max_ms = max_secs * L_MSEC_PER_SEC;
- return l_getrandom_uint32() % (max_ms + 1 - min_ms) + min_ms;
- }
- /* Compute a time in ms based on seconds + max_offset * [-1.0 .. 1.0] */
- uint64_t _time_fuzz_secs(uint32_t secs, uint32_t max_offset)
- {
- uint64_t ms = secs * L_MSEC_PER_SEC;
- uint64_t r = l_getrandom_uint32();
- max_offset *= L_MSEC_PER_SEC;
- if (r & 0x80000000)
- ms += (r & 0x7fffffff) % max_offset;
- else
- ms -= (r & 0x7fffffff) % max_offset;
- return ms;
- }
|