summaryrefslogtreecommitdiff
path: root/thirdparty/etcpak/Semaphore.hpp
blob: 9e42dbb9e0065eff125aaeb9da4e6293648fd281 (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
#ifndef __DARKRL__SEMAPHORE_HPP__
#define __DARKRL__SEMAPHORE_HPP__

#include <condition_variable>
#include <mutex>

class Semaphore
{
public:
    Semaphore( int count ) : m_count( count ) {}

    void lock()
    {
        std::unique_lock<std::mutex> lock( m_mutex );
        m_cv.wait( lock, [this](){ return m_count != 0; } );
        m_count--;
    }

    void unlock()
    {
        std::lock_guard<std::mutex> lock( m_mutex );
        m_count++;
        m_cv.notify_one();
    }

    bool try_lock()
    {
        std::lock_guard<std::mutex> lock( m_mutex );
        if( m_count == 0 )
        {
            return false;
        }
        else
        {
            m_count--;
            return true;
        }
    }

private:
    std::mutex m_mutex;
    std::condition_variable m_cv;
    unsigned int m_count;
};

#endif