/* * SPDX-License-Identifier: Apache-2.0 * * The OpenSearch Contributors require contributions made to * this file be licensed under the Apache-2.0 license or a * compatible open source license. */ /* * 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. */ /* * Modifications Copyright OpenSearch Contributors. See * GitHub history for details. */ package org.opensearch.search.aggregations.pipeline; import org.opensearch.core.common.io.stream.StreamInput; import org.opensearch.core.common.io.stream.StreamOutput; import org.opensearch.core.xcontent.ConstructingObjectParser; import org.opensearch.core.xcontent.XContentBuilder; import org.opensearch.search.DocValueFormat; import java.io.IOException; import java.util.List; import java.util.Map; import java.util.Objects; import static org.opensearch.core.xcontent.ConstructingObjectParser.constructorArg; import static org.opensearch.search.aggregations.pipeline.PipelineAggregator.Parser.FORMAT; /** * Aggregation Builder for cumulative_sum pipeline agg * * @opensearch.internal */ public class CumulativeSumPipelineAggregationBuilder extends AbstractPipelineAggregationBuilder { public static final String NAME = "cumulative_sum"; private String format; @SuppressWarnings("unchecked") public static final ConstructingObjectParser PARSER = new ConstructingObjectParser<>( NAME, false, (args, name) -> new CumulativeSumPipelineAggregationBuilder(name, (List) args[0]) ); static { PARSER.declareStringArray(constructorArg(), BUCKETS_PATH_FIELD); PARSER.declareString(CumulativeSumPipelineAggregationBuilder::format, FORMAT); }; public CumulativeSumPipelineAggregationBuilder(String name, String bucketsPath) { super(name, NAME, new String[] { bucketsPath }); } CumulativeSumPipelineAggregationBuilder(String name, List bucketsPath) { super(name, NAME, bucketsPath.toArray(new String[0])); } /** * Read from a stream. */ public CumulativeSumPipelineAggregationBuilder(StreamInput in) throws IOException { super(in, NAME); format = in.readOptionalString(); } @Override protected final void doWriteTo(StreamOutput out) throws IOException { out.writeOptionalString(format); } /** * Sets the format to use on the output of this aggregation. */ public CumulativeSumPipelineAggregationBuilder format(String format) { if (format == null) { throw new IllegalArgumentException("[format] must not be null: [" + name + "]"); } this.format = format; return this; } /** * Gets the format to use on the output of this aggregation. */ public String format() { return format; } protected DocValueFormat formatter() { if (format != null) { return new DocValueFormat.Decimal(format); } else { return DocValueFormat.RAW; } } @Override protected PipelineAggregator createInternal(Map metadata) { return new CumulativeSumPipelineAggregator(name, bucketsPaths, formatter(), metadata); } @Override protected void validate(ValidationContext context) { if (bucketsPaths.length != 1) { context.addBucketPathValidationError("must contain a single entry for aggregation [" + name + "]"); } context.validateParentAggSequentiallyOrdered(NAME, name); } @Override protected final XContentBuilder internalXContent(XContentBuilder builder, Params params) throws IOException { if (format != null) { builder.field(BucketMetricsParser.FORMAT.getPreferredName(), format); } return builder; } @Override public int hashCode() { return Objects.hash(super.hashCode(), format); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null || getClass() != obj.getClass()) return false; if (super.equals(obj) == false) return false; CumulativeSumPipelineAggregationBuilder other = (CumulativeSumPipelineAggregationBuilder) obj; return Objects.equals(format, other.format); } @Override public String getWriteableName() { return NAME; } }