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>
|
|
|
|
|
2020-06-10 00:12:59 +02:00
|
|
|
#include "db/blob/blob_log_format.h"
|
2017-05-10 23:54:35 +02:00
|
|
|
#include "rocksdb/slice.h"
|
|
|
|
|
2020-02-20 21:07:53 +01:00
|
|
|
namespace ROCKSDB_NAMESPACE {
|
2017-05-10 23:54:35 +02:00
|
|
|
|
2020-10-08 02:46:50 +02:00
|
|
|
class RandomAccessFileReader;
|
|
|
|
class Env;
|
|
|
|
class Statistics;
|
|
|
|
class Status;
|
2021-01-26 07:07:26 +01:00
|
|
|
class SystemClock;
|
2017-05-10 23:54:35 +02:00
|
|
|
|
|
|
|
/**
|
2020-10-08 02:46:50 +02:00
|
|
|
* BlobLogSequentialReader is a general purpose log stream reader
|
|
|
|
* implementation. The actual job of reading from the device is implemented by
|
|
|
|
* the RandomAccessFileReader interface.
|
2017-05-10 23:54:35 +02:00
|
|
|
*
|
2020-10-08 02:46:50 +02:00
|
|
|
* Please see BlobLogWriter for details on the file and record layout.
|
2017-05-10 23:54:35 +02:00
|
|
|
*/
|
2020-10-08 02:46:50 +02:00
|
|
|
|
|
|
|
class BlobLogSequentialReader {
|
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
|
|
|
};
|
|
|
|
|
2020-10-08 02:46:50 +02:00
|
|
|
// Create a reader that will return log records from "*file_reader".
|
|
|
|
BlobLogSequentialReader(std::unique_ptr<RandomAccessFileReader>&& file_reader,
|
2021-03-15 12:32:24 +01:00
|
|
|
SystemClock* clock, Statistics* statistics);
|
2020-10-08 02:46:50 +02:00
|
|
|
|
2017-10-27 22:14:34 +02:00
|
|
|
// No copying allowed
|
2020-10-08 02:46:50 +02:00
|
|
|
BlobLogSequentialReader(const BlobLogSequentialReader&) = delete;
|
|
|
|
BlobLogSequentialReader& operator=(const BlobLogSequentialReader&) = delete;
|
2017-05-10 23:54:35 +02:00
|
|
|
|
2020-10-08 02:46:50 +02:00
|
|
|
~BlobLogSequentialReader();
|
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
|
2020-10-08 02:46:50 +02:00
|
|
|
// successfully, false if we hit end of the input. The contents filled in
|
|
|
|
// *record will only be valid until the next mutating operation on this
|
|
|
|
// reader.
|
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_;
|
2021-03-15 12:32:24 +01:00
|
|
|
SystemClock* clock_;
|
2021-01-26 07:07:26 +01:00
|
|
|
|
2017-11-28 20:42:28 +01:00
|
|
|
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
|
|
|
|
2020-10-08 02:46:50 +02:00
|
|
|
// which byte to read next
|
2017-05-10 23:54:35 +02:00
|
|
|
uint64_t next_byte_;
|
|
|
|
};
|
|
|
|
|
2020-02-20 21:07:53 +01:00
|
|
|
} // namespace ROCKSDB_NAMESPACE
|