-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcoap_time.h
94 lines (75 loc) · 1.95 KB
/
coap_time.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/* coap_time.h -- Clock Handling
*
* Copyright (C) 2010,2011 Olaf Bergmann <[email protected]>
*
* This file is part of the CoAP library libcoap. Please see
* README for terms of use.
*/
/**
* @file coap_time.h
* @brief Clock Handling
*/
#ifndef _COAP_TIME_H_
#define _COAP_TIME_H_
#include "config.h"
/**
* @defgroup clock Clock Handling
* Default implementation of internal clock. You should redefine this if
* you do not have time() and gettimeofday().
* @{
*/
#ifdef WITH_CONTIKI
#include "clock.h"
typedef clock_time_t coap_tick_t;
#define COAP_TICKS_PER_SECOND CLOCK_SECOND
/** Set at startup to initialize the internal clock (time in seconds). */
extern clock_time_t clock_offset;
static inline void
contiki_clock_init_impl(void) {
clock_init();
clock_offset = clock_time();
}
#define coap_clock_init contiki_clock_init_impl
static inline void
contiki_ticks_impl(coap_tick_t *t) {
*t = clock_time();
}
#define coap_ticks contiki_ticks_impl
#else /* WITH_CONTIKI */
typedef unsigned int coap_tick_t;
#define COAP_TICKS_PER_SECOND 1024
/** Set at startup to initialize the internal clock (time in seconds). */
extern time_t clock_offset;
#endif
#ifndef coap_clock_init
static inline void
coap_clock_init_impl(void) {
#ifdef HAVE_TIME_H
clock_offset = time(NULL);
#else
# ifdef __GNUC__
/* Issue a warning when using gcc. Other prepropressors do
* not seem to have a similar feature. */
# warning "cannot initialize clock"
# endif
clock_offset = 0;
#endif
}
#define coap_clock_init coap_clock_init_impl
#endif /* coap_clock_init */
#ifndef coap_ticks
static inline void
coap_ticks_impl(coap_tick_t *t) {
#ifdef HAVE_SYS_TIME_H
struct timeval tv;
gettimeofday(&tv, NULL);
*t = (tv.tv_sec - clock_offset) * COAP_TICKS_PER_SECOND
+ (tv.tv_usec * COAP_TICKS_PER_SECOND / 1000000);
#else
#error "clock not implemented"
#endif
}
#define coap_ticks coap_ticks_impl
#endif /* coap_ticks */
/** @} */
#endif /* _COAP_TIME_H_ */