/usr/include/CLAM/Condition.hxx is in libclam-dev 1.4.0-6.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*
* Copyright (c) 2004 MUSIC TECHNOLOGY GROUP (MTG)
* UNIVERSITAT POMPEU FABRA
*
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#ifndef __CONDITION__
#define __CONDITION__
#include "ErrSystem.hxx"
#include "Lock.hxx"
#include <pthread.h>
namespace CLAM
{
struct xtime;
class Condition
{
public:
Condition();
~Condition();
void NotifyOne();
void NotifyAll();
template <typename L>
void Wait( L& lock )
{
if ( !lock )
throw LockError("Invalid lock");
DoWait( lock.mMutex );
}
template <typename L, typename Pr >
void Wait( L& lock, Pr predicate )
{
if ( !lock )
throw LockError("Invalid lock");
while ( !predicate() )
DoWait( lock.mMutex );
}
template <typename L>
bool TimedWait( L& lock, const xtime& xt )
{
if (!lock )
throw LockError();
return DoTimedWait( lock.mMutex, xt );
}
template <typename L, typename Pr>
bool TimedWait( L& lock, const xtime& xt, Pr predicate )
{
if ( !lock )
throw LockError();
while( !predicate() )
{
if (!DoTimedWait( lock.mMutex, xt ) )
return false;
}
return true;
}
private:
template <typename M>
void DoWait( M& mutex )
{
typedef typename Hidden::LockOps<M> LockOps;
typename LockOps::LockState state;
LockOps::Unlock( mutex, state );
DoWait( state.pmutex );
LockOps::Lock( mutex, state );
}
template <typename M>
bool DoTimedWait( M& mutex, const xtime& xt )
{
typedef typename Hidden::LockOps<M> LockOps;
typename LockOps::LockState state;
LockOps::Unlock( mutex, state );
bool ret = false;
ret = DoTimedWait( xt, state.pmutex );
LockOps::Lock( mutex, state );
return ret;
}
void DoWait( pthread_mutex_t* pMutex );
bool DoTimedWait( const xtime& xt, pthread_mutex_t* pMutex);
pthread_cond_t mCondition;
};
} // end of namespace CLAM
#endif // Condition.hxx
|