sc_report.hh revision 12852
1/* 2 * Copyright 2018 Google, Inc. 3 * 4 * Redistribution and use in source and binary forms, with or without 5 * modification, are permitted provided that the following conditions are 6 * met: redistributions of source code must retain the above copyright 7 * notice, this list of conditions and the following disclaimer; 8 * redistributions in binary form must reproduce the above copyright 9 * notice, this list of conditions and the following disclaimer in the 10 * documentation and/or other materials provided with the distribution; 11 * neither the name of the copyright holders nor the names of its 12 * contributors may be used to endorse or promote products derived from 13 * this software without specific prior written permission. 14 * 15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 16 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 17 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 18 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 19 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 20 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 21 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 25 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 * 27 * Authors: Gabe Black 28 */ 29 30#ifndef __SYSTEMC_EXT_UTIL_SC_REPORT_HH__ 31#define __SYSTEMC_EXT_UTIL_SC_REPORT_HH__ 32 33#include <exception> 34 35namespace sc_core 36{ 37 38class sc_time; 39 40enum sc_severity 41{ 42 SC_INFO = 0, 43 SC_WARNING, 44 SC_ERROR, 45 SC_FATAL, 46 SC_MAX_SEVERITY 47}; 48 49enum sc_verbosity 50{ 51 SC_NONE = 0, 52 SC_LOW = 100, 53 SC_MEDIUM = 200, 54 SC_HIGH = 300, 55 SC_FULL = 400, 56 SC_DEBUG = 500 57}; 58 59class sc_report : public std::exception 60{ 61 public: 62 sc_report(const sc_report &); 63 sc_report &operator = (const sc_report &); 64 virtual ~sc_report() throw(); 65 66 sc_severity get_severity() const; 67 const char *get_msg_type() const; 68 const char *get_msg() const; 69 int get_verbosity() const; 70 const char *get_file_name() const; 71 int get_line_number() const; 72 73 const sc_time &get_time() const; 74 const char *get_process_name() const; 75 76 virtual const char *what() const throw(); 77}; 78 79// A non-standard function the Accellera datatypes rely on. 80[[noreturn]] void sc_abort(); 81 82} // namespace sc_core 83 84#endif //__SYSTEMC_EXT_UTIL_SC_REPORT_HH__ 85