![]() |
MySQL 9.1.0
Source Code Documentation
|
This class implements LZ4 compression. More...
#include <gcs_message_stage_lz4.h>
Public Member Functions | |
Gcs_message_stage::stage_status | skip_apply (uint64_t const &original_payload_size) const override |
Check if the apply operation which affects outgoing packets should be executed (i.e. More... | |
std::unique_ptr< Gcs_stage_metadata > | get_stage_header () override |
Gcs_message_stage_lz4 () | |
Creates an instance of the stage with the default threshold in bytes set. More... | |
Gcs_message_stage_lz4 (bool enabled, unsigned long long compress_threshold) | |
Creates an instance of the stage with the given threshold in bytes. More... | |
~Gcs_message_stage_lz4 () override=default | |
Stage_code | get_stage_code () const override |
Return the unique stage code. More... | |
void | set_threshold (unsigned long long threshold) |
Sets the threshold in bytes after which compression kicks in. More... | |
Static Public Member Functions | |
static constexpr unsigned long long | max_input_compression () noexcept |
Return the maximum payload size in bytes that can be compressed. More... | |
Static Public Attributes | |
static constexpr unsigned long long | DEFAULT_THRESHOLD = 1024 |
The default threshold value in bytes. More... | |
Protected Member Functions | |
std::pair< bool, std::vector< Gcs_packet > > | apply_transformation (Gcs_packet &&packet) override |
Implements the logic of this stage's transformation to the packet, and returns a set of one, or more, transformed packets. More... | |
std::pair< Gcs_pipeline_incoming_result, Gcs_packet > | revert_transformation (Gcs_packet &&packet) override |
Implements the logic to revert this stage's transformation to the packet, and returns one, or none, transformed packet. More... | |
Gcs_message_stage::stage_status | skip_revert (const Gcs_packet &packet) const override |
Check if the revert operation which affects incoming packets should be executed (i.e. More... | |
Private Attributes | |
unsigned long long | m_threshold |
This marks the threshold in bytes above which a message gets compressed. More... | |
Additional Inherited Members |
This class implements LZ4 compression.
It is a stateless service class, thence it is thread safe.
|
inlineexplicit |
Creates an instance of the stage with the default threshold in bytes set.
|
inlineexplicit |
Creates an instance of the stage with the given threshold in bytes.
enabled | enables this message stage |
compress_threshold | messages with the payload larger than compress_threshold in bytes are compressed. |
|
overridedefault |
|
overrideprotectedvirtual |
Implements the logic of this stage's transformation to the packet, and returns a set of one, or more, transformed packets.
[in] | packet | The packet upon which the transformation should be applied |
{true,_} | If there was an error applying the transformation |
{false,P} | If the transformation was successful, and produced the set of transformed packets P |
Implements Gcs_message_stage.
|
inlineoverridevirtual |
Return the unique stage code.
Implements Gcs_message_stage.
Reimplemented in Gcs_message_stage_lz4_v2, and Gcs_message_stage_lz4_v3.
|
overridevirtual |
Implements Gcs_message_stage.
|
inlinestaticconstexprnoexcept |
Return the maximum payload size in bytes that can be compressed.
|
overrideprotectedvirtual |
Implements the logic to revert this stage's transformation to the packet, and returns one, or none, transformed packet.
[in] | packet | The packet upon which the transformation should be reverted |
{ERROR,_} | If there was an error reverting the transformation |
{OK_NO_PACKET,NP} | If the transformation was reverted, but produced no packet |
{OK_PACKET,P} | If the transformation was reverted, and produced the packet P |
Implements Gcs_message_stage.
|
inline |
Sets the threshold in bytes after which compression kicks in.
threshold | if the payload exceeds these many bytes, then the message is compressed. |
|
overridevirtual |
Check if the apply operation which affects outgoing packets should be executed (i.e.
applied), skipped or aborted.
If the outcome is code apply or code skip, the stage will process or skip the message, respectively. However, if the outcome is code abort, the message will be discarded and an error will be reported thus stopping the pipeline execution.
For example, if a packet's length is less than a pre-defined threshold the packet is not compressed.
original_payload_size | The size of the packet to which the transformation should be applied. |
Implements Gcs_message_stage.
|
overrideprotectedvirtual |
Check if the revert operation which affects incoming packets should be executed (i.e.
applied), skipped or aborted.
If the outcome is code apply or code skip, the stage will process or skip the message, respectively. However, if the outcome is code abort, the message will be discarded and an error will be reported thus stopping the pipeline execution.
For example, if the packet length is greater than the maximum allowed compressed information an error is returned.
packet | The packet upon which the transformation should be applied |
Implements Gcs_message_stage.
|
staticconstexpr |
The default threshold value in bytes.
|
private |
This marks the threshold in bytes above which a message gets compressed.
Messages that are smaller than this threshold are not compressed.