mapleFU commented on code in PR #102: URL: https://github.com/apache/iceberg-cpp/pull/102#discussion_r2099863660
########## src/iceberg/schema_util.h: ########## @@ -0,0 +1,97 @@ +/* + * 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. + */ + +#pragma once + +#include <any> +#include <memory> +#include <string> +#include <variant> +#include <vector> + +#include "iceberg/iceberg_export.h" +#include "iceberg/result.h" +#include "iceberg/type_fwd.h" + +namespace iceberg { + +/// \brief A field schema partner to carry projection information. +struct ICEBERG_EXPORT FieldProjection { + /// \brief How the field is projected. + enum class Kind { + /// \brief The field is projected from the source with possible conversion for + /// supported schema evolution. + kProjected, + /// \brief Metadata column whose value is generated on demand. + kMetadata, + /// \brief The field is a constant value (e.g. partition field value) + kConstant, + /// \brief The field is missing in the source and should be filled with default value. + kDefault, + /// \brief An optional field that is not present in the source. + kNull, + }; + + /// \brief The field index in the source schema on the same nesting level when + /// `kind` is `kProjected`. + using SourceFieldIndex = size_t; + /// \brief A literal value used when `kind` is `kConstant` or `kDefault`. + /// TODO(gangwu): replace it with a specifically defined literal type + using Literal = std::any; + /// \brief A variant to indicate how to set the value of the field. + using From = std::variant<std::monostate, SourceFieldIndex, Literal>; Review Comment: What does monostate means? From un-exists field? ########## src/iceberg/schema_util.cc: ########## @@ -0,0 +1,213 @@ +/* + * 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. + */ + +#include "iceberg/schema_util.h" + +#include <format> +#include <map> +#include <string_view> +#include <unordered_map> + +#include "iceberg/metadata_columns.h" +#include "iceberg/schema.h" +#include "iceberg/util/checked_cast.h" +#include "iceberg/util/formatter_internal.h" +#include "iceberg/util/macros.h" + +namespace iceberg { + +namespace { + +Status ValidateSchemaEvolution(const Type& expected_type, const Type& source_type) { Review Comment: this lgtm, besides, I found iceberg v3 has more rules, https://iceberg.apache.org/spec/ : 1. unknown -> any types 2. date -> timestamp ########## src/iceberg/schema_util.cc: ########## @@ -0,0 +1,213 @@ +/* + * 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. + */ + +#include "iceberg/schema_util.h" + +#include <format> +#include <map> +#include <string_view> +#include <unordered_map> + +#include "iceberg/metadata_columns.h" +#include "iceberg/schema.h" +#include "iceberg/util/checked_cast.h" +#include "iceberg/util/formatter_internal.h" +#include "iceberg/util/macros.h" + +namespace iceberg { + +namespace { + +Status ValidateSchemaEvolution(const Type& expected_type, const Type& source_type) { + if (expected_type.is_nested()) { + // Nested type requires identical type ids. + if (source_type.type_id() != expected_type.type_id()) { + return NotSupported("Cannot read {} from {}", expected_type, source_type); + } + return {}; + } + + // Short cut for same primitive type. + if (expected_type == source_type) { + return {}; + } + + switch (expected_type.type_id()) { + case TypeId::kLong: { + if (source_type.type_id() == TypeId::kInt) { + return {}; + } + } break; + case TypeId::kDouble: { + if (source_type.type_id() == TypeId::kFloat) { + return {}; + } + } break; + case TypeId::kDecimal: { + if (source_type.type_id() == TypeId::kDecimal) { + const auto& expected_decimal = + internal::checked_cast<const DecimalType&>(expected_type); + const auto& source_decimal = + internal::checked_cast<const DecimalType&>(source_type); + if (expected_decimal.precision() >= source_decimal.precision() && + expected_decimal.scale() == source_decimal.scale()) { + return {}; + } + } + } break; + default: + break; + } + return NotSupported("Cannot read {} from {}", expected_type, source_type); +} + +// Fix `from` field of `FieldProjection` to use pruned field index. +void PruneFieldProjection(FieldProjection& field_projection) { + std::map<size_t, size_t> local_index_to_pruned_index; + for (const auto& child_projection : field_projection.children) { + if (child_projection.kind == FieldProjection::Kind::kProjected) { + local_index_to_pruned_index.emplace(std::get<1>(child_projection.from), 0); + } + } + for (size_t pruned_index = 0; auto& [_, value] : local_index_to_pruned_index) { + value = pruned_index++; + } + for (auto& child_projection : field_projection.children) { + if (child_projection.kind == FieldProjection::Kind::kProjected) { + child_projection.from = + local_index_to_pruned_index.at(std::get<1>(child_projection.from)); + } + } +} + +Result<FieldProjection> ProjectNested(const Type& expected_type, const Type& source_type, + bool prune_source) { + if (!expected_type.is_nested()) { + return InvalidSchema("Expected a nested type, but got {}", expected_type); + } + if (expected_type.type_id() != source_type.type_id()) { + return InvalidSchema("Expected {}, but got {}", expected_type, source_type); + } + + const auto& expected_fields = + internal::checked_cast<const NestedType&>(expected_type).fields(); + const auto& source_fields = + internal::checked_cast<const NestedType&>(source_type).fields(); + + // Build a map from field id to source field info including its local offset in + // the current nesting level. + struct SourceFieldInfo { + size_t local_index; + const SchemaField* field; + }; + std::unordered_map<int32_t, SourceFieldInfo> source_field_map; + source_field_map.reserve(source_fields.size()); + for (size_t i = 0; i < source_fields.size(); ++i) { + const auto& field = source_fields[i]; + if (const auto [iter, inserted] = source_field_map.emplace( + std::piecewise_construct, std::forward_as_tuple(field.field_id()), + std::forward_as_tuple(i, &field)); + !inserted) [[unlikely]] { + return InvalidSchema("Duplicate field id found, prev: {}, curr: {}", + *iter->second.field, field); + } + } + + FieldProjection result; + result.children.reserve(expected_fields.size()); + + for (const auto& expected_field : expected_fields) { + int32_t field_id = expected_field.field_id(); + FieldProjection child_projection; + + if (auto iter = source_field_map.find(field_id); iter != source_field_map.cend()) { + if (expected_field.type()->is_nested()) { + ICEBERG_ASSIGN_OR_RAISE(auto nested_projection, + ProjectNested(*expected_field.type(), + *iter->second.field->type(), prune_source)); + child_projection.children.emplace_back(std::move(nested_projection)); + } else { + ICEBERG_RETURN_UNEXPECTED( + ValidateSchemaEvolution(*expected_field.type(), *iter->second.field->type())); + } + // If `prune_source` is false, all fields will be read so the local index + // is exactly the position to read data. Otherwise, the local index is computed + // by pruning all non-projected fields + child_projection.from = iter->second.local_index; + child_projection.kind = FieldProjection::Kind::kProjected; + } else if (MetadataColumns::IsMetadataColumn(field_id)) { + child_projection.kind = FieldProjection::Kind::kMetadata; Review Comment: Should this be checked before `source_field_map.find(field_id)`? ########## src/iceberg/schema_util.h: ########## @@ -0,0 +1,97 @@ +/* + * 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. + */ + +#pragma once + +#include <any> +#include <memory> +#include <string> +#include <variant> +#include <vector> + +#include "iceberg/iceberg_export.h" +#include "iceberg/result.h" +#include "iceberg/type_fwd.h" + +namespace iceberg { + +/// \brief A field schema partner to carry projection information. +struct ICEBERG_EXPORT FieldProjection { + /// \brief How the field is projected. + enum class Kind { + /// \brief The field is projected from the source with possible conversion for + /// supported schema evolution. + kProjected, + /// \brief Metadata column whose value is generated on demand. + kMetadata, + /// \brief The field is a constant value (e.g. partition field value) + kConstant, + /// \brief The field is missing in the source and should be filled with default value. + kDefault, Review Comment: So this should be **not null**? Or it can be null like `kNull`? ########## src/iceberg/schema_util.cc: ########## @@ -0,0 +1,213 @@ +/* + * 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. + */ + +#include "iceberg/schema_util.h" + +#include <format> +#include <map> +#include <string_view> +#include <unordered_map> + +#include "iceberg/metadata_columns.h" +#include "iceberg/schema.h" +#include "iceberg/util/checked_cast.h" +#include "iceberg/util/formatter_internal.h" +#include "iceberg/util/macros.h" + +namespace iceberg { + +namespace { + +Status ValidateSchemaEvolution(const Type& expected_type, const Type& source_type) { + if (expected_type.is_nested()) { + // Nested type requires identical type ids. + if (source_type.type_id() != expected_type.type_id()) { + return NotSupported("Cannot read {} from {}", expected_type, source_type); Review Comment: should we check `struct<a:int, b: int>` and `struct<a:int, c: int>` recursively for map/array/struct? Looks like the caller would not even pass nested_type to this struct ########## src/iceberg/schema_util.h: ########## @@ -0,0 +1,97 @@ +/* + * 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. + */ + +#pragma once + +#include <any> +#include <memory> +#include <string> +#include <variant> +#include <vector> + +#include "iceberg/iceberg_export.h" +#include "iceberg/result.h" +#include "iceberg/type_fwd.h" + +namespace iceberg { + +/// \brief A field schema partner to carry projection information. +struct ICEBERG_EXPORT FieldProjection { + /// \brief How the field is projected. + enum class Kind { + /// \brief The field is projected from the source with possible conversion for + /// supported schema evolution. + kProjected, + /// \brief Metadata column whose value is generated on demand. + kMetadata, + /// \brief The field is a constant value (e.g. partition field value) + kConstant, + /// \brief The field is missing in the source and should be filled with default value. + kDefault, + /// \brief An optional field that is not present in the source. + kNull, + }; + + /// \brief The field index in the source schema on the same nesting level when + /// `kind` is `kProjected`. + using SourceFieldIndex = size_t; + /// \brief A literal value used when `kind` is `kConstant` or `kDefault`. + /// TODO(gangwu): replace it with a specifically defined literal type + using Literal = std::any; + /// \brief A variant to indicate how to set the value of the field. + using From = std::variant<std::monostate, SourceFieldIndex, Literal>; + + /// \brief Format-specific attributes for the field. + /// For example, for Parquet it might store column id and level info of the projected + /// leaf field. + struct ExtraAttributes { + virtual ~ExtraAttributes() = default; + }; + + /// \brief The kind of projection of the field it partners with. + Kind kind; + /// \brief The source to set the value of the field. + From from; + /// \brief The children of the field if it is a nested field. + std::vector<FieldProjection> children; + /// \brief Format-specific attributes for the field. + std::shared_ptr<ExtraAttributes> extra; +}; + +/// \brief A schema partner to carry projection information. +struct ICEBERG_EXPORT SchemaProjection { + std::vector<FieldProjection> fields; +}; + +/// \brief Project the expected schema on top of the source schema. +/// +/// \param expected_schema The expected schema. +/// \param source_schema The source schema. +/// \param prune_source Whether to prune the source schema. If true, the source +/// schema will be pruned to match the expected schema. Review Comment: Can we explain it more specifically, what would `prune_source` affect `SchemaProjection` result -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org