-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathError.h
142 lines (115 loc) · 4.74 KB
/
Error.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
//
// Copyright (c) 2004 K. Wilkins
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from
// the use of this software.
//
// Permission is granted to anyone to use this software for any purpose,
// including commercial applications, and to alter it and redistribute it
// freely, subject to the following restrictions:
//
// 1. The origin of this software must not be misrepresented; you must not
// claim that you wrote the original software. If you use this software
// in a product, an acknowledgment in the product documentation would be
// appreciated but is not required.
//
// 2. Altered source versions must be plainly marked as such, and must not
// be misrepresented as being the original software.
//
// 3. This notice may not be removed or altered from any source distribution.
//
//////////////////////////////////////////////////////////////////////////////
// Handy - An Atari Lynx Emulator //
// Copyright (c) 1996,1997 //
// K. Wilkins //
//////////////////////////////////////////////////////////////////////////////
// Generic error handler class //
//////////////////////////////////////////////////////////////////////////////
// //
// This class provides error handler facilities for the Lynx emulator, I //
// shamelessly lifted most of the code from Stella by Brad Mott. //
// //
// K. Wilkins //
// August 1997 //
// //
//////////////////////////////////////////////////////////////////////////////
// Revision History: //
// ----------------- //
// //
// 01Aug1997 KW Document header added & class documented. //
// //
//////////////////////////////////////////////////////////////////////////////
#ifndef ERROR_H
#define ERROR_H
#include <strstream>
using namespace std;
#define MAX_ERROR_MSG 512
#define MAX_ERROR_DESC 2048
//class CLynxException : public CException
class CLynxException
{
public:
// Constructor
CLynxException() {}
// Copy Constructor
CLynxException(CLynxException& err)
{
int MsgCount,DescCount;
MsgCount = err.Message().pcount() + 1;
DescCount = err.Description().pcount() + 1;
if(MsgCount>MAX_ERROR_MSG) MsgCount=MAX_ERROR_MSG;
if(DescCount>MAX_ERROR_DESC) DescCount=MAX_ERROR_DESC;
strncpy(mMsg,err.Message().str(),MsgCount);
mMsg[MsgCount-1]='\0';
strncpy(mDesc,err.Description().str(),DescCount);
mDesc[DescCount-1]='\0';
}
// Destructor
virtual ~CLynxException()
{
mMsgStream.rdbuf()->freeze(0);
mDescStream.rdbuf()->freeze(0);
}
public:
// Answer stream which should contain the one line error message
ostrstream& Message() { return mMsgStream; }
// Answer stream which should contain the multiple line description
ostrstream& Description() { return mDescStream; }
public:
// Overload the assignment operator
CLynxException& operator=(CLynxException& err)
{
mMsgStream.seekp(0);
mMsgStream.write(err.Message().str(), err.Message().pcount());
err.Message().rdbuf()->freeze(0);
mDescStream.seekp(0);
mDescStream.write(err.Description().str(), err.Description().pcount());
err.Description().rdbuf()->freeze(0);
return *this;
}
// Overload the I/O output operator
friend ostream& operator<<(ostream& out, CLynxException& err)
{
out.write(err.Message().str(), err.Message().pcount());
err.Message().rdbuf()->freeze(0);
if(err.Description().pcount() != 0)
{
out << endl << endl;
out.write(err.Description().str(), err.Description().pcount());
err.Description().rdbuf()->freeze(0);
}
return out;
}
private:
// Contains the one line error code message
ostrstream mMsgStream;
// Contains a multiple line description of the error and ways to
// solve the problem
ostrstream mDescStream;
public:
// CStrings to hold the data after its been thrown
char mMsg[MAX_ERROR_MSG];
char mDesc[MAX_ERROR_DESC];
};
#endif