-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathExpressionParserException.cs
125 lines (112 loc) · 3.81 KB
/
ExpressionParserException.cs
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
/*
Copyright (c) 2016 Denis Zykov, GameDevWare.com
This a part of "C# Eval()" Unity Asset - https://www.assetstore.unity3d.com/en/#!/content/56706
THIS SOFTWARE IS DISTRIBUTED "AS-IS" WITHOUT ANY WARRANTIES, CONDITIONS AND
REPRESENTATIONS WHETHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE
IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, MERCHANTABLE QUALITY,
FITNESS FOR A PARTICULAR PURPOSE, DURABILITY, NON-INFRINGEMENT, PERFORMANCE
AND THOSE ARISING BY STATUTE OR FROM CUSTOM OR USAGE OF TRADE OR COURSE OF DEALING.
This source code is distributed via Unity Asset Store,
to use it in your project you should accept Terms of Service and EULA
https://unity3d.com/ru/legal/as_terms
*/
using System;
namespace GameDevWare.Dynamic.Expressions
{
/// <summary>
/// Expression parsing exception.
/// </summary>
public sealed class ExpressionParserException : Exception, ILineInfo
{
/// <summary>
/// Line number related to exception.
/// </summary>
public int LineNumber { get; set; }
/// <summary>
/// Column number related to exception.
/// </summary>
public int ColumnNumber { get; set; }
/// <summary>
/// Length of token related to exception.
/// </summary>
public int TokenLength { get; set; }
internal ExpressionParserException()
{
}
internal ExpressionParserException(string message, int lineNumber = 0, int columnNumber = 0, int tokenLength = 0)
: base(message)
{
this.LineNumber = lineNumber;
this.ColumnNumber = columnNumber;
this.TokenLength = tokenLength;
}
internal ExpressionParserException(string message, Exception innerException, int lineNumber = 0, int columnNumber = 0, int tokenLength = 0)
: base(message, innerException)
{
this.LineNumber = lineNumber;
this.ColumnNumber = columnNumber;
this.TokenLength = tokenLength;
}
internal ExpressionParserException(string message, ILineInfo lineInfo)
: base(message)
{
if (lineInfo == null)
return;
this.LineNumber = lineInfo.GetLineNumber();
this.ColumnNumber = lineInfo.GetColumnNumber();
this.TokenLength = lineInfo.GetTokenLength();
}
internal ExpressionParserException(string message, Exception innerException, ILineInfo lineInfo)
: base(message, innerException)
{
if (lineInfo == null)
return;
this.LineNumber = lineInfo.GetLineNumber();
this.ColumnNumber = lineInfo.GetColumnNumber();
this.TokenLength = lineInfo.GetTokenLength();
}
#if !NETSTANDARD
// ReSharper disable once UnusedMember.Local
private ExpressionParserException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)
: base(info, context)
{
this.LineNumber = info.GetInt32("LineNumber");
this.ColumnNumber = info.GetInt32("ColumnNumber");
this.TokenLength = info.GetInt32("TokenLength");
}
/// <summary>
/// Return data for binary serialization.
/// </summary>
public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)
{
info.AddValue("LineNumber", (int)this.LineNumber);
info.AddValue("ColumnNumber", (int)this.ColumnNumber);
info.AddValue("TokenLength", (int)this.TokenLength);
base.GetObjectData(info, context);
}
#endif
int ILineInfo.GetLineNumber()
{
return this.LineNumber;
}
int ILineInfo.GetColumnNumber()
{
return this.ColumnNumber;
}
int ILineInfo.GetTokenLength()
{
return this.TokenLength;
}
/// <summary>
/// Converts exception to string representation for debug purpose.
/// </summary>
/// <returns></returns>
public override string ToString()
{
if (this.TokenLength != 0)
return string.Format("[{0},{1}+{2}]{3}", this.LineNumber.ToString(), this.ColumnNumber.ToString(), this.TokenLength.ToString(), base.ToString());
else
return base.ToString();
}
}
}