anoopj commented on code in PR #17541: URL: https://github.com/apache/iceberg/pull/17541#discussion_r3999967212
########## core/src/main/java/org/apache/iceberg/RootManifestFile.java: ########## @@ -0,0 +1,133 @@ +/* + * 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; + +import java.nio.ByteBuffer; +import java.util.List; +import org.apache.iceberg.io.InputFile; +import org.apache.iceberg.relocated.com.google.common.base.Preconditions; +import org.apache.iceberg.util.ByteBuffers; + +/** A {@link ManifestFile} for the root manifest of an adaptive metadata tree. */ +class RootManifestFile implements ManifestFile { + private static final int FORMAT_VERSION = 4; + + private final InputFile file; + private final long snapshotId; + private final byte[] keyMetadata; + private Long length; + + RootManifestFile(InputFile file, long snapshotId, ByteBuffer keyMetadata) { + Preconditions.checkArgument(file != null, "Invalid file: null"); + this.file = file; + this.snapshotId = snapshotId; + this.keyMetadata = ByteBuffers.toByteArray(keyMetadata); + this.length = null; + } + + @Override + public String path() { + return file.location(); + } + + @Override + public long length() { + if (length == null) { + this.length = file.getLength(); + } + + return length; + } Review Comment: We are doing a lazy calculation of length here. I modeled it after `GenericManifestFile`. An alternative is to do it in the constructor, but that would incur a `HEAD` call in the constructor which is not great either -- 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]
