File: mpError.cpp

package info (click to toggle)
muparserx 4.0.12-2.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,240 kB
  • sloc: cpp: 10,953; ansic: 28; makefile: 8
file content (260 lines) | stat: -rw-r--r-- 6,649 bytes parent folder | download | duplicates (3)
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
/*
						   __________                                 ____  ___
				_____  __ _\______   \_____ _______  ______ __________\   \/  /
			   /     \|  |  \     ___/\__  \\_  __ \/  ___// __ \_  __ \     /
			   |  Y Y  \  |  /    |     / __ \|  | \/\___ \\  ___/|  | \/     \
			   |__|_|  /____/|____|    (____  /__|  /____  >\___  >__| /___/\  \
					 \/                     \/           \/     \/           \_/
			   Copyright (C) 2016 Ingo Berg
			   All rights reserved.

			   Redistribution and use in source and binary forms, with or without
			   modification, are permitted provided that the following conditions are met:

			   * Redistributions of source code must retain the above copyright notice,
			   this list of conditions and the following disclaimer.
			   * Redistributions in binary form must reproduce the above copyright notice,
			   this list of conditions and the following disclaimer in the documentation
			   and/or other materials provided with the distribution.

			   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
			   ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
			   WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
			   IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
			   INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
			   NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
			   PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
			   WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
			   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
			   POSSIBILITY OF SUCH DAMAGE.
			   */
#include "mpError.h"
#include "mpIToken.h"
#include "mpParserMessageProvider.h"


MUP_NAMESPACE_START

std::unique_ptr<ParserMessageProviderBase> ParserErrorMsg::m_pInstance;


const ParserMessageProviderBase& ParserErrorMsg::Instance()
{
	if (!m_pInstance.get())
	{
		m_pInstance.reset(new ParserMessageProviderEnglish);
		m_pInstance->Init();
	}

	return *m_pInstance;
}


void ParserErrorMsg::Reset(ParserMessageProviderBase* pProvider)
{
	if (pProvider != nullptr)
	{
		m_pInstance.reset(pProvider);
		m_pInstance->Init();
	}
}


string_type ParserErrorMsg::GetErrorMsg(EErrorCodes eError) const
{
	if (!m_pInstance.get())
		return string_type();
	else
		return m_pInstance->GetErrorMsg(eError);
}


ParserErrorMsg::~ParserErrorMsg()
{}


ParserErrorMsg::ParserErrorMsg()
{}

//---------------------------------------------------------------------------
//
//  Error context
//
//---------------------------------------------------------------------------

/** \brief Constructs an empty Error context structure. */
ErrorContext::ErrorContext(EErrorCodes a_iErrc, int a_iPos, string_type a_sIdent)
	:Expr()
	, Ident(a_sIdent)
	, Hint()
	, Errc(a_iErrc)
	, Type1(0)
	, Type2(0)
	, Arg(-1)
	, Pos(a_iPos)
{}


ErrorContext::ErrorContext(EErrorCodes iErrc, int iPos, string_type sIdent, char_type cType1, char_type cType2, int nArg)
	:Expr()
	, Ident(sIdent)
	, Hint()
	, Errc(iErrc)
	, Type1(cType1)
	, Type2(cType2)
	, Arg(nArg)
	, Pos(iPos)
{}

//---------------------------------------------------------------------------
//
//  ParserError class
//
//---------------------------------------------------------------------------

ParserError::ParserError()
	:m_Err()
	, m_sMsg()
	, m_ErrMsg(ParserErrorMsg::Instance())
{}


ParserError::ParserError(const string_type& sMsg, EErrorCodes ec)
	:m_Err()
	,m_sMsg(sMsg)
	,m_ErrMsg(ParserErrorMsg::Instance())
{
	m_Err.Errc = ec;
}


ParserError::ParserError(const ErrorContext& a_Err)
	:m_Err(a_Err)
	, m_sMsg()
	, m_ErrMsg(ParserErrorMsg::Instance())
{
	m_sMsg = m_ErrMsg.GetErrorMsg(a_Err.Errc);
}


ParserError::ParserError(const ParserError& a_Obj)
	:m_Err(a_Obj.m_Err)
	, m_sMsg(a_Obj.m_sMsg)
	, m_ErrMsg(ParserErrorMsg::Instance())
{}


ParserError& ParserError::operator=(const ParserError& a_Obj)
{
	if (this == &a_Obj)
		return *this;

	m_sMsg = a_Obj.m_sMsg;
	m_Err = a_Obj.m_Err;
	return *this;
}


/** \brief Replace all occurences of a substring with another string. */
void ParserError::ReplaceSubString(string_type& sSource,
	const string_type& sFind,
	const string_type& sReplaceWith) const
{
	string_type sResult;
	string_type::size_type iPos(0), iNext(0);

	for (;;)
	{
		iNext = sSource.find(sFind, iPos);
		sResult.append(sSource, iPos, iNext - iPos);

		if (iNext == string_type::npos)
			break;

		sResult.append(sReplaceWith);
		iPos = iNext + sFind.length();
	}

	sSource.swap(sResult);
}



/** \brief Replace all occurences of a substring with another string. */
void ParserError::ReplaceSubString(string_type& sSource,
	const string_type& sFind,
	int iReplaceWith) const
{
	stringstream_type stream;
	stream << iReplaceWith;
	ReplaceSubString(sSource, sFind, stream.str());
}


/** \brief Replace all occurences of a substring with another string. */
void ParserError::ReplaceSubString(string_type& sSource,
	const string_type& sFind,
	char_type cReplaceWith) const
{
	stringstream_type stream;
	stream << cReplaceWith;
	ReplaceSubString(sSource, sFind, stream.str());
}


void ParserError::Reset()
{
	m_sMsg = _T("");
	m_Err = ErrorContext();
}


const string_type& ParserError::GetExpr() const
{
	return m_Err.Expr;
}


string_type ParserError::GetMsg() const
{
	string_type sMsg(m_sMsg);
	ReplaceSubString(sMsg, _T("$EXPR$"), m_Err.Expr);
	ReplaceSubString(sMsg, _T("$IDENT$"), m_Err.Ident);
	ReplaceSubString(sMsg, _T("$POS$"), m_Err.Pos);
	ReplaceSubString(sMsg, _T("$ARG$"), m_Err.Arg);
	ReplaceSubString(sMsg, _T("$TYPE1$"), m_Err.Type1);
	ReplaceSubString(sMsg, _T("$TYPE2$"), m_Err.Type2);
	ReplaceSubString(sMsg, _T("$HINT$"), m_Err.Hint);
	return sMsg;
}


ErrorContext& ParserError::GetContext()
{
	return m_Err;
}


/** \brief Return the expression position related to the error.

  If the error is not related to a distinct position this will return -1
  */
int ParserError::GetPos() const
{
	return m_Err.Pos;
}


/** \brief Return string related with this token (if available). */
const string_type& ParserError::GetToken() const
{
	return m_Err.Ident;
}


/** \brief Return the error code. */
EErrorCodes ParserError::GetCode() const
{
	return m_Err.Errc;
}
}  // namespace mu