1*9e3b08aeSAndroid Build Coastguard Worker // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 2*9e3b08aeSAndroid Build Coastguard Worker // -*- mode: C++ -*- 3*9e3b08aeSAndroid Build Coastguard Worker // 4*9e3b08aeSAndroid Build Coastguard Worker // Copyright 2020-2022 Google LLC 5*9e3b08aeSAndroid Build Coastguard Worker // 6*9e3b08aeSAndroid Build Coastguard Worker // Licensed under the Apache License v2.0 with LLVM Exceptions (the 7*9e3b08aeSAndroid Build Coastguard Worker // "License"); you may not use this file except in compliance with the 8*9e3b08aeSAndroid Build Coastguard Worker // License. You may obtain a copy of the License at 9*9e3b08aeSAndroid Build Coastguard Worker // 10*9e3b08aeSAndroid Build Coastguard Worker // https://llvm.org/LICENSE.txt 11*9e3b08aeSAndroid Build Coastguard Worker // 12*9e3b08aeSAndroid Build Coastguard Worker // Unless required by applicable law or agreed to in writing, software 13*9e3b08aeSAndroid Build Coastguard Worker // distributed under the License is distributed on an "AS IS" BASIS, 14*9e3b08aeSAndroid Build Coastguard Worker // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15*9e3b08aeSAndroid Build Coastguard Worker // See the License for the specific language governing permissions and 16*9e3b08aeSAndroid Build Coastguard Worker // limitations under the License. 17*9e3b08aeSAndroid Build Coastguard Worker // 18*9e3b08aeSAndroid Build Coastguard Worker // Author: Giuliano Procida 19*9e3b08aeSAndroid Build Coastguard Worker 20*9e3b08aeSAndroid Build Coastguard Worker #ifndef STG_REPORTING_H_ 21*9e3b08aeSAndroid Build Coastguard Worker #define STG_REPORTING_H_ 22*9e3b08aeSAndroid Build Coastguard Worker 23*9e3b08aeSAndroid Build Coastguard Worker #include <optional> 24*9e3b08aeSAndroid Build Coastguard Worker #include <ostream> 25*9e3b08aeSAndroid Build Coastguard Worker #include <string_view> 26*9e3b08aeSAndroid Build Coastguard Worker 27*9e3b08aeSAndroid Build Coastguard Worker #include "comparison.h" 28*9e3b08aeSAndroid Build Coastguard Worker #include "fidelity.h" 29*9e3b08aeSAndroid Build Coastguard Worker #include "graph.h" 30*9e3b08aeSAndroid Build Coastguard Worker #include "naming.h" 31*9e3b08aeSAndroid Build Coastguard Worker 32*9e3b08aeSAndroid Build Coastguard Worker namespace stg { 33*9e3b08aeSAndroid Build Coastguard Worker namespace reporting { 34*9e3b08aeSAndroid Build Coastguard Worker 35*9e3b08aeSAndroid Build Coastguard Worker enum class OutputFormat { PLAIN, FLAT, SMALL, SHORT, VIZ }; 36*9e3b08aeSAndroid Build Coastguard Worker 37*9e3b08aeSAndroid Build Coastguard Worker std::optional<OutputFormat> ParseOutputFormat(std::string_view format); 38*9e3b08aeSAndroid Build Coastguard Worker 39*9e3b08aeSAndroid Build Coastguard Worker struct OutputFormatUsage {}; 40*9e3b08aeSAndroid Build Coastguard Worker std::ostream& operator<<(std::ostream&, OutputFormatUsage); 41*9e3b08aeSAndroid Build Coastguard Worker 42*9e3b08aeSAndroid Build Coastguard Worker struct Options { 43*9e3b08aeSAndroid Build Coastguard Worker const OutputFormat format; 44*9e3b08aeSAndroid Build Coastguard Worker }; 45*9e3b08aeSAndroid Build Coastguard Worker 46*9e3b08aeSAndroid Build Coastguard Worker struct Reporting { 47*9e3b08aeSAndroid Build Coastguard Worker const Graph& graph; 48*9e3b08aeSAndroid Build Coastguard Worker const diff::Outcomes& outcomes; 49*9e3b08aeSAndroid Build Coastguard Worker const Options& options; 50*9e3b08aeSAndroid Build Coastguard Worker NameCache& names; 51*9e3b08aeSAndroid Build Coastguard Worker }; 52*9e3b08aeSAndroid Build Coastguard Worker 53*9e3b08aeSAndroid Build Coastguard Worker void Report(const Reporting&, const diff::Comparison&, std::ostream&); 54*9e3b08aeSAndroid Build Coastguard Worker 55*9e3b08aeSAndroid Build Coastguard Worker bool FidelityDiff(const stg::FidelityDiff&, std::ostream&); 56*9e3b08aeSAndroid Build Coastguard Worker 57*9e3b08aeSAndroid Build Coastguard Worker } // namespace reporting 58*9e3b08aeSAndroid Build Coastguard Worker } // namespace stg 59*9e3b08aeSAndroid Build Coastguard Worker 60*9e3b08aeSAndroid Build Coastguard Worker #endif // STG_REPORTING_H_ 61