sc_report.cc (12997:cfc14d8f4725) sc_report.cc (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

--- 13 unchanged lines hidden (view full) ---

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
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

--- 13 unchanged lines hidden (view full) ---

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
30#include "base/logging.hh"
31#include "systemc/ext/utils/sc_report.hh"
32#include "systemc/ext/utils/sc_report_handler.hh"
33
34namespace sc_core
35{
36
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
37sc_report::sc_report(sc_severity _severity, const char *_msgType,
38 const char *_msg, int _verbosity, const char *_fileName,
39sc_report::sc_report(sc_severity _severity, const char *msg_type,
40 const char *msg, int _verbosity, const char *_fileName,
39 int _lineNumber, sc_time _time, const char *_processName, int _id) :
41 int _lineNumber, sc_time _time, const char *_processName, int _id) :
40 _severity(_severity), _msgType(_msgType), _msg(_msg),
42 _severity(_severity), _msgType(msg_type), _msg(msg),
41 _verbosity(_verbosity), _fileName(_fileName), _lineNumber(_lineNumber),
42 _time(_time), _processName(_processName), _id(_id)
43{
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);
44 _what = sc_report_compose_message(*this);
45}
46
47sc_report::sc_report(const sc_report &r) :
48 sc_report(r._severity, r._msgType, r._msg, r._verbosity, r._fileName,
49 r._lineNumber, r._time, r._processName, r._id)
50{}
51
52sc_report &
53sc_report::operator = (const sc_report &r)
54{
55 _severity = r._severity;
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;
56 _msgType = r._msgType;
57 _msg = r._msg;
62 free((void *)_msgType);
63 _msgType = r._msgType ? strdup(r._msgType) : nullptr;
64 free((void *)_msg);
65 _msg = r._msg ? strdup(r._msg) : nullptr;
58 _verbosity = r._verbosity;
59 _fileName = r._fileName;
60 _lineNumber = r._lineNumber;
61 _time = r._time;
62 _processName = r._processName;
63 _id = r._id;
64 return *this;
65}
66
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
67sc_report::~sc_report() throw() {}
75sc_report::~sc_report() throw()
76{
77 free((void *)_msgType);
78 free((void *)_msg);
79}
68
69const char *
70sc_report::what() const throw()
71{
72 return _what.c_str();
73}
74
75const char *

--- 50 unchanged lines hidden ---
80
81const char *
82sc_report::what() const throw()
83{
84 return _what.c_str();
85}
86
87const char *

--- 50 unchanged lines hidden ---