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.
|
|
|
|
//
|
|
|
|
// TableBuilder provides the interface used to build a Table
|
|
|
|
// (an immutable and sorted map from keys to values).
|
2011-05-21 04:17:43 +02:00
|
|
|
//
|
|
|
|
// Multiple threads can invoke const methods on a TableBuilder without
|
|
|
|
// external synchronization, but if any of the threads may call a
|
|
|
|
// non-const method, all threads accessing the same TableBuilder must use
|
|
|
|
// external synchronization.
|
2011-03-18 23:37:00 +01:00
|
|
|
|
|
|
|
#ifndef STORAGE_LEVELDB_INCLUDE_TABLE_BUILDER_H_
|
|
|
|
#define STORAGE_LEVELDB_INCLUDE_TABLE_BUILDER_H_
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2011-03-30 20:49:03 +02:00
|
|
|
#include "leveldb/options.h"
|
|
|
|
#include "leveldb/status.h"
|
2011-03-18 23:37:00 +01:00
|
|
|
|
|
|
|
namespace leveldb {
|
|
|
|
|
|
|
|
class BlockBuilder;
|
|
|
|
class BlockHandle;
|
|
|
|
class WritableFile;
|
|
|
|
|
|
|
|
class TableBuilder {
|
|
|
|
public:
|
|
|
|
// Create a builder that will store the contents of the table it is
|
|
|
|
// building in *file. Does not close the file. It is up to the
|
2012-11-29 01:42:36 +01:00
|
|
|
// caller to close the file after calling Finish(). The output file
|
2012-10-28 07:13:17 +01:00
|
|
|
// will be part of level specified by 'level'. A value of -1 means
|
|
|
|
// that the caller does not know which level the output file will reside.
|
|
|
|
TableBuilder(const Options& options, WritableFile* file, int level=-1);
|
2011-03-18 23:37:00 +01:00
|
|
|
|
|
|
|
// REQUIRES: Either Finish() or Abandon() has been called.
|
|
|
|
~TableBuilder();
|
|
|
|
|
|
|
|
// Change the options used by this builder. Note: only some of the
|
|
|
|
// option fields can be changed after construction. If a field is
|
|
|
|
// not allowed to change dynamically and its value in the structure
|
|
|
|
// passed to the constructor is different from its value in the
|
|
|
|
// structure passed to this method, this method will return an error
|
|
|
|
// without changing any fields.
|
|
|
|
Status ChangeOptions(const Options& options);
|
|
|
|
|
|
|
|
// Add key,value to the table being constructed.
|
|
|
|
// REQUIRES: key is after any previously added key according to comparator.
|
|
|
|
// REQUIRES: Finish(), Abandon() have not been called
|
|
|
|
void Add(const Slice& key, const Slice& value);
|
|
|
|
|
|
|
|
// Advanced operation: flush any buffered key/value pairs to file.
|
|
|
|
// Can be used to ensure that two adjacent entries never live in
|
|
|
|
// the same data block. Most clients should not need to use this method.
|
|
|
|
// REQUIRES: Finish(), Abandon() have not been called
|
|
|
|
void Flush();
|
|
|
|
|
|
|
|
// Return non-ok iff some error has been detected.
|
|
|
|
Status status() const;
|
|
|
|
|
|
|
|
// Finish building the table. Stops using the file passed to the
|
|
|
|
// constructor after this function returns.
|
|
|
|
// REQUIRES: Finish(), Abandon() have not been called
|
|
|
|
Status Finish();
|
|
|
|
|
|
|
|
// Indicate that the contents of this builder should be abandoned. Stops
|
|
|
|
// using the file passed to the constructor after this function returns.
|
|
|
|
// If the caller is not going to call Finish(), it must call Abandon()
|
|
|
|
// before destroying this builder.
|
|
|
|
// REQUIRES: Finish(), Abandon() have not been called
|
|
|
|
void Abandon();
|
|
|
|
|
|
|
|
// Number of calls to Add() so far.
|
|
|
|
uint64_t NumEntries() const;
|
|
|
|
|
|
|
|
// Size of the file generated so far. If invoked after a successful
|
|
|
|
// Finish() call, returns the size of the final generated file.
|
|
|
|
uint64_t FileSize() const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool ok() const { return status().ok(); }
|
|
|
|
void WriteBlock(BlockBuilder* block, BlockHandle* handle);
|
2012-04-17 17:36:46 +02:00
|
|
|
void WriteRawBlock(const Slice& data, CompressionType, BlockHandle* handle);
|
2011-03-18 23:37:00 +01:00
|
|
|
|
|
|
|
struct Rep;
|
|
|
|
Rep* rep_;
|
2012-10-28 07:13:17 +01:00
|
|
|
int level_;
|
2011-03-18 23:37:00 +01:00
|
|
|
|
|
|
|
// No copying allowed
|
|
|
|
TableBuilder(const TableBuilder&);
|
|
|
|
void operator=(const TableBuilder&);
|
|
|
|
};
|
|
|
|
|
2011-10-31 18:22:06 +01:00
|
|
|
} // namespace leveldb
|
2011-03-18 23:37:00 +01:00
|
|
|
|
|
|
|
#endif // STORAGE_LEVELDB_INCLUDE_TABLE_BUILDER_H_
|