builder.h 1.8 KB
Newer Older
1 2 3 4
//  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.
J
jorlow@chromium.org 已提交
5 6 7
// 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.
8
#pragma once
9 10 11
#include "rocksdb/comparator.h"
#include "rocksdb/status.h"
#include "rocksdb/types.h"
J
jorlow@chromium.org 已提交
12

13
namespace rocksdb {
J
jorlow@chromium.org 已提交
14 15 16 17 18

struct Options;
struct FileMetaData;

class Env;
19
class EnvOptions;
J
jorlow@chromium.org 已提交
20 21 22
class Iterator;
class TableCache;
class VersionEdit;
S
Siying Dong 已提交
23 24 25 26 27
class TableBuilder;
class WritableFile;

extern TableBuilder* GetTableBuilder(const Options& options, WritableFile* file,
                                     int level, const bool enable_compression);
J
jorlow@chromium.org 已提交
28 29 30

// Build a Table file from the contents of *iter.  The generated file
// will be named according to meta->number.  On success, the rest of
31 32 33
// *meta will be filled with metadata about the generated table.
// If no data is present in *iter, meta->file_size will be set to
// zero, and no Table file will be produced.
J
jorlow@chromium.org 已提交
34 35 36
extern Status BuildTable(const std::string& dbname,
                         Env* env,
                         const Options& options,
H
Haobo Xu 已提交
37
                         const EnvOptions& soptions,
J
jorlow@chromium.org 已提交
38 39
                         TableCache* table_cache,
                         Iterator* iter,
40 41 42
                         FileMetaData* meta,
                         const Comparator* user_comparator,
                         const SequenceNumber newest_snapshot,
43 44
                         const SequenceNumber earliest_seqno_in_memtable,
                         const bool enable_compression);
J
jorlow@chromium.org 已提交
45

46
}  // namespace rocksdb