/[svn]/linuxsampler/trunk/src/common/Condition.cpp
ViewVC logotype

Contents of /linuxsampler/trunk/src/common/Condition.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 56 - (show annotations) (download)
Tue Apr 27 09:21:58 2004 UTC (20 years ago) by schoenebeck
File size: 3485 byte(s)
updated copyright header for 2004

1 /***************************************************************************
2 * *
3 * LinuxSampler - modular, streaming capable sampler *
4 * *
5 * Copyright (C) 2003, 2004 by Benno Senoner and Christian Schoenebeck *
6 * *
7 * This program is free software; you can redistribute it and/or modify *
8 * it under the terms of the GNU General Public License as published by *
9 * the Free Software Foundation; either version 2 of the License, or *
10 * (at your option) any later version. *
11 * *
12 * This program is distributed in the hope that it will be useful, *
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
15 * GNU General Public License for more details. *
16 * *
17 * You should have received a copy of the GNU General Public License *
18 * along with this program; if not, write to the Free Software *
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, *
20 * MA 02111-1307 USA *
21 ***************************************************************************/
22
23 #include "Condition.h"
24
25 Condition::Condition(bool bInitialCondition) {
26 pthread_cond_init(&__posix_true_condition, NULL);
27 pthread_cond_init(&__posix_false_condition, NULL);
28 bCondition = bInitialCondition;
29 }
30
31 Condition::~Condition() {
32 pthread_cond_destroy(&__posix_true_condition);
33 pthread_cond_destroy(&__posix_false_condition);
34 }
35
36 int Condition::WaitIf(bool bCondition, long TimeoutSeconds, long TimeoutNanoSeconds) {
37 Lock();
38 int res = 0;
39 if (this->bCondition == bCondition) {
40 if (bCondition) {
41 if (TimeoutSeconds || TimeoutNanoSeconds) {
42 timespec timeout;
43 timeout.tv_sec = TimeoutSeconds;
44 timeout.tv_nsec = TimeoutNanoSeconds;
45 res = pthread_cond_timedwait(&__posix_false_condition, &__posix_mutex, &timeout);
46 }
47 else pthread_cond_wait(&__posix_false_condition, &__posix_mutex);
48 }
49 else {
50 if (TimeoutSeconds || TimeoutNanoSeconds) {
51 timespec timeout;
52 timeout.tv_sec = TimeoutSeconds;
53 timeout.tv_nsec = TimeoutNanoSeconds;
54 res = pthread_cond_timedwait(&__posix_true_condition, &__posix_mutex, &timeout);
55 }
56 else pthread_cond_wait(&__posix_true_condition, &__posix_mutex);
57 }
58 }
59 return res;
60 }
61
62 int Condition::WaitAndUnlockIf(bool bCondition, long TimeoutSeconds, long TimeoutNanoSeconds) {
63 int res = WaitIf(bCondition, TimeoutSeconds, TimeoutNanoSeconds);
64 Unlock();
65 return res;
66 }
67
68 void Condition::Set(bool bCondition) {
69 Lock();
70 if (this->bCondition != bCondition) {
71 this->bCondition = bCondition;
72 if (bCondition) pthread_cond_broadcast(&__posix_true_condition);
73 else pthread_cond_broadcast(&__posix_false_condition);
74 }
75 else Unlock();
76 }

  ViewVC Help
Powered by ViewVC