aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS_TheReturn/CommandParser.cs
blob: da1073fc80f718e2cc8b859a863ffd069d547d64 (plain) (blame)
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
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace ShiftOS.Engine
{
    /// <summary>
    /// Static abstraction layer for the current command parser
    /// </summary>
    public static class CurrentCommandParser
    {
        /// <summary>
        /// The current parser
        /// </summary>
        public static CommandParser parser;
    }

    /// <summary>
    /// Provides functionality for parsing a Terminal command string
    /// </summary>
    public sealed class CommandParser
    {
        public IList<CommandFormat> parts = new List<CommandFormat>();

        /// <summary>
        /// Adds a command format to the parser
        /// </summary>
        /// <param name="part">The format to add</param>
        public void AddPart(CommandFormat part)
        {
            parts.Add(part);
        }

        /// <summary>
        /// Imports the command parser formats from a list.
        /// </summary>
        /// <param name="parts">The list of formats.</param>
        public void ImportPart(IList<CommandFormat> parts)
        {
            this.parts = parts;
        }

        /// <summary>
        /// Saves the parser to a JSON string.
        /// </summary>
        /// <returns></returns>
        public string Save()
        {
            return JsonConvert.SerializeObject(parts, Formatting.Indented);
        }

        /// <summary>
        /// Loads a new <see cref="CommandParser"/> from a file. 
        /// </summary>
        /// <param name="val">The file to load</param>
        /// <returns>The parser constructed from the file</returns>
        public static CommandParser Load(string val)
        {
            CommandParser parser = new CommandParser();
            JArray data = JArray.Parse(val);

            IList<CFValue> values = data.Select(obj => new CFValue(
                (string)obj["type"],
                (string)obj["text"]
            )).ToList();

            foreach (CFValue value in values)
            {
                parser.AddPart(value.GetCommandFormat());
            }

            return parser;
        }

        /// <summary>
        /// Parses a command string.
        /// </summary>
        /// <param name="cdd">The command string to parse.</param>
        /// <returns>The parsed command, ready to be invoked.</returns>
        public KeyValuePair<string, Dictionary<string, string>> ParseCommand(string cdd)
        {
            string command = "";
            Dictionary<string, string> arguments = new Dictionary<string, string>();

            string text = cdd;
            int position = 0;

            int commandPos;
            int firstValuePos = -1;
            int lastValuePos = -1;

            for (int ii = 0; ii < parts.Count; ii++)
            {
                CommandFormat part = parts[ii];
                if (part is CommandFormatMarker)
                {
                    if (part is CommandFormatCommand)
                    {
                        commandPos = ii;
                    }
                    else if (part is CommandFormatValue)
                    {
                        if (firstValuePos > -1)
                            lastValuePos = ii;
                        else
                            firstValuePos = ii;
                    }
                }
            }

            int i = 0;
            string currentArgument = "";
            int help = -1;

            while (position < text.Length)
            {

                if (i >= parts.Count)
                {
                    position = text.Length;
                    command = "+FALSE+";
                    i = 0;
                }

                CommandFormat part = parts[i];
                string res = part.CheckValidity(text.Substring(position));

                // ok so:

                // example
                // COMMAND text[ --] ARGUMENT VALUE text[ --] ARGUMENT VALUE
                // COMMAND text[{] ARGUMENT text[=] VALUE text[, ] ARGUMENT text[=] VALUE text[}]

                if (part is CommandFormatMarker)
                {
                    if (part is CommandFormatCommand)
                    {
                        command = res;
                        help = -1;
                    }
                    else if (part is CommandFormatArgument)
                    {
                        currentArgument = res;
                        help = -1;
                    }
                    else if (part is CommandFormatValue)
                    {
                        arguments[currentArgument] = string.Join("", res.Split('"'));

                        if (i == firstValuePos)
                            help = lastValuePos;
                        if (i == lastValuePos)
                            help = firstValuePos;
                    }
                }

                if (res == "+FALSE+")
                {
                    if (help > -1)
                    {
                        i = help;
                        if (i >= parts.Count)
                        {
                            position = text.Length;
                            command = "+FALSE+";
                        }
                    }
                    else
                    {
                        position = text.Length;
                        command = "+FALSE+";
                    }
                    help = -1;
                }
                else
                {
                    position += res.Length;
                }

                i++;
            }

            if (command == "+FALSE+")
            {
                //lblExampleCommand.Text = "Syntax Error";
                return new KeyValuePair<string, Dictionary<string, string>>();
            }
            else
            {
                /*string argvs = "{";

                foreach (KeyValuePair<string, string> entry in arguments) {
                    argvs += entry.Key + "=" + entry.Value + ", ";
                }

                argvs += "}";

                lblExampleCommand.Text = command + argvs;*/
                return new KeyValuePair<string, Dictionary<string, string>>(command, arguments);
            }
        }

        internal static CommandParser GenerateSample()
        {
            var parser = new CommandParser();
            parser.AddPart(new CommandFormatCommand());
            parser.AddPart(new CommandFormatText(" --"));
            parser.AddPart(new CommandFormatArgument());
            parser.AddPart(new CommandFormatText(" "));
            parser.AddPart(new CommandFormatValue());
            parser.AddPart(new CommandFormatText(" --"));
            parser.AddPart(new CommandFormatArgument());
            parser.AddPart(new CommandFormatText(" "));
            parser.AddPart(new CommandFormatValue());
            return parser;
        }
    }

    public class CFValue
    {
        public string type { get; set; }

        public string text { get; set; }

        public CFValue(string type, string text)
        {
            this.type = type;
            this.text = text;
        }

        public CFValue(CommandFormat format)
        {
            type = "";
            text = "";
            if (format is CommandFormatText)
            {
                text = ((CommandFormatText)format).str;
                if (format is CommandFormatOptionalText)
                {
                    type = "optionalText";
                }
                else if (format is CommandFormatRegex)
                {
                    type = "regexText";
                }
                else
                {
                    type = "text";
                }
            }
            else if (format is CommandFormatMarker)
            {
                if (format is CommandFormatNamespace)
                {
                    type = "namespace";
                }
                else if (format is CommandFormatCommand)
                {
                    type = "command";
                }
                else if (format is CommandFormatArgument)
                {
                    type = "argument";
                }
                else if (format is CommandFormatValue)
                {
                    type = "value";
                }
            }
        }

        public CommandFormat GetCommandFormat()
        { // TODO update with better code
            switch (type)
            {
                case "text":
                    return new CommandFormatText(text);
                case "optionalText":
                    return new CommandFormatOptionalText(text);
                case "regexText":
                    return new CommandFormatRegex(text);
                case "namespace":
                    return new CommandFormatNamespace();
                case "command":
                    return new CommandFormatCommand();
                case "argument":
                    return new CommandFormatArgument();
                case "value":
                    return new CommandFormatValue();
                case "color":
                    throw new NotImplementedException(); // fix this (make it not a notimplementedexception)
            }
            return new CommandFormatMarker();
        }
    }


    public interface CommandFormat
    {
        string CheckValidity(string check);
        Control Draw();
    }
    public class CommandFormatText : CommandFormat
    {
        public string str = "";
        TextBox textBox;

        public CommandFormatText()
        {

        }

        public CommandFormatText(string str)
        {
            this.str = str;
        }

        public virtual string CheckValidity(string check)
        {
            return check.StartsWith(str) ? str : "+FALSE+";
        }

        public Control Draw()
        {
            textBox = new TextBox();
            textBox.TextChanged += new EventHandler(TextChanged);
            textBox.Location = new Point(0, 0);
            textBox.Text = str;

            return textBox;
        }

        void TextChanged(object sender, EventArgs e)
        {
            str = textBox.Text;
        }
    }

    public class CommandFormatOptionalText : CommandFormatText
    {
        public CommandFormatOptionalText() : base()
        {
        }
        public CommandFormatOptionalText(string str) : base(str)
        {
        }

        public override string CheckValidity(string check)
        {
            return check.StartsWith(str) ? str : "";
        }
    }

    public class CommandFormatRegex : CommandFormatText
    {
        public CommandFormatRegex() : base()
        {
        }
        public CommandFormatRegex(string str) : base(str)
        {
        }

        public override string CheckValidity(string check)
        {
            Match match = (new Regex("^" + str)).Match(check);
            return match.Success ? match.Value : "+FALSE+";
        }
    }

    public class CommandFormatMarker : CommandFormat
    {
        protected string str;
        Button button;

        public CommandFormatMarker()
        {
        }

        public virtual string CheckValidity(string check)
        {
            string res = string.Empty;
            string alphanumeric = "QWERTYUIOPASDFGHJKLZXCVBNMqwertyuiopasdfghjklzxcvbnm"; // not using regex for performance reasons

            foreach (char c in check)
            {
                if (alphanumeric.IndexOf(c) > -1)
                {
                    res += c;
                }
                else
                {
                    break;
                }
            }

            return res;
        }

        public virtual Control Draw()
        {
            button = new Button();
            button.Location = new Point(0, 0);
            button.Text = "Marker";

            return button;
        }
    }

    public class CommandFormatCommand : CommandFormatMarker
    {
        public override Control Draw()
        {
            Button draw = (Button)base.Draw();
            draw.Text = "Command";
            return draw;
        }
    }

    public class CommandFormatNamespace : CommandFormatMarker
    {
        public override Control Draw()
        {
            Button draw = (Button)base.Draw();
            draw.Text = "Namespace";
            return draw;
        }
    }

    public class CommandFormatArgument : CommandFormatMarker
    {
        public override Control Draw()
        {
            Button draw = (Button)base.Draw();
            draw.Text = "Argument";
            return draw;
        }
    }

    public class CommandFormatValue : CommandFormatMarker
    {
        public override string CheckValidity(string cd)
        {
            string res = string.Empty;
            var check = "";
            bool done = false;

            if (cd.StartsWith("\""))
            {
                check = cd.Substring(1);

                foreach (char c in check)
                {
                    if (c != '"')
                    {
                        res += c;
                    }
                    else
                    {
                        done = true;
                        res = "\"" + res + "\"";
                        break;
                    }
                }
            }
            else
            {
                res = base.CheckValidity(cd);
                done = true;
            }
            return done ? res : "+FALSE+";
        }

        public override Control Draw()
        {
            Button draw = (Button)base.Draw();
            draw.Text = "\"Value\"";
            return draw;
        }
    }
}