2017-05-10 23:54:35 +02: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).
|
2017-05-10 23:54:35 +02:00
|
|
|
//
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
#include <string>
|
|
|
|
|
2020-06-10 00:12:59 +02:00
|
|
|
#include "db/blob/blob_log_format.h"
|
2019-09-16 19:31:27 +02:00
|
|
|
#include "file/random_access_file_reader.h"
|
2017-11-28 20:42:28 +01:00
|
|
|
#include "rocksdb/env.h"
|
2017-05-10 23:54:35 +02:00
|
|
|
#include "rocksdb/slice.h"
|
2017-11-28 20:42:28 +01:00
|
|
|
#include "rocksdb/statistics.h"
|
2017-05-10 23:54:35 +02:00
|
|
|
#include "rocksdb/status.h"
|
|
|
|
|
2020-02-20 21:07:53 +01:00
|
|
|
namespace ROCKSDB_NAMESPACE {
|
2017-05-10 23:54:35 +02:00
|
|
|
|
|
|
|
class SequentialFileReader;
|
|
|
|
class Logger;
|
|
|
|
|
|
|
|
/**
|
2020-07-07 02:10:41 +02:00
|
|
|
* BlobLogReader is a general purpose log stream reader implementation. The
|
|
|
|
* actual job of reading from the device is implemented by the SequentialFile
|
|
|
|
* interface.
|
2017-05-10 23:54:35 +02:00
|
|
|
*
|
|
|
|
* Please see Writer for details on the file and record layout.
|
|
|
|
*/
|
2020-07-07 02:10:41 +02:00
|
|
|
class BlobLogReader {
|
2017-05-10 23:54:35 +02:00
|
|
|
public:
|
|
|
|
enum ReadLevel {
|
2017-10-17 21:11:52 +02:00
|
|
|
kReadHeader,
|
|
|
|
kReadHeaderKey,
|
|
|
|
kReadHeaderKeyBlob,
|
2017-05-10 23:54:35 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
// Create a reader that will return log records from "*file".
|
2020-07-07 02:10:41 +02:00
|
|
|
// "*file" must remain live while this BlobLogReader is in use.
|
|
|
|
BlobLogReader(std::unique_ptr<RandomAccessFileReader>&& file_reader, Env* env,
|
|
|
|
Statistics* statistics);
|
2017-10-27 22:14:34 +02:00
|
|
|
// No copying allowed
|
2020-07-07 02:10:41 +02:00
|
|
|
BlobLogReader(const BlobLogReader&) = delete;
|
|
|
|
BlobLogReader& operator=(const BlobLogReader&) = delete;
|
2017-05-10 23:54:35 +02:00
|
|
|
|
2020-07-07 02:10:41 +02:00
|
|
|
~BlobLogReader() = default;
|
2019-09-12 03:07:12 +02:00
|
|
|
|
2017-05-10 23:54:35 +02:00
|
|
|
Status ReadHeader(BlobLogHeader* header);
|
|
|
|
|
|
|
|
// Read the next record into *record. Returns true if read
|
|
|
|
// successfully, false if we hit end of the input. May use
|
|
|
|
// "*scratch" as temporary storage. The contents filled in *record
|
|
|
|
// will only be valid until the next mutating operation on this
|
|
|
|
// reader or the next mutation to *scratch.
|
2017-08-11 21:30:02 +02:00
|
|
|
// If blob_offset is non-null, return offset of the blob through it.
|
2017-10-17 21:11:52 +02:00
|
|
|
Status ReadRecord(BlobLogRecord* record, ReadLevel level = kReadHeader,
|
2017-08-11 21:30:02 +02:00
|
|
|
uint64_t* blob_offset = nullptr);
|
2017-05-10 23:54:35 +02:00
|
|
|
|
2020-08-27 20:54:43 +02:00
|
|
|
Status ReadFooter(BlobLogFooter* footer);
|
|
|
|
|
2017-05-10 23:54:35 +02:00
|
|
|
void ResetNextByte() { next_byte_ = 0; }
|
|
|
|
|
|
|
|
uint64_t GetNextByte() const { return next_byte_; }
|
|
|
|
|
|
|
|
private:
|
2018-11-13 21:46:35 +01:00
|
|
|
Status ReadSlice(uint64_t size, Slice* slice, char* buf);
|
|
|
|
|
2018-06-24 08:08:33 +02:00
|
|
|
const std::unique_ptr<RandomAccessFileReader> file_;
|
2017-11-28 20:42:28 +01:00
|
|
|
Env* env_;
|
|
|
|
Statistics* statistics_;
|
2017-05-10 23:54:35 +02:00
|
|
|
|
|
|
|
Slice buffer_;
|
2018-11-13 21:46:35 +01:00
|
|
|
char header_buf_[BlobLogRecord::kHeaderSize];
|
2017-05-10 23:54:35 +02:00
|
|
|
|
|
|
|
// which byte to read next. For asserting proper usage
|
|
|
|
uint64_t next_byte_;
|
|
|
|
};
|
|
|
|
|
2020-02-20 21:07:53 +01:00
|
|
|
} // namespace ROCKSDB_NAMESPACE
|