]> rtime.felk.cvut.cz Git - CanFestival-3.git/blob - drivers/timers_unix/timers_unix.c
e506ed20c92f5ebca6f8fb87da3c2a52840c8b47
[CanFestival-3.git] / drivers / timers_unix / timers_unix.c
1 #include <stdlib.h>
2
3 #include <sys/time.h>
4 #include <pthread.h> 
5 #include <signal.h>
6
7 #include "applicfg.h"
8 #include "timer.h"
9
10 pthread_mutex_t CanFestival_mutex = PTHREAD_MUTEX_INITIALIZER;
11
12 TASK_HANDLE TimerLoopThread;
13
14 TIMEVAL last_time_set = TIMEVAL_MAX;
15
16 struct timeval last_sig;
17
18 timer_t timer;
19
20 void TimerCleanup(void)
21 {
22         /* only used in realtime apps */
23 }
24
25 void EnterMutex(void)
26 {
27         pthread_mutex_lock(&CanFestival_mutex); 
28 }
29
30 void LeaveMutex(void)
31 {
32         pthread_mutex_unlock(&CanFestival_mutex);
33 }
34
35 void timer_notify(sigval_t val)
36 {
37         gettimeofday(&last_sig,NULL);
38         EnterMutex();
39         TimeDispatch();
40         LeaveMutex();
41 //      printf("getCurrentTime() return=%u\n", p.tv_usec);
42 }
43
44 void TimerInit(void)
45 {
46         struct sigevent sigev;
47
48         // Take first absolute time ref.
49         gettimeofday(&last_sig,NULL);
50
51         memset (&sigev, 0, sizeof (struct sigevent));
52         sigev.sigev_value.sival_int = 0;
53         sigev.sigev_notify = SIGEV_THREAD;
54         sigev.sigev_notify_attributes = NULL;
55         sigev.sigev_notify_function = timer_notify;
56
57         timer_create (CLOCK_REALTIME, &sigev, &timer);
58 }
59
60 void StopTimerLoop(TimerCallback_t exitfunction)
61 {
62         EnterMutex();
63         timer_delete (timer);
64         exitfunction(NULL,0);
65         LeaveMutex();
66 }
67
68 void StartTimerLoop(TimerCallback_t init_callback)
69 {
70         EnterMutex();
71         // At first, TimeDispatch will call init_callback.
72         SetAlarm(NULL, 0, init_callback, 0, 0);
73         LeaveMutex();
74 }
75
76 void CreateReceiveTask(CAN_PORT port, TASK_HANDLE* Thread, void* ReceiveLoopPtr)
77 {
78         pthread_create(Thread, NULL, ReceiveLoopPtr, (void*)port);
79 }
80
81 void WaitReceiveTaskEnd(TASK_HANDLE *Thread)
82 {
83         pthread_kill(*Thread, SIGTERM);
84         pthread_join(*Thread, NULL);
85 }
86
87 #define maxval(a,b) ((a>b)?a:b)
88 void setTimer(TIMEVAL value)
89 {
90 //      printf("setTimer(TIMEVAL value=%d)\n", value);
91         // TIMEVAL is us whereas setitimer wants ns...
92         long tv_nsec = 1000 * (maxval(value,1)%1000000);
93         time_t tv_sec = value/1000000;
94         struct itimerspec timerValues;
95         timerValues.it_value.tv_sec = tv_sec;
96         timerValues.it_value.tv_nsec = tv_nsec;
97         timerValues.it_interval.tv_sec = 0;
98         timerValues.it_interval.tv_nsec = 0;
99
100         timer_settime (timer, 0, &timerValues, NULL);
101 }
102
103 TIMEVAL getElapsedTime(void)
104 {
105         struct timeval p;
106         gettimeofday(&p,NULL);
107 //      printf("getCurrentTime() return=%u\n", p.tv_usec);
108         return (p.tv_sec - last_sig.tv_sec)* 1000000 + p.tv_usec - last_sig.tv_usec;
109 }