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
|
/*
* Copyright (C) 2005-2013 Team XBMC
* http://www.xbmc.org
*
* 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, 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 XBMC; see the file COPYING. If not, see
* <http://www.gnu.org/licenses/>.
*
*/
#ifndef TS_MUTEX_H
#define TS_MUTEX_H
#if defined(_MSC_VER)
#include <windows.h>
#define pthread_mutex_init(a, b) InitializeCriticalSection(a)
#define pthread_mutex_destroy(a) DeleteCriticalSection(a)
#define pthread_mutex_lock(a) EnterCriticalSection(a)
#define pthread_mutex_unlock(a) LeaveCriticalSection(a)
typedef CRITICAL_SECTION pthread_mutex_t;
#else
#include <pthread.h>
namespace TSDemux
{
namespace PLATFORM
{
inline pthread_mutexattr_t *GetRecursiveMutexAttribute(void)
{
static pthread_mutexattr_t g_mutexAttr;
static bool bAttributeInitialised = false;
if (!bAttributeInitialised)
{
pthread_mutexattr_init(&g_mutexAttr);
pthread_mutexattr_settype(&g_mutexAttr, PTHREAD_MUTEX_RECURSIVE);
bAttributeInitialised = true;
}
return &g_mutexAttr;
}
}
}
#endif /* _MSC_VER */
namespace TSDemux
{
namespace PLATFORM
{
class PreventCopy
{
public:
inline PreventCopy(void) {}
inline ~PreventCopy(void) {}
private:
inline PreventCopy(const PreventCopy &c) { *this = c; }
inline PreventCopy &operator=(const PreventCopy &c){ *this = c; return *this; }
};
class CMutex : public PreventCopy
{
public:
inline CMutex(void)
{
pthread_mutex_init(&m_mutex, GetRecursiveMutexAttribute());
}
inline ~CMutex(void)
{
pthread_mutex_destroy(&m_mutex);
}
inline void Lock(void)
{
pthread_mutex_lock(&m_mutex);
}
inline void Unlock(void)
{
pthread_mutex_unlock(&m_mutex);
}
private:
pthread_mutex_t m_mutex;
};
class CLockObject : public PreventCopy
{
public:
inline CLockObject(CMutex& mutex) :
m_mutex(mutex)
{
m_mutex.Lock();
}
inline ~CLockObject(void)
{
Unlock();
}
inline void Unlock(void)
{
m_mutex.Unlock();
}
inline void Lock(void)
{
m_mutex.Lock();
}
private:
CMutex& m_mutex;
};
}
}
#endif /* TS_MUTEX_H */
|