This repository was archived by the owner on Dec 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 223
/
Copy pathCommandToken.cs
225 lines (192 loc) · 6.55 KB
/
CommandToken.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
// Copyright (C) 2016-2021 The Neo Project.
//
// The Neo.ConsoleService is free software distributed under the MIT
// software license, see the accompanying file LICENSE in the main directory
// of the project or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.
using System;
using System.Collections.Generic;
using System.Text;
namespace Neo.ConsoleService
{
internal abstract class CommandToken
{
/// <summary>
/// Offset
/// </summary>
public int Offset { get; }
/// <summary>
/// Type
/// </summary>
public CommandTokenType Type { get; }
/// <summary>
/// Value
/// </summary>
public string Value { get; protected init; }
/// <summary>
/// Constructor
/// </summary>
/// <param name="type">Type</param>
/// <param name="offset">Offset</param>
protected CommandToken(CommandTokenType type, int offset)
{
Type = type;
Offset = offset;
}
/// <summary>
/// Parse command line
/// </summary>
/// <param name="commandLine">Command line</param>
/// <returns></returns>
public static IEnumerable<CommandToken> Parse(string commandLine)
{
CommandToken lastToken = null;
for (int index = 0, count = commandLine.Length; index < count;)
{
switch (commandLine[index])
{
case ' ':
{
lastToken = CommandSpaceToken.Parse(commandLine, ref index);
yield return lastToken;
break;
}
case '"':
case '\'':
{
// "'"
if (lastToken is CommandQuoteToken quote && quote.Value[0] != commandLine[index])
{
goto default;
}
lastToken = CommandQuoteToken.Parse(commandLine, ref index);
yield return lastToken;
break;
}
default:
{
lastToken = CommandStringToken.Parse(commandLine, ref index,
lastToken is CommandQuoteToken quote ? quote : null);
yield return lastToken;
break;
}
}
}
}
/// <summary>
/// Create string arguments
/// </summary>
/// <param name="tokens">Tokens</param>
/// <param name="removeEscape">Remove escape</param>
/// <returns>Arguments</returns>
public static string[] ToArguments(IEnumerable<CommandToken> tokens, bool removeEscape = true)
{
var list = new List<string>();
CommandToken lastToken = null;
foreach (var token in tokens)
{
if (token is CommandStringToken str)
{
if (removeEscape && lastToken is CommandQuoteToken quote)
{
// Remove escape
list.Add(str.Value.Replace("\\" + quote.Value, quote.Value));
}
else
{
list.Add(str.Value);
}
}
lastToken = token;
}
return list.ToArray();
}
/// <summary>
/// Create a string from token list
/// </summary>
/// <param name="tokens">Tokens</param>
/// <returns>String</returns>
public static string ToString(IEnumerable<CommandToken> tokens)
{
var sb = new StringBuilder();
foreach (var token in tokens)
{
sb.Append(token.Value);
}
return sb.ToString();
}
/// <summary>
/// Trim
/// </summary>
/// <param name="args">Args</param>
public static void Trim(List<CommandToken> args)
{
// Trim start
while (args.Count > 0 && args[0].Type == CommandTokenType.Space)
{
args.RemoveAt(0);
}
// Trim end
while (args.Count > 0 && args[^1].Type == CommandTokenType.Space)
{
args.RemoveAt(args.Count - 1);
}
}
/// <summary>
/// Read String
/// </summary>
/// <param name="args">Args</param>
/// <param name="consumeAll">Consume all if not quoted</param>
/// <returns>String</returns>
public static string ReadString(List<CommandToken> args, bool consumeAll)
{
Trim(args);
var quoted = false;
if (args.Count > 0 && args[0].Type == CommandTokenType.Quote)
{
quoted = true;
args.RemoveAt(0);
}
else
{
if (consumeAll)
{
// Return all if it's not quoted
var ret = ToString(args);
args.Clear();
return ret;
}
}
if (args.Count > 0)
{
switch (args[0])
{
case CommandQuoteToken _:
{
if (quoted)
{
args.RemoveAt(0);
return "";
}
throw new ArgumentException();
}
case CommandSpaceToken _: throw new ArgumentException();
case CommandStringToken str:
{
args.RemoveAt(0);
if (quoted && args.Count > 0 && args[0].Type == CommandTokenType.Quote)
{
// Remove last quote
args.RemoveAt(0);
}
return str.Value;
}
}
}
return null;
}
}
}