forked from diamondo25/MapleShark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSyntaxDefinition.cs
243 lines (206 loc) · 7.21 KB
/
SyntaxDefinition.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
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
// *
// * Copyright (C) 2008 Roger Alsing : http://www.RogerAlsing.com
// *
// * This library is free software; you can redistribute it and/or modify it
// * under the terms of the GNU Lesser General Public License 2.1 or later, as
// * published by the Free Software Foundation. See the included license.txt
// * or http://www.gnu.org/copyleft/lesser.html for details.
// *
// *
using System.Collections.Generic;
namespace Alsing.SourceCode
{
/// <summary>
/// File type struct
/// </summary>
public class FileType
{
/// <summary>
/// The file type extension
/// </summary>
public string Extension = "";
/// <summary>
/// The name of the file type
/// </summary>
public string Name = "";
}
/// <summary>
/// The SyntaxDefinition class describes a syntax.<br/>
/// It consists of a mainSpanDefinition , which is the start spanDefinition of the SyntaxDefinition<br/>
/// It also have a list of filetypes that is valid for this syntax<br/>
/// </summary>
/// <example>
/// <b>Apply a Syntax to a SyntaxBox</b>
/// <code>
/// SyntaxBoxControl1.Document.SyntaxFile="C#.syn";
/// </code>
/// </example>
public class SyntaxDefinition
{
#region PUBLIC PROPERTY SEPARATORS
private string _Separators = ".,:;{}()[]+-*/\\ \t=&%$#@!|&";
public string Separators
{
get { return _Separators; }
set { _Separators = value; }
}
#endregion
#region PUBLIC PROPERTY VERSION
private long _Version = long.MinValue;
public long Version
{
get { return _Version; }
set { _Version = value; }
}
#endregion
private readonly Dictionary<SpanDefinition, SpanDefinition> spanDefinitionLookup = new Dictionary<SpanDefinition, SpanDefinition>();
private readonly Dictionary<TextStyle, TextStyle> styleLookup = new Dictionary<TextStyle, TextStyle>();
/// <summary>
/// List containing the valid filetypes for this syntax
/// </summary>
public List<FileType> FileTypes = new List<FileType>();
/// <summary>
/// The start spanDefinition for this syntax
/// </summary>
public SpanDefinition mainSpanDefinition;
/// <summary>
/// Name of the SyntaxDefinition
/// </summary>
public string Name = "";
/// <summary>
/// Gets all BlockTypes in a given syntax.
/// </summary>
public SpanDefinition[] SpanDefinitions
{
get
{
spanDefinitionLookup.Clear();
FillBlocks(mainSpanDefinition);
var blocks = new SpanDefinition[spanDefinitionLookup.Values.Count];
int i = 0;
foreach (SpanDefinition bt in spanDefinitionLookup.Values)
{
blocks[i] = bt;
i++;
}
return blocks;
}
}
public TextStyle[] Styles
{
get
{
styleLookup.Clear();
SpanDefinition[] spanDefinitions = SpanDefinitions;
foreach (SpanDefinition bt in spanDefinitions)
{
styleLookup[bt.Style] = bt.Style;
foreach (Scope sc in bt.ScopePatterns)
{
if (sc.Style != null)
styleLookup[sc.Style] = sc.Style;
}
foreach (PatternList pl in bt.KeywordsList)
{
if (pl.Style != null)
styleLookup[pl.Style] = pl.Style;
}
foreach (PatternList pl in bt.OperatorsList)
{
if (pl.Style != null)
styleLookup[pl.Style] = pl.Style;
}
}
var styles = new TextStyle[styleLookup.Values.Count];
int i = 0;
foreach (TextStyle st in styleLookup.Values)
{
styles[i] = st;
i++;
}
return styles;
}
}
public void UpdateLists()
{
SpanDefinition[] spanDefinitions = SpanDefinitions;
foreach (SpanDefinition block in spanDefinitions)
{
block.Parent = this;
block.ResetLookupTable();
block.KeywordsList.Parent = block;
foreach (PatternList patterns in block.KeywordsList)
{
patterns.Parent = block.KeywordsList;
foreach (Pattern pattern in patterns)
{
block.AddToLookupTable(pattern);
}
}
block.OperatorsList.Parent = block;
foreach (PatternList patterns in block.OperatorsList)
{
patterns.Parent = block.OperatorsList;
foreach (Pattern pattern in patterns)
{
block.AddToLookupTable(pattern);
}
}
block.BuildLookupTable();
}
}
public void ChangeVersion()
{
Version++;
if (Version > long.MaxValue - 10)
Version = long.MinValue;
}
public static SyntaxDefinition FromSyntaxXml(string xml)
{
var sl = new SyntaxDefinitionLoader();
return sl.LoadXML(xml);
}
public static SyntaxDefinition FromSyntaxFile(string filename)
{
var sl = new SyntaxDefinitionLoader();
return sl.Load(filename);
}
public void MergeByMainBlock(SyntaxDefinition Target)
{
SpanDefinition[] spanDefinitions = SpanDefinitions;
foreach (SpanDefinition bt in spanDefinitions)
{
bt.childSpanDefinitions.Insert(0, Target.mainSpanDefinition);
}
}
public void MergeByChildBlocks(SyntaxDefinition Target)
{
SpanDefinition[] spanDefinitions = SpanDefinitions;
foreach (SpanDefinition bt in spanDefinitions)
{
for (int i = Target.mainSpanDefinition.childSpanDefinitions.Count - 1; i >= 0; i--)
{
SpanDefinition child = Target.mainSpanDefinition.childSpanDefinitions[i];
bt.childSpanDefinitions.Insert(0, child);
}
}
}
private void FillBlocks(SpanDefinition bt)
{
if (bt == null)
return;
if (spanDefinitionLookup.ContainsKey(bt))
return;
spanDefinitionLookup.Add(bt, bt);
foreach (SpanDefinition btc in bt.childSpanDefinitions)
{
FillBlocks(btc);
}
foreach (Scope sc in bt.ScopePatterns)
{
FillBlocks(sc.spawnSpanOnEnd);
FillBlocks(sc.spawnSpanOnStart);
}
}
}
}