小组成员: 曹可心-10223903406 朴祉燕-10224602413
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 rivejä
1.1 KiB

  1. // Copyright (c) 2011 The LevelDB Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file. See the AUTHORS file for names of contributors.
  4. #ifndef STORAGE_LEVELDB_DB_BUILDER_H_
  5. #define STORAGE_LEVELDB_DB_BUILDER_H_
  6. #include "leveldb/status.h"
  7. namespace leveldb {
  8. struct Options;
  9. struct FileMetaData;
  10. class Env;
  11. class Iterator;
  12. class TableCache;
  13. class VersionEdit;
  14. // Build a Table file from the contents of *iter. The generated file
  15. // will be named according to meta->number. On success, the rest of
  16. // *meta will be filled with metadata about the generated table, and
  17. // the file information will be added to *edit. If no data is present
  18. // in *iter, meta->file_size will be set to zero, and no Table file
  19. // will be produced.
  20. extern Status BuildTable(const std::string& dbname,
  21. Env* env,
  22. const Options& options,
  23. TableCache* table_cache,
  24. Iterator* iter,
  25. FileMetaData* meta,
  26. VersionEdit* edit);
  27. }
  28. #endif // STORAGE_LEVELDB_DB_BUILDER_H_