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
|
|
|
//
|
|
|
|
// Log format information shared by reader and writer.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#ifndef ROCKSDB_LITE
|
|
|
|
|
2017-07-28 08:16:18 +02:00
|
|
|
#include <limits>
|
2017-05-10 23:54:35 +02:00
|
|
|
#include <utility>
|
|
|
|
#include "rocksdb/options.h"
|
2017-10-27 22:14:34 +02:00
|
|
|
#include "rocksdb/slice.h"
|
2017-05-10 23:54:35 +02:00
|
|
|
#include "rocksdb/status.h"
|
|
|
|
#include "rocksdb/types.h"
|
|
|
|
|
|
|
|
namespace rocksdb {
|
|
|
|
namespace blob_db {
|
|
|
|
|
2017-10-27 22:14:34 +02:00
|
|
|
constexpr uint32_t kMagicNumber = 2395959; // 0x00248f37
|
|
|
|
constexpr uint32_t kVersion1 = 1;
|
2017-08-04 02:46:00 +02:00
|
|
|
constexpr uint64_t kNoExpiration = std::numeric_limits<uint64_t>::max();
|
|
|
|
|
2017-10-27 22:14:34 +02:00
|
|
|
using ExpirationRange = std::pair<uint64_t, uint64_t>;
|
2017-05-10 23:54:35 +02:00
|
|
|
|
2017-10-27 22:14:34 +02:00
|
|
|
// Format of blob log file header (30 bytes):
|
|
|
|
//
|
|
|
|
// +--------------+---------+---------+-------+-------------+-------------------+
|
|
|
|
// | magic number | version | cf id | flags | compression | expiration range |
|
|
|
|
// +--------------+---------+---------+-------+-------------+-------------------+
|
|
|
|
// | Fixed32 | Fixed32 | Fixed32 | char | char | Fixed64 Fixed64 |
|
|
|
|
// +--------------+---------+---------+-------+-------------+-------------------+
|
|
|
|
//
|
|
|
|
// List of flags:
|
|
|
|
// has_ttl: Whether the file contain TTL data.
|
|
|
|
//
|
|
|
|
// Expiration range in the header is a rough range based on
|
|
|
|
// blob_db_options.ttl_range_secs.
|
|
|
|
struct BlobLogHeader {
|
|
|
|
static constexpr size_t kSize = 30;
|
2017-05-23 19:30:04 +02:00
|
|
|
|
2017-10-27 22:14:34 +02:00
|
|
|
uint32_t version = kVersion1;
|
2017-11-01 00:27:22 +01:00
|
|
|
uint32_t column_family_id = 0;
|
|
|
|
CompressionType compression = kNoCompression;
|
|
|
|
bool has_ttl = false;
|
|
|
|
ExpirationRange expiration_range = std::make_pair(0, 0);
|
2017-05-10 23:54:35 +02:00
|
|
|
|
2017-10-27 22:14:34 +02:00
|
|
|
void EncodeTo(std::string* dst);
|
2017-05-10 23:54:35 +02:00
|
|
|
|
2017-10-27 22:14:34 +02:00
|
|
|
Status DecodeFrom(Slice slice);
|
2017-05-10 23:54:35 +02:00
|
|
|
};
|
|
|
|
|
2017-12-15 22:18:32 +01:00
|
|
|
// Format of blob log file footer (32 bytes):
|
2017-10-27 22:14:34 +02:00
|
|
|
//
|
2017-12-15 22:18:32 +01:00
|
|
|
// +--------------+------------+-------------------+------------+
|
|
|
|
// | magic number | blob count | expiration range | footer CRC |
|
|
|
|
// +--------------+------------+-------------------+------------+
|
|
|
|
// | Fixed32 | Fixed64 | Fixed64 + Fixed64 | Fixed32 |
|
|
|
|
// +--------------+------------+-------------------+------------+
|
2017-10-27 22:14:34 +02:00
|
|
|
//
|
|
|
|
// The footer will be presented only when the blob file is properly closed.
|
|
|
|
//
|
|
|
|
// Unlike the same field in file header, expiration range in the footer is the
|
|
|
|
// range of smallest and largest expiration of the data in this file.
|
|
|
|
struct BlobLogFooter {
|
2017-12-15 22:18:32 +01:00
|
|
|
static constexpr size_t kSize = 32;
|
2017-05-10 23:54:35 +02:00
|
|
|
|
2017-11-01 00:27:22 +01:00
|
|
|
uint64_t blob_count = 0;
|
|
|
|
ExpirationRange expiration_range = std::make_pair(0, 0);
|
|
|
|
uint32_t crc = 0;
|
2017-05-10 23:54:35 +02:00
|
|
|
|
2017-10-27 22:14:34 +02:00
|
|
|
void EncodeTo(std::string* dst);
|
2017-05-10 23:54:35 +02:00
|
|
|
|
2017-10-27 22:14:34 +02:00
|
|
|
Status DecodeFrom(Slice slice);
|
2017-05-10 23:54:35 +02:00
|
|
|
};
|
|
|
|
|
2017-10-27 22:14:34 +02:00
|
|
|
// Blob record format (32 bytes header + key + value):
|
|
|
|
//
|
|
|
|
// +------------+--------------+------------+------------+----------+---------+-----------+
|
|
|
|
// | key length | value length | expiration | header CRC | blob CRC | key | value |
|
|
|
|
// +------------+--------------+------------+------------+----------+---------+-----------+
|
|
|
|
// | Fixed64 | Fixed64 | Fixed64 | Fixed32 | Fixed32 | key len | value len |
|
|
|
|
// +------------+--------------+------------+------------+----------+---------+-----------+
|
|
|
|
//
|
|
|
|
// If file has has_ttl = false, expiration field is always 0, and the blob
|
|
|
|
// doesn't has expiration.
|
|
|
|
//
|
|
|
|
// Also note that if compression is used, value is compressed value and value
|
|
|
|
// length is compressed value length.
|
|
|
|
//
|
|
|
|
// Header CRC is the checksum of (key_len + val_len + expiration), while
|
|
|
|
// blob CRC is the checksum of (key + value).
|
|
|
|
//
|
|
|
|
// We could use variable length encoding (Varint64) to save more space, but it
|
|
|
|
// make reader more complicated.
|
|
|
|
struct BlobLogRecord {
|
|
|
|
// header include fields up to blob CRC
|
|
|
|
static constexpr size_t kHeaderSize = 32;
|
|
|
|
|
2017-11-01 00:27:22 +01:00
|
|
|
uint64_t key_size = 0;
|
|
|
|
uint64_t value_size = 0;
|
|
|
|
uint64_t expiration = 0;
|
|
|
|
uint32_t header_crc = 0;
|
|
|
|
uint32_t blob_crc = 0;
|
2017-10-27 22:14:34 +02:00
|
|
|
Slice key;
|
|
|
|
Slice value;
|
|
|
|
std::string key_buf;
|
|
|
|
std::string value_buf;
|
|
|
|
|
2017-11-28 20:42:28 +01:00
|
|
|
uint64_t record_size() const { return kHeaderSize + key_size + value_size; }
|
|
|
|
|
2017-10-27 22:14:34 +02:00
|
|
|
void EncodeHeaderTo(std::string* dst);
|
|
|
|
|
|
|
|
Status DecodeHeaderFrom(Slice src);
|
|
|
|
|
|
|
|
Status CheckBlobCRC() const;
|
2017-05-10 23:54:35 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace blob_db
|
|
|
|
} // namespace rocksdb
|
|
|
|
#endif // ROCKSDB_LITE
|