00001 /*============================================================================= 00002 Copyright (C) 2012 Allied Vision Technologies. All Rights Reserved. 00003 00004 Redistribution of this file, in original or modified form, without 00005 prior written consent of Allied Vision Technologies is prohibited. 00006 00007 ------------------------------------------------------------------------------- 00008 00009 File: ConditionHelper.h 00010 00011 Description: Definition of helper class for conditions. 00012 (This include file is for internal use only.) 00013 00014 ------------------------------------------------------------------------------- 00015 00016 THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED 00017 WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF TITLE, 00018 NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 00019 DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, 00020 INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 00021 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 00022 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 00023 AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR 00024 TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 00025 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00026 00027 =============================================================================*/ 00028 00029 #ifndef AVT_VMBAPI_CONDITIONHELPER_H 00030 #define AVT_VMBAPI_CONDITIONHELPER_H 00031 00032 #include <VimbaCPP/Source/Condition.h> 00033 00034 #include <map> 00035 00036 namespace AVT { 00037 namespace VmbAPI { 00038 00039 class ConditionHelper 00040 { 00041 public: 00042 ConditionHelper(); 00043 00044 // Waits until writing access has finished and returns true. 00045 // If exclusive writing access was granted the function exits immediately without locking and returns false 00046 bool EnterReadLock( BasicLockable &rLockable ); 00047 bool EnterReadLock( MutexPtr pMutex ); 00048 void ExitReadLock( BasicLockable &rLockable ); 00049 void ExitReadLock( MutexPtr pMutex ); 00050 00051 // Waits until writing and reading access have finished and returns true. 00052 // If exclusive writing access was granted the function exits immediately without locking and returns false 00053 bool EnterWriteLock( BasicLockable &rLockable, bool bExclusive = false ); 00054 bool EnterWriteLock( MutexPtr pMutex, bool bExclusive = false ); 00055 void ExitWriteLock( BasicLockable &rLockable ); 00056 void ExitWriteLock( MutexPtr pMutex ); 00057 00058 private: 00059 Condition m_ReadCondition; 00060 Condition m_WriteCondition; 00061 bool m_bIsWritingList; 00062 bool m_bExclusive; 00063 int m_nNumListReads; 00064 }; 00065 00066 }} // namespace AVT::VmbAPI 00067 00068 #endif // CONDITIONHELPER_H