blob: 4cb41263152d9463080a8cc86cb15200062b6f6b [file] [log] [blame]
/*
* 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.data;
import org.apache.avro.generic.GenericData;
import org.apache.iceberg.types.Type;
import org.apache.iceberg.types.Types;
import org.apache.iceberg.util.DateTimeUtil;
public class IdentityPartitionConverters {
private IdentityPartitionConverters() {}
/** Conversions from internal representations to Iceberg generic values. */
public static Object convertConstant(Type type, Object value) {
if (value == null) {
return null;
}
switch (type.typeId()) {
case STRING:
return value.toString();
case TIME:
return DateTimeUtil.timeFromMicros((Long) value);
case DATE:
return DateTimeUtil.dateFromDays((Integer) value);
case TIMESTAMP:
if (((Types.TimestampType) type).shouldAdjustToUTC()) {
return DateTimeUtil.timestamptzFromMicros((Long) value);
} else {
return DateTimeUtil.timestampFromMicros((Long) value);
}
case FIXED:
if (value instanceof GenericData.Fixed) {
return ((GenericData.Fixed) value).bytes();
}
return value;
default:
}
return value;
}
}