PixelLightAPI
.
|
00001 /*********************************************************\ 00002 * File: MutexImpl.h * 00003 * 00004 * Copyright (C) 2002-2012 The PixelLight Team (http://www.pixellight.org/) 00005 * 00006 * This file is part of PixelLight. 00007 * 00008 * PixelLight is free software: you can redistribute it and/or modify 00009 * it under the terms of the GNU Lesser General Public License as published by 00010 * the Free Software Foundation, either version 3 of the License, or 00011 * (at your option) any later version. 00012 * 00013 * PixelLight is distributed in the hope that it will be useful, 00014 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00016 * GNU Lesser General Public License for more details. 00017 * 00018 * You should have received a copy of the GNU Lesser General Public License 00019 * along with PixelLight. If not, see <http://www.gnu.org/licenses/>. 00020 \*********************************************************/ 00021 00022 00023 #ifndef __PLCORE_MUTEX_IMPL_H__ 00024 #define __PLCORE_MUTEX_IMPL_H__ 00025 #pragma once 00026 00027 00028 //[-------------------------------------------------------] 00029 //[ Includes ] 00030 //[-------------------------------------------------------] 00031 #include "PLCore/PLCore.h" 00032 00033 00034 //[-------------------------------------------------------] 00035 //[ Namespace ] 00036 //[-------------------------------------------------------] 00037 namespace PLCore { 00038 00039 00040 //[-------------------------------------------------------] 00041 //[ Classes ] 00042 //[-------------------------------------------------------] 00043 /** 00044 * @brief 00045 * Abstract base class for platform specific 'Mutex' implementations 00046 * 00047 * @note 00048 * - Implementation of the bridge design pattern, this class is the implementor of the 'Mutex' abstraction 00049 */ 00050 class MutexImpl { 00051 00052 00053 //[-------------------------------------------------------] 00054 //[ Friends ] 00055 //[-------------------------------------------------------] 00056 friend class Mutex; 00057 00058 00059 //[-------------------------------------------------------] 00060 //[ Protected functions ] 00061 //[-------------------------------------------------------] 00062 protected: 00063 /** 00064 * @brief 00065 * Constructor 00066 */ 00067 MutexImpl(); 00068 00069 /** 00070 * @brief 00071 * Destructor 00072 */ 00073 virtual ~MutexImpl(); 00074 00075 00076 //[-------------------------------------------------------] 00077 //[ Protected virtual functions ] 00078 //[-------------------------------------------------------] 00079 protected: 00080 /** 00081 * @brief 00082 * Locks the mutex 00083 * 00084 * @return 00085 * 'true' if successful, 'false' on error 00086 */ 00087 virtual bool Lock() = 0; 00088 00089 /** 00090 * @brief 00091 * Locks the mutex, but only wait until timeout 00092 * 00093 * @param[in] nTimeout 00094 * Timeout in milliseconds 00095 * 00096 * @return 00097 * 'true' if successful, 'false' on error 00098 * 00099 * @note 00100 * - nTimeout = 0 means no timeout at all 00101 */ 00102 virtual bool TryLock(uint64 nTimeout) = 0; 00103 00104 /** 00105 * @brief 00106 * Unlocks the mutex 00107 * 00108 * @return 00109 * 'true' if successful, 'false' on error 00110 */ 00111 virtual bool Unlock() = 0; 00112 00113 00114 }; 00115 00116 00117 //[-------------------------------------------------------] 00118 //[ Namespace ] 00119 //[-------------------------------------------------------] 00120 } // PLCore 00121 00122 00123 #endif // __PLCORE_MUTEX_IMPL_H__
|