aboutsummaryrefslogtreecommitdiff
path: root/src/system_wrappers/source/event_posix.cc
blob: b77b9023c29125c0f0776fc67b0cb8b53cb90bdb (plain)
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
/*
 *  Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
 *
 *  Use of this source code is governed by a BSD-style license
 *  that can be found in the LICENSE file in the root of the source
 *  tree. An additional intellectual property rights grant can be found
 *  in the file PATENTS.  All contributing project authors may
 *  be found in the AUTHORS file in the root of the source tree.
 */

#include "event_posix.h"

#include <errno.h>
#include <pthread.h>
#include <signal.h>
#include <stdio.h>
#include <string.h>
#include <sys/time.h>
#include <unistd.h>

namespace webrtc {
const long int E6 = 1000000;
const long int E9 = 1000 * E6;

EventWrapper* EventPosix::Create()
{
    EventPosix* ptr = new EventPosix;
    if (!ptr)
    {
        return NULL;
    }

    const int error = ptr->Construct();
    if (error)
    {
        delete ptr;
        return NULL;
    }
    return ptr;
}


EventPosix::EventPosix()
    : _timerThread(0),
      _timerEvent(0),
      _periodic(false),
      _time(0),
      _count(0),
      _state(kDown)
{
}

int EventPosix::Construct()
{
    // Set start time to zero
    memset(&_tCreate, 0, sizeof(_tCreate));

    int result = pthread_mutex_init(&mutex, 0);
    if (result != 0)
    {
        return -1;
    }
#ifdef WEBRTC_CLOCK_TYPE_REALTIME
    result = pthread_cond_init(&cond, 0);
    if (result != 0)
    {
        return -1;
    }
#else
    pthread_condattr_t condAttr;
    result = pthread_condattr_init(&condAttr);
    if (result != 0)
    {
        return -1;
    }
    result = pthread_condattr_setclock(&condAttr, CLOCK_MONOTONIC);
    if (result != 0)
    {
        return -1;
    }
    result = pthread_cond_init(&cond, &condAttr);
    if (result != 0)
    {
        return -1;
    }
    result = pthread_condattr_destroy(&condAttr);
    if (result != 0)
    {
        return -1;
    }
#endif
    return 0;
}

EventPosix::~EventPosix()
{
    StopTimer();
    pthread_cond_destroy(&cond);
    pthread_mutex_destroy(&mutex);
}

bool EventPosix::Reset()
{
    if (0 != pthread_mutex_lock(&mutex))
    {
        return false;
    }
    _state = kDown;
    pthread_mutex_unlock(&mutex);
    return true;
}

bool EventPosix::Set()
{
    if (0 != pthread_mutex_lock(&mutex))
    {
        return false;
    }
    _state = kUp;
     // Release all waiting threads
    pthread_cond_broadcast(&cond);
    pthread_mutex_unlock(&mutex);
    return true;
}

EventTypeWrapper EventPosix::Wait(unsigned long timeout)
{
    int retVal = 0;
    if (0 != pthread_mutex_lock(&mutex))
    {
        return kEventError;
    }

    if (kDown == _state)
    {
        if (WEBRTC_EVENT_INFINITE != timeout)
        {
            timespec tEnd;
#ifndef WEBRTC_MAC
#ifdef WEBRTC_CLOCK_TYPE_REALTIME
            clock_gettime(CLOCK_REALTIME, &tEnd);
#else
            clock_gettime(CLOCK_MONOTONIC, &tEnd);
#endif
#else
            timeval tVal;
            struct timezone tZone;
            tZone.tz_minuteswest = 0;
            tZone.tz_dsttime = 0;
            gettimeofday(&tVal,&tZone);
            TIMEVAL_TO_TIMESPEC(&tVal,&tEnd);
#endif
            tEnd.tv_sec  += timeout / 1000;
            tEnd.tv_nsec += (timeout - (timeout / 1000) * 1000) * E6;

            if (tEnd.tv_nsec >= E9)
            {
                tEnd.tv_sec++;
                tEnd.tv_nsec -= E9;
            }
            retVal = pthread_cond_timedwait(&cond, &mutex, &tEnd);
        } else {
            retVal = pthread_cond_wait(&cond, &mutex);
        }
    }

    _state = kDown;
    pthread_mutex_unlock(&mutex);

    switch(retVal)
    {
    case 0:
        return kEventSignaled;
    case ETIMEDOUT:
        return kEventTimeout;
    default:
        return kEventError;
    }
}

EventTypeWrapper EventPosix::Wait(timespec& tPulse)
{
    int retVal = 0;
    if (0 != pthread_mutex_lock(&mutex))
    {
        return kEventError;
    }

    if (kUp != _state)
    {
        retVal = pthread_cond_timedwait(&cond, &mutex, &tPulse);
    }
    _state = kDown;

    pthread_mutex_unlock(&mutex);

    switch(retVal)
    {
    case 0:
        return kEventSignaled;
    case ETIMEDOUT:
        return kEventTimeout;
    default:
        return kEventError;
    }
}

bool EventPosix::StartTimer(bool periodic, unsigned long time)
{
    if (_timerThread)
    {
        if(_periodic)
        {
            // Timer already started.
            return false;
        } else  {
            // New one shot timer
            _time = time;
            _tCreate.tv_sec = 0;
            _timerEvent->Set();
            return true;
        }
    }

    // Start the timer thread
    _timerEvent = static_cast<EventPosix*>(EventWrapper::Create());
    const char* threadName = "WebRtc_event_timer_thread";
    _timerThread = ThreadWrapper::CreateThread(Run, this, kRealtimePriority,
                                               threadName);
    _periodic = periodic;
    _time = time;
    unsigned int id = 0;
    if (_timerThread->Start(id))
    {
        return true;
    }
    return false;
}

bool EventPosix::Run(ThreadObj obj)
{
    return static_cast<EventPosix*>(obj)->Process();
}

bool EventPosix::Process()
{
    if (_tCreate.tv_sec == 0)
    {
#ifndef WEBRTC_MAC
#ifdef WEBRTC_CLOCK_TYPE_REALTIME
        clock_gettime(CLOCK_REALTIME, &_tCreate);
#else
        clock_gettime(CLOCK_MONOTONIC, &_tCreate);
#endif
#else
        timeval tVal;
        struct timezone tZone;
        tZone.tz_minuteswest = 0;
        tZone.tz_dsttime = 0;
        gettimeofday(&tVal,&tZone);
        TIMEVAL_TO_TIMESPEC(&tVal,&_tCreate);
#endif
        _count=0;
    }

    timespec tEnd;
    unsigned long long time = _time * ++_count;
    tEnd.tv_sec  = _tCreate.tv_sec + time/1000;
    tEnd.tv_nsec = _tCreate.tv_nsec + (time - (time/1000)*1000)*E6;

    if ( tEnd.tv_nsec >= E9 )
    {
        tEnd.tv_sec++;
        tEnd.tv_nsec -= E9;
    }

    switch(_timerEvent->Wait(tEnd))
    {
    case kEventSignaled:
        return true;
    case kEventError:
        return false;
    case kEventTimeout:
        break;
    }
    if(_periodic || _count==1)
    {
        Set();
    }
    return true;
}

bool EventPosix::StopTimer()
{
    if(_timerThread)
    {
        _timerThread->SetNotAlive();
    }
    if (_timerEvent)
    {
        _timerEvent->Set();
    }
    if (_timerThread)
    {
        if(!_timerThread->Stop())
        {
            return false;
        }

        delete _timerThread;
        _timerThread = 0;
    }
    if (_timerEvent)
    {
        delete _timerEvent;
        _timerEvent = 0;
    }

    // Set time to zero to force new reference time for the timer.
    memset(&_tCreate, 0, sizeof(_tCreate));
    _count=0;
    return true;
}
} // namespace webrtc