-
Notifications
You must be signed in to change notification settings - Fork 451
Expand file tree
/
Copy pathHttpRootSyntaxNode.cs
More file actions
126 lines (108 loc) · 4.52 KB
/
HttpRootSyntaxNode.cs
File metadata and controls
126 lines (108 loc) · 4.52 KB
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
// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
#nullable enable
using Microsoft.CodeAnalysis.Text;
using Microsoft.DotNet.Interactive.Http.Parsing.Parsing;
using System.Collections.Generic;
using System.Linq;
using Microsoft.DotNet.Interactive.Parsing;
using System.Text;
namespace Microsoft.DotNet.Interactive.Http.Parsing;
using Diagnostic = CodeAnalysis.Diagnostic;
internal class HttpRootSyntaxNode : HttpSyntaxNode
{
internal HttpRootSyntaxNode(SourceText sourceText, HttpSyntaxTree tree) : base(sourceText, tree)
{
}
public void Add(HttpRequestNode requestNode)
{
AddInternal(requestNode);
}
public void Add(HttpCommentNode commentNode)
{
AddInternal(commentNode);
}
public void Add(HttpVariableDeclarationAndAssignmentNode variableNode)
{
AddInternal(variableNode);
}
public void Add(HttpRequestSeparatorNode separatorNode)
{
AddInternal(separatorNode);
}
public (Dictionary<string, DeclaredVariable> declaredVariables, List<Diagnostic>? diagnostics) TryGetDeclaredVariables(HttpBindingDelegate? bind = null)
{
var variableAndDeclarationNodes = ChildNodes.OfType<HttpVariableDeclarationAndAssignmentNode>();
List<Diagnostic>? diagnostics = null;
var foundVariableValues = new Dictionary<string, string>();
var declaredVariables = new Dictionary<string, DeclaredVariable>();
foreach (var node in variableAndDeclarationNodes)
{
if (node.ValueNode is not null && node.DeclarationNode is not null)
{
var embeddedExpressionNodes = node.ValueNode.ChildNodes.OfType<HttpEmbeddedExpressionNode>();
var potentialEscapedCharacters = node.ValueNode.ChildNodes.OfType<HttpEscapedCharacterSequenceNode>();
if (potentialEscapedCharacters.Any())
{
StringBuilder sb = new StringBuilder();
foreach (var child in node.ValueNode.ChildNodesAndTokens)
{
if (child is HttpEscapedCharacterSequenceNode sequenceNode)
{
sb.Append(sequenceNode.UnescapedText);
}
else
{
sb.Append(child.Text);
}
}
var value = sb.ToString();
foundVariableValues[node.DeclarationNode.VariableName] = value;
declaredVariables[node.DeclarationNode.VariableName] = new DeclaredVariable(node.DeclarationNode.VariableName, value, HttpBindingResult<string>.Success(Text));
}
else if (!embeddedExpressionNodes.Any())
{
foundVariableValues[node.DeclarationNode.VariableName] = node.ValueNode.Text;
declaredVariables[node.DeclarationNode.VariableName] = new DeclaredVariable(node.DeclarationNode.VariableName, node.ValueNode.Text, HttpBindingResult<string>.Success(Text));
}
else
{
var value = node.ValueNode.TryGetValue(node =>
{
if (foundVariableValues.TryGetValue(node.Text, out string? stringValue))
{
return node.CreateBindingSuccess(stringValue);
}
else if (bind != null)
{
return bind(node);
}
else
{
return DynamicExpressionUtilities.ResolveExpressionBinding(node, node.Text);
}
});
if (value?.Value != null)
{
declaredVariables[node.DeclarationNode.VariableName] = new DeclaredVariable(node.DeclarationNode.VariableName, value.Value, value);
}
else
{
if(diagnostics is null)
{
diagnostics = value?.Diagnostics;
}
else
{
if (value is not null)
{
diagnostics.AddRange(value.Diagnostics);
}
}
}
}
}
}
return (declaredVariables, diagnostics);
}
}