1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
|
/*****************************************************************************
Copyright (c) 2020, 2025, Oracle and/or its affiliates.
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License, version 2.0, as published by the
Free Software Foundation.
This program is designed to work with certain software (including
but not limited to OpenSSL) that is licensed under separate terms,
as designated in a particular file or component or in included license
documentation. The authors of MySQL hereby grant you an additional
permission to link the program and your derivative works with the
separately licensed software that they have either included with
the program or referenced in the documentation.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU General Public License, version 2.0,
for more details.
You should have received a copy of the GNU General Public License along with
this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*****************************************************************************/
/** @file include/ddl0impl-file-reader.h
For scanning the temporary file.
Created 2020-11-01 by Sunny Bains. */
#ifndef ddl0impl_file_reader_h
#define ddl0impl_file_reader_h
#include "ddl0impl-buffer.h"
namespace ddl {
// Forward declaration
struct File_cursor;
/** Represents the chunk in bytes : first element represents the beginning
offset of the chunk and, second element represents the length of the chunk. */
using Range = std::pair<os_offset_t, os_offset_t>;
/** Read rows from the temporary file. Rows could be read in the from of chunks
or ranges. */
struct File_reader : private ut::Non_copyable {
/** Constructor.
@param[in] file Opened file.
@param[in,out] index Index that the rows belong to.
@param[in] buffer_size Size of file buffer for reading.
@param[in] range Offsets of the chunk to read */
File_reader(const Unique_os_file_descriptor &file, dict_index_t *index,
size_t buffer_size, const Range &range) noexcept
: m_index(index),
m_file(file),
m_range(range),
m_buffer_size(buffer_size) {
ut_a(range.first < range.second);
ut_a(m_buffer_size > 0);
ut_a(m_index != nullptr);
ut_a(m_file.is_open());
}
/** Destructor. */
~File_reader() noexcept {
if (m_aux_buf != nullptr) {
ut::delete_arr(m_aux_buf);
}
}
/** Prepare the file for reading.
@return DB_SUCCESS or error code. */
[[nodiscard]] dberr_t prepare() noexcept;
/** The current row as a tuple. Note: the tuple only does a shallow copy.
@param[in,out] builder Index builder instance.
@param[in,out] heap Heap to use for allocation.
@param[out] dtuple Row converted to a tuple.
@return DB_SUCCESS or error code. */
[[nodiscard]] dberr_t get_tuple(Builder *builder, mem_heap_t *heap,
dtuple_t *&dtuple) noexcept;
/** Set the start and end offsets to read from, to avoid the possibility of
overlapping reads from the other ranges in subsequent reads. Seek to the
start offset, read the page and, position to the first record on the page
@param[in] range Start and end offsets of the range to read from.
@return DB_SUCCESS or error code. */
dberr_t read(const Range &range) noexcept;
/** @return true if the range first == second. */
[[nodiscard]] bool end_of_range() const noexcept {
return m_range.first == m_range.second;
}
/** @return the number of rows read from the file. */
[[nodiscard]] uint64_t get_n_rows_read() const noexcept {
return m_n_rows_read;
}
private:
/** Read the page in the file buffer from the start offset, and reset the
cursor to the beginning of the file buffer
@return DB_SUCCESS or error code. */
[[nodiscard]] dberr_t seek() noexcept;
/** Advance page number to the next and read in.
@return DB_SUCCESS or error code. */
[[nodiscard]] dberr_t read_next() noexcept;
/** Advance the "cursor".
@return DB_SUCCESS or error code. */
[[nodiscard]] dberr_t next() noexcept;
public:
using Offsets = std::vector<ulint, ut::allocator<ulint>>;
/** Index that the records belong to. */
dict_index_t *m_index{};
/** Pointer to current row. */
const mrec_t *m_mrec{};
/** Columns offsets. */
Offsets m_field_offsets{};
/** File handle to read from. */
const Unique_os_file_descriptor &m_file;
private:
using Bounds = std::pair<const byte *, const byte *>;
/* Coordinates of the chunk that this file reader can read the rows from */
Range m_range{};
/** Pointer current offset within file buffer. */
const byte *m_ptr{};
/** File buffer bounds. */
Bounds m_bounds{};
/** Auxiliary buffer for records that span across pages. */
byte *m_aux_buf{};
/** IO buffer size in bytes. */
size_t m_buffer_size{};
/** Aligned IO buffer. */
ut::unique_ptr_aligned<byte[]> m_aligned_buffer{};
/** File buffer for reading. */
IO_buffer m_io_buffer{};
/** Number of rows read from the file. */
uint64_t m_n_rows_read{};
friend File_cursor;
};
} // namespace ddl
#endif /* ddl0impl_file_reader_h */
|