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

org.elasticsearch.search.aggregations.support.format.ValueFormat Maven / Gradle / Ivy

There is a newer version: 8.14.1
Show newest version
/*
 * Licensed to Elasticsearch under one or more contributor
 * license agreements. See the NOTICE file distributed with
 * this work for additional information regarding copyright
 * ownership. Elasticsearch 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.elasticsearch.search.aggregations.support.format;

import org.elasticsearch.index.mapper.core.DateFieldMapper;
import org.joda.time.DateTimeZone;

/**
 *
 */
public class ValueFormat {

    public static final ValueFormat RAW = new ValueFormat(ValueFormatter.RAW, ValueParser.RAW);
    public static final ValueFormat IPv4 = new ValueFormat(ValueFormatter.IPv4, ValueParser.IPv4);
    public static final ValueFormat BOOLEAN = new ValueFormat(ValueFormatter.BOOLEAN, ValueParser.BOOLEAN);

    private final ValueFormatter formatter;
    private final ValueParser parser;

    public ValueFormat(ValueFormatter formatter, ValueParser parser) {
        assert formatter != null && parser != null;
        this.formatter = formatter;
        this.parser = parser;
    }

    public ValueFormatter formatter() {
        return formatter;
    }

    public ValueParser parser() {
        return parser;
    }

    public abstract static class Patternable> extends ValueFormat {

        private final String pattern;

        public Patternable(String pattern, ValueFormatter formatter, ValueParser parser) {
            super(formatter, parser);
            this.pattern = pattern;
        }

        public String pattern() {
            return pattern;
        }

        public abstract VF create(String pattern);
    }

    public static class DateTime extends Patternable {

        public static final DateTime DEFAULT = new DateTime(DateFieldMapper.Defaults.DATE_TIME_FORMATTER.format(), ValueFormatter.DateTime.DEFAULT, ValueParser.DateMath.DEFAULT);

        public static DateTime format(String format, DateTimeZone timezone) {
            return new DateTime(format, new ValueFormatter.DateTime(format, timezone), new ValueParser.DateMath(format, timezone));
        }

        public static DateTime mapper(DateFieldMapper.DateFieldType fieldType, DateTimeZone timezone) {
            return new DateTime(fieldType.dateTimeFormatter().format(), ValueFormatter.DateTime.mapper(fieldType, timezone), ValueParser.DateMath.mapper(fieldType, timezone));
        }

        private DateTime(String pattern, ValueFormatter formatter, ValueParser parser) {
            super(pattern, formatter, parser);
        }

        @Override
        public DateTime create(String pattern) {
            return format(pattern, DateTimeZone.UTC);
        }
    }

    public static class Number extends Patternable {

        public static Number format(String format) {
            return new Number(format, new ValueFormatter.Number.Pattern(format), new ValueParser.Number.Pattern(format));
        }

        public Number(String pattern, ValueFormatter formatter, ValueParser parser) {
            super(pattern, formatter, parser);
        }

        @Override
        public Number create(String pattern) {
            return format(pattern);
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy