/** * Copyright (C) 2018-present MongoDB, Inc. * * This program is free software: you can redistribute it and/or modify * it under the terms of the Server Side Public License, version 1, * as published by MongoDB, Inc. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * Server Side Public License for more details. * * You should have received a copy of the Server Side Public License * along with this program. If not, see * . * * As a special exception, the copyright holders give permission to link the * code of portions of this program with the OpenSSL library under certain * conditions as described in each individual source file and distribute * linked combinations including the program with the OpenSSL library. You * must comply with the Server Side Public License in all respects for * all of the code used other than as permitted herein. If you modify file(s) * with this exception, you may extend this exception to your version of the * file(s), but you are not obligated to do so. If you do not wish to do so, * delete this exception statement from your version. If you delete this * exception statement from all source files in the program, then also delete * it in the license file. */ #include "mongo/platform/basic.h" #include "mongo/db/exec/sbe/accumulator_sum_value_enum.h" #include "mongo/db/pipeline/accumulator.h" #include "mongo/db/exec/document_value/document.h" #include "mongo/db/exec/document_value/value.h" #include "mongo/db/pipeline/accumulation_statement.h" #include "mongo/db/pipeline/expression.h" #include "mongo/db/pipeline/expression_context.h" #include "mongo/db/pipeline/window_function/window_function_avg.h" #include "mongo/db/pipeline/window_function/window_function_expression.h" #include "mongo/platform/decimal128.h" namespace mongo { using boost::intrusive_ptr; REGISTER_ACCUMULATOR(avg, genericParseSingleExpressionAccumulator); REGISTER_STABLE_EXPRESSION(avg, ExpressionFromAccumulator::parse); REGISTER_STABLE_REMOVABLE_WINDOW_FUNCTION(avg, AccumulatorAvg, WindowFunctionAvg); void applyPartialSum(const std::vector& arr, BSONType& nonDecimalTotalType, BSONType& totalType, DoubleDoubleSummation& nonDecimalTotal, Decimal128& decimalTotal); Value serializePartialSum(BSONType nonDecimalTotalType, BSONType totalType, const DoubleDoubleSummation& nonDecimalTotal, const Decimal128& decimalTotal); void AccumulatorAvg::processInternal(const Value& input, bool merging) { if (merging) { // We expect an object that contains both a partial sum and a count. verify(input.getType() == Object); auto partialSumVal = input[stage_builder::partialSumName]; tassert(6422700, "'ps' field must be present", !partialSumVal.missing()); tassert(6422701, "'ps' field must be an array", partialSumVal.isArray()); // The merge-side must be ready to process the full state of a partial sum from a // shard-side if a shard chooses to do so. See Accumulator::getValue() for details. applyPartialSum(partialSumVal.getArray(), _nonDecimalTotalType, _totalType, _nonDecimalTotal, _decimalTotal); _count += input[stage_builder::countName].getLong(); return; } if (!input.numeric()) { return; } _totalType = Value::getWidestNumeric(_totalType, input.getType()); // Keep the nonDecimalTotal's type so that the type information can be serialized too for // 'toBeMerged' scenarios. if (input.getType() != NumberDecimal) { _nonDecimalTotalType = Value::getWidestNumeric(_nonDecimalTotalType, input.getType()); } switch (input.getType()) { case NumberDecimal: _decimalTotal = _decimalTotal.add(input.getDecimal()); break; case NumberLong: // Avoid summation using double as that loses precision. _nonDecimalTotal.addLong(input.getLong()); break; case NumberInt: _nonDecimalTotal.addInt(input.getInt()); break; case NumberDouble: _nonDecimalTotal.addDouble(input.getDouble()); break; default: MONGO_UNREACHABLE; } _count++; } intrusive_ptr AccumulatorAvg::create(ExpressionContext* const expCtx) { return new AccumulatorAvg(expCtx); } Decimal128 AccumulatorAvg::_getDecimalTotal() const { return _decimalTotal.add(_nonDecimalTotal.getDecimal()); } Value AccumulatorAvg::getValue(bool toBeMerged) { if (toBeMerged) { auto partialSumVal = serializePartialSum(_nonDecimalTotalType, _totalType, _nonDecimalTotal, _decimalTotal); return Value(Document{{stage_builder::countName, _count}, {stage_builder::partialSumName, partialSumVal}}); } if (_count == 0) return Value(BSONNULL); if (_totalType == NumberDecimal) return Value(_getDecimalTotal().divide(Decimal128(static_cast(_count)))); return Value(_nonDecimalTotal.getDouble() / static_cast(_count)); } AccumulatorAvg::AccumulatorAvg(ExpressionContext* const expCtx) : AccumulatorState(expCtx), _count(0) { // This is a fixed size AccumulatorState so we never need to update this _memUsageBytes = sizeof(*this); } void AccumulatorAvg::reset() { _totalType = NumberInt; _nonDecimalTotalType = NumberInt; _nonDecimalTotal = {}; _decimalTotal = {}; _count = 0; } } // namespace mongo