org.apache.streams.jackson.StreamsDateTimeDeserializer.java Source code

Java tutorial

Introduction

Here is the source code for org.apache.streams.jackson.StreamsDateTimeDeserializer.java

Source

/*
 * 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
 *
 *   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.streams.jackson;

import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.databind.DeserializationContext;
import com.fasterxml.jackson.databind.deser.std.StdDeserializer;
import com.google.common.collect.Lists;
import org.apache.streams.data.util.RFC3339Utils;
import org.joda.time.DateTime;
import org.joda.time.format.DateTimeFormat;
import org.joda.time.format.DateTimeFormatter;

import java.io.IOException;
import java.io.Serializable;
import java.util.Iterator;
import java.util.List;

/**
 * StreamsDateTimeDeserializer is a supporting class for
 * @see {@link org.apache.streams.jackson.StreamsJacksonMapper}
 *
 * Converting date-time strings other than RFC3339 to joda DateTime objects requires
 * additional formats to be provided when instantiating StreamsJacksonMapper.
 */
public class StreamsDateTimeDeserializer extends StdDeserializer<DateTime> implements Serializable {

    List<DateTimeFormatter> formatters = Lists.newArrayList();

    protected StreamsDateTimeDeserializer(Class<DateTime> dateTimeClass) {
        super(dateTimeClass);
    }

    protected StreamsDateTimeDeserializer(Class<DateTime> dateTimeClass, List<String> formats) {
        super(dateTimeClass);
        for (String format : formats)
            formatters.add(DateTimeFormat.forPattern(format));
    }

    /**
     * Applies each additional format in turn, until it can provide a non-null DateTime
     */
    @Override
    public DateTime deserialize(JsonParser jpar, DeserializationContext context) throws IOException {

        DateTime result = RFC3339Utils.parseToUTC(jpar.getValueAsString());
        Iterator<DateTimeFormatter> iterator = formatters.iterator();
        while (result == null && iterator.hasNext()) {
            DateTimeFormatter formatter = iterator.next();
            result = formatter.parseDateTime(jpar.getValueAsString());
        }
        return result;
    }
}