blob: 7c276ffcce02f1fb1e1bd92326cea9b3914614a6 [file] [log] [blame]
/*
* Copyright 2024-present Alibaba Inc.
*
* Licensed 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.
*/
#pragma once
#include <cstdint>
#include <memory>
#include <string>
#include <vector>
#include "arrow/type.h"
#include "fmt/format.h"
#include "paimon/common/utils/field_type_utils.h"
#include "paimon/defs.h"
#include "paimon/predicate/compound_predicate.h"
#include "paimon/predicate/leaf_predicate.h"
#include "paimon/predicate/literal.h"
#include "paimon/predicate/predicate.h"
#include "paimon/status.h"
namespace paimon {
class PredicateValidator {
public:
PredicateValidator() = delete;
~PredicateValidator() = delete;
static Status ValidatePredicateWithLiterals(const std::shared_ptr<Predicate>& predicate) {
if (auto leaf_predicate = std::dynamic_pointer_cast<LeafPredicate>(predicate)) {
const auto& field_name = leaf_predicate->FieldName();
// check field type (predicate vs. literals)
auto field_type = leaf_predicate->GetFieldType();
const auto& literals = leaf_predicate->Literals();
for (const auto& literal : literals) {
if (literal.IsNull()) {
return Status::Invalid(fmt::format(
"literal cannot be null in predicate, field name {}", field_name));
}
if (field_type != literal.GetType()) {
return Status::Invalid(fmt::format(
"field {} has field type {} in literal, mismatch field type {} "
"in predicate",
field_name, FieldTypeUtils::FieldTypeToString(literal.GetType()),
FieldTypeUtils::FieldTypeToString(field_type)));
}
}
} else if (auto compound_predicate =
std::dynamic_pointer_cast<CompoundPredicate>(predicate)) {
const auto& children = compound_predicate->Children();
for (const auto& child : children) {
PAIMON_RETURN_NOT_OK(ValidatePredicateWithLiterals(child));
}
}
return Status::OK();
}
static Status ValidatePredicateWithSchema(const arrow::Schema& schema,
const std::shared_ptr<Predicate>& predicate,
bool validate_field_idx) {
if (auto leaf_predicate = std::dynamic_pointer_cast<LeafPredicate>(predicate)) {
const auto& field_name = leaf_predicate->FieldName();
// check field index
int32_t schema_field_idx = schema.GetFieldIndex(field_name);
if (schema_field_idx == -1) {
return Status::Invalid(
fmt::format("field {} does not exist in schema", field_name));
}
if (validate_field_idx && schema_field_idx != leaf_predicate->FieldIndex()) {
return Status::Invalid(
fmt::format("field {} has field idx {} in input schema, mismatch field idx "
"{} in predicate",
field_name, schema_field_idx, leaf_predicate->FieldIndex()));
}
// check field type (schema vs. predicate)
PAIMON_RETURN_NOT_OK(ValidateDataTypeWithSchemaAndPredicate(
*schema.field(schema_field_idx)->type(), leaf_predicate->GetFieldType()));
} else if (auto compound_predicate =
std::dynamic_pointer_cast<CompoundPredicate>(predicate)) {
const auto& children = compound_predicate->Children();
for (const auto& child : children) {
PAIMON_RETURN_NOT_OK(
ValidatePredicateWithSchema(schema, child, validate_field_idx));
}
}
return Status::OK();
}
private:
static Status ValidateDataTypeWithSchemaAndPredicate(const arrow::DataType& schema_type,
const FieldType& field_type) {
const auto kind = schema_type.id();
switch (kind) {
case arrow::Type::type::BOOL: {
if (field_type == FieldType::BOOLEAN) {
return Status::OK();
}
break;
}
case arrow::Type::type::INT8: {
if (field_type == FieldType::TINYINT) {
return Status::OK();
}
break;
}
case arrow::Type::type::INT16: {
if (field_type == FieldType::SMALLINT) {
return Status::OK();
}
break;
}
case arrow::Type::type::INT32: {
if (field_type == FieldType::INT) {
return Status::OK();
}
break;
}
case arrow::Type::type::INT64: {
if (field_type == FieldType::BIGINT) {
return Status::OK();
}
break;
}
case arrow::Type::type::FLOAT: {
if (field_type == FieldType::FLOAT) {
return Status::OK();
}
break;
}
case arrow::Type::type::DOUBLE: {
if (field_type == FieldType::DOUBLE) {
return Status::OK();
}
break;
}
case arrow::Type::type::STRING: {
if (field_type == FieldType::STRING) {
return Status::OK();
}
break;
}
case arrow::Type::type::BINARY: {
if (field_type == FieldType::BINARY) {
return Status::OK();
}
break;
}
case arrow::Type::type::DATE32: {
if (field_type == FieldType::DATE) {
return Status::OK();
}
break;
}
case arrow::Type::type::DECIMAL128:
if (field_type == FieldType::DECIMAL) {
return Status::OK();
}
break;
case arrow::Type::type::TIMESTAMP: {
if (field_type == FieldType::TIMESTAMP) {
return Status::OK();
}
break;
}
default: {
return Status::Invalid(
fmt::format("Invalid type {} for predicate", schema_type.ToString()));
}
}
return Status::Invalid(fmt::format("schema type {} mismatches predicate field type {}",
schema_type.ToString(),
FieldTypeUtils::FieldTypeToString(field_type)));
}
};
} // namespace paimon