MySQL 8.4.0
Source Code Documentation
none_dec.h
Go to the documentation of this file.
1/* Copyright (c) 2019, 2024, Oracle and/or its affiliates.
2
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License, version 2.0,
5 as published by the Free Software Foundation.
6
7 This program is designed to work with certain software (including
8 but not limited to OpenSSL) that is licensed under separate terms,
9 as designated in a particular file or component or in included license
10 documentation. The authors of MySQL hereby grant you an additional
11 permission to link the program and your derivative works with the
12 separately licensed software that they have either included with
13 the program or referenced in the documentation.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License, version 2.0, for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
23
24#ifndef MYSQL_BINLOG_EVENT_COMPRESSION_NONE_DEC_H
25#define MYSQL_BINLOG_EVENT_COMPRESSION_NONE_DEC_H
26
29
31
32/// Decompressor subclass that only copies input to output without
33/// decompressing it.
34class None_dec : public Decompressor {
35 public:
36 using typename Decompressor::Char_t;
37 using typename Decompressor::Size_t;
38 static constexpr type type_code = NONE;
39
40 None_dec() = default;
41 ~None_dec() override = default;
42
43 None_dec(const None_dec &) = delete;
44 None_dec(const None_dec &&) = delete;
45 None_dec &operator=(const None_dec &) = delete;
46 None_dec &operator=(const None_dec &&) = delete;
47
48 private:
49 /// @return NONE
50 type do_get_type_code() const override;
51
52 /// @copydoc Decompressor::do_reset
53 void do_reset() override;
54
55 /// @copydoc Decompressor::do_feed
56 void do_feed(const Char_t *input_data, Size_t input_size) override;
57
58 /// @copydoc Decompressor::do_decompress
59 [[NODISCARD]] std::pair<Decompress_status, Size_t> do_decompress(
60 Char_t *out, Size_t output_size) override;
61
62 /// Input data
66};
67
68} // namespace mysql::binlog::event::compression
69
70#endif // MYSQL_BINLOG_EVENT_COMPRESSION_NONE_DEC_H
Abstract base class for decompressors.
Definition: decompressor.h:57
unsigned char Char_t
Definition: decompressor.h:59
mysql::binlog::event::compression::buffer::Buffer_view< Char_t >::Size_t Size_t
Definition: decompressor.h:61
Decompressor subclass that only copies input to output without decompressing it.
Definition: none_dec.h:34
type do_get_type_code() const override
Definition: none_dec.cpp:30
Size_t m_input_size
Definition: none_dec.h:64
Size_t m_input_position
Definition: none_dec.h:65
None_dec & operator=(const None_dec &&)=delete
std::pair< Decompress_status, Size_t > do_decompress(Char_t *out, Size_t output_size) override
Implement decompress.
Definition: none_dec.cpp:44
static constexpr type type_code
Definition: none_dec.h:38
const Char_t * m_input_data
Input data.
Definition: none_dec.h:63
None_dec & operator=(const None_dec &)=delete
void do_reset() override
Implement do_reset.
Definition: none_dec.cpp:32
void do_feed(const Char_t *input_data, Size_t input_size) override
Implement feed.
Definition: none_dec.cpp:38
Definition: base.cpp:27
@ NONE
Definition: base.h:45
#define NODISCARD
The function attribute [[NODISCARD]] is a replacement for [[nodiscard]] to workaround a gcc bug.
Definition: nodiscard.h:47