Merge pull request #2791 from elupus/softae
[vuplus_xbmc] / xbmc / threads / Lockables.h
1 /*
2  *      Copyright (C) 2005-2013 Team XBMC
3  *      http://www.xbmc.org
4  *
5  *  This Program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; either version 2, or (at your option)
8  *  any later version.
9  *
10  *  This Program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with XBMC; see the file COPYING.  If not, see
17  *  <http://www.gnu.org/licenses/>.
18  *
19  */
20
21 #pragma once
22
23 #include "threads/Helpers.h"
24
25 namespace XbmcThreads
26 {
27
28   /**
29    * This template will take any implementation of the "Lockable" concept
30    * and allow it to be used as an "Exitable Lockable."
31    *
32    * Something that implements the "Lockable concept" simply means that 
33    * it has the three methods:
34    *
35    *   lock();
36    *   try_lock();
37    *   unlock();
38    *
39    * "Exitable" specifially means that, no matter how deep the recursion
40    * on the mutex/critical section, we can exit from it and then restore
41    * the state.
42    *
43    * This requires us to extend the Lockable so that we can keep track of the
44    * number of locks that have been recursively acquired so that we can
45    * undo it, and then restore that (See class CSingleExit).
46    *
47    * All xbmc code expects Lockables to be recursive.
48    */
49   template<class L> class CountingLockable : public NonCopyable
50   {
51     friend class ConditionVariable;
52   protected:
53     L mutex;
54     unsigned int count;
55
56   public:
57     inline CountingLockable() : count(0) {}
58
59     // boost::thread Lockable concept
60     inline void lock() { mutex.lock(); count++; }
61     inline bool try_lock() { return mutex.try_lock() ? count++, true : false; }
62     inline void unlock() { count--; mutex.unlock(); }
63
64     /**
65      * This implements the "exitable" behavior mentioned above.
66      */
67     inline unsigned int exit() 
68     { 
69       // it's possibe we don't actually own the lock
70       // so we will try it.
71       unsigned int ret = 0;
72       if (try_lock())
73       {
74         ret = count - 1;  // The -1 is because we don't want 
75                           //  to count the try_lock increment.
76         // We must NOT compare "count" in this loop since 
77         // as soon as the last unlock is called another thread
78         // can modify it.
79         for (unsigned int i = 0; i <= ret; i++) // This will also unlock the try_lock.
80           unlock();
81       }
82
83       return ret; 
84     }
85
86     /**
87      * Restore a previous exit to the provided level.
88      */
89     inline void restore(unsigned int restoreCount)
90     {
91       for (unsigned int i = 0; i < restoreCount; i++) 
92         lock();
93     }
94
95     /**
96      * Some implementations (see pthreads) require access to the underlying 
97      *  CCriticalSection, which is also implementation specific. This 
98      *  provides access to it through the same method on the guard classes
99      *  UniqueLock, and SharedLock.
100      *
101      * There really should be no need for the users of the threading library
102      *  to call this method.
103      */
104     inline L& get_underlying() { return mutex; }
105   };
106
107
108   /**
109    * This template can be used to define the base implementation for any UniqueLock
110    * (such as CSingleLock) that uses a Lockable as its mutex/critical section.
111    */
112   template<typename L> class UniqueLock : public NonCopyable
113   {
114   protected:
115     L& mutex;
116     bool owns;
117     inline UniqueLock(L& lockable) : mutex(lockable), owns(true) { mutex.lock(); }
118     inline UniqueLock(L& lockable, bool try_to_lock_discrim ) : mutex(lockable) { owns = mutex.try_lock(); }
119     inline ~UniqueLock() { if (owns) mutex.unlock(); }
120
121   public:
122
123     inline bool owns_lock() const { return owns; }
124
125     //This also implements lockable
126     inline void lock() { mutex.lock(); owns=true; }
127     inline bool try_lock() { return (owns = mutex.try_lock()); }
128     inline void unlock() { if (owns) { mutex.unlock(); owns=false; } }
129
130     /**
131      * See the note on the same method on CountingLockable
132      */
133     inline L& get_underlying() { return mutex; }
134   };
135
136   /**
137    * This template can be used to define the base implementation for any SharedLock
138    * (such as CSharedLock) that uses a Shared Lockable as its mutex/critical section.
139    *
140    * Something that implements the "Shared Lockable" concept has all of the methods
141    * required by the Lockable concept and also:
142    *
143    * void lock_shared();
144    * bool try_lock_shared();
145    * void unlock_shared();
146    */
147   template<typename L> class SharedLock : public NonCopyable
148   {
149   protected:
150     L& mutex;
151     bool owns;
152     inline SharedLock(L& lockable) : mutex(lockable), owns(true) { mutex.lock_shared(); }
153     inline ~SharedLock() { if (owns) mutex.unlock_shared(); }
154
155     inline bool owns_lock() const { return owns; }
156     inline void lock() { mutex.lock_shared(); owns = true; }
157     inline bool try_lock() { return (owns = mutex.try_lock_shared()); }
158     inline void unlock() { if (owns) mutex.unlock_shared(); owns = false; }
159
160     /**
161      * See the note on the same method on CountingLockable
162      */
163     inline L& get_underlying() { return mutex; }
164   };
165
166
167 }