rdblue commented on code in PR #7392: URL: https://github.com/apache/iceberg/pull/7392#discussion_r1224850251
########## core/src/main/java/org/apache/iceberg/avro/NameMappingWithAvroSchema.java: ########## @@ -0,0 +1,123 @@ +/* + * 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. + */ +package org.apache.iceberg.avro; + +import java.util.List; +import org.apache.avro.Schema; +import org.apache.iceberg.mapping.MappedField; +import org.apache.iceberg.mapping.MappedFields; +import org.apache.iceberg.relocated.com.google.common.base.Preconditions; +import org.apache.iceberg.relocated.com.google.common.collect.Lists; +import org.apache.iceberg.types.Type; +import org.apache.iceberg.types.Types; + +public class NameMappingWithAvroSchema extends AvroWithTypeByStructureVisitor<MappedFields> { + @Override + public MappedFields record( + Type struct, Schema record, List<String> names, List<MappedFields> fieldResults) { + List<MappedField> fields = Lists.newArrayListWithExpectedSize(fieldResults.size()); + + for (int i = 0; i < fieldResults.size(); i += 1) { + Types.NestedField field = struct.asStructType().fields().get(i); + MappedFields result = fieldResults.get(i); + fields.add(MappedField.of(field.fieldId(), field.name(), result)); + } + + return MappedFields.of(fields); + } + + @Override + public MappedFields union(Type type, Schema union, List<MappedFields> optionResults) { + if (AvroSchemaUtil.isOptionSchema(union)) { + for (int i = 0; i < optionResults.size(); i += 1) { + if (union.getTypes().get(i).getType() != Schema.Type.NULL) { + return optionResults.get(i); + } + } + } else { // Complex union + Preconditions.checkArgument( + type instanceof Types.StructType, + "Cannot visit invalid Iceberg type: %s for Avro complex union type: %s", + type, + union); + Types.StructType struct = (Types.StructType) type; + List<MappedField> fields = Lists.newArrayListWithExpectedSize(optionResults.size()); + int index = 0; + // Avro spec for union types states that unions may not contain more than one schema with the + // same type, except for the named types record, fixed and enum. For example, unions + // containing two array types or two map types are not permitted, but two types with different + // names are permitted. + // Therefore, for non-named types, use the Avro type toString() as the field mapping key. For + // named types, use the record name of the Avro type as the field mapping key. + for (Schema option : union.getTypes()) { + if (option.getType() != Schema.Type.NULL) { Review Comment: I think this should just skip the `null` in `optionResults` right? That seems easier. I don't see why this is looping over `union.getTypes` when we have predictable values coming in `optionResults` and `struct.fields()`. -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
