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
|
|
|
#include "util/file_util.h"
|
|
|
|
|
2014-11-14 20:38:26 +01:00
|
|
|
#include <string>
|
|
|
|
#include <algorithm>
|
2015-08-20 00:02:17 +02:00
|
|
|
|
2014-11-14 20:38:26 +01:00
|
|
|
#include "rocksdb/env.h"
|
2016-01-29 03:35:01 +01:00
|
|
|
#include "util/sst_file_manager_impl.h"
|
Move rate_limiter, write buffering, most perf context instrumentation and most random kill out of Env
Summary: We want to keep Env a think layer for better portability. Less platform dependent codes should be moved out of Env. In this patch, I create a wrapper of file readers and writers, and put rate limiting, write buffering, as well as most perf context instrumentation and random kill out of Env. It will make it easier to maintain multiple Env in the future.
Test Plan: Run all existing unit tests.
Reviewers: anthony, kradhakrishnan, IslamAbdelRahman, yhchiang, igor
Reviewed By: igor
Subscribers: leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D42321
2015-07-18 01:16:11 +02:00
|
|
|
#include "util/file_reader_writer.h"
|
2014-11-14 20:38:26 +01:00
|
|
|
|
|
|
|
namespace rocksdb {
|
|
|
|
|
|
|
|
// Utility function to copy a file up to a specified length
|
|
|
|
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
|
|
|
const EnvOptions soptions;
|
|
|
|
Status s;
|
Move rate_limiter, write buffering, most perf context instrumentation and most random kill out of Env
Summary: We want to keep Env a think layer for better portability. Less platform dependent codes should be moved out of Env. In this patch, I create a wrapper of file readers and writers, and put rate limiting, write buffering, as well as most perf context instrumentation and random kill out of Env. It will make it easier to maintain multiple Env in the future.
Test Plan: Run all existing unit tests.
Reviewers: anthony, kradhakrishnan, IslamAbdelRahman, yhchiang, igor
Reviewed By: igor
Subscribers: leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D42321
2015-07-18 01:16:11 +02:00
|
|
|
unique_ptr<SequentialFileReader> src_reader;
|
|
|
|
unique_ptr<WritableFileWriter> dest_writer;
|
|
|
|
|
|
|
|
{
|
|
|
|
unique_ptr<SequentialFile> srcfile;
|
2017-11-03 19:48:12 +01:00
|
|
|
s = env->NewSequentialFile(source, &srcfile, soptions);
|
|
|
|
if (!s.ok()) {
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
unique_ptr<WritableFile> destfile;
|
2014-11-14 20:38:26 +01:00
|
|
|
s = env->NewWritableFile(destination, &destfile, soptions);
|
2017-11-03 19:48:12 +01:00
|
|
|
if (!s.ok()) {
|
|
|
|
return s;
|
|
|
|
}
|
2014-11-14 20:38:26 +01:00
|
|
|
|
2017-11-03 19:48:12 +01:00
|
|
|
if (size == 0) {
|
|
|
|
// default argument means copy everything
|
2014-11-14 20:38:26 +01:00
|
|
|
s = env->GetFileSize(source, &size);
|
2017-11-03 19:48:12 +01:00
|
|
|
if (!s.ok()) {
|
|
|
|
return s;
|
|
|
|
}
|
2014-11-14 20:38:26 +01:00
|
|
|
}
|
2017-11-03 19:48:12 +01:00
|
|
|
src_reader.reset(new SequentialFileReader(std::move(srcfile)));
|
|
|
|
dest_writer.reset(new WritableFileWriter(std::move(destfile), soptions));
|
Move rate_limiter, write buffering, most perf context instrumentation and most random kill out of Env
Summary: We want to keep Env a think layer for better portability. Less platform dependent codes should be moved out of Env. In this patch, I create a wrapper of file readers and writers, and put rate limiting, write buffering, as well as most perf context instrumentation and random kill out of Env. It will make it easier to maintain multiple Env in the future.
Test Plan: Run all existing unit tests.
Reviewers: anthony, kradhakrishnan, IslamAbdelRahman, yhchiang, igor
Reviewed By: igor
Subscribers: leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D42321
2015-07-18 01:16:11 +02:00
|
|
|
}
|
2014-11-14 20:38:26 +01:00
|
|
|
|
|
|
|
char buffer[4096];
|
|
|
|
Slice slice;
|
|
|
|
while (size > 0) {
|
2015-10-19 22:40:44 +02:00
|
|
|
size_t bytes_to_read = std::min(sizeof(buffer), static_cast<size_t>(size));
|
2017-11-03 19:48:12 +01:00
|
|
|
s = src_reader->Read(bytes_to_read, &slice, buffer);
|
|
|
|
if (!s.ok()) {
|
|
|
|
return s;
|
2014-11-14 20:38:26 +01:00
|
|
|
}
|
2017-11-03 19:48:12 +01:00
|
|
|
if (slice.size() == 0) {
|
|
|
|
return Status::Corruption("file too small");
|
2014-11-14 20:38:26 +01:00
|
|
|
}
|
2017-11-03 19:48:12 +01:00
|
|
|
s = dest_writer->Append(slice);
|
2014-11-14 20:38:26 +01:00
|
|
|
if (!s.ok()) {
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
size -= slice.size();
|
|
|
|
}
|
2018-04-19 23:00:52 +02:00
|
|
|
return dest_writer->Sync(use_fsync);
|
2014-11-14 20:38:26 +01:00
|
|
|
}
|
|
|
|
|
2016-03-17 18:07:21 +01:00
|
|
|
// Utility function to create a file with the provided contents
|
|
|
|
Status CreateFile(Env* env, const std::string& destination,
|
|
|
|
const std::string& contents) {
|
|
|
|
const EnvOptions soptions;
|
|
|
|
Status s;
|
|
|
|
unique_ptr<WritableFileWriter> dest_writer;
|
|
|
|
|
|
|
|
unique_ptr<WritableFile> destfile;
|
|
|
|
s = env->NewWritableFile(destination, &destfile, soptions);
|
|
|
|
if (!s.ok()) {
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
dest_writer.reset(new WritableFileWriter(std::move(destfile), soptions));
|
|
|
|
return dest_writer->Append(Slice(contents));
|
|
|
|
}
|
|
|
|
|
2016-09-24 01:34:04 +02:00
|
|
|
Status DeleteSSTFile(const ImmutableDBOptions* db_options,
|
2018-04-26 22:51:39 +02:00
|
|
|
const std::string& fname, const std::string& dir_to_sync) {
|
2016-12-22 02:35:00 +01:00
|
|
|
#ifndef ROCKSDB_LITE
|
2016-01-29 03:35:01 +01:00
|
|
|
auto sfm =
|
|
|
|
static_cast<SstFileManagerImpl*>(db_options->sst_file_manager.get());
|
2018-03-06 21:31:25 +01:00
|
|
|
if (sfm) {
|
2018-04-26 22:51:39 +02:00
|
|
|
return sfm->ScheduleFileDeletion(fname, dir_to_sync);
|
2015-08-20 00:02:17 +02:00
|
|
|
} else {
|
2016-01-29 03:35:01 +01:00
|
|
|
return db_options->env->DeleteFile(fname);
|
2015-08-20 00:02:17 +02:00
|
|
|
}
|
2016-12-22 02:35:00 +01:00
|
|
|
#else
|
2018-04-26 22:51:39 +02:00
|
|
|
(void)dir_to_sync;
|
2016-12-22 02:35:00 +01:00
|
|
|
// SstFileManager is not supported in ROCKSDB_LITE
|
|
|
|
return db_options->env->DeleteFile(fname);
|
|
|
|
#endif
|
2015-08-20 00:02:17 +02:00
|
|
|
}
|
|
|
|
|
2014-11-14 20:38:26 +01:00
|
|
|
} // namespace rocksdb
|