2014-01-28 06:58:46 +01: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.
|
|
|
|
//
|
|
|
|
// 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
|
2014-02-08 04:26:49 +01:00
|
|
|
#include <memory>
|
2014-01-28 06:58:46 +01:00
|
|
|
|
|
|
|
namespace rocksdb {
|
|
|
|
|
|
|
|
class Iterator;
|
2014-02-04 04:48:45 +01:00
|
|
|
struct ParsedInternalKey;
|
2014-01-28 06:58:46 +01:00
|
|
|
class Slice;
|
|
|
|
struct ReadOptions;
|
|
|
|
struct TableProperties;
|
|
|
|
|
|
|
|
// A Table is a sorted map from strings to strings. Tables are
|
|
|
|
// immutable and persistent. A Table may be safely accessed from
|
|
|
|
// multiple threads without external synchronization.
|
|
|
|
class TableReader {
|
|
|
|
public:
|
|
|
|
virtual ~TableReader() {}
|
|
|
|
|
|
|
|
// Returns a new iterator over the table contents.
|
|
|
|
// The result of NewIterator() is initially invalid (caller must
|
|
|
|
// call one of the Seek methods on the iterator before using it).
|
|
|
|
virtual Iterator* NewIterator(const ReadOptions&) = 0;
|
|
|
|
|
|
|
|
// Given a key, return an approximate byte offset in the file where
|
|
|
|
// the data for that key begins (or would begin if the key were
|
|
|
|
// present in the file). The returned value is in terms of file
|
|
|
|
// bytes, and so includes effects like compression of the underlying data.
|
|
|
|
// E.g., the approximate offset of the last key in the table will
|
|
|
|
// be close to the file length.
|
|
|
|
virtual uint64_t ApproximateOffsetOf(const Slice& key) = 0;
|
|
|
|
|
|
|
|
// Set up the table for Compaction. Might change some parameters with
|
|
|
|
// posix_fadvise
|
|
|
|
virtual void SetupForCompaction() = 0;
|
|
|
|
|
2014-02-08 04:26:49 +01:00
|
|
|
virtual std::shared_ptr<const TableProperties> GetTableProperties() const = 0;
|
2014-01-28 06:58:46 +01:00
|
|
|
|
|
|
|
// Calls (*result_handler)(handle_context, ...) repeatedly, starting with
|
|
|
|
// the entry found after a call to Seek(key), until result_handler returns
|
|
|
|
// false, where k is the actual internal key for a row found and v as the
|
|
|
|
// value of the key. didIO is true if I/O is involved in the operation. May
|
|
|
|
// not make such a call if filter policy says that key is not present.
|
|
|
|
//
|
|
|
|
// mark_key_may_exist_handler needs to be called when it is configured to be
|
|
|
|
// memory only and the key is not found in the block cache, with
|
|
|
|
// the parameter to be handle_context.
|
|
|
|
//
|
|
|
|
// readOptions is the options for the read
|
|
|
|
// key is the key to search for
|
|
|
|
virtual Status Get(
|
|
|
|
const ReadOptions& readOptions, const Slice& key, void* handle_context,
|
2014-01-27 22:53:22 +01:00
|
|
|
bool (*result_handler)(void* arg, const ParsedInternalKey& k,
|
2014-01-28 06:58:46 +01:00
|
|
|
const Slice& v, bool didIO),
|
|
|
|
void (*mark_key_may_exist_handler)(void* handle_context) = nullptr) = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace rocksdb
|