danielcweeks commented on code in PR #16174: URL: https://github.com/apache/iceberg/pull/16174#discussion_r3169794277
########## core/src/main/java/org/apache/iceberg/RelativePathUtil.java: ########## @@ -0,0 +1,83 @@ +/* + * 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 org.apache.iceberg.relocated.com.google.common.base.Preconditions; +import org.apache.iceberg.util.LocationUtil; + +class RelativePathUtil { + private RelativePathUtil() {} + + /** + * Returns true if the path has a URI scheme (e.g. {@code s3://}, {@code file:/}, {@code + * hdfs://}). Per RFC 3986, a scheme ends at the first {@code :} and cannot contain {@code /}, so + * a colon that appears after a slash is not a scheme delimiter. + */ + static boolean isAbsolute(String path) { + if (path == null) { + return false; + } + + int colonIndex = path.indexOf(':'); + if (colonIndex <= 0) { + return false; + } + + int slashIndex = path.indexOf('/'); + return slashIndex == -1 || slashIndex > colonIndex; + } + + /** + * Resolves a relative path against a table location. Relative paths (produced by {@link + * #relativize}) start with {@code /} and are resolved by direct concatenation with the table + * location. Absolute paths are returned as-is. + * + * <p>Resolution only applies when the table location has a URI scheme. Paths are never resolved + * against bare local paths. + */ + static String resolve(String path, String tableLocation) { + if (path == null || isAbsolute(path) || !isAbsolute(tableLocation)) { Review Comment: `!isAbsolute(tableLocation)` check doesn't make sense. By definition, the table location must be absolute or omitted, so this can only return false. At this point, the table location should have been provided (either from metadata or from the catalog). We should assert that it's not null, but probably not check at this point that it is a valid uri (I feel we should assume that check has already been performed). -- 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]
