2016-02-10 00:12:00 +01:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
2017-07-16 01:03:42 +02:00
|
|
|
// 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).
|
2013-12-03 21:42:15 +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.
|
|
|
|
|
|
|
|
#pragma once
|
2015-10-16 23:10:33 +02:00
|
|
|
#ifndef ROCKSDB_LITE
|
2013-12-03 21:42:15 +01:00
|
|
|
#include "rocksdb/slice_transform.h"
|
|
|
|
#include "rocksdb/memtablerep.h"
|
|
|
|
|
2020-02-20 21:07:53 +01:00
|
|
|
namespace ROCKSDB_NAMESPACE {
|
2013-12-03 21:42:15 +01:00
|
|
|
|
|
|
|
class HashSkipListRepFactory : public MemTableRepFactory {
|
|
|
|
public:
|
2013-12-06 23:15:42 +01:00
|
|
|
explicit HashSkipListRepFactory(
|
|
|
|
size_t bucket_count,
|
|
|
|
int32_t skiplist_height,
|
|
|
|
int32_t skiplist_branching_factor)
|
2014-03-10 20:56:46 +01:00
|
|
|
: bucket_count_(bucket_count),
|
2013-12-06 23:15:42 +01:00
|
|
|
skiplist_height_(skiplist_height),
|
|
|
|
skiplist_branching_factor_(skiplist_branching_factor) { }
|
2013-12-03 21:42:15 +01:00
|
|
|
|
2014-03-10 20:56:46 +01:00
|
|
|
virtual ~HashSkipListRepFactory() {}
|
2013-12-03 21:42:15 +01:00
|
|
|
|
2017-06-02 21:08:01 +02:00
|
|
|
using MemTableRepFactory::CreateMemTableRep;
|
2014-03-10 20:56:46 +01:00
|
|
|
virtual MemTableRep* CreateMemTableRep(
|
2017-06-02 23:13:59 +02:00
|
|
|
const MemTableRep::KeyComparator& compare, Allocator* allocator,
|
2014-05-05 00:52:23 +02:00
|
|
|
const SliceTransform* transform, Logger* logger) override;
|
2013-12-03 21:42:15 +01:00
|
|
|
|
|
|
|
virtual const char* Name() const override {
|
|
|
|
return "HashSkipListRepFactory";
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
const size_t bucket_count_;
|
2013-12-06 23:15:42 +01:00
|
|
|
const int32_t skiplist_height_;
|
|
|
|
const int32_t skiplist_branching_factor_;
|
2013-12-03 21:42:15 +01:00
|
|
|
};
|
|
|
|
|
2020-02-20 21:07:53 +01:00
|
|
|
} // namespace ROCKSDB_NAMESPACE
|
2014-04-15 22:39:26 +02:00
|
|
|
#endif // ROCKSDB_LITE
|