MySQL 9.1.0
Source Code Documentation
|
Concurrent data structure, which allows to track concurrently performed operations which locally might be dis-ordered. More...
#include <ut0link_buf.h>
Public Types | |
typedef Position | Distance |
Type used to express distance between two positions. More... | |
Public Member Functions | |
Link_buf (size_t capacity) | |
Constructs the link buffer. More... | |
Link_buf () | |
Link_buf (Link_buf &&rhs) | |
Link_buf (const Link_buf &rhs)=delete | |
Link_buf & | operator= (Link_buf &&rhs) |
Link_buf & | operator= (const Link_buf &rhs)=delete |
~Link_buf () | |
Destructs the link buffer. More... | |
void | add_link (Position from, Position to) |
Add a directed link between two given positions. More... | |
void | add_link_advance_tail (Position from, Position to) |
Add a directed link between two given positions. More... | |
template<typename Stop_condition > | |
bool | advance_tail_until (Stop_condition stop_condition, uint32_t max_retry=1) |
Advances the tail pointer in the buffer by following connected path created by links. More... | |
bool | advance_tail () |
Advances the tail pointer in the buffer without additional condition for stop. More... | |
size_t | capacity () const |
Position | tail () const |
bool | has_space (Position position) |
Checks if there is space to add link at given position. More... | |
void | validate_no_links (Position begin, Position end) |
Validates (using assertions) that there are no links set in the range [begin, end). More... | |
void | validate_no_links () |
Validates (using assertions) that there no links at all. More... | |
Private Member Functions | |
size_t | slot_index (Position position) const |
Translates position expressed in original unit to position in the m_links (which is a ring buffer). More... | |
bool | next_position (Position position, Position &next) |
Computes next position by looking into slots array and following single link which starts in provided position. More... | |
void | free () |
Deallocated memory, if it was allocated. More... | |
Private Attributes | |
size_t | m_capacity |
Capacity of the buffer. More... | |
std::atomic< Distance > * | m_links |
Pointer to the ring buffer (unaligned). More... | |
std::atomic< Position > | m_tail |
Tail pointer in the buffer (expressed in original unit). More... | |
Concurrent data structure, which allows to track concurrently performed operations which locally might be dis-ordered.
This data structure is informed about finished concurrent operations and tracks up to which point in a total order all operations have been finished (there are no holes).
It also allows to limit the last period in which there might be holes. These holes refer to unfinished concurrent operations, which precede in the total order some operations that are already finished.
Threads might concurrently report finished operations (lock-free).
Threads might ask for maximum currently known position in total order, up to which all operations are already finished (lock-free).
Single thread might track the reported finished operations and update maximum position in total order, up to which all operations are done.
You might look at current usages of this data structure in log0buf.cc.
Type used to express distance between two positions.
It could become a parameter of template if it was useful. However there is no such need currently.
Constructs the link buffer.
Allocated memory for the links. Initializes the tail pointer with 0.
[in] | capacity | number of slots in the ring buffer |
|
delete |
Destructs the link buffer.
Deallocates memory for the links.
|
inline |
Add a directed link between two given positions.
It is user's responsibility to ensure that there is space for the link. This is because it can be useful to ensure much earlier that there is space.
[in] | from | position where the link starts |
[in] | to | position where the link ends (from -> to) |
|
inline |
Add a directed link between two given positions.
It is user's responsibility to ensure that there is space for the link. This is because it can be useful to ensure much earlier that there is space. In addition, advances the tail pointer in the buffer if possible.
[in] | from | position where the link starts |
[in] | to | position where the link ends (from -> to) |
|
inline |
Advances the tail pointer in the buffer without additional condition for stop.
Stops at missing outgoing link.
bool Link_buf< Position >::advance_tail_until | ( | Stop_condition | stop_condition, |
uint32_t | max_retry = 1 |
||
) |
Advances the tail pointer in the buffer by following connected path created by links.
Starts at current position of the pointer. Stops when the provided function returns true.
[in] | stop_condition | function used as a stop condition; (lsn_t prev, lsn_t next) -> bool; returns false if we should follow the link prev->next, true to stop |
[in] | max_retry | max fails to retry |
|
inline |
|
private |
Deallocated memory, if it was allocated.
|
inline |
Checks if there is space to add link at given position.
User has to use this function before adding the link, and should wait until the free space exists.
[in] | position | position to check |
|
inlineprivate |
Computes next position by looking into slots array and following single link which starts in provided position.
[in] | position | position to start |
[out] | next | computed next position |
|
delete |
Link_buf< Position > & Link_buf< Position >::operator= | ( | Link_buf< Position > && | rhs | ) |
|
inlineprivate |
Translates position expressed in original unit to position in the m_links (which is a ring buffer).
[in] | position | position in original unit |
|
inline |
void Link_buf< Position >::validate_no_links |
Validates (using assertions) that there no links at all.
void Link_buf< Position >::validate_no_links | ( | Position | begin, |
Position | end | ||
) |
Validates (using assertions) that there are no links set in the range [begin, end).
|
private |
Capacity of the buffer.
Pointer to the ring buffer (unaligned).
|
private |
Tail pointer in the buffer (expressed in original unit).