fdf882ded2
Summary: When dynamically linking two binaries together, different builds of RocksDB from two sources might cause errors. To provide a tool for user to solve the problem, the RocksDB namespace is changed to a flag which can be overridden in build time. Pull Request resolved: https://github.com/facebook/rocksdb/pull/6433 Test Plan: Build release, all and jtest. Try to build with ROCKSDB_NAMESPACE with another flag. Differential Revision: D19977691 fbshipit-source-id: aa7f2d0972e1c31d75339ac48478f34f6cfcfb3e
55 lines
1.3 KiB
C++
55 lines
1.3 KiB
C++
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
|
// This source code is licensed under both the GPLv2 (found in the
|
|
// COPYING file in the root directory) and Apache 2.0 License
|
|
// (found in the LICENSE.Apache file in the root directory).
|
|
|
|
#include "db/trim_history_scheduler.h"
|
|
|
|
#include <cassert>
|
|
|
|
#include "db/column_family.h"
|
|
|
|
namespace ROCKSDB_NAMESPACE {
|
|
|
|
void TrimHistoryScheduler::ScheduleWork(ColumnFamilyData* cfd) {
|
|
std::lock_guard<std::mutex> lock(checking_mutex_);
|
|
cfd->Ref();
|
|
cfds_.push_back(cfd);
|
|
is_empty_.store(false, std::memory_order_relaxed);
|
|
}
|
|
|
|
ColumnFamilyData* TrimHistoryScheduler::TakeNextColumnFamily() {
|
|
std::lock_guard<std::mutex> lock(checking_mutex_);
|
|
while (true) {
|
|
if (cfds_.empty()) {
|
|
return nullptr;
|
|
}
|
|
ColumnFamilyData* cfd = cfds_.back();
|
|
cfds_.pop_back();
|
|
if (cfds_.empty()) {
|
|
is_empty_.store(true, std::memory_order_relaxed);
|
|
}
|
|
|
|
if (!cfd->IsDropped()) {
|
|
// success
|
|
return cfd;
|
|
}
|
|
cfd->UnrefAndTryDelete();
|
|
}
|
|
}
|
|
|
|
bool TrimHistoryScheduler::Empty() {
|
|
bool is_empty = is_empty_.load(std::memory_order_relaxed);
|
|
return is_empty;
|
|
}
|
|
|
|
void TrimHistoryScheduler::Clear() {
|
|
ColumnFamilyData* cfd;
|
|
while ((cfd = TakeNextColumnFamily()) != nullptr) {
|
|
cfd->UnrefAndTryDelete();
|
|
}
|
|
assert(Empty());
|
|
}
|
|
|
|
} // namespace ROCKSDB_NAMESPACE
|