sc_report.cc revision 13157:ca4c4e2552f2
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#include <cstring>
31
32#include "base/logging.hh"
33#include "systemc/ext/utils/sc_report.hh"
34#include "systemc/ext/utils/sc_report_handler.hh"
35
36namespace sc_core
37{
38
39sc_report::sc_report(sc_severity _severity, const char *msg_type,
40        const char *msg, int _verbosity, const char *_fileName,
41        int _lineNumber, sc_time _time, const char *_processName, int _id) :
42    _severity(_severity), _msgType(msg_type), _msg(msg),
43    _verbosity(_verbosity), _fileName(_fileName), _lineNumber(_lineNumber),
44    _time(_time), _processName(_processName), _id(_id)
45{
46    if (_msgType)
47        _msgType = strdup(_msgType);
48    if (_msg)
49        _msg = strdup(_msg);
50    _what = sc_report_compose_message(*this);
51}
52
53sc_report::sc_report(const sc_report &r) :
54    sc_report(r._severity, r._msgType, r._msg, r._verbosity, r._fileName,
55            r._lineNumber, r._time, r._processName, r._id)
56{}
57
58sc_report &
59sc_report::operator = (const sc_report &r)
60{
61    _severity = r._severity;
62    free((void *)_msgType);
63    _msgType = r._msgType ? strdup(r._msgType) : nullptr;
64    free((void *)_msg);
65    _msg = r._msg ? strdup(r._msg) : nullptr;
66    _verbosity = r._verbosity;
67    _fileName = r._fileName;
68    _lineNumber = r._lineNumber;
69    _time = r._time;
70    _processName = r._processName;
71    _id = r._id;
72    return *this;
73}
74
75sc_report::~sc_report() throw()
76{
77    free((void *)_msgType);
78    free((void *)_msg);
79}
80
81const char *
82sc_report::what() const throw()
83{
84    return _what.c_str();
85}
86
87const char *
88sc_report::get_message(int id)
89{
90    warn("%s not implemented.\n", __PRETTY_FUNCTION__);
91    return "";
92}
93
94bool
95sc_report::is_suppressed(int id)
96{
97    warn("%s not implemented.\n", __PRETTY_FUNCTION__);
98    return false;
99}
100
101void
102sc_report::make_warnings_errors(bool)
103{
104    warn("%s not implemented.\n", __PRETTY_FUNCTION__);
105}
106
107void
108sc_report::register_id(int id, const char *msg)
109{
110    warn("%s not implemented.\n", __PRETTY_FUNCTION__);
111}
112
113void
114sc_report::suppress_id(int id, bool)
115{
116    warn("%s not implemented.\n", __PRETTY_FUNCTION__);
117}
118
119void
120sc_report::suppress_infos(bool)
121{
122    warn("%s not implemented.\n", __PRETTY_FUNCTION__);
123}
124
125void
126sc_report::suppress_warnings(bool)
127{
128    warn("%s not implemented.\n", __PRETTY_FUNCTION__);
129}
130
131void
132sc_abort()
133{
134    panic("simulation aborted");
135}
136
137} // namespace sc_core
138