2013-10-16 23:59:46 +02:00
|
|
|
// Copyright (c) 2013, Facebook, Inc. All rights reserved.
|
|
|
|
// This source code is licensed under the BSD-style license found in the
|
|
|
|
// LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
// of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
//
|
2011-03-18 23:37:00 +01:00
|
|
|
// Copyright (c) 2011 The LevelDB Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file. See the AUTHORS file for names of contributors.
|
|
|
|
|
|
|
|
#include "port/port_posix.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2014-03-26 19:24:52 +01:00
|
|
|
#include <assert.h>
|
2014-07-03 19:22:08 +02:00
|
|
|
#include <errno.h>
|
|
|
|
#include <sys/time.h>
|
2011-03-18 23:37:00 +01:00
|
|
|
#include <string.h>
|
2014-07-03 19:22:08 +02:00
|
|
|
#include <cstdlib>
|
2011-03-18 23:37:00 +01:00
|
|
|
#include "util/logging.h"
|
|
|
|
|
2013-10-04 06:49:15 +02:00
|
|
|
namespace rocksdb {
|
2011-03-18 23:37:00 +01:00
|
|
|
namespace port {
|
|
|
|
|
2014-07-04 00:47:02 +02:00
|
|
|
static int PthreadCall(const char* label, int result) {
|
|
|
|
if (result != 0 && result != ETIMEDOUT) {
|
2011-03-18 23:37:00 +01:00
|
|
|
fprintf(stderr, "pthread %s: %s\n", label, strerror(result));
|
|
|
|
abort();
|
|
|
|
}
|
2014-07-04 00:47:02 +02:00
|
|
|
return result;
|
2011-03-18 23:37:00 +01:00
|
|
|
}
|
|
|
|
|
2013-06-01 01:30:17 +02:00
|
|
|
Mutex::Mutex(bool adaptive) {
|
|
|
|
#ifdef OS_LINUX
|
|
|
|
if (!adaptive) {
|
|
|
|
PthreadCall("init mutex", pthread_mutex_init(&mu_, NULL));
|
|
|
|
} else {
|
|
|
|
pthread_mutexattr_t mutex_attr;
|
|
|
|
PthreadCall("init mutex attr", pthread_mutexattr_init(&mutex_attr));
|
|
|
|
PthreadCall("set mutex attr",
|
|
|
|
pthread_mutexattr_settype(&mutex_attr,
|
|
|
|
PTHREAD_MUTEX_ADAPTIVE_NP));
|
|
|
|
PthreadCall("init mutex", pthread_mutex_init(&mu_, &mutex_attr));
|
|
|
|
PthreadCall("destroy mutex attr",
|
|
|
|
pthread_mutexattr_destroy(&mutex_attr));
|
|
|
|
}
|
|
|
|
#else // ignore adaptive for non-linux platform
|
|
|
|
PthreadCall("init mutex", pthread_mutex_init(&mu_, NULL));
|
|
|
|
#endif // OS_LINUX
|
|
|
|
}
|
2011-03-18 23:37:00 +01:00
|
|
|
|
|
|
|
Mutex::~Mutex() { PthreadCall("destroy mutex", pthread_mutex_destroy(&mu_)); }
|
|
|
|
|
2014-03-26 19:24:52 +01:00
|
|
|
void Mutex::Lock() {
|
|
|
|
PthreadCall("lock", pthread_mutex_lock(&mu_));
|
|
|
|
#ifndef NDEBUG
|
2014-04-23 03:38:10 +02:00
|
|
|
locked_ = true;
|
2014-03-26 19:24:52 +01:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void Mutex::Unlock() {
|
|
|
|
#ifndef NDEBUG
|
2014-04-23 03:38:10 +02:00
|
|
|
locked_ = false;
|
2014-03-26 19:24:52 +01:00
|
|
|
#endif
|
|
|
|
PthreadCall("unlock", pthread_mutex_unlock(&mu_));
|
|
|
|
}
|
2011-03-18 23:37:00 +01:00
|
|
|
|
2014-03-26 19:24:52 +01:00
|
|
|
void Mutex::AssertHeld() {
|
|
|
|
#ifndef NDEBUG
|
2014-04-23 03:38:10 +02:00
|
|
|
assert(locked_);
|
2014-03-26 19:24:52 +01:00
|
|
|
#endif
|
|
|
|
}
|
2011-03-18 23:37:00 +01:00
|
|
|
|
|
|
|
CondVar::CondVar(Mutex* mu)
|
|
|
|
: mu_(mu) {
|
|
|
|
PthreadCall("init cv", pthread_cond_init(&cv_, NULL));
|
|
|
|
}
|
|
|
|
|
|
|
|
CondVar::~CondVar() { PthreadCall("destroy cv", pthread_cond_destroy(&cv_)); }
|
|
|
|
|
|
|
|
void CondVar::Wait() {
|
2014-03-26 19:24:52 +01:00
|
|
|
#ifndef NDEBUG
|
2014-04-23 03:38:10 +02:00
|
|
|
mu_->locked_ = false;
|
2014-03-26 19:24:52 +01:00
|
|
|
#endif
|
2011-03-18 23:37:00 +01:00
|
|
|
PthreadCall("wait", pthread_cond_wait(&cv_, &mu_->mu_));
|
2014-03-26 19:24:52 +01:00
|
|
|
#ifndef NDEBUG
|
2014-04-23 03:38:10 +02:00
|
|
|
mu_->locked_ = true;
|
2014-03-26 19:24:52 +01:00
|
|
|
#endif
|
2011-03-18 23:37:00 +01:00
|
|
|
}
|
|
|
|
|
2014-07-03 19:22:08 +02:00
|
|
|
bool CondVar::TimedWait(uint64_t abs_time_us) {
|
|
|
|
struct timespec ts;
|
|
|
|
ts.tv_sec = abs_time_us / 1000000;
|
|
|
|
ts.tv_nsec = (abs_time_us % 1000000) * 1000;
|
|
|
|
|
|
|
|
#ifndef NDEBUG
|
|
|
|
mu_->locked_ = false;
|
|
|
|
#endif
|
|
|
|
int err = pthread_cond_timedwait(&cv_, &mu_->mu_, &ts);
|
|
|
|
#ifndef NDEBUG
|
|
|
|
mu_->locked_ = true;
|
|
|
|
#endif
|
|
|
|
if (err == ETIMEDOUT) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (err != 0) {
|
|
|
|
PthreadCall("timedwait", err);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-03-18 23:37:00 +01:00
|
|
|
void CondVar::Signal() {
|
|
|
|
PthreadCall("signal", pthread_cond_signal(&cv_));
|
|
|
|
}
|
|
|
|
|
|
|
|
void CondVar::SignalAll() {
|
|
|
|
PthreadCall("broadcast", pthread_cond_broadcast(&cv_));
|
|
|
|
}
|
|
|
|
|
2012-10-02 06:58:36 +02:00
|
|
|
RWMutex::RWMutex() { PthreadCall("init mutex", pthread_rwlock_init(&mu_, NULL)); }
|
|
|
|
|
|
|
|
RWMutex::~RWMutex() { PthreadCall("destroy mutex", pthread_rwlock_destroy(&mu_)); }
|
|
|
|
|
|
|
|
void RWMutex::ReadLock() { PthreadCall("read lock", pthread_rwlock_rdlock(&mu_)); }
|
|
|
|
|
|
|
|
void RWMutex::WriteLock() { PthreadCall("write lock", pthread_rwlock_wrlock(&mu_)); }
|
|
|
|
|
2014-06-17 00:41:46 +02:00
|
|
|
void RWMutex::ReadUnlock() { PthreadCall("read unlock", pthread_rwlock_unlock(&mu_)); }
|
|
|
|
|
|
|
|
void RWMutex::WriteUnlock() { PthreadCall("write unlock", pthread_rwlock_unlock(&mu_)); }
|
2012-10-02 06:58:36 +02:00
|
|
|
|
2012-08-27 08:45:35 +02:00
|
|
|
void InitOnce(OnceType* once, void (*initializer)()) {
|
|
|
|
PthreadCall("once", pthread_once(once, initializer));
|
|
|
|
}
|
|
|
|
|
2011-10-31 18:22:06 +01:00
|
|
|
} // namespace port
|
2013-10-04 06:49:15 +02:00
|
|
|
} // namespace rocksdb
|