| /* |
| * Licensed to the Apache Software Foundation (ASF) under one |
| * or more contributor license agreements. See the NOTICE file |
| * distributed with this work for additional information |
| * regarding copyright ownership. The ASF licenses this file |
| * to you under the Apache License, Version 2.0 (the |
| * License); you may not use this file except in compliance |
| * with the License. You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, |
| * software distributed under the License is distributed on an |
| * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| * KIND, either express or implied. See the License for the |
| * specific language governing permissions and limitations |
| * under the License. |
| */ |
| |
| #ifndef COMMON_TABLET_H |
| #define COMMON_TABLET_H |
| |
| #include <algorithm> |
| #include <memory> |
| #include <vector> |
| |
| #include "common/config/config.h" |
| #include "common/container/bit_map.h" |
| #include "common/db_common.h" |
| #include "device_id.h" |
| #include "schema.h" |
| |
| namespace storage { |
| |
| template <typename T> |
| |
| class TabletRowIterator; |
| class TabletColIterator; |
| |
| /** |
| * @brief Represents a collection of data rows with associated metadata for |
| * insertion into a table. |
| * |
| * This class is used to manage and organize data that will be inserted into a |
| * specific target table. It handles the storage of timestamps and values, along |
| * with their associated metadata such as column names and types. |
| */ |
| class Tablet { |
| struct ValueMatrixEntry { |
| union { |
| int32_t *int32_data; |
| int64_t *int64_data; |
| float *float_data; |
| double *double_data; |
| bool *bool_data; |
| common::String *string_data; |
| }; |
| }; |
| |
| public: |
| static const uint32_t DEFAULT_MAX_ROWS = 1024; |
| int err_code_ = common::E_OK; |
| |
| public: |
| Tablet(const std::string &device_id, |
| std::shared_ptr<std::vector<MeasurementSchema>> schema_vec, |
| int max_rows = DEFAULT_MAX_ROWS) |
| : max_row_num_(max_rows), |
| insert_target_name_(device_id), |
| schema_vec_(schema_vec), |
| timestamps_(nullptr), |
| value_matrix_(nullptr), |
| bitmaps_(nullptr) { |
| ASSERT(device_id.size() >= 1); |
| ASSERT(schema_vec != NULL); |
| ASSERT(max_rows > 0 && max_rows < (1 << 30)); |
| if (max_rows < 0) { |
| ASSERT(false); |
| max_row_num_ = DEFAULT_MAX_ROWS; |
| } |
| err_code_ = init(); |
| } |
| |
| Tablet(const std::string &device_id, |
| const std::vector<std::string> *measurement_list, |
| const std::vector<common::TSDataType> *data_type_list, |
| int max_row_num = DEFAULT_MAX_ROWS) |
| : max_row_num_(max_row_num), |
| insert_target_name_(device_id), |
| timestamps_(nullptr), |
| value_matrix_(nullptr), |
| bitmaps_(nullptr) { |
| ASSERT(!device_id.empty()); |
| ASSERT(measurement_list != nullptr); |
| ASSERT(data_type_list != nullptr); |
| ASSERT(max_row_num > 0 && max_row_num < (1 << 30)); |
| if (max_row_num < 0) { |
| ASSERT(false); |
| max_row_num_ = DEFAULT_MAX_ROWS; |
| } |
| |
| ASSERT(measurement_list->size() == data_type_list->size()); |
| std::vector<MeasurementSchema> measurement_vec; |
| measurement_vec.reserve(measurement_list->size()); |
| std::transform(measurement_list->begin(), measurement_list->end(), |
| data_type_list->begin(), |
| std::back_inserter(measurement_vec), |
| [](const std::string &name, common::TSDataType type) { |
| return MeasurementSchema(name, type); |
| }); |
| schema_vec_ = |
| std::make_shared<std::vector<MeasurementSchema>>(measurement_vec); |
| err_code_ = init(); |
| } |
| |
| Tablet(const std::string &insert_target_name, |
| const std::vector<std::string> &column_names, |
| const std::vector<common::TSDataType> &data_types, |
| const std::vector<common::ColumnCategory> &column_categories, |
| int max_rows = DEFAULT_MAX_ROWS) |
| : max_row_num_(max_rows), |
| cur_row_size_(0), |
| insert_target_name_(insert_target_name), |
| timestamps_(nullptr), |
| value_matrix_(nullptr), |
| bitmaps_(nullptr) { |
| schema_vec_ = std::make_shared<std::vector<MeasurementSchema>>(); |
| for (size_t i = 0; i < column_names.size(); i++) { |
| schema_vec_->emplace_back( |
| MeasurementSchema(column_names[i], data_types[i], |
| common::get_value_encoder(data_types[i]), |
| common::get_default_compressor())); |
| } |
| set_column_categories(column_categories); |
| err_code_ = init(); |
| } |
| |
| /** |
| * @brief Constructs a Tablet object with the given parameters. |
| * |
| * @param column_names A vector containing the names of the columns in the |
| * tablet. Each name corresponds to a column in the target table. |
| * @param data_types A vector containing the data types of each column. |
| * These must match the schema of the target table. |
| * @param max_rows The maximum number of rows that this tablet can hold. |
| * Defaults to DEFAULT_MAX_ROWS. |
| */ |
| Tablet(const std::vector<std::string> &column_names, |
| const std::vector<common::TSDataType> &data_types, |
| uint32_t max_rows = DEFAULT_MAX_ROWS) |
| : max_row_num_(max_rows), |
| cur_row_size_(0), |
| timestamps_(nullptr), |
| value_matrix_(nullptr), |
| bitmaps_(nullptr) { |
| schema_vec_ = std::make_shared<std::vector<MeasurementSchema>>(); |
| for (size_t i = 0; i < column_names.size(); i++) { |
| schema_vec_->emplace_back(column_names[i], data_types[i], |
| common::get_value_encoder(data_types[i]), |
| common::get_default_compressor()); |
| } |
| err_code_ = init(); |
| } |
| |
| ~Tablet() { destroy(); } |
| |
| const std::string &get_table_name() const { return insert_target_name_; } |
| void set_table_name(const std::string &table_name) { |
| insert_target_name_ = table_name; |
| } |
| size_t get_column_count() const { return schema_vec_->size(); } |
| uint32_t get_cur_row_size() const { return cur_row_size_; } |
| |
| /** |
| * @brief Adds a timestamp to the specified row. |
| * |
| * @param row_index The index of the row to which the timestamp will be |
| * added. Must be less than the maximum number of rows. |
| * @param timestamp The timestamp value to add. |
| * @return Returns 0 on success, or a non-zero error code on failure. |
| */ |
| int add_timestamp(uint32_t row_index, int64_t timestamp); |
| |
| void *get_value(int row_index, uint32_t schema_index, |
| common::TSDataType &data_type) const; |
| /** |
| * @brief Template function to add a value of type T to the specified row |
| * and column. |
| * |
| * @tparam T The type of the value to add. |
| * @param row_index The index of the row to which the value will be added. |
| * Must be less than the maximum number of rows. |
| * @param schema_index The index of the column schema corresponding to the |
| * value being added. |
| * @param val The value to add. |
| * @return Returns 0 on success, or a non-zero error code on failure. |
| */ |
| template <typename T> |
| int add_value(uint32_t row_index, uint32_t schema_index, T val); |
| |
| void set_column_categories( |
| const std::vector<common::ColumnCategory> &column_categories); |
| std::shared_ptr<IDeviceID> get_device_id(int i) const; |
| /** |
| * @brief Template function to add a value of type T to the specified row |
| * and column by name. |
| * |
| * @tparam T The type of the value to add. |
| * @param row_index The index of the row to which the value will be added. |
| * Must be less than the maximum number of rows. |
| * @param measurement_name The name of the column to which the value will be |
| * added. Must match one of the column names provided during construction. |
| * @param val The value to add. |
| * @return Returns 0 on success, or a non-zero error code on failure. |
| */ |
| template <typename T> |
| int add_value(uint32_t row_index, const std::string &measurement_name, |
| T val); |
| |
| FORCE_INLINE const std::string &get_column_name( |
| uint32_t column_index) const { |
| return schema_vec_->at(column_index).measurement_name_; |
| } |
| |
| void set_column_name(uint32_t column_index, const std::string &name) { |
| schema_vec_->at(column_index).measurement_name_ = name; |
| } |
| |
| const std::map<std::string, int> &get_schema_map() const { |
| return schema_map_; |
| } |
| |
| void set_schema_map(const std::map<std::string, int> &schema_map) { |
| schema_map_ = schema_map; |
| } |
| |
| friend class TabletColIterator; |
| friend class TsFileWriter; |
| friend struct MeasurementNamesFromTablet; |
| |
| private: |
| typedef std::map<std::string, int>::iterator SchemaMapIterator; |
| int init(); |
| void destroy(); |
| |
| private: |
| template <typename T> |
| void process_val(uint32_t row_index, uint32_t schema_index, T val); |
| common::PageArena page_arena_; |
| uint32_t max_row_num_; |
| uint32_t cur_row_size_; |
| std::string insert_target_name_; |
| std::shared_ptr<std::vector<MeasurementSchema>> schema_vec_; |
| std::map<std::string, int> schema_map_; |
| int64_t *timestamps_; |
| ValueMatrixEntry *value_matrix_; |
| common::BitMap *bitmaps_; |
| std::vector<common::ColumnCategory> column_categories_; |
| std::vector<int> id_column_indexes_; |
| }; |
| |
| } // end namespace storage |
| #endif // COMMON_TABLET_H |