Files
scylladb/index/secondary_index.cc
Kefu Chai f916286b25 index: do not include unused headers
these unused includes were identified by clangd. see
https://clangd.llvm.org/guides/include-cleaner#unused-include-warning
for more details on the "Unused include" warning.

Signed-off-by: Kefu Chai <kefu.chai@scylladb.com>

Closes scylladb/scylladb#16892
2024-01-21 16:52:25 +02:00

162 lines
6.3 KiB
C++

/*
* Copyright (C) 2015-present ScyllaDB
*
* Modified by ScyllaDB
*/
/*
* SPDX-License-Identifier: (AGPL-3.0-or-later and Apache-2.0)
*/
#include "secondary_index.hh"
#include "index/target_parser.hh"
#include "cql3/statements/index_target.hh"
#include <boost/regex.hpp>
#include <boost/range/algorithm/find_if.hpp>
#include <boost/algorithm/string/join.hpp>
#include <boost/range/adaptors.hpp>
#include <seastar/util/log.hh>
#include "exceptions/exceptions.hh"
#include "utils/rjson.hh"
const sstring db::index::secondary_index::custom_index_option_name = "class_name";
namespace secondary_index {
static constexpr auto PK_TARGET_KEY = "pk";
static constexpr auto CK_TARGET_KEY = "ck";
static const boost::regex target_regex("^(keys|entries|values|full)\\((.+)\\)$");
target_parser::target_info target_parser::parse(schema_ptr schema, const index_metadata& im) {
sstring target = im.options().at(cql3::statements::index_target::target_option_name);
try {
return parse(schema, target);
} catch (...) {
throw exceptions::configuration_exception(format("Unable to parse targets for index {} ({}): {}", im.name(), target, std::current_exception()));
}
}
target_parser::target_info target_parser::parse(schema_ptr schema, const sstring& target) {
using namespace cql3::statements;
target_info info;
auto get_column = [&schema] (const sstring& name) -> const column_definition* {
const column_definition* cdef = schema->get_column_definition(utf8_type->decompose(name));
if (!cdef) {
throw std::runtime_error(format("Column {} not found", name));
}
return cdef;
};
boost::cmatch match;
if (boost::regex_match(target.data(), match, target_regex)) {
info.type = index_target::from_sstring(match[1].str());
info.pk_columns.push_back(get_column(index_target::unescape_target_column(match[2].str())));
return info;
}
std::optional<rjson::value> json_value = rjson::try_parse(target);
if (json_value && json_value->IsObject()) {
rjson::value* pk = rjson::find(*json_value, PK_TARGET_KEY);
rjson::value* ck = rjson::find(*json_value, CK_TARGET_KEY);
if (!pk || !ck || !pk->IsArray() || !ck->IsArray()) {
throw std::runtime_error("pk and ck fields of JSON definition must be arrays");
}
for (const rjson::value& v : pk->GetArray()) {
info.pk_columns.push_back(get_column(sstring(rjson::to_string_view(v))));
}
for (const rjson::value& v : ck->GetArray()) {
info.ck_columns.push_back(get_column(sstring(rjson::to_string_view(v))));
}
info.type = index_target::target_type::regular_values;
return info;
}
// Fallback and treat the whole string as a single target
return target_info{{get_column(index_target::unescape_target_column(target))}, {}, index_target::target_type::regular_values};
}
bool target_parser::is_local(sstring target_string) {
std::optional<rjson::value> json_value = rjson::try_parse(target_string);
if (!json_value || !json_value->IsObject()) {
return false;
}
rjson::value* pk = rjson::find(*json_value, PK_TARGET_KEY);
rjson::value* ck = rjson::find(*json_value, CK_TARGET_KEY);
return pk && ck && pk->IsArray() && ck->IsArray() && !pk->Empty() && !ck->Empty();
}
sstring target_parser::get_target_column_name_from_string(const sstring& targets) {
std::optional<rjson::value> json_value = rjson::try_parse(targets);
if (!json_value || !json_value->IsObject()) {
return targets;
}
rjson::value* pk = rjson::find(*json_value, "pk");
rjson::value* ck = rjson::find(*json_value, "ck");
if (ck && ck->IsArray() && !ck->Empty()) {
return sstring(rjson::to_string_view(ck->GetArray()[0]));
}
if (pk && pk->IsArray() && !pk->Empty()) {
return sstring(rjson::to_string_view(pk->GetArray()[0]));
}
return targets;
}
sstring target_parser::serialize_targets(const std::vector<::shared_ptr<cql3::statements::index_target>>& targets) {
using cql3::statements::index_target;
if (targets.size() == 1 && std::holds_alternative<index_target::single_column>(targets.front()->value)) {
auto& target = targets.front();
auto single_target = std::get<index_target::single_column>(target->value);
switch (target->type) {
case index_target::target_type::regular_values: [[fallthrough]];
case index_target::target_type::full:
return index_target::escape_target_column(*single_target);
case index_target::target_type::collection_values: [[fallthrough]];
case index_target::target_type::keys: [[fallthrough]];
case index_target::target_type::keys_and_values:
return cql3::statements::to_sstring(target->type) + "(" + index_target::escape_target_column(*single_target) + ")";
}
}
// In more complex cases, serialize the targets as JSON. In this case we
// don't need to use the escape_target_column() function, as JSON can
// already escape whatever characters may confuse it.
struct as_json_visitor {
rjson::value operator()(const index_target::multiple_columns& columns) const {
rjson::value json_array = rjson::empty_array();
for (const auto& column : columns) {
rjson::push_back(json_array, rjson::from_string(column->text()));
}
return json_array;
}
rjson::value operator()(const index_target::single_column& column) const {
return rjson::from_string(column->text());
}
};
rjson::value json_map = rjson::empty_object();
rjson::value pk_json = std::visit(as_json_visitor(), targets.front()->value);
if (!pk_json.IsArray()) {
rjson::value pk_array = rjson::empty_array();
rjson::push_back(pk_array, std::move(pk_json));
pk_json = std::move(pk_array);
}
rjson::add_with_string_name(json_map, PK_TARGET_KEY, std::move(pk_json));
if (targets.size() > 1) {
rjson::value ck_json = rjson::empty_array();
for (unsigned i = 1; i < targets.size(); ++i) {
rjson::push_back(ck_json, std::visit(as_json_visitor(), targets.at(i)->value));
}
rjson::add_with_string_name(json_map, CK_TARGET_KEY, std::move(ck_json));
}
return rjson::print(json_map);
}
}