All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.hudi.keygen.PartitionPathFormatterBase Maven / Gradle / Ivy

The newest version!
/*
 * 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.hudi.keygen;

import org.apache.spark.unsafe.types.UTF8String;

import java.util.List;
import java.util.function.Supplier;

import static org.apache.hudi.common.util.ValidationUtils.checkState;
import static org.apache.hudi.keygen.KeyGenUtils.DEFAULT_PARTITION_PATH_SEPARATOR;

/**
 * Partition path formatter allows to efficiently combine partition paths into
 * generic Java {@link String} (as well as engine-specific containers like
 * {@code UTF8String} for ex), while being flexible in terms of
 *
 * 
    *
  • Allowing to configure how to handle empty values
  • *
  • Allowing to encode individual values
  • *
  • Supporting Hive-style partitioning ({@code column=value})
  • *
* * @param string type */ public abstract class PartitionPathFormatterBase { private final Supplier> stringBuilderFactory; private final boolean useHiveStylePartitioning; private final boolean useEncoding; PartitionPathFormatterBase(Supplier> stringBuilderFactory, boolean useHiveStylePartitioning, boolean useEncoding) { this.stringBuilderFactory = stringBuilderFactory; this.useHiveStylePartitioning = useHiveStylePartitioning; this.useEncoding = useEncoding; } public final S combine(List partitionPathFields, Object... partitionPathParts) { checkState(partitionPathParts.length == partitionPathFields.size()); // Avoid creating [[StringBuilder]] in case there's just one partition-path part, // and Hive-style of partitioning is not required if (!useHiveStylePartitioning && partitionPathParts.length == 1) { return tryEncode(handleEmpty(toString(partitionPathParts[0]))); } StringBuilder sb = stringBuilderFactory.get(); for (int i = 0; i < partitionPathParts.length; ++i) { S partitionPathPartStr = tryEncode(handleEmpty(toString(partitionPathParts[i]))); if (useHiveStylePartitioning) { sb.appendJava(partitionPathFields.get(i)) .appendJava("=") .append(partitionPathPartStr); } else { sb.append(partitionPathPartStr); } if (i < partitionPathParts.length - 1) { sb.appendJava(DEFAULT_PARTITION_PATH_SEPARATOR); } } return sb.build(); } private S tryEncode(S partitionPathPart) { return useEncoding ? encode(partitionPathPart) : partitionPathPart; } protected abstract S toString(Object o); protected abstract S encode(S partitionPathPart); protected abstract S handleEmpty(S partitionPathPart); /** * This is a generic interface closing the gap and unifying the {@link java.lang.StringBuilder} with * {@link org.apache.hudi.unsafe.UTF8StringBuilder} implementations, allowing us to avoid code-duplication by performing * most of the key-generation in a generic and unified way * * @param target string type this builder is producing (could either be native {@link String} * or alternatively {@link UTF8String} */ interface StringBuilder { default StringBuilder append(S s) { return appendJava(s.toString()); } StringBuilder appendJava(String s); S build(); } }