2016-02-09 23:12:00 +00:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
2017-07-15 23:03:42 +00:00
|
|
|
// This source code is licensed under both the GPLv2 (found in the
|
|
|
|
// COPYING file in the root directory) and Apache 2.0 License
|
|
|
|
// (found in the LICENSE.Apache file in the root directory).
|
2014-11-14 19:38:26 +00:00
|
|
|
//
|
2015-08-19 22:02:17 +00:00
|
|
|
#pragma once
|
2014-11-14 19:38:26 +00:00
|
|
|
#include <string>
|
|
|
|
|
2019-05-30 03:44:08 +00:00
|
|
|
#include "file/filename.h"
|
2017-04-06 02:02:00 +00:00
|
|
|
#include "options/db_options.h"
|
2016-09-23 23:34:04 +00:00
|
|
|
#include "rocksdb/env.h"
|
2014-11-14 19:38:26 +00:00
|
|
|
#include "rocksdb/status.h"
|
|
|
|
#include "rocksdb/types.h"
|
|
|
|
|
|
|
|
namespace rocksdb {
|
2016-12-29 02:38:20 +00:00
|
|
|
// use_fsync maps to options.use_fsync, which determines the way that
|
|
|
|
// the file is synced after copying.
|
2014-11-14 19:38:26 +00:00
|
|
|
extern Status CopyFile(Env* env, const std::string& source,
|
2016-12-29 02:38:20 +00:00
|
|
|
const std::string& destination, uint64_t size,
|
|
|
|
bool use_fsync);
|
2014-11-14 19:38:26 +00:00
|
|
|
|
2016-03-17 17:07:21 +00:00
|
|
|
extern Status CreateFile(Env* env, const std::string& destination,
|
2018-08-28 19:35:17 +00:00
|
|
|
const std::string& contents, bool use_fsync);
|
2016-03-17 17:07:21 +00:00
|
|
|
|
2019-01-29 22:27:30 +00:00
|
|
|
extern Status DeleteDBFile(const ImmutableDBOptions* db_options,
|
2019-03-28 22:13:02 +00:00
|
|
|
const std::string& fname,
|
2019-07-07 04:04:22 +00:00
|
|
|
const std::string& path_to_sync, const bool force_bg,
|
|
|
|
const bool force_fg);
|
|
|
|
|
|
|
|
extern bool IsWalDirSameAsDBPath(const ImmutableDBOptions* db_options);
|
2019-01-29 22:27:30 +00:00
|
|
|
|
2014-11-14 19:38:26 +00:00
|
|
|
} // namespace rocksdb
|