/* * PROGRAM: Client/Server Common Code * MODULE: semaphore.h * DESCRIPTION: Semaphore lock * * The contents of this file are subject to the Initial * Developer's Public License Version 1.0 (the "License"); * you may not use this file except in compliance with the * License. You may obtain a copy of the License at * http://www.ibphoenix.com/main.nfs?a=ibphoenix&page=ibp_idpl. * * Software distributed under the License is distributed AS IS, * WITHOUT WARRANTY OF ANY KIND, either express or implied. * See the License for the specific language governing rights * and limitations under the License. * * The Original Code was created by Nickolay Samofatov * for the Firebird Open Source RDBMS project. * * Copyright (c) 2004 Nickolay Samofatov * and all contributors signed below. * * All Rights Reserved. * Contributor(s): ______________________________________. * * */ #ifndef CLASSES_SEMAPHORE_H #define CLASSES_SEMAPHORE_H #ifdef WIN_NT #include #include namespace Firebird { class Semaphore { private: HANDLE hSemaphore; public: Semaphore() { hSemaphore = CreateSemaphore(NULL, 0 /*initial count*/, INT_MAX, NULL); if (hSemaphore == NULL) system_call_failed::raise("CreateSemaphore"); } ~Semaphore() { if (hSemaphore && !CloseHandle(hSemaphore)) system_call_failed::raise("CloseHandle"); } bool tryEnter(int seconds = 0) { DWORD result = WaitForSingleObject( hSemaphore, seconds >= 0 ? seconds * 1000 : INFINITE); if (result == WAIT_FAILED) system_call_failed::raise("WaitForSingleObject"); return result != WAIT_TIMEOUT; } void release(SLONG count = 1) { if (!ReleaseSemaphore(hSemaphore, count, NULL)) system_call_failed::raise("ReleaseSemaphore"); } }; } // namespace Firebird #else #ifdef MULTI_THREAD #ifdef SOLARIS_MT /* This is dummy, untested implementation of FB::Semaphore on Solaris using conditional variable protected by mutex. Konstantin thank's to Claudio ... */ #include #include #include #include #include //for timestruct_t namespace Firebird { class Semaphore { private: mutex_t mu; cond_t cv; bool init; public: Semaphore() : init(false) { /* USINC_PROCESS got ability to syncronise Classic */ if ( mutex_init(&mu, USYNC_PROCESS, NULL) != 0) { //gds__log("Error on semaphore.h: constructor"); system_call_failed::raise("mutex_init"); } if (cond_init(&cv, USYNC_PROCESS, NULL) != 0) { //gds__log("Error on semaphore.h: constructor"); system_call_failed::raise("cond_init"); } init = true; } ~Semaphore() { fb_assert(init == true); if (mutex_destroy(&mu) != 0) { //gds__log("Error on semaphore.h: destructor"); system_call_failed::raise("mutex_destroy"); } if (cond_destroy(&cv) != 0) { //gds__log("Error on semaphore.h: destructor"); system_call_failed::raise("cond_destroy"); } init = false; } bool tryEnter(int seconds = 0) { bool rt = false; // Return true in case of success fb_assert(init == true); if (seconds == 0) { // Instant try if (mutex_trylock(&mu) != 0) { if (cond_wait(&cv, &mu) != 0) { rt = false; } else rt = true; if (errno == ETIMEDOUT) rt = false; mutex_unlock(&mu); return rt; } else if (errno == EBUSY) { rt = false; return rt; } system_call_failed::raise("mutex_lock"); } if (seconds < 0) { // Unlimited wait, like enter() if (mutex_lock(&mu) != 0) { if (cond_wait(&cv, &mu) != 0) { rt = false; } else rt = true; if (errno == ETIMEDOUT) rt = false; mutex_unlock(&mu); return rt; } else if (errno == EBUSY) { rt = false; return rt; } else system_call_failed::raise("mutex_lock"); } // Wait with timeout timestruc_t timeout; timeout.tv_sec = time(NULL) + seconds; timeout.tv_nsec = 0; if (mutex_lock(&mu) != 0) { if (cond_timedwait(&cv, &mu, &timeout) != 0) { rt = false; } else rt = true; if (errno == ETIMEDOUT) rt = false; mutex_unlock(&mu); return rt; } else if (errno == EBUSY) { rt = false; return rt; } else system_call_failed::raise("mutex_lock"); } void enter() { fb_assert(init == true); if (mutex_lock(&mu) != 0) { if (cond_wait(&cv, &mu) != 0) { } // Is the above if() meant to be empty? mutex_unlock(&mu); } else system_call_failed::raise("mutex_lock"); } void release(SLONG count = 1) { fb_assert(init == true); for (int i = 0; i < count; i++) if (mutex_lock(&mu) != 0) { if (cond_broadcast(&cv) != 0) { system_call_failed::raise("cond_sinal"); } mutex_unlock(&mu); } else { //gds__log("Error on semaphore.h: release"); system_call_failed::raise("mutex_lock"); } } }; } // namespace Firebird #else #include #include namespace Firebird { class Semaphore { private: sem_t sem; bool init; public: Semaphore() : init(false) { if (sem_init(&sem, 0, 0) == -1) { //gds__log("Error on semaphore.h: constructor"); system_call_failed::raise("sem_init"); } init = true; } ~Semaphore() { fb_assert(init == true); if (sem_destroy(&sem) == -1) { //gds__log("Error on semaphore.h: destructor"); system_call_failed::raise("sem_destroy"); } init = false; } bool tryEnter(int seconds = 0) { // Return true in case of success fb_assert(init == true); if (seconds == 0) { // Instant try if (sem_trywait(&sem) != -1) return true; if (errno == EAGAIN) return false; system_call_failed::raise("sem_trywait"); } if (seconds < 0) { // Unlimited wait, like enter() if (sem_wait(&sem) != -1) return true; system_call_failed::raise("sem_wait"); } // Wait with timeout struct timespec timeout; timeout.tv_sec = time(NULL) + seconds; timeout.tv_nsec = 0; if (sem_timedwait(&sem, &timeout) == 0) return true; if (errno == ETIMEDOUT) { return false; } system_call_failed::raise("sem_timedwait"); } void enter() { fb_assert(init == true); if (sem_wait(&sem) == -1) { //gds__log("Error on semaphore.h: enter"); system_call_failed::raise("sem_wait"); } } void release(SLONG count = 1) { fb_assert(init == true); for (int i = 0; i < count; i++) if (sem_post(&sem) == -1) { //gds__log("Error on semaphore.h: release"); system_call_failed::raise("sem_post"); } } }; } // namespace Firebird #endif /* SOLARIS_MT */ #endif /*MULTI_THREAD*/ #endif /*!WIN_NT*/ #endif // CLASSES_SEMAPHORE_H