/* Copyright (c) 2021 OceanBase and/or its affiliates. All rights reserved. miniob is licensed under Mulan PSL v2. You can use this software according to the terms and conditions of the Mulan PSL v2. You may obtain a copy of Mulan PSL v2 at: http://license.coscl.org.cn/MulanPSL2 THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE. See the Mulan PSL v2 for more details. */ // // Created by Longda on 2021/4/20. // #include "histogram_snapshot.h" #include #include #include #include #include #include namespace common { HistogramSnapShot::HistogramSnapShot() {} HistogramSnapShot::HistogramSnapShot(const std::vector &collection) { set_collection(collection); } HistogramSnapShot::~HistogramSnapShot() {} void HistogramSnapShot::set_collection(const std::vector &collection) { if (collection.empty()) { return; } data_ = collection; std::sort(data_.begin(), data_.end()); } size_t HistogramSnapShot::size() const { return data_.size(); } double HistogramSnapShot::get_value(double quantile) { if (quantile > 1.0f) { quantile = 1.0f; } if (quantile < 0.0f) { quantile = 0.0f; } if (data_.empty()) { return 0.0f; } double pos = quantile * (data_.size() + 1); if (pos < 1) { return data_[0]; } if (pos >= data_.size()) { return data_[data_.size() - 1]; } double lower = data_[(int)pos - 1]; double upper = data_[(int)pos]; return lower + (pos - floor(pos)) * (upper - lower); } double HistogramSnapShot::get_median() { return get_value(0.5f); } double HistogramSnapShot::get_75th() { return get_value(0.75f); } double HistogramSnapShot::get_90th() { return get_value(0.90f); } double HistogramSnapShot::get_95th() { return get_value(0.95f); } double HistogramSnapShot::get_99th() { return get_value(0.99f); } double HistogramSnapShot::get_999th() { return get_value(0.999f); } double HistogramSnapShot::get_max() { if (data_.empty()) { return 0.0f; } return static_cast(*data_.rbegin()); } double HistogramSnapShot::get_min() { if (data_.empty()) { return 0.0f; } return static_cast(*data_.begin()); } double HistogramSnapShot::get_mean() { if (data_.empty()) { return 0.0f; } return std::accumulate(data_.begin(), data_.end(), (double)0) * 1.0f / data_.size(); } const std::vector &HistogramSnapShot::get_values() { return data_; } std::string HistogramSnapShot::to_string() { std::stringstream oss; oss << "mean:" << get_mean() << ",min:" << get_min() << ",max:" << get_max() << ",median:" << get_median() << ", 75th:" << get_75th() << ",90th:" << get_90th() << ",99th:" << get_99th() << ",999th:" << get_999th(); return oss.str(); } } // namespace common