Наша сборка Qt VS Tools
giy
2022-06-13 175679ae608f0b295d761588d332f635b21bdf30
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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
/****************************************************************************
**
** Copyright (C) 2019 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the Qt VS Tools.
**
** $QT_BEGIN_LICENSE:GPL-EXCEPT$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 as published by the Free Software
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/
 
using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Linq.Expressions;
using System.Reflection;
using System.Text;
 
namespace QtVsTools.SyntaxAnalysis
{
    public abstract partial class RegExpr
    {
        [Flags]
        public enum Delimiter { None, Left, Right }
 
        [Flags]
        public enum Operand { None, Left, Right }
 
        public interface IProductionRule
        {
            int Priority { get; }
            RuleCallback.Selector Selector { get; }
            RuleCallback.PreCondition PreCondition { get; }
            Token Token { get; set; }
            Delimiter Delimiters { get; }
            Operand Operands { get; }
            object Execute(ParseTree.Node node);
        }
 
        public abstract class ProductionRule<T> : IProductionRule, IEnumerable
        {
            public int Priority { get; protected set; }
            public RuleCallback.Selector Selector { get; set; }
            public RuleCallback.PreCondition PreCondition { get; set; }
 
            public Token Token { get; set; }
            public virtual Delimiter Delimiters { get { return Delimiter.None; } }
            public virtual Operand Operands { get { return Operand.None; } }
 
            protected List<IRuleAction<T>> Actions = new List<IRuleAction<T>>();
 
            protected void Init(
                int priority, RuleCallback.Selector select, RuleCallback.PreCondition pre)
            {
                Priority = priority;
                Selector = select;
                PreCondition = pre;
            }
 
            public void Add(IRuleAction<T> action)
            {
                Actions.Add(action);
            }
 
            protected abstract object[] FetchOperands(Stack<ParseTree.Node> operandStack);
 
            protected virtual T DefaultProduction(
                string capturedValue,
                Stack<ParseTree.Node> operandStack,
                ProductionObjects productions)
            {
                return CreateInstance();
            }
 
            protected virtual bool TestPreCondition(
                ParseTree.Node node,
                string capturedValue,
                Stack<ParseTree.Node> operandStack,
                ProductionObjects productions)
            {
                if (PreCondition == null)
                    return true;
                return PreCondition(node);
            }
 
            public object Execute(ParseTree.Node node)
            {
                if (PreCondition != null && !PreCondition(node))
                    throw new ParseErrorException();
 
                if (node.Parent == null)
                    return null;
 
                var operandStack = node.Parent.OperandStack;
                var capturedValue = node.Value;
                var productions = node.ChildProductions;
 
                // pop-out rule operands from operand stack
                object[] ruleOperands = FetchOperands(operandStack);
 
                // calculate order of actions taking child productions into account
                var actionScheduling = ScheduleActions(productions);
 
                // run actions in the calculated order
                T production = default(T);
                foreach (var actionSchedule in actionScheduling) {
                    var a = actionSchedule.Action;
                    var childProduction = actionSchedule.Production;
 
                    // if production is null and action is update, init with default production
                    if (production == null && a.ActionInfo.ReturnType == typeof(void))
                        production = DefaultProduction(capturedValue, operandStack, productions);
 
                    // if action uses child production, use it as input instead of the rule operands
                    if (childProduction != null)
                        a.Execute(ref production, capturedValue, childProduction);
                    else
                        a.Execute(ref production, capturedValue, ruleOperands);
                }
 
                // if no production was created by rule actions, create default production
                if (production == null)
                    production = DefaultProduction(capturedValue, operandStack, productions);
 
                return production;
            }
 
            class ActionSchedule
            {
                public IRuleAction<T> Action { get; set; }
                public int ActionIndex { get; set; }
                public object Production { get; set; }
                public int ProductionIndex { get; set; }
            }
 
            IEnumerable<ActionSchedule> ScheduleActions(ProductionObjects childProductions)
            {
                // actions with order of definition
                var actionsOrder = Actions
                    .Select((a, aIdx) => new
                    {
                        Self = a,
                        Index = aIdx,
                        a.SourceTokenId
                    });
                var dependentActions = actionsOrder
                    .Where(a => !string.IsNullOrEmpty(a.SourceTokenId));
                var independentActions = actionsOrder
                    .Where(a => string.IsNullOrEmpty(a.SourceTokenId));
 
                // child productions with order of creation
                var productionsOrder = childProductions
                    .Select((p, pIdx) => new
                    {
                        Self = p.Value,
                        Index = pIdx,
                        TokenId = p.Key
                    });
 
                // schedule actions that depend on child production:
                //  * actions x productions
                //  * sorted by production creation order (inverted)
                //  * and then by action definition order (inverted)
                var dependentActionSchedules = dependentActions
                    .Join(productionsOrder,
                    a => a.SourceTokenId, p => p.TokenId,
                    (a, p) => new ActionSchedule
                    {
                        Action = a.Self,
                        ActionIndex = a.Index,
                        Production = p.Self,
                        ProductionIndex = p.Index,
                    })
                    .OrderByDescending(ap => ap.ProductionIndex)
                    .ThenByDescending(ap => ap.ActionIndex);
 
                // insert independent actions in the right order
                var scheduled = new Stack<ActionSchedule>();
                IEnumerable<ActionSchedule> toSchedule = dependentActionSchedules;
                foreach (var a in independentActions.OrderByDescending(a => a.Index)) {
                    var scheduleAfter = toSchedule
                        .TakeWhile(ap => ap.ActionIndex > a.Index);
                    foreach (var ap in scheduleAfter)
                        scheduled.Push(ap);
                    scheduled.Push(new ActionSchedule { Action = a.Self });
 
                    toSchedule = toSchedule.Skip(scheduleAfter.Count());
                }
                if (toSchedule.Any()) {
                    foreach (var ap in toSchedule)
                        scheduled.Push(ap);
                }
 
                return scheduled;
            }
 
            public IEnumerator GetEnumerator()
            {
                return Actions.GetEnumerator();
            }
 
            protected T CreateInstance()
            {
                var type = typeof(T);
 
                if (type.IsValueType)
                    return default(T);
 
                if (type == typeof(string))
                    return (T)(object)string.Empty;
 
                if (!type.IsClass)
                    throw new InvalidOperationException("Not a class: " + type.Name);
 
                if (type.IsAbstract)
                    throw new InvalidOperationException("Abstract class: " + type.Name);
 
                if (type.ContainsGenericParameters)
                    throw new InvalidOperationException("Generic class: " + type.Name);
 
                var ctorInfo = ((TypeInfo)type).DeclaredConstructors
                    .Where(x => x.GetParameters().Length == 0)
                    .FirstOrDefault();
 
                if (ctorInfo == null)
                    throw new InvalidOperationException("No default constructor: " + type.Name);
 
                return (T)ctorInfo.Invoke(new object[0]);
            }
        }
 
        public class Rule<T> : ProductionRule<T>
        {
            public Rule(
                int priority = int.MaxValue,
                RuleCallback.Selector select = null,
                RuleCallback.PreCondition pre = null)
            {
                Init(priority, select, pre);
            }
 
            protected override object[] FetchOperands(Stack<ParseTree.Node> operandStack)
            {
                return new object[] { };
            }
        }
 
        public class PrefixRule<TOperand, T> : ProductionRule<T>
        {
            public override Operand Operands { get { return Operand.Right; } }
 
            public PrefixRule(
                int priority = 0,
                RuleCallback.Selector select = null,
                RuleCallback.PreCondition pre = null)
            {
                Init(priority, select, pre);
            }
 
            protected override object[] FetchOperands(Stack<ParseTree.Node> operandStack)
            {
                if (operandStack.Count < 1)
                    throw new ParseErrorException();
 
                var operand = operandStack.Pop();
                if (!(operand.Production is TOperand))
                    throw new ParseErrorException();
 
                return new object[] { operand.Production };
            }
        }
 
        public class PostfixRule<TOperand, T> : ProductionRule<T>
        {
            public override Operand Operands { get { return Operand.Left; } }
 
            public PostfixRule(
                int priority = 0,
                RuleCallback.Selector select = null,
                RuleCallback.PreCondition pre = null)
            {
                Init(priority, select, pre);
            }
 
            protected override object[] FetchOperands(Stack<ParseTree.Node> operandStack)
            {
                if (operandStack.Count < 1)
                    throw new ParseErrorException();
 
                var operand = operandStack.Pop();
                if (!(operand.Production is TOperand))
                    throw new ParseErrorException();
 
                return new object[] { operand.Production };
            }
        }
 
        public class InfixRule<TLeftOperand, TRightOperand, T> : ProductionRule<T>
        {
            public override Operand Operands { get { return Operand.Left | Operand.Right; } }
 
            public InfixRule(
                int priority = 0,
                RuleCallback.Selector select = null,
                RuleCallback.PreCondition pre = null)
            {
                Init(priority, select, pre);
            }
 
            protected override object[] FetchOperands(Stack<ParseTree.Node> operandStack)
            {
                if (operandStack.Count < 2)
                    throw new ParseErrorException();
 
                var rightOperand = operandStack.Pop();
                if (!(rightOperand.Production is TRightOperand))
                    throw new ParseErrorException();
 
                var leftOperand = operandStack.Pop();
                if (!(leftOperand.Production is TLeftOperand))
                    throw new ParseErrorException();
 
                return new object[] { leftOperand.Production, rightOperand.Production };
            }
        }
 
        public class LeftDelimiterRule<T> : ProductionRule<T>
        {
            public override Delimiter Delimiters { get { return Delimiter.Left; } }
 
            public LeftDelimiterRule(
                int priority = int.MinValue,
                RuleCallback.Selector select = null,
                RuleCallback.PreCondition pre = null)
            {
                Init(priority, select, pre);
            }
 
            protected override object[] FetchOperands(Stack<ParseTree.Node> operandStack)
            {
                return new object[] { };
            }
        }
 
        public class RightDelimiterRule<TLeftDelim, TExpr, T> : ProductionRule<T>
        {
            public override Delimiter Delimiters { get { return Delimiter.Right; } }
 
            public RightDelimiterRule(
                int priority = int.MaxValue,
                RuleCallback.Selector select = null,
                RuleCallback.PreCondition pre = null)
            {
                Init(priority, select, pre);
            }
 
            protected override T DefaultProduction(
                string capturedValue,
                Stack<ParseTree.Node> operandStack,
                ProductionObjects productions)
            {
                throw new ParseErrorException();
            }
 
            protected override object[] FetchOperands(Stack<ParseTree.Node> operandStack)
            {
                if (operandStack.Count < 2)
                    throw new ParseErrorException();
 
                var delimitedExpr = operandStack.Pop();
                if (!(delimitedExpr.Production is TExpr))
                    throw new ParseErrorException();
 
                var leftDelimiter = operandStack.Pop();
                if (!(leftDelimiter.Production is TLeftDelim))
                    throw new ParseErrorException();
 
                return new object[] { leftDelimiter.Production, delimitedExpr.Production };
            }
        }
 
        public static class RuleCallback
        {
            public delegate bool Selector(ITokenCapture token);
            public delegate bool PreCondition(IOperatorCapture capture);
        }
 
        public const RuleCallback.Selector Default = null;
    }
}