file_reader_writer.h 5.9 KB
Newer Older
1
//  Copyright (c) 2011-present, Facebook, Inc.  All rights reserved.
2 3 4 5 6 7 8 9
//  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.
//
// 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.
#pragma once
A
Aaron Gao 已提交
10
#include <atomic>
S
sdong 已提交
11
#include <string>
A
Aaron Gao 已提交
12
#include "port/port.h"
13
#include "rocksdb/env.h"
14
#include "util/aligned_buffer.h"
15 16

namespace rocksdb {
17 18

class Statistics;
19
class HistogramImpl;
20

21
std::unique_ptr<RandomAccessFile> NewReadaheadRandomAccessFile(
22
  std::unique_ptr<RandomAccessFile>&& file, size_t readahead_size);
23

24 25 26
class SequentialFileReader {
 private:
  std::unique_ptr<SequentialFile> file_;
A
Aaron Gao 已提交
27
  std::atomic<size_t> offset_;  // read offset
28 29 30

 public:
  explicit SequentialFileReader(std::unique_ptr<SequentialFile>&& _file)
A
Aaron Gao 已提交
31
      : file_(std::move(_file)), offset_(0) {}
32 33 34 35 36 37 38 39 40 41

  SequentialFileReader(SequentialFileReader&& o) ROCKSDB_NOEXCEPT {
    *this = std::move(o);
  }

  SequentialFileReader& operator=(SequentialFileReader&& o) ROCKSDB_NOEXCEPT {
    file_ = std::move(o.file_);
    return *this;
  }

S
sdong 已提交
42 43
  SequentialFileReader(const SequentialFileReader&) = delete;
  SequentialFileReader& operator=(const SequentialFileReader&) = delete;
44

45 46 47 48 49
  Status Read(size_t n, Slice* result, char* scratch);

  Status Skip(uint64_t n);

  SequentialFile* file() { return file_.get(); }
A
Aaron Gao 已提交
50

51
  bool use_direct_io() const { return file_->use_direct_io(); }
A
Aaron Gao 已提交
52 53 54

 protected:
  Status DirectRead(size_t n, Slice* result, char* scratch);
55 56
};

57
class RandomAccessFileReader {
58 59
 private:
  std::unique_ptr<RandomAccessFile> file_;
60 61 62 63
  Env*            env_;
  Statistics*     stats_;
  uint32_t        hist_type_;
  HistogramImpl*  file_read_hist_;
64 65

 public:
66 67 68
  explicit RandomAccessFileReader(std::unique_ptr<RandomAccessFile>&& raf,
                                  Env* env = nullptr,
                                  Statistics* stats = nullptr,
69 70
                                  uint32_t hist_type = 0,
                                  HistogramImpl* file_read_hist = nullptr)
71 72 73
      : file_(std::move(raf)),
        env_(env),
        stats_(stats),
74 75
        hist_type_(hist_type),
        file_read_hist_(file_read_hist) {}
76

77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
  RandomAccessFileReader(RandomAccessFileReader&& o) ROCKSDB_NOEXCEPT {
    *this = std::move(o);
  }

  RandomAccessFileReader& operator=(RandomAccessFileReader&& o) ROCKSDB_NOEXCEPT{
    file_ = std::move(o.file_);
    env_ = std::move(o.env_);
    stats_ = std::move(o.stats_);
    hist_type_ = std::move(o.hist_type_);
    file_read_hist_ = std::move(o.file_read_hist_);
    return *this;
  }

  RandomAccessFileReader(const RandomAccessFileReader&) = delete;
  RandomAccessFileReader& operator=(const RandomAccessFileReader&) = delete;

93 94 95
  Status Read(uint64_t offset, size_t n, Slice* result, char* scratch) const;

  RandomAccessFile* file() { return file_.get(); }
A
Aaron Gao 已提交
96

97
  bool use_direct_io() const { return file_->use_direct_io(); }
A
Aaron Gao 已提交
98 99 100 101

 protected:
  Status DirectRead(uint64_t offset, size_t n, Slice* result,
                    char* scratch) const;
102 103 104 105 106 107
};

// Use posix write to write data to a file.
class WritableFileWriter {
 private:
  std::unique_ptr<WritableFile> writable_file_;
108
  AlignedBuffer           buf_;
109
  size_t                  max_buffer_size_;
110 111 112 113 114 115 116 117 118 119 120
  // Actually written data size can be used for truncate
  // not counting padding data
  uint64_t                filesize_;
  // This is necessary when we use unbuffered access
  // and writes must happen on aligned offsets
  // so we need to go back and write that page again
  uint64_t                next_write_offset_;
  bool                    pending_sync_;
  uint64_t                last_sync_size_;
  uint64_t                bytes_per_sync_;
  RateLimiter*            rate_limiter_;
121
  Statistics* stats_;
122 123

 public:
124
  WritableFileWriter(std::unique_ptr<WritableFile>&& file,
125
                     const EnvOptions& options, Statistics* stats = nullptr)
126
      : writable_file_(std::move(file)),
127
        buf_(),
128
        max_buffer_size_(options.writable_file_max_buffer_size),
129
        filesize_(0),
130
        next_write_offset_(0),
131 132 133
        pending_sync_(false),
        last_sync_size_(0),
        bytes_per_sync_(options.bytes_per_sync),
134 135
        rate_limiter_(options.rate_limiter),
        stats_(stats) {
136
    buf_.Alignment(writable_file_->GetRequiredBufferAlignment());
137
    buf_.AllocateNewBuffer(std::min((size_t)65536, max_buffer_size_));
138 139 140 141 142 143 144
  }

  WritableFileWriter(const WritableFileWriter&) = delete;

  WritableFileWriter& operator=(const WritableFileWriter&) = delete;

  ~WritableFileWriter() { Close(); }
145 146 147 148 149 150 151 152 153

  Status Append(const Slice& data);

  Status Flush();

  Status Close();

  Status Sync(bool use_fsync);

154 155 156 157 158
  // Sync only the data that was already Flush()ed. Safe to call concurrently
  // with Append() and Flush(). If !writable_file_->IsSyncThreadSafe(),
  // returns NotSupported status.
  Status SyncWithoutFlush(bool use_fsync);

159 160 161 162 163 164 165 166
  uint64_t GetFileSize() { return filesize_; }

  Status InvalidateCache(size_t offset, size_t length) {
    return writable_file_->InvalidateCache(offset, length);
  }

  WritableFile* writable_file() const { return writable_file_.get(); }

167
  bool use_direct_io() { return writable_file_->use_direct_io(); }
A
Aaron Gao 已提交
168

169
 private:
170
  // Used when os buffering is OFF and we are writing
A
Aaron Gao 已提交
171
  // DMA such as in Direct I/O mode
A
Aaron Gao 已提交
172
#ifndef ROCKSDB_LITE
A
Aaron Gao 已提交
173
  Status WriteDirect();
A
Aaron Gao 已提交
174
#endif  // !ROCKSDB_LITE
175 176
  // Normal write
  Status WriteBuffered(const char* data, size_t size);
177
  Status RangeSync(uint64_t offset, uint64_t nbytes);
178
  size_t RequestToken(size_t bytes, bool align);
179
  Status SyncInternal(bool use_fsync);
180
};
S
sdong 已提交
181 182 183 184

extern Status NewWritableFile(Env* env, const std::string& fname,
                              unique_ptr<WritableFile>* result,
                              const EnvOptions& options);
185
}  // namespace rocksdb