/* * 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 . */ #include "query_options.hh" #include "version.hh" namespace cql3 { thread_local const query_options::specific_options query_options::specific_options::DEFAULT{-1, {}, {}, api::missing_timestamp}; thread_local query_options query_options::DEFAULT{db::consistency_level::ONE, infinite_timeout_config, std::nullopt, std::vector(), false, query_options::specific_options::DEFAULT, cql_serialization_format::latest()}; query_options::query_options(db::consistency_level consistency, const ::timeout_config& timeout_config, std::optional> names, std::vector values, std::vector value_views, bool skip_metadata, specific_options options, cql_serialization_format sf) : _consistency(consistency) , _timeout_config(timeout_config) , _names(std::move(names)) , _values(std::move(values)) , _value_views(value_views) , _skip_metadata(skip_metadata) , _options(std::move(options)) , _cql_serialization_format(sf) { } query_options::query_options(db::consistency_level consistency, const ::timeout_config& timeout_config, std::optional> names, std::vector values, bool skip_metadata, specific_options options, cql_serialization_format sf) : _consistency(consistency) , _timeout_config(timeout_config) , _names(std::move(names)) , _values(std::move(values)) , _value_views() , _skip_metadata(skip_metadata) , _options(std::move(options)) , _cql_serialization_format(sf) { fill_value_views(); } query_options::query_options(db::consistency_level consistency, const ::timeout_config& timeout_config, std::optional> names, std::vector value_views, bool skip_metadata, specific_options options, cql_serialization_format sf) : _consistency(consistency) , _timeout_config(timeout_config) , _names(std::move(names)) , _values() , _value_views(std::move(value_views)) , _skip_metadata(skip_metadata) , _options(std::move(options)) , _cql_serialization_format(sf) { } query_options::query_options(db::consistency_level cl, const ::timeout_config& timeout_config, std::vector values, specific_options options) : query_options( cl, timeout_config, {}, std::move(values), false, std::move(options), cql_serialization_format::latest() ) { } query_options::query_options(std::unique_ptr qo, ::shared_ptr paging_state) : query_options(qo->_consistency, qo->get_timeout_config(), std::move(qo->_names), std::move(qo->_values), std::move(qo->_value_views), qo->_skip_metadata, std::move(query_options::specific_options{qo->_options.page_size, paging_state, qo->_options.serial_consistency, qo->_options.timestamp}), qo->_cql_serialization_format) { } query_options::query_options(std::vector values) : query_options( db::consistency_level::ONE, infinite_timeout_config, std::move(values)) {} cql3::raw_value_view query_options::make_temporary(cql3::raw_value value) const { if (value) { auto value_view = *value; auto ptr = _temporaries.write_place_holder(value_view.size()); std::copy_n(value_view.data(), value_view.size(), ptr); return cql3::raw_value_view::make_value(fragmented_temporary_buffer::view(bytes_view{ptr, value_view.size()})); } return cql3::raw_value_view::make_null(); } bytes_view query_options::linearize(fragmented_temporary_buffer::view view) const { if (view.empty()) { return { }; } else if (std::next(view.begin()) == view.end()) { return *view.begin(); } else { auto ptr = _temporaries.write_place_holder(view.size_bytes()); auto dst = ptr; using boost::range::for_each; for_each(view, [&] (bytes_view bv) { dst = std::copy(bv.begin(), bv.end(), dst); }); return bytes_view(ptr, view.size_bytes()); } } void query_options::prepare(const std::vector<::shared_ptr>& specs) { if (!_names) { return; } auto& names = *_names; std::vector ordered_values; ordered_values.reserve(specs.size()); for (auto&& spec : specs) { auto& spec_name = spec->name->text(); for (size_t j = 0; j < names.size(); j++) { if (names[j] == spec_name) { ordered_values.emplace_back(_value_views[j]); break; } } } _value_views = std::move(ordered_values); } void query_options::fill_value_views() { for (auto&& value : _values) { _value_views.emplace_back(value.to_view()); } } }