All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.caseystella.analytics.converters.primitive.DateConverter Maven / Gradle / Ivy

There is a newer version: 0.9.7
Show newest version
/**
 * Copyright (C) 2016 Hurence ([email protected])
 *
 * 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.caseystella.analytics.converters.primitive;

import com.caseystella.analytics.converters.Converter;
import com.caseystella.analytics.converters.MappingConverter;
import com.caseystella.analytics.converters.TimestampConverter;

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;

public class DateConverter {
    public static final String FORMAT_CONF = "format";
    public static final String NAME_CONF = "name";
    public static final String TO_TS_CONF = "to_ts";

    public static class DateTimestampConverter implements TimestampConverter {
        @Override
        public Long convert(Object in, Map config) {
            if(in instanceof Date) {
                return ((Date)in).getTime();
            }
            else if(in instanceof String)
            {
                String format = (String) config.get(FORMAT_CONF);
                SimpleDateFormat sdf = new SimpleDateFormat(format);
                String s = in.toString();
                try {
                    Date d = sdf.parse(s);
                    return d.getTime();
                } catch (ParseException e) {
                    throw new RuntimeException("Malformed Date: " + s);
                }
            }
            else {
                throw new RuntimeException("Unable to convert " + in + " to date");
            }
        }
    }

    public static class DateMappingConverter implements MappingConverter{
        @Override
        public Map convert(byte[] in, Map config) {
            String format = (String) config.get(FORMAT_CONF);
            SimpleDateFormat sdf = new SimpleDateFormat(format);
            String s = (String) PrimitiveConverter.Type.STRING.apply(in);
            Map ret = new HashMap<>();
            try {
                Date d = sdf.parse(s);
                if (config.containsKey(TO_TS_CONF)) {
                    ret.put((String) config.get(NAME_CONF), d.getTime());
                } else {
                    ret.put((String) config.get(NAME_CONF), d);
                }
            } catch (ParseException e) {
                throw new RuntimeException("Malformed Date: " + s);
            }
            return ret;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy