/* * Licensed 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 com.qubole.presto.kinesis.decoder.json; import static com.google.common.base.Preconditions.checkNotNull; import com.qubole.presto.kinesis.KinesisColumnHandle; import com.qubole.presto.kinesis.KinesisErrorCode; import com.qubole.presto.kinesis.KinesisFieldValueProvider; import io.airlift.slice.Slice; import java.util.Locale; import java.util.Set; import org.joda.time.format.DateTimeFormat; import org.joda.time.format.DateTimeFormatter; import com.facebook.presto.spi.PrestoException; import com.fasterxml.jackson.databind.JsonNode; import com.google.common.annotations.VisibleForTesting; import com.google.common.collect.ImmutableSet; public class RFC2822JsonKinesisFieldDecoder extends JsonKinesisFieldDecoder { @VisibleForTesting static final String NAME = "rfc2822"; /** * Todo - configurable time zones and locales. */ @VisibleForTesting static final DateTimeFormatter FORMATTER = DateTimeFormat.forPattern("EEE MMM dd HH:mm:ss Z yyyy").withLocale(Locale.ENGLISH).withZoneUTC(); @Override public Set<Class<?>> getJavaTypes() { return ImmutableSet.<Class<?>>of(long.class, Slice.class); } @Override public String getFieldDecoderName() { return NAME; } @Override public KinesisFieldValueProvider decode(JsonNode value, KinesisColumnHandle columnHandle) { checkNotNull(columnHandle, "columnHandle is null"); checkNotNull(value, "value is null"); return new RFC2822JsonKinesisValueProvider(value, columnHandle); } public static class RFC2822JsonKinesisValueProvider extends JsonKinesisValueProvider { public RFC2822JsonKinesisValueProvider(JsonNode value, KinesisColumnHandle columnHandle) { super(value, columnHandle); } @Override public boolean getBoolean() { throw new PrestoException(KinesisErrorCode.KINESIS_CONVERSION_NOT_SUPPORTED, "conversion to boolean not supported"); } @Override public double getDouble() { throw new PrestoException(KinesisErrorCode.KINESIS_CONVERSION_NOT_SUPPORTED, "conversion to double not supported"); } @Override public long getLong() { if (isNull()) { return 0L; } if (value.canConvertToLong()) { return value.asLong(); } String textValue = value.isValueNode() ? value.asText() : value.toString(); return FORMATTER.parseMillis(textValue); } } }