2016-02-10 00:12:00 +01:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
2017-07-16 01:03:42 +02: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 20:38:26 +01:00
|
|
|
//
|
2015-08-20 00:02:17 +02:00
|
|
|
#pragma once
|
2014-11-14 20:38:26 +01:00
|
|
|
#include <string>
|
|
|
|
|
2019-05-30 05:44:08 +02:00
|
|
|
#include "file/filename.h"
|
2017-04-06 04:02:00 +02:00
|
|
|
#include "options/db_options.h"
|
2016-09-24 01:34:04 +02:00
|
|
|
#include "rocksdb/env.h"
|
2014-11-14 20:38:26 +01:00
|
|
|
#include "rocksdb/status.h"
|
|
|
|
#include "rocksdb/types.h"
|
|
|
|
|
|
|
|
namespace rocksdb {
|
2016-12-29 03:38:20 +01:00
|
|
|
// use_fsync maps to options.use_fsync, which determines the way that
|
|
|
|
// the file is synced after copying.
|
2014-11-14 20:38:26 +01:00
|
|
|
extern Status CopyFile(Env* env, const std::string& source,
|
2016-12-29 03:38:20 +01:00
|
|
|
const std::string& destination, uint64_t size,
|
|
|
|
bool use_fsync);
|
2014-11-14 20:38:26 +01:00
|
|
|
|
2016-03-17 18:07:21 +01:00
|
|
|
extern Status CreateFile(Env* env, const std::string& destination,
|
2018-08-28 21:35:17 +02:00
|
|
|
const std::string& contents, bool use_fsync);
|
2016-03-17 18:07:21 +01:00
|
|
|
|
2019-01-29 23:27:30 +01:00
|
|
|
extern Status DeleteDBFile(const ImmutableDBOptions* db_options,
|
2019-03-28 23:13:02 +01:00
|
|
|
const std::string& fname,
|
2019-07-07 06:04:22 +02: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 23:27:30 +01:00
|
|
|
|
2014-11-14 20:38:26 +01:00
|
|
|
} // namespace rocksdb
|