Add freature of Scheduled Group Action.
[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 #ifndef WITH_ARDUINO
25 #include <sys/time.h>
26 #else
27 #include <Time.h>
28 #endif
29
30 #ifdef __cplusplus
31 extern "C"
32 {
33 #endif
34
35 #include <math.h>
36
37 #ifndef WITH_ARDUINO
38 #define SECS_PER_MIN  (60L)
39 #define SECS_PER_HOUR (SECS_PER_MIN * 60L)
40 #define SECS_PER_DAY  (SECS_PER_HOUR * 24L)
41 #define DAYS_PER_WEEK (7L)
42 #define SECS_PER_WEEK (SECS_PER_DAY * DAYS_PER_WEEK)
43 #define SECS_PER_YEAR (SECS_PER_WEEK * 52L)
44 #define SECS_YR_2000  (946684800L)
45 #endif
46
47 time_t timespec_diff(const time_t after, const time_t before);
48 void timespec_add(time_t * to, const time_t seconds);
49 void checkTimeout();
50
51 #ifndef WITH_ARDUINO
52 long int getSeconds(struct tm* tp);
53 long int getRelativeIntervalOfWeek(struct tm* tp);
54 long int getSecondsFromAbsTime(struct tm* tp);
55
56 int initThread();
57 void *loop(void *threadid);
58 time_t registerTimer(const time_t seconds, int *id, void *cb);
59 void unregisterTimer(int id);
60
61 #else
62
63 time_t timeToSecondsFromNow(tmElements_t *t);
64 time_t registerTimer(const time_t seconds, int *id,  void (*cb)());
65 void unregisterTimer(int id);
66
67
68 #endif
69
70 #ifdef __cplusplus
71 }
72 #endif
73 #endif /* TIMER_H_ */
74