builder.h 1.6 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 23 24 25
class Iterator;
class TableCache;
class VersionEdit;

// Build a Table file from the contents of *iter.  The generated file
// will be named according to meta->number.  On success, the rest of
26 27 28
// *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 已提交
29 30 31
extern Status BuildTable(const std::string& dbname,
                         Env* env,
                         const Options& options,
H
Haobo Xu 已提交
32
                         const EnvOptions& soptions,
J
jorlow@chromium.org 已提交
33 34
                         TableCache* table_cache,
                         Iterator* iter,
35 36 37 38
                         FileMetaData* meta,
                         const Comparator* user_comparator,
                         const SequenceNumber newest_snapshot,
                         const SequenceNumber earliest_seqno_in_memtable);
J
jorlow@chromium.org 已提交
39

40
}  // namespace rocksdb