As requested in #22104, moved the files and fixed other includes and build system. Moved files: - combine.hh - collection_mutation.hh - collection_mutation.cc - converting_mutation_partition_applier.hh - converting_mutation_partition_applier.cc - counters.hh - counters.cc - timestamp.hh Fixes: #22104 This is a cleanup, no need to backport Closes scylladb/scylladb#25085
300 lines
12 KiB
C++
300 lines
12 KiB
C++
/*
|
|
* Copyright (C) 2014-present ScyllaDB
|
|
*
|
|
* Modified by ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: (LicenseRef-ScyllaDB-Source-Available-1.0 and Apache-2.0)
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <concepts>
|
|
#include <initializer_list>
|
|
#include "mutation/timestamp.hh"
|
|
#include "bytes.hh"
|
|
#include "db/consistency_level_type.hh"
|
|
#include "service/query_state.hh"
|
|
#include "service/pager/paging_state.hh"
|
|
#include "cql3/values.hh"
|
|
#include "utils/result.hh"
|
|
#include "utils/small_vector.hh"
|
|
#include "service/storage_proxy_fwd.hh"
|
|
|
|
namespace cql3 {
|
|
|
|
class cql_config;
|
|
extern const cql_config default_cql_config;
|
|
|
|
class column_specification;
|
|
|
|
using computed_function_values = std::unordered_map<uint8_t, bytes_opt>;
|
|
|
|
using unset_bind_variable_vector = utils::small_vector<bool, 16>;
|
|
|
|
// Matches a raw_value_view with an unset vector to support CQL binary protocol
|
|
// "unset" values.
|
|
struct raw_value_view_vector_with_unset {
|
|
std::vector<raw_value_view> values;
|
|
unset_bind_variable_vector unset;
|
|
|
|
raw_value_view_vector_with_unset(std::vector<raw_value_view> values_, unset_bind_variable_vector unset_) : values(std::move(values_)), unset(std::move(unset_)) {}
|
|
// Constructor with no unset support, for tests and internal queries
|
|
raw_value_view_vector_with_unset(std::vector<raw_value_view> values_) : values(std::move(values_)) {
|
|
unset.resize(values.size());
|
|
}
|
|
raw_value_view_vector_with_unset() = default;
|
|
};
|
|
|
|
// Matches a raw_value with an unset vector to support CQL binary protocol
|
|
// "unset" values.
|
|
struct raw_value_vector_with_unset {
|
|
std::vector<raw_value> values;
|
|
unset_bind_variable_vector unset;
|
|
|
|
raw_value_vector_with_unset(std::vector<raw_value> values_, unset_bind_variable_vector unset_) : values(std::move(values_)), unset(std::move(unset_)) {}
|
|
// Constructor with no unset support, for tests and internal queries
|
|
raw_value_vector_with_unset(std::vector<raw_value> values_) : values(std::move(values_)) {
|
|
unset.resize(values.size());
|
|
}
|
|
// Mostly for testing.
|
|
raw_value_vector_with_unset(std::initializer_list<raw_value> values_) : raw_value_vector_with_unset(std::vector(values_)) {}
|
|
raw_value_vector_with_unset() = default;
|
|
};
|
|
|
|
/**
|
|
* Options for a query.
|
|
*/
|
|
class query_options {
|
|
public:
|
|
// Options that are likely to not be present in most queries
|
|
struct specific_options final {
|
|
static thread_local const specific_options DEFAULT;
|
|
|
|
const int32_t page_size;
|
|
const lw_shared_ptr<service::pager::paging_state> state;
|
|
const std::optional<db::consistency_level> serial_consistency;
|
|
const api::timestamp_type timestamp;
|
|
const service::node_local_only node_local_only;
|
|
};
|
|
private:
|
|
const cql_config& _cql_config;
|
|
const db::consistency_level _consistency;
|
|
const std::optional<std::vector<std::string_view>> _names;
|
|
std::vector<cql3::raw_value> _values;
|
|
std::vector<cql3::raw_value_view> _value_views;
|
|
unset_bind_variable_vector _unset;
|
|
const bool _skip_metadata;
|
|
const specific_options _options;
|
|
std::optional<std::vector<query_options>> _batch_options;
|
|
// We must use the same microsecond-precision timestamp for
|
|
// all cells created by an LWT statement or when a statement
|
|
// has a user-provided timestamp. In case the statement or
|
|
// a BATCH appends many values to a list, each value should
|
|
// get a unique and monotonic timeuuid. This sequence is
|
|
// used to make all time-based UUIDs:
|
|
// 1) share the same microsecond,
|
|
// 2) monotonic
|
|
// 3) unique.
|
|
mutable int _list_append_seq = 0;
|
|
|
|
// Cached `function_call` evaluation results. `function_call` AST nodes
|
|
// are created for each function with side effects in a CQL query, i.e.
|
|
// non-deterministic functions (`uuid()`, `now()` and some others
|
|
// timeuuid-related).
|
|
//
|
|
// These nodes are evaluated either when a query itself is executed
|
|
// or query restrictions are computed (e.g. partition/clustering
|
|
// key ranges for LWT requests).
|
|
//
|
|
// We need to cache the calls since otherwise when handling a
|
|
// `bounce_to_shard` request for an LWT query, we can possibly enter an
|
|
// infinite bouncing loop (in case a function is used to calculate
|
|
// partition key ranges for a query), since the results can be different
|
|
// each time. Furthermore, we don't support bouncing more than one time.
|
|
// Refs: #8604 (https://github.com/scylladb/scylla/issues/8604)
|
|
//
|
|
// Using mutable because `query_state` is not available at
|
|
// evaluation sites and we only have a const reference to `query_options`.
|
|
mutable computed_function_values _cached_pk_fn_calls;
|
|
private:
|
|
// Batch constructor.
|
|
template <typename Values>
|
|
requires std::same_as<Values, raw_value_vector_with_unset> || std::same_as<Values, raw_value_view_vector_with_unset>
|
|
explicit query_options(query_options&& o, std::vector<Values> values_ranges);
|
|
|
|
public:
|
|
query_options(query_options&&) = default;
|
|
explicit query_options(const query_options&) = default;
|
|
|
|
explicit query_options(const cql_config& cfg,
|
|
db::consistency_level consistency,
|
|
std::optional<std::vector<std::string_view>> names,
|
|
raw_value_vector_with_unset values,
|
|
bool skip_metadata,
|
|
specific_options options
|
|
);
|
|
explicit query_options(const cql_config& cfg,
|
|
db::consistency_level consistency,
|
|
std::optional<std::vector<std::string_view>> names,
|
|
std::vector<cql3::raw_value> values,
|
|
std::vector<cql3::raw_value_view> value_views,
|
|
unset_bind_variable_vector unset,
|
|
bool skip_metadata,
|
|
specific_options options
|
|
);
|
|
explicit query_options(const cql_config& cfg,
|
|
db::consistency_level consistency,
|
|
std::optional<std::vector<std::string_view>> names,
|
|
raw_value_view_vector_with_unset value_views,
|
|
bool skip_metadata,
|
|
specific_options options
|
|
);
|
|
|
|
template <typename Values>
|
|
requires std::same_as<Values, raw_value_vector_with_unset> || std::same_as<Values, raw_value_view_vector_with_unset>
|
|
static query_options make_batch_options(query_options&& o, std::vector<Values> values_ranges) {
|
|
return query_options(std::move(o), std::move(values_ranges));
|
|
}
|
|
|
|
// It can't be const because of prepare()
|
|
static thread_local query_options DEFAULT;
|
|
|
|
// forInternalUse
|
|
explicit query_options(raw_value_vector_with_unset values);
|
|
explicit query_options(db::consistency_level, raw_value_vector_with_unset values, specific_options options = specific_options::DEFAULT);
|
|
explicit query_options(std::unique_ptr<query_options>, lw_shared_ptr<service::pager::paging_state> paging_state);
|
|
explicit query_options(std::unique_ptr<query_options>, lw_shared_ptr<service::pager::paging_state> paging_state, int32_t page_size);
|
|
|
|
db::consistency_level get_consistency() const {
|
|
return _consistency;
|
|
}
|
|
|
|
cql3::raw_value_view get_value_at(size_t idx) const {
|
|
if (_unset.at(idx)) {
|
|
throw exceptions::invalid_request_exception(fmt::format("Unexpected unset value for bind variable {}", idx));
|
|
}
|
|
return _value_views[idx];
|
|
}
|
|
|
|
bool is_unset(size_t idx) const {
|
|
return _unset.at(idx);
|
|
}
|
|
|
|
size_t get_values_count() const {
|
|
return _value_views.size();
|
|
}
|
|
|
|
bool skip_metadata() const {
|
|
return _skip_metadata;
|
|
}
|
|
|
|
int32_t get_page_size() const {
|
|
return get_specific_options().page_size;
|
|
}
|
|
|
|
/** The paging state for this query, or null if not relevant. */
|
|
lw_shared_ptr<service::pager::paging_state> get_paging_state() const {
|
|
return get_specific_options().state;
|
|
}
|
|
|
|
/** Serial consistency for conditional updates. */
|
|
std::optional<db::consistency_level> get_serial_consistency() const {
|
|
return get_specific_options().serial_consistency;
|
|
}
|
|
|
|
/** Return serial consistency for conditional updates. Throws if the consistency is not set. */
|
|
utils::result_with_exception_ptr<db::consistency_level> check_serial_consistency() const;
|
|
|
|
api::timestamp_type get_timestamp(service::query_state& state) const {
|
|
auto tstamp = get_specific_options().timestamp;
|
|
return tstamp != api::missing_timestamp ? tstamp : state.get_timestamp();
|
|
}
|
|
|
|
const query_options::specific_options& get_specific_options() const {
|
|
return _options;
|
|
}
|
|
|
|
// Mainly for the sake of BatchQueryOptions
|
|
const query_options& for_statement(size_t i) const {
|
|
if (!_batch_options) {
|
|
// No per-statement options supplied, so use the "global" options
|
|
return *this;
|
|
}
|
|
return _batch_options->at(i);
|
|
}
|
|
|
|
|
|
const std::optional<std::vector<std::string_view>>& get_names() const noexcept {
|
|
return _names;
|
|
}
|
|
|
|
const std::vector<cql3::raw_value_view>& get_values() const noexcept {
|
|
return _value_views;
|
|
}
|
|
|
|
const cql_config& get_cql_config() const {
|
|
return _cql_config;
|
|
}
|
|
|
|
// Generate a next unique list sequence for list append, e.g.
|
|
// a = a + [val1, val2, ...]
|
|
int next_list_append_seq() const {
|
|
return _list_append_seq++;
|
|
}
|
|
|
|
// To preserve prepend monotonicity within a batch, each next
|
|
// value must get a timestamp that's smaller than the previous one:
|
|
// BEGIN BATCH
|
|
// UPDATE t SET l = [1, 2] + l WHERE pk = 0;
|
|
// UPDATE t SET l = [3] + l WHERE pk = 0;
|
|
// UPDATE t SET l = [4] + l WHERE pk = 0;
|
|
// APPLY BATCH
|
|
// SELECT l FROM t WHERE pk = 0;
|
|
// l
|
|
// ------------
|
|
// [4, 3, 1, 2]
|
|
//
|
|
// This function reserves the given number of prepend entries
|
|
// and returns an id for the first prepended entry (it
|
|
// got to be the smallest one, to preserve the order of
|
|
// a multi-value append).
|
|
//
|
|
// @retval sequence number of the first entry of a multi-value
|
|
// append. To get the next value, add 1.
|
|
int next_list_prepend_seq(int num_entries, int max_entries) const {
|
|
if (_list_append_seq + num_entries < max_entries) {
|
|
_list_append_seq += num_entries;
|
|
return max_entries - _list_append_seq;
|
|
}
|
|
return max_entries;
|
|
}
|
|
|
|
void prepare(const std::vector<lw_shared_ptr<column_specification>>& specs);
|
|
|
|
void cache_pk_function_call(computed_function_values::key_type id, computed_function_values::mapped_type value) const;
|
|
const computed_function_values& cached_pk_function_calls() const;
|
|
computed_function_values&& take_cached_pk_function_calls();
|
|
void set_cached_pk_function_calls(computed_function_values vals);
|
|
computed_function_values::mapped_type* find_cached_pk_function_call(computed_function_values::key_type id) const;
|
|
|
|
private:
|
|
void fill_value_views();
|
|
};
|
|
|
|
template <typename Values>
|
|
requires std::same_as<Values, raw_value_vector_with_unset> || std::same_as<Values, raw_value_view_vector_with_unset>
|
|
query_options::query_options(query_options&& o, std::vector<Values> values_ranges)
|
|
: query_options(std::move(o))
|
|
{
|
|
std::vector<query_options> tmp;
|
|
tmp.reserve(values_ranges.size());
|
|
std::transform(values_ranges.begin(), values_ranges.end(), std::back_inserter(tmp), [this](auto& values_range) {
|
|
return query_options(_cql_config, _consistency, {}, std::move(values_range), _skip_metadata, _options);
|
|
});
|
|
_batch_options = std::move(tmp);
|
|
}
|
|
|
|
}
|