-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathProductionRule.cs
208 lines (166 loc) · 6.78 KB
/
ProductionRule.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
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
using System.Collections.Generic;
using System.Linq;
using Exolutio.SupportingClasses;
namespace Exolutio.Model.PSM.Grammar
{
public class ProductionRule
{
public NonTerminal LeftHandNonTerminal { get; set; }
public RightHandSide RightHandSide { get; set; }
public override string ToString()
{
return string.Format("{0} -> {1}", LeftHandNonTerminal, RightHandSide);
}
}
public abstract class RightHandSide
{
public Terminal t { get; set; }
public abstract IEnumerable<ProductionRuleToken> GetTokens();
}
public abstract class ProductionRuleToken
{
}
public class SpecialCharToken : ProductionRuleToken
{
public string c { get; set; }
public SpecialCharToken(string c)
{
this.c = c;
}
private static readonly SpecialCharToken tokenA = new SpecialCharToken("@");
public static SpecialCharToken TokenA { get { return tokenA; } }
private static readonly SpecialCharToken tokenLBracket = new SpecialCharToken("[");
public static SpecialCharToken TokenLBracket { get { return tokenLBracket; } }
private static readonly SpecialCharToken tokenRBracket = new SpecialCharToken("]");
public static SpecialCharToken TokenRBracket { get { return tokenRBracket; } }
private static readonly SpecialCharToken tokenLPar = new SpecialCharToken("(");
public static SpecialCharToken TokenLPar { get { return tokenLPar; } }
private static readonly SpecialCharToken tokenRPar = new SpecialCharToken(")");
public static SpecialCharToken TokenRPar { get { return tokenRPar; } }
private static readonly SpecialCharToken tokenLBrace = new SpecialCharToken("{");
public static SpecialCharToken TokenLBrace { get { return tokenLBrace; } }
private static readonly SpecialCharToken tokenRBrace = new SpecialCharToken("}");
public static SpecialCharToken TokenRBrace { get { return tokenRBrace; } }
private static readonly SpecialCharToken tokenPipe = new SpecialCharToken("|");
public static SpecialCharToken TokenPipe { get { return tokenPipe; } }
private static readonly SpecialCharToken tokenComma = new SpecialCharToken(",");
public static SpecialCharToken TokenComma { get { return tokenComma; } }
private static readonly SpecialCharToken tokenSpace = new SpecialCharToken(" ");
public static SpecialCharToken TokenSpace { get { return tokenSpace; } }
public override string ToString()
{
return c;
}
}
public class TerminalToken : ProductionRuleToken
{
public Terminal Terminal { get; private set; }
public TerminalToken(Terminal terminal)
{
Terminal = terminal;
}
public override string ToString()
{
return Terminal.ToString();
}
}
public class CardinalityToken : ProductionRuleToken
{
public uint Lower { get; set; }
public UnlimitedInt Upper { get; set; }
public CardinalityToken(uint lower, UnlimitedInt upper)
{
Lower = lower;
Upper = upper;
}
public override string ToString()
{
return string.Format("{0}..{1}", Lower, Upper);
}
}
public class NonTerminalToken : ProductionRuleToken
{
public NonTerminal NonTerminal { get; private set; }
public NonTerminalToken(NonTerminal nonTerminal)
{
NonTerminal = nonTerminal;
}
public override string ToString()
{
return NonTerminal.ToString();
}
}
public class AttributeTypeToken : ProductionRuleToken
{
public AttributeType AttributeType { get; set; }
public AttributeTypeToken(AttributeType attributeType)
{
AttributeType = attributeType;
}
public override string ToString()
{
return AttributeType != null ? AttributeType.Name : string.Empty;
}
}
public class RightHandAttributeDeclaration : RightHandSide
{
public AttributeType D { get; set; }
public override string ToString()
{
return string.Format("@{0}[{1}]", t, D != null ? D.Name: string.Empty);
}
public override IEnumerable<ProductionRuleToken> GetTokens()
{
return new ProductionRuleToken[]
{
SpecialCharToken.TokenA,
new TerminalToken(t),
SpecialCharToken.TokenLBracket,
new AttributeTypeToken(D),
SpecialCharToken.TokenRBracket
};
}
}
public class RightHandElementSimpleContentDeclaration : RightHandSide
{
public AttributeType D { get; set; }
public override string ToString()
{
return string.Format("{0}[{1}]", t, D != null ? D.Name : string.Empty);
}
public override IEnumerable<ProductionRuleToken> GetTokens()
{
return new ProductionRuleToken[]
{
new TerminalToken(t),
SpecialCharToken.TokenLBracket,
new AttributeTypeToken(D),
SpecialCharToken.TokenRBracket
};
}
}
public class RightHandElementComplexContentDeclaration : RightHandSide
{
public RegularExpression re { get; set; }
public override string ToString()
{
string reString = re.ToString();
if (reString.StartsWith("("))
reString = reString.Substring(1);
if (reString.EndsWith(")"))
reString = reString.Substring(0, reString.Length - 2);
return string.Format("{0}[{1}]", t, reString);
}
public override IEnumerable<ProductionRuleToken> GetTokens()
{
IEnumerable<ProductionRuleToken> _regexTokens = re.GetTokens();
List<ProductionRuleToken> regexTokens = new List<ProductionRuleToken>(_regexTokens);
if (regexTokens.FirstOrDefault() == SpecialCharToken.TokenLPar)
regexTokens.RemoveAt(0);
if (regexTokens.LastOrDefault() == SpecialCharToken.TokenRPar)
regexTokens.RemoveAt(regexTokens.Count - 1);
return regexTokens.Prepend(new TerminalToken(t), SpecialCharToken.TokenLBracket).
Append(SpecialCharToken.TokenRBracket);
}
}
}