org.apache.iceberg.connect.data.SchemaUpdate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iceberg-kafka-connect Show documentation
Show all versions of iceberg-kafka-connect Show documentation
A table format for huge analytic datasets
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.iceberg.connect.data;
import java.util.Collection;
import java.util.Map;
import org.apache.iceberg.relocated.com.google.common.collect.Maps;
import org.apache.iceberg.types.Type;
import org.apache.iceberg.types.Type.PrimitiveType;
class SchemaUpdate {
static class Consumer {
private final Map addColumns = Maps.newHashMap();
private final Map updateTypes = Maps.newHashMap();
private final Map makeOptionals = Maps.newHashMap();
Collection addColumns() {
return addColumns.values();
}
Collection updateTypes() {
return updateTypes.values();
}
Collection makeOptionals() {
return makeOptionals.values();
}
boolean empty() {
return addColumns.isEmpty() && updateTypes.isEmpty() && makeOptionals.isEmpty();
}
void addColumn(String parentName, String name, Type type) {
AddColumn addCol = new AddColumn(parentName, name, type);
addColumns.put(addCol.key(), addCol);
}
void updateType(String name, PrimitiveType type) {
updateTypes.put(name, new UpdateType(name, type));
}
void makeOptional(String name) {
makeOptionals.put(name, new MakeOptional(name));
}
}
static class AddColumn extends SchemaUpdate {
private final String parentName;
private final String name;
private final Type type;
AddColumn(String parentName, String name, Type type) {
this.parentName = parentName;
this.name = name;
this.type = type;
}
String parentName() {
return parentName;
}
String name() {
return name;
}
String key() {
return parentName == null ? name : parentName + "." + name;
}
Type type() {
return type;
}
}
static class UpdateType extends SchemaUpdate {
private final String name;
private final PrimitiveType type;
UpdateType(String name, PrimitiveType type) {
this.name = name;
this.type = type;
}
String name() {
return name;
}
PrimitiveType type() {
return type;
}
}
static class MakeOptional extends SchemaUpdate {
private final String name;
MakeOptional(String name) {
this.name = name;
}
String name() {
return name;
}
}
}