2013-11-24 03:13:08 -08:00
|
|
|
/*
|
2014-01-06 22:48:02 +01:00
|
|
|
* 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
|
2013-11-24 03:13:08 -08:00
|
|
|
*
|
2014-01-10 21:27:01 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2013-11-24 03:13:08 -08:00
|
|
|
*
|
|
|
|
* 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;
|
|
|
|
|
|
|
|
import com.google.common.collect.Lists;
|
|
|
|
import org.elasticsearch.common.inject.AbstractModule;
|
|
|
|
import org.elasticsearch.common.inject.multibindings.Multibinder;
|
2013-11-29 14:59:09 +00:00
|
|
|
import org.elasticsearch.search.aggregations.bucket.filter.FilterParser;
|
|
|
|
import org.elasticsearch.search.aggregations.bucket.geogrid.GeoHashGridParser;
|
|
|
|
import org.elasticsearch.search.aggregations.bucket.global.GlobalParser;
|
2013-11-24 03:13:08 -08:00
|
|
|
import org.elasticsearch.search.aggregations.bucket.histogram.DateHistogramParser;
|
|
|
|
import org.elasticsearch.search.aggregations.bucket.histogram.HistogramParser;
|
2013-11-29 14:59:09 +00:00
|
|
|
import org.elasticsearch.search.aggregations.bucket.missing.MissingParser;
|
|
|
|
import org.elasticsearch.search.aggregations.bucket.nested.NestedParser;
|
2013-11-24 03:13:08 -08:00
|
|
|
import org.elasticsearch.search.aggregations.bucket.range.RangeParser;
|
|
|
|
import org.elasticsearch.search.aggregations.bucket.range.date.DateRangeParser;
|
|
|
|
import org.elasticsearch.search.aggregations.bucket.range.geodistance.GeoDistanceParser;
|
|
|
|
import org.elasticsearch.search.aggregations.bucket.range.ipv4.IpRangeParser;
|
|
|
|
import org.elasticsearch.search.aggregations.bucket.terms.TermsParser;
|
|
|
|
import org.elasticsearch.search.aggregations.metrics.avg.AvgParser;
|
2014-02-16 19:20:33 +01:00
|
|
|
import org.elasticsearch.search.aggregations.metrics.cardinality.CardinalityParser;
|
2013-11-24 03:13:08 -08:00
|
|
|
import org.elasticsearch.search.aggregations.metrics.max.MaxParser;
|
|
|
|
import org.elasticsearch.search.aggregations.metrics.min.MinParser;
|
2014-01-06 17:35:51 -05:00
|
|
|
import org.elasticsearch.search.aggregations.metrics.percentiles.PercentilesParser;
|
2013-11-24 03:13:08 -08:00
|
|
|
import org.elasticsearch.search.aggregations.metrics.stats.StatsParser;
|
|
|
|
import org.elasticsearch.search.aggregations.metrics.stats.extended.ExtendedStatsParser;
|
|
|
|
import org.elasticsearch.search.aggregations.metrics.sum.SumParser;
|
2013-11-29 14:59:09 +00:00
|
|
|
import org.elasticsearch.search.aggregations.metrics.valuecount.ValueCountParser;
|
2013-11-24 03:13:08 -08:00
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The main module for the get (binding all get components together)
|
|
|
|
*/
|
|
|
|
public class AggregationModule extends AbstractModule {
|
|
|
|
|
|
|
|
private List<Class<? extends Aggregator.Parser>> parsers = Lists.newArrayList();
|
|
|
|
|
|
|
|
public AggregationModule() {
|
|
|
|
parsers.add(AvgParser.class);
|
|
|
|
parsers.add(SumParser.class);
|
|
|
|
parsers.add(MinParser.class);
|
|
|
|
parsers.add(MaxParser.class);
|
|
|
|
parsers.add(StatsParser.class);
|
|
|
|
parsers.add(ExtendedStatsParser.class);
|
|
|
|
parsers.add(ValueCountParser.class);
|
2014-01-06 17:35:51 -05:00
|
|
|
parsers.add(PercentilesParser.class);
|
2014-02-16 19:20:33 +01:00
|
|
|
parsers.add(CardinalityParser.class);
|
2013-11-24 03:13:08 -08:00
|
|
|
|
|
|
|
parsers.add(GlobalParser.class);
|
|
|
|
parsers.add(MissingParser.class);
|
|
|
|
parsers.add(FilterParser.class);
|
|
|
|
parsers.add(TermsParser.class);
|
|
|
|
parsers.add(RangeParser.class);
|
|
|
|
parsers.add(DateRangeParser.class);
|
|
|
|
parsers.add(IpRangeParser.class);
|
|
|
|
parsers.add(HistogramParser.class);
|
|
|
|
parsers.add(DateHistogramParser.class);
|
|
|
|
parsers.add(GeoDistanceParser.class);
|
2013-11-29 14:59:09 +00:00
|
|
|
parsers.add(GeoHashGridParser.class);
|
2013-11-24 03:13:08 -08:00
|
|
|
parsers.add(NestedParser.class);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Enabling extending the get module by adding a custom aggregation parser.
|
|
|
|
*
|
|
|
|
* @param parser The parser for the custom aggregator.
|
|
|
|
*/
|
|
|
|
public void addAggregatorParser(Class<? extends Aggregator.Parser> parser) {
|
|
|
|
parsers.add(parser);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void configure() {
|
|
|
|
Multibinder<Aggregator.Parser> multibinder = Multibinder.newSetBinder(binder(), Aggregator.Parser.class);
|
|
|
|
for (Class<? extends Aggregator.Parser> parser : parsers) {
|
|
|
|
multibinder.addBinding().to(parser);
|
|
|
|
}
|
|
|
|
bind(AggregatorParsers.class).asEagerSingleton();
|
|
|
|
bind(AggregationParseElement.class).asEagerSingleton();
|
|
|
|
bind(AggregationPhase.class).asEagerSingleton();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|