Generate iotivity_config.h at build time
[platform/upstream/iotivity.git] / extlibs / timer / timer.h
1 //******************************************************************
2 //
3 // Copyright 2014 Samsung Electronics All Rights Reserved.
4 //
5 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
6 //
7 // Licensed under the Apache License, Version 2.0 (the "License");
8 // you may not use this file except in compliance with the License.
9 // You may obtain a copy of the License at
10 //
11 //      http://www.apache.org/licenses/LICENSE-2.0
12 //
13 // Unless required by applicable law or agreed to in writing, software
14 // distributed under the License is distributed on an "AS IS" BASIS,
15 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 // See the License for the specific language governing permissions and
17 // limitations under the License.
18 //
19 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
20
21 #ifndef TIMER_H_
22 #define TIMER_H_
23
24 #include "iotivity_config.h"
25 #ifdef HAVE_SYS_TIME_H
26 #include <sys/time.h>
27 #endif
28 #ifdef HAVE_ARDUINO_TIME_H
29 #include <Time.h>
30 #endif
31
32 #ifdef __cplusplus
33 extern "C"
34 {
35 #endif
36
37 #include <math.h>
38
39 #ifndef WITH_ARDUINO
40 #define SECS_PER_MIN  (60L)
41 #define SECS_PER_HOUR (SECS_PER_MIN * 60L)
42 #define SECS_PER_DAY  (SECS_PER_HOUR * 24L)
43 #define DAYS_PER_WEEK (7L)
44 #define SECS_PER_WEEK (SECS_PER_DAY * DAYS_PER_WEEK)
45 #define SECS_PER_YEAR (SECS_PER_WEEK * 52L)
46 #define SECS_YR_2000  (946684800L)
47 #endif
48
49 time_t timespec_diff(const time_t after, const time_t before);
50 void timespec_add(time_t * to, const time_t seconds);
51 void checkTimeout();
52
53 #ifndef WITH_ARDUINO
54 long int getSeconds(struct tm* tp);
55 long int getRelativeIntervalOfWeek(struct tm* tp);
56 long int getSecondsFromAbsTime(struct tm* tp);
57
58 int initThread();
59 void *loop(void *threadid);
60 time_t registerTimer(const time_t seconds, int *id, void *cb);
61 void unregisterTimer(int id);
62
63 #else
64
65 time_t timeToSecondsFromNow(tmElements_t *t);
66 time_t registerTimer(const time_t seconds, int *id,  void (*cb)());
67 void unregisterTimer(int id);
68
69
70 #endif
71
72 #ifdef __cplusplus
73 }
74 #endif
75 #endif /* TIMER_H_ */
76