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
|
|
|
#ifndef ROCKSDB_LITE
|
|
|
|
|
|
|
|
#include "utilities/blob_db/blob_log_writer.h"
|
|
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
#include <string>
|
2017-11-28 20:42:28 +01:00
|
|
|
|
|
|
|
#include "monitoring/statistics.h"
|
2017-05-10 23:54:35 +02:00
|
|
|
#include "rocksdb/env.h"
|
|
|
|
#include "util/coding.h"
|
|
|
|
#include "util/file_reader_writer.h"
|
2017-11-28 20:42:28 +01:00
|
|
|
#include "util/stop_watch.h"
|
2017-10-27 22:14:34 +02:00
|
|
|
#include "utilities/blob_db/blob_log_format.h"
|
2017-05-10 23:54:35 +02:00
|
|
|
|
|
|
|
namespace rocksdb {
|
|
|
|
namespace blob_db {
|
|
|
|
|
2017-11-28 20:42:28 +01:00
|
|
|
Writer::Writer(unique_ptr<WritableFileWriter>&& dest, Env* env,
|
|
|
|
Statistics* statistics, uint64_t log_number, uint64_t bpsync,
|
|
|
|
bool use_fs, uint64_t boffset)
|
2017-05-10 23:54:35 +02:00
|
|
|
: dest_(std::move(dest)),
|
2017-11-28 20:42:28 +01:00
|
|
|
env_(env),
|
|
|
|
statistics_(statistics),
|
2017-05-10 23:54:35 +02:00
|
|
|
log_number_(log_number),
|
|
|
|
block_offset_(boffset),
|
|
|
|
bytes_per_sync_(bpsync),
|
|
|
|
next_sync_offset_(0),
|
|
|
|
use_fsync_(use_fs),
|
2017-10-27 22:14:34 +02:00
|
|
|
last_elem_type_(kEtNone) {}
|
2017-05-10 23:54:35 +02:00
|
|
|
|
2017-12-11 21:01:22 +01:00
|
|
|
Status Writer::Sync() {
|
2017-11-28 20:42:28 +01:00
|
|
|
StopWatch sync_sw(env_, statistics_, BLOB_DB_BLOB_FILE_SYNC_MICROS);
|
2017-12-11 21:01:22 +01:00
|
|
|
Status s = dest_->Sync(use_fsync_);
|
2017-11-28 20:42:28 +01:00
|
|
|
RecordTick(statistics_, BLOB_DB_BLOB_FILE_SYNCED);
|
2017-12-11 21:01:22 +01:00
|
|
|
return s;
|
2017-11-28 20:42:28 +01:00
|
|
|
}
|
2017-05-10 23:54:35 +02:00
|
|
|
|
2017-10-27 22:14:34 +02:00
|
|
|
Status Writer::WriteHeader(BlobLogHeader& header) {
|
2017-05-10 23:54:35 +02:00
|
|
|
assert(block_offset_ == 0);
|
|
|
|
assert(last_elem_type_ == kEtNone);
|
|
|
|
std::string str;
|
|
|
|
header.EncodeTo(&str);
|
|
|
|
|
|
|
|
Status s = dest_->Append(Slice(str));
|
|
|
|
if (s.ok()) {
|
|
|
|
block_offset_ += str.size();
|
|
|
|
s = dest_->Flush();
|
|
|
|
}
|
|
|
|
last_elem_type_ = kEtFileHdr;
|
2017-11-28 20:42:28 +01:00
|
|
|
RecordTick(statistics_, BLOB_DB_BLOB_FILE_BYTES_WRITTEN,
|
|
|
|
BlobLogHeader::kSize);
|
2017-05-10 23:54:35 +02:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2017-10-27 22:14:34 +02:00
|
|
|
Status Writer::AppendFooter(BlobLogFooter& footer) {
|
2017-05-10 23:54:35 +02:00
|
|
|
assert(block_offset_ != 0);
|
2017-10-17 21:11:52 +02:00
|
|
|
assert(last_elem_type_ == kEtFileHdr || last_elem_type_ == kEtRecord);
|
2017-05-10 23:54:35 +02:00
|
|
|
|
|
|
|
std::string str;
|
|
|
|
footer.EncodeTo(&str);
|
|
|
|
|
|
|
|
Status s = dest_->Append(Slice(str));
|
|
|
|
if (s.ok()) {
|
|
|
|
block_offset_ += str.size();
|
|
|
|
s = dest_->Close();
|
|
|
|
dest_.reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
last_elem_type_ = kEtFileFooter;
|
2017-11-28 20:42:28 +01:00
|
|
|
RecordTick(statistics_, BLOB_DB_BLOB_FILE_BYTES_WRITTEN,
|
|
|
|
BlobLogFooter::kSize);
|
2017-05-10 23:54:35 +02:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
Status Writer::AddRecord(const Slice& key, const Slice& val,
|
2017-10-27 22:14:34 +02:00
|
|
|
uint64_t expiration, uint64_t* key_offset,
|
|
|
|
uint64_t* blob_offset) {
|
2017-05-10 23:54:35 +02:00
|
|
|
assert(block_offset_ != 0);
|
2017-10-17 21:11:52 +02:00
|
|
|
assert(last_elem_type_ == kEtFileHdr || last_elem_type_ == kEtRecord);
|
2017-05-10 23:54:35 +02:00
|
|
|
|
|
|
|
std::string buf;
|
2017-10-27 22:14:34 +02:00
|
|
|
ConstructBlobHeader(&buf, key, val, expiration);
|
2017-05-10 23:54:35 +02:00
|
|
|
|
|
|
|
Status s = EmitPhysicalRecord(buf, key, val, key_offset, blob_offset);
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
Status Writer::AddRecord(const Slice& key, const Slice& val,
|
|
|
|
uint64_t* key_offset, uint64_t* blob_offset) {
|
|
|
|
assert(block_offset_ != 0);
|
2017-10-17 21:11:52 +02:00
|
|
|
assert(last_elem_type_ == kEtFileHdr || last_elem_type_ == kEtRecord);
|
2017-05-10 23:54:35 +02:00
|
|
|
|
|
|
|
std::string buf;
|
2017-10-27 22:14:34 +02:00
|
|
|
ConstructBlobHeader(&buf, key, val, 0);
|
2017-05-10 23:54:35 +02:00
|
|
|
|
|
|
|
Status s = EmitPhysicalRecord(buf, key, val, key_offset, blob_offset);
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2017-10-27 22:14:34 +02:00
|
|
|
void Writer::ConstructBlobHeader(std::string* buf, const Slice& key,
|
|
|
|
const Slice& val, uint64_t expiration) {
|
|
|
|
BlobLogRecord record;
|
|
|
|
record.key = key;
|
|
|
|
record.value = val;
|
|
|
|
record.expiration = expiration;
|
|
|
|
record.EncodeHeaderTo(buf);
|
2017-05-10 23:54:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Status Writer::EmitPhysicalRecord(const std::string& headerbuf,
|
|
|
|
const Slice& key, const Slice& val,
|
|
|
|
uint64_t* key_offset, uint64_t* blob_offset) {
|
2017-11-28 20:42:28 +01:00
|
|
|
StopWatch write_sw(env_, statistics_, BLOB_DB_BLOB_FILE_WRITE_MICROS);
|
2017-05-10 23:54:35 +02:00
|
|
|
Status s = dest_->Append(Slice(headerbuf));
|
|
|
|
if (s.ok()) {
|
|
|
|
s = dest_->Append(key);
|
2017-10-17 21:11:52 +02:00
|
|
|
}
|
|
|
|
if (s.ok()) {
|
|
|
|
s = dest_->Append(val);
|
|
|
|
}
|
|
|
|
if (s.ok()) {
|
|
|
|
s = dest_->Flush();
|
2017-05-10 23:54:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
*key_offset = block_offset_ + BlobLogRecord::kHeaderSize;
|
|
|
|
*blob_offset = *key_offset + key.size();
|
|
|
|
block_offset_ = *blob_offset + val.size();
|
|
|
|
last_elem_type_ = kEtRecord;
|
2017-11-28 20:42:28 +01:00
|
|
|
RecordTick(statistics_, BLOB_DB_BLOB_FILE_BYTES_WRITTEN,
|
|
|
|
BlobLogRecord::kHeaderSize + key.size() + val.size());
|
2017-05-10 23:54:35 +02:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace blob_db
|
|
|
|
} // namespace rocksdb
|
|
|
|
#endif // ROCKSDB_LITE
|