/* * 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. */ /* * Copyright (C) 2015 ScyllaDB * * Modified by ScyllaDB */ /* * This file is part of Scylla. * * Scylla is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Scylla 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 for more details. * * You should have received a copy of the GNU General Public License * along with Scylla. If not, see . */ #pragma once #include #include #include "enum_set.hh" #include "service/pager/paging_state.hh" #include "schema.hh" namespace cql3 { class metadata { public: enum class flag : uint8_t { GLOBAL_TABLES_SPEC = 0, HAS_MORE_PAGES = 1, NO_METADATA = 2, }; using flag_enum = super_enum; using flag_enum_set = enum_set; private: flag_enum_set _flags; public: // Please note that columnCount can actually be smaller than names, even if names is not null. This is // used to include columns in the resultSet that we need to do post-query re-orderings // (SelectStatement.orderResults) but that shouldn't be sent to the user as they haven't been requested // (CASSANDRA-4911). So the serialization code will exclude any columns in name whose index is >= columnCount. std::vector<::shared_ptr> names; private: const uint32_t _column_count; ::shared_ptr _paging_state; public: metadata(std::vector<::shared_ptr> names_); metadata(flag_enum_set flags, std::vector<::shared_ptr> names_, uint32_t column_count, ::shared_ptr paging_state); // The maximum number of values that the ResultSet can hold. This can be bigger than columnCount due to CASSANDRA-4911 uint32_t value_count() const; void add_non_serialized_column(::shared_ptr name); private: bool all_in_same_cf() const; public: void set_has_more_pages(::shared_ptr paging_state); void set_skip_metadata(); flag_enum_set flags() const; uint32_t column_count() const; ::shared_ptr paging_state() const; const std::vector<::shared_ptr>& get_names() const; }; ::shared_ptr make_empty_metadata(); class prepared_metadata { public: enum class flag : uint8_t { GLOBAL_TABLES_SPEC = 0, }; using flag_enum = super_enum; using flag_enum_set = enum_set; private: flag_enum_set _flags; std::vector<::shared_ptr> _names; std::vector _partition_key_bind_indices; public: prepared_metadata(const std::vector<::shared_ptr>& names, const std::vector& partition_key_bind_indices); flag_enum_set flags() const; const std::vector<::shared_ptr>& names() const; const std::vector& partition_key_bind_indices() const; }; class result_set { public: ::shared_ptr _metadata; std::deque> _rows; public: result_set(std::vector<::shared_ptr> metadata_); result_set(::shared_ptr metadata); size_t size() const; bool empty() const; void add_row(std::vector row); void add_column_value(bytes_opt value); void reverse(); void trim(size_t limit); template void sort(const RowComparator& cmp) { std::sort(_rows.begin(), _rows.end(), std::ref(cmp)); } metadata& get_metadata(); const metadata& get_metadata() const; // Returns a range of rows. A row is a range of bytes_opt. const std::deque>& rows() const; }; }