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

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

There is a newer version: 8.13.3
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.common.joda.DateMathParser;
import org.elasticsearch.common.joda.FormatDateTimeFormatter;
import org.elasticsearch.common.joda.Joda;
import org.elasticsearch.index.mapper.core.DateFieldMapper;
import org.elasticsearch.index.mapper.ip.IpFieldMapper;
import org.elasticsearch.search.aggregations.AggregationExecutionException;
import org.elasticsearch.search.internal.SearchContext;

import java.text.DecimalFormat;
import java.text.DecimalFormatSymbols;
import java.text.NumberFormat;
import java.text.ParseException;
import java.util.Locale;
import java.util.concurrent.Callable;
import java.util.concurrent.TimeUnit;

/**
 *
 */
public interface ValueParser {

    static final ValueParser IPv4 = new IPv4();
    static final ValueParser RAW = new Raw();

    long parseLong(String value, SearchContext searchContext);

    double parseDouble(String value, SearchContext searchContext);


    /**
     * Knows how to parse datatime values based on date/time format
     */
    static class DateTime implements ValueParser {

        public static final DateTime DEFAULT = new DateTime(DateFieldMapper.Defaults.DATE_TIME_FORMATTER);

        private FormatDateTimeFormatter formatter;

        public DateTime(String format) {
            this(Joda.forPattern(format));
        }

        public DateTime(FormatDateTimeFormatter formatter) {
            this.formatter = formatter;
        }

        @Override
        public long parseLong(String value, SearchContext searchContext) {
            return formatter.parser().parseMillis(value);
        }

        @Override
        public double parseDouble(String value, SearchContext searchContext) {
            return parseLong(value, searchContext);
        }
    }

    /**
     * Knows how to parse datatime values based on elasticsearch's date math expression
     */
    static class DateMath implements ValueParser {

        public static final DateMath DEFAULT = new ValueParser.DateMath(new DateMathParser(DateFieldMapper.Defaults.DATE_TIME_FORMATTER, DateFieldMapper.Defaults.TIME_UNIT));

        private DateMathParser parser;

        public DateMath(String format, TimeUnit timeUnit) {
            this(new DateMathParser(Joda.forPattern(format), timeUnit));
        }

        public DateMath(DateMathParser parser) {
            this.parser = parser;
        }

        @Override
        public long parseLong(String value, final SearchContext searchContext) {
            final Callable now = new Callable() {
                @Override
                public Long call() throws Exception {
                    return searchContext.nowInMillis();
                }
            };
            return parser.parse(value, now);
        }

        @Override
        public double parseDouble(String value, SearchContext searchContext) {
            return parseLong(value, searchContext);
        }

        public static DateMath mapper(DateFieldMapper mapper) {
            return new DateMath(new DateMathParser(mapper.dateTimeFormatter(), DateFieldMapper.Defaults.TIME_UNIT));
        }
    }

    /**
     * Knows how to parse IPv4 formats
     */
    static class IPv4 implements ValueParser {

        private IPv4() {
        }

        @Override
        public long parseLong(String value, SearchContext searchContext) {
            return IpFieldMapper.ipToLong(value);
        }

        @Override
        public double parseDouble(String value, SearchContext searchContext) {
            return parseLong(value, searchContext);
        }
    }

    static class Raw implements ValueParser {

        private Raw() {
        }

        @Override
        public long parseLong(String value, SearchContext searchContext) {
            return Long.parseLong(value);
        }

        @Override
        public double parseDouble(String value, SearchContext searchContext) {
            return Double.parseDouble(value);
        }
    }

    public static abstract class Number implements ValueParser {

        NumberFormat format;

        Number(NumberFormat format) {
           this.format = format;
        }

        public static class Pattern extends Number {

            private static final DecimalFormatSymbols SYMBOLS = new DecimalFormatSymbols(Locale.ROOT);

            public Pattern(String pattern) {
                super(new DecimalFormat(pattern, SYMBOLS));
            }

            @Override
            public long parseLong(String value, SearchContext searchContext) {
                try {
                    return format.parse(value).longValue();
                } catch (ParseException nfe) {
                    throw new AggregationExecutionException("Invalid number format [" + ((DecimalFormat) format).toPattern() + "]");
                }
            }

            @Override
            public double parseDouble(String value, SearchContext searchContext) {
                try {
                    return format.parse(value).doubleValue();
                } catch (ParseException nfe) {
                    throw new AggregationExecutionException("Invalid number format [" + ((DecimalFormat) format).toPattern() + "]");
                }
            }
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy