This repository has been archived by the owner on Jun 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: move log_block class from mutation_log.h to separated file (#…
…427)
- Loading branch information
Wu Tao
authored
Mar 25, 2020
1 parent
7df14f0
commit 3b1133b
Showing
7 changed files
with
93 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// Copyright (c) 2017-present, Xiaomi, Inc. All rights reserved. | ||
// This source code is licensed under the Apache License Version 2.0, which | ||
// can be found in the LICENSE file in the root directory of this source tree. | ||
|
||
#include "log_block.h" | ||
|
||
namespace dsn { | ||
namespace replication { | ||
|
||
log_block::log_block() { init(); } | ||
|
||
void log_block::init() | ||
{ | ||
log_block_header hdr; | ||
|
||
binary_writer temp_writer; | ||
temp_writer.write_pod(hdr); | ||
add(temp_writer.get_buffer()); | ||
} | ||
|
||
} // namespace replication | ||
} // namespace dsn |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
// Copyright (c) 2017-present, Xiaomi, Inc. All rights reserved. | ||
// This source code is licensed under the Apache License Version 2.0, which | ||
// can be found in the LICENSE file in the root directory of this source tree. | ||
|
||
#pragma once | ||
|
||
#include "mutation.h" | ||
|
||
namespace dsn { | ||
namespace replication { | ||
|
||
// each block in log file has a log_block_header | ||
struct log_block_header | ||
{ | ||
int32_t magic{static_cast<int32_t>(0xdeadbeef)}; // 0xdeadbeef | ||
int32_t length{0}; // block data length (not including log_block_header) | ||
int32_t body_crc{0}; // block data crc (not including log_block_header) | ||
|
||
// start offset of the block (including log_block_header) in this log file | ||
// TODO(wutao1): this field is unusable. the value is always set, but not read. | ||
uint32_t local_offset{0}; | ||
}; | ||
|
||
// a memory structure holding data which belongs to one block. | ||
class log_block | ||
{ | ||
std::vector<blob> _data; // the first blob is log_block_header | ||
size_t _size{0}; // total data size of all blobs | ||
public: | ||
log_block(); | ||
|
||
// get all blobs in the block | ||
const std::vector<blob> &data() const { return _data; } | ||
|
||
// get the first blob (which contains the log_block_header) from the block | ||
// | ||
// TODO(wutao1): refactor `front()` to `get_log_block_header()` | ||
// ``` | ||
// log_block_header *get_log_block_header() | ||
// { | ||
// return reinterpret_cast<log_block_header *>(const_cast<char *>(_data.front().data())); | ||
// } | ||
// ``` | ||
blob &front() | ||
{ | ||
dassert(!_data.empty(), "trying to get first blob out of an empty log block"); | ||
return _data.front(); | ||
} | ||
|
||
// add a blob into the block | ||
void add(const blob &bb) | ||
{ | ||
_size += bb.length(); | ||
_data.push_back(bb); | ||
} | ||
|
||
// return total data size in the block | ||
size_t size() const { return _size; } | ||
|
||
private: | ||
void init(); | ||
}; | ||
} // namespace replication | ||
} // namespace dsn |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters