org.apache.parquet.hadoop.ColumnConfigParser Maven / Gradle / Ivy
/*
* 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.parquet.hadoop;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.function.BiConsumer;
import java.util.function.Function;
import org.apache.hadoop.conf.Configuration;
/**
* Parses the specified key-values in the format of root.key#column.path from a {@link Configuration} object.
*/
class ColumnConfigParser {
private static class ConfigHelper {
private final String prefix;
private final Function function;
private final BiConsumer consumer;
public ConfigHelper(String prefix, Function function, BiConsumer consumer) {
this.prefix = prefix;
this.function = function;
this.consumer = consumer;
}
public void processKey(String key) {
if (key.startsWith(prefix)) {
String columnPath = key.substring(prefix.length());
T value = function.apply(key);
consumer.accept(columnPath, value);
}
}
}
private final List> helpers = new ArrayList<>();
public ColumnConfigParser withColumnConfig(String rootKey, Function function,
BiConsumer consumer) {
helpers.add(new ConfigHelper(rootKey + '#', function, consumer));
return this;
}
public void parseConfig(Configuration conf) {
for (Map.Entry entry : conf) {
for (ConfigHelper> helper : helpers) {
// We retrieve the value from function instead of parsing from the string here to use the exact implementations
// in Configuration
helper.processKey(entry.getKey());
}
}
}
}