forked from ThomasMertes/seed7
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcli_cmds.s7i
More file actions
1190 lines (1127 loc) · 40.5 KB
/
cli_cmds.s7i
File metadata and controls
1190 lines (1127 loc) · 40.5 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
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
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(********************************************************************)
(* *)
(* cli_cmds.s7i Emulate CLI commands from Unix and Dos. *)
(* Copyright (C) 2010 - 2015, 2017, 2019 Thomas Mertes *)
(* 2022 - 2025 Thomas Mertes *)
(* *)
(* This file is part of the Seed7 Runtime Library. *)
(* *)
(* The Seed7 Runtime Library is free software; you can *)
(* redistribute it and/or modify it under the terms of the GNU *)
(* Lesser General Public License as published by the Free Software *)
(* Foundation; either version 2.1 of the License, or (at your *)
(* option) any later version. *)
(* *)
(* The Seed7 Runtime Library is distributed in the hope that it *)
(* will be useful, but WITHOUT ANY WARRANTY; without even the *)
(* implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR *)
(* PURPOSE. See the GNU Lesser General Public License for more *)
(* details. *)
(* *)
(* You should have received a copy of the GNU Lesser General *)
(* Public License along with this program; if not, write to the *)
(* Free Software Foundation, Inc., 51 Franklin Street, *)
(* Fifth Floor, Boston, MA 02110-1301, USA. *)
(* *)
(********************************************************************)
include "osfiles.s7i";
include "shell.s7i";
include "getf.s7i";
include "wildcard.s7i";
const set of char: parameter_char is {'!' .. '~'} - {'<', '>', '|', ';', ')'};
const set of char: dos_parameter_char is {'!' .. '~'} - {'&', '<', '>', '|'};
(**
* Remove files and directories.
* If errors occur messages are written to STD_OUT.
* @param fileList List of files to be removed.
* @param recursive TRUE if subdirectories should be
* removed recursively, FALSE otherwise.
* @param force TRUE if absent files should not
* trigger error messages, FALSE otherwise.
*)
const proc: doRemoveCmd (in array string: fileList,
in boolean: recursive, in boolean: force) is func
local
var string: fileName is "";
begin
for fileName range fileList do
if fileTypeSL(fileName) = FILE_ABSENT then
if not force then
writeln("Cannot remove " <& fileName <& " - No such file or directory");
end if;
else
block
if recursive then
removeTree(fileName);
else
removeFile(fileName);
end if;
exception
catch FILE_ERROR:
writeln("Cannot remove " <& fileName <& " - Not permitted");
end block;
end if;
end for;
end func;
(**
* Copy files and directories.
* The list of files must have at least two elements. If the
* last element of the list is a directory the other files
* are copied into this directory. If errors occur messages
* are written to STD_OUT.
* @param fileList List of files to be copied. The last
* element is the destination.
* @param recursive TRUE if subdirectories should be
* copied recursively, FALSE otherwise.
* @param overwriteExisting TRUE if existing files
* should be overwritten,
* FALSE otherwise.
* @param archive TRUE if file properties should be
* preserved, FALSE otherwise.
*)
const proc: doCopyCmd (in var array string: fileList,
in boolean: recursive, in boolean: overwriteExisting, in boolean: archive) is func
local
var string: fileName is "";
var string: destination is "";
var string: destFileName is "";
var integer: slashPos is 0;
begin
if length(fileList) >= 2 then
destination := fileList[length(fileList)];
fileList := fileList[.. pred(length(fileList))];
if fileType(destination) = FILE_DIR then
for fileName range fileList do
if fileType(fileName) = FILE_REGULAR or
(recursive and fileType(fileName) = FILE_DIR) then
slashPos := rpos(fileName, "/");
if slashPos = 0 then
destFileName := destination & "/" & fileName;
else
destFileName := destination & "/" & fileName[succ(slashPos) ..];
end if;
if fileTypeSL(destFileName) = FILE_REGULAR and overwriteExisting then
block
removeFile(destFileName);
exception
catch FILE_ERROR:
writeln(" *** Cannot remove " <& destFileName);
end block;
end if;
if fileType(destFileName) = FILE_ABSENT then
# write("copyFile " <& fileName <& " " <& destination);
if archive then
cloneFile(fileName, destFileName);
else
copyFile(fileName, destFileName);
end if;
end if;
elsif fileType(fileName) = FILE_ABSENT then
writeln("Cannot copy non-existent file " <& fileName);
else
writeln("Cannot copy " <& fileName);
end if;
end for;
elsif length(fileList) = 1 then
fileName := fileList[1];
if fileType(fileName) = FILE_REGULAR or
(recursive and fileType(fileName) = FILE_DIR) then
if fileTypeSL(destination) = FILE_REGULAR and overwriteExisting then
block
removeFile(destination);
exception
catch FILE_ERROR:
writeln(" *** Cannot remove " <& destination);
end block;
end if;
if fileType(destination) = FILE_ABSENT then
# write("copyFile " <& fileName <& " " <& destination);
if archive then
cloneFile(fileName, destination);
else
copyFile(fileName, destination);
end if;
end if;
elsif fileType(fileName) = FILE_ABSENT then
writeln("Cannot copy non-existent file " <& fileName);
else
writeln("Cannot copy " <& fileName);
end if;
else
writeln("Target " <& destination <& " is not a directory");
end if;
else
writeln("Missing destination file");
end if;
end func;
(**
* Move files and directories.
* The list of files must have at least two elements. If the
* last element of the list is a directory the other files
* are moved into this directory. If errors occur messages
* are written to STD_OUT.
* @param fileList List of files to be moved. The last
* element is the destination.
* @param overwriteExisting TRUE if existing files
* should be overwritten,
* FALSE otherwise.
*)
const proc: doMoveCmd (in var array string: fileList,
in boolean: overwriteExisting) is func
local
var string: fileName is "";
var string: destination is "";
var string: destFileName is "";
var integer: slashPos is 0;
begin
if length(fileList) >= 2 then
destination := fileList[length(fileList)];
fileList := fileList[.. pred(length(fileList))];
if fileType(destination) = FILE_DIR then
for fileName range fileList do
if fileType(fileName) = FILE_REGULAR or fileType(fileName) = FILE_DIR then
slashPos := rpos(fileName, "/");
if slashPos = 0 then
destFileName := destination & "/" & fileName;
else
destFileName := destination & "/" & fileName[succ(slashPos) ..];
end if;
if fileTypeSL(destFileName) = FILE_REGULAR and overwriteExisting then
block
removeFile(destFileName);
exception
catch FILE_ERROR:
writeln(" *** Cannot remove " <& destFileName);
end block;
end if;
if fileType(destFileName) = FILE_ABSENT then
# write("moveFile " <& fileName <& " " <& destination);
moveFile(fileName, destFileName);
end if;
elsif fileType(fileName) = FILE_ABSENT then
writeln("Cannot move non-existent file " <& fileName);
else
writeln("Cannot move " <& fileName);
end if;
end for;
elsif length(fileList) = 1 then
fileName := fileList[1];
if fileType(fileName) = FILE_REGULAR or fileType(fileName) = FILE_DIR then
if fileTypeSL(destination) = FILE_REGULAR and overwriteExisting then
block
removeFile(destination);
exception
catch FILE_ERROR:
writeln(" *** Cannot remove " <& destination);
end block;
end if;
if fileType(destination) = FILE_ABSENT then
# write("moveFile " <& fileName <& " " <& destination);
moveFile(fileName, destination);
end if;
elsif fileType(fileName) = FILE_ABSENT then
writeln("Cannot move non-existent file " <& fileName);
else
writeln("Cannot move " <& fileName);
end if;
else
writeln("Target " <& destination <& " is not a directory");
end if;
else
writeln("Missing destination file");
end if;
end func;
(**
* Make directories.
* @param fileList List of directories to be created.
* @param parentDirs TRUE if parent directories should
* be created as needed, FALSE otherwise.
*)
const proc: doMkdirCmd (in array string: fileList,
in boolean: parentDirs) is func
local
var string: fileName is "";
var boolean: okay is TRUE;
begin
for fileName range fileList do
okay := TRUE;
if parentDirs then
block
makeParentDirs(fileName);
exception
catch FILE_ERROR:
writeln(" *** Cannot make parent directories of " <& fileName <& " - Element is not a directory");
okay := FALSE;
end block;
end if;
if okay then
if fileTypeSL(fileName) = FILE_ABSENT then
block
makeDir(fileName);
exception
catch FILE_ERROR:
writeln(" *** Cannot make directory " <& fileName);
end block;
elsif fileTypeSL(fileName) = FILE_DIR and not parentDirs then
writeln(" *** Cannot make directory " <& fileName <& " - File exists");
end if;
end if;
end for;
end func;
const func string: getCommandParameter (inout string: stri) is func
result
var string: symbol is "";
local
var integer: leng is 0;
var integer: pos is 1;
var char: quotation is ' ';
var integer: quotedPos is 0;
var string: quotedPart is "";
var boolean: quoteMissing is FALSE;
begin
leng := length(stri);
repeat
if stri[pos] = '"' or stri[pos] = ''' then
quotation := stri[pos];
quotedPos := succ(pos);
quotedPart := "";
while quotedPos <= leng and stri[quotedPos] <> quotation do
quotedPart &:= stri[quotedPos];
incr(quotedPos);
end while;
if quotedPos <= leng then
pos := succ(quotedPos);
symbol &:= quotedPart;
else
quoteMissing := TRUE;
end if;
else
repeat
symbol &:= stri[pos];
incr(pos);
until pos > leng or stri[pos] not in parameter_char or
stri[pos] = '"' or stri[pos] = ''';
end if;
until pos > leng or stri[pos] not in parameter_char or quoteMissing;
stri := stri[pos ..];
end func;
(**
* Read a parameter for a Unix command from a 'string'.
* Unix parameters consist of unquoted and quoted parts. Quoted parts
* can be quoted with single quotes (') or with double quotes (").
* A single quoted part ends with the next single quote. A double
* quoted part ends with unescaped double quotes. In a double quoted
* part the sequences \" and \\ do not terminate the quoted part and
* describe a double quote (") respectively a backslash (\). In an
* unquoted part a backslash (\) can used to escape characters that
* would otherwise have a special meaning. The backslash is ignored
* and the character after it is added to the word. To represent a
* backslash it must be doubled. When the function is called it is
* assumed that parameters[1] contains the first character of the
* parameter. When the function is left ''parameters'' is empty or
* parameters[1] contains the character after the parameter.
* @return the next parameter for a Unix command.
*)
const func string: getUnixCommandParameter (inout string: parameters) is func
result
var string: symbol is "";
local
var integer: leng is 0;
var integer: pos is 1;
var integer: quotedPos is 0;
var string: quotedPart is "";
var boolean: quoteMissing is FALSE;
begin
leng := length(parameters);
while pos <= leng and parameters[pos] in parameter_char and
not quoteMissing do
if parameters[pos] = '"' then
quotedPos := succ(pos);
quotedPart := "";
while quotedPos <= leng and parameters[quotedPos] <> '"' do
if parameters[quotedPos] = '\\' and quotedPos < leng and
(parameters[succ(quotedPos)] = '"' or
parameters[succ(quotedPos)] = '\\') then
incr(quotedPos);
end if;
quotedPart &:= parameters[quotedPos];
incr(quotedPos);
end while;
if quotedPos <= leng then
pos := succ(quotedPos);
symbol &:= quotedPart;
else
quoteMissing := TRUE;
end if;
elsif parameters[pos] = ''' then
quotedPos := succ(pos);
quotedPart := "";
while quotedPos <= leng and parameters[quotedPos] <> ''' do
quotedPart &:= parameters[quotedPos];
incr(quotedPos);
end while;
if quotedPos <= leng then
pos := succ(quotedPos);
symbol &:= quotedPart;
else
quoteMissing := TRUE;
end if;
else
repeat
if parameters[pos] = '\\' and pos < leng then
incr(pos);
end if;
symbol &:= parameters[pos];
incr(pos);
until pos > leng or parameters[pos] not in parameter_char or
parameters[pos] = '"' or parameters[pos] = ''';
end if;
end while;
parameters := parameters[pos ..];
end func;
(**
* Read a parameter for a Dos command from a 'string'.
* Dos parameters consist of unquoted and quoted parts. Quoted parts
* start with a double quote (") and end with the next double quote.
* In an unquoted part a caret (^) can used to escape characters that
* would otherwise have a special meaning. The caret is ignored and
* the character after it is added to the word. To represent a caret
* it must be doubled. When the function is called it is assumed that
* parameters[1] contains the first character of the parameter. When
* the function is left 'parameters' is empty or parameters[1]
* contains the character after the parameter.
* @return the next parameter for a Dos command.
*)
const func string: getDosCommandParameter (inout string: parameters) is func
result
var string: symbol is "";
local
var integer: leng is 0;
var integer: pos is 1;
var integer: quotedPos is 0;
var string: quotedPart is "";
var boolean: quoteMissing is FALSE;
begin
leng := length(parameters);
while pos <= leng and parameters[pos] in dos_parameter_char and
not quoteMissing do
if parameters[pos] = '"' then
quotedPos := succ(pos);
quotedPart := "";
while quotedPos <= leng and parameters[quotedPos] <> '"' do
quotedPart &:= parameters[quotedPos];
incr(quotedPos);
end while;
if quotedPos <= leng then
pos := succ(quotedPos);
symbol &:= quotedPart;
else
quoteMissing := TRUE;
end if;
else
repeat
if parameters[pos] = '^' then
incr(pos);
if pos <= leng then
symbol &:= parameters[pos];
end if;
else
symbol &:= parameters[pos];
end if;
incr(pos);
until pos > leng or parameters[pos] not in dos_parameter_char or
parameters[pos] = '"';
end if;
end while;
parameters := parameters[pos ..];
end func;
(**
* Read a parameter for the Dos echo command from a 'string'.
* Dos parameters consist of unquoted and quoted parts. Quoted parts
* start with a double quote (") and end with the next double quote.
* The starting and ending double quotes are part of the result.
* In an unquoted part a caret (^) can used to escape characters that
* would otherwise have a special meaning. The caret is ignored and
* the character after it is added to the word. To represent a caret
* it must be doubled. When the function is called it is assumed that
* parameters[1] contains the first character of the parameter. When
* the function is left 'parameters' is empty or parameters[1]
* contains the character after the parameter.
* @return the next parameter for the Dos echo command.
*)
const func string: getDosEchoParameter (inout string: parameters) is func
result
var string: symbol is "";
local
var integer: leng is 0;
var integer: pos is 1;
begin
leng := length(parameters);
repeat
# writeln("source char: " <& parameters[pos]);
if parameters[pos] = '"' then
# Inside quotation mode
repeat
symbol &:= parameters[pos];
incr(pos);
until pos > leng or parameters[pos] = '"';
if pos <= leng then
# Consume the terminating quotation mark
symbol &:= '"';
incr(pos);
end if;
else
# Outside quotation mode
repeat
if parameters[pos] = '^' then
incr(pos);
if pos <= leng then
symbol &:= parameters[pos];
end if;
else
symbol &:= parameters[pos];
end if;
incr(pos);
until pos > leng or parameters[pos] not in dos_parameter_char or
parameters[pos] = '"';
end if;
until pos > leng or parameters[pos] not in dos_parameter_char;
parameters := parameters[pos ..];
end func;
const func boolean: doOneCommand (inout string: command,
inout string: commandOutput) is forward;
const func string: execCommand (inout string: command) is func
result
var string: backtickOutput is "";
local
var string: fullCommand is "";
var file: commandFile is STD_NULL;
begin
fullCommand := command;
if not doOneCommand(command, backtickOutput) then
# writeln("command: " <& literal(fullCommand));
commandFile := popen(fullCommand, "r");
if commandFile <> STD_NULL then
backtickOutput := gets(commandFile, 999999999);
while endsWith(backtickOutput, "\r\n") do
backtickOutput := backtickOutput[.. length(backtickOutput) - 2];
end while;
while endsWith(backtickOutput, "\n") do
backtickOutput := backtickOutput[.. pred(length(backtickOutput))];
end while;
else
backtickOutput := "";
end if;
end if;
end func;
const func string: execBacktickCommands (in string: stri) is func
result
var string: withBacktickOutput is "";
local
var integer: backtickPos is 0;
var integer: closingBacktickPos is 0;
var string: command is "";
var string: backtickOutput is "";
begin
withBacktickOutput := stri;
backtickPos := pos(withBacktickOutput, '`');
while backtickPos <> 0 do
closingBacktickPos := pos(withBacktickOutput, '`', succ(backtickPos));
if closingBacktickPos <> 0 then
command := withBacktickOutput[succ(backtickPos) .. pred(closingBacktickPos)];
backtickOutput := execCommand(command);
withBacktickOutput := withBacktickOutput[.. pred(backtickPos)] & backtickOutput &
withBacktickOutput[succ(closingBacktickPos) ..];
end if;
backtickPos := pos(withBacktickOutput, '`', succ(backtickPos));
end while;
end func;
const proc: addToFileList (inout array string: fileList, in var string: parameter,
in boolean: caseSensitive) is func
local
var string: fileName is "";
begin
parameter := convDosPath(parameter);
if pos(parameter, "*") <> 0 or pos(parameter, "?") <> 0 then
for fileName range findMatchingFiles(parameter, caseSensitive) do
fileList &:= fileName;
end for;
else
fileList &:= parameter;
end if;
end func;
(**
* Remove files and directories like the Unix rm command.
* The command accepts the options -r, -R and -f.
* @param parameters Parameters (file names and options)
* of the command. The function
* removes the used parameters.
*)
const proc: doRm (inout string: parameters) is func
local
var string: aParam is "";
var char: option is ' ';
var boolean: recursive is FALSE;
var boolean: force is FALSE;
var boolean: optionMayFollow is TRUE;
var array string: fileList is 0 times "";
begin
# writeln("doRm(" <& literal(parameters) <& ")");
skipWhiteSpace(parameters);
aParam := getUnixCommandParameter(parameters);
while startsWith(aParam, "-") and optionMayFollow do
aParam := aParam[2 ..];
for option range aParam do
case option of
when {'r', 'R'}: recursive := TRUE;
when {'f'}: force := TRUE;
when {'-'}: optionMayFollow := FALSE;
end case;
end for;
skipWhiteSpace(parameters);
aParam := getUnixCommandParameter(parameters);
end while;
while aParam <> "" do
addToFileList(fileList, aParam, TRUE);
skipWhiteSpace(parameters);
aParam := getUnixCommandParameter(parameters);
end while;
doRemoveCmd(fileList, recursive, force);
end func;
(**
* Remove files and directories like the DOS del command.
* The command accepts the option /S.
* @param parameters Parameters (file names and options)
* of the command. The function
* removes the used parameters.
*)
const proc: doDel (inout string: parameters) is func
local
var string: aParam is "";
var boolean: recursive is FALSE;
var array string: fileList is 0 times "";
begin
# writeln("doDel(" <& literal(parameters) <& ")");
skipWhiteSpace(parameters);
aParam := getDosCommandParameter(parameters);
while aParam <> "" do
if upper(aParam) = "/S" then
recursive := TRUE;
elsif not startsWith(aParam, "/") then
addToFileList(fileList, aParam, FALSE);
end if;
skipWhiteSpace(parameters);
aParam := getDosCommandParameter(parameters);
end while;
doRemoveCmd(fileList, recursive, FALSE);
end func;
(**
* Copy files and directories like the Unix cp command.
* The command accepts the options -r, -R, -n, -a and -p.
* @param parameters Parameters (file names and options)
* of the command. The function
* removes the used parameters.
*)
const proc: doCp (inout string: parameters) is func
local
var string: aParam is "";
var char: option is ' ';
var boolean: recursive is FALSE;
var boolean: overwriteExisting is TRUE;
var boolean: archive is FALSE;
var boolean: optionMayFollow is TRUE;
var array string: fileList is 0 times "";
begin
# writeln("doCp(" <& literal(parameters) <& ")");
skipWhiteSpace(parameters);
aParam := getUnixCommandParameter(parameters);
while startsWith(aParam, "-") and optionMayFollow do
aParam := aParam[2 ..];
for option range aParam do
case option of
when {'r', 'R'}: recursive := TRUE;
when {'n'}: overwriteExisting := FALSE;
when {'a', 'p'}: recursive := TRUE;
archive := TRUE;
when {'-'}: optionMayFollow := FALSE;
end case;
end for;
skipWhiteSpace(parameters);
aParam := getUnixCommandParameter(parameters);
end while;
while aParam <> "" do
addToFileList(fileList, aParam, TRUE);
skipWhiteSpace(parameters);
aParam := getUnixCommandParameter(parameters);
end while;
doCopyCmd(fileList, recursive, overwriteExisting, archive);
end func;
(**
* Copy files and directories like the DOS copy command.
* The command accepts the option /Y.
* @param parameters Parameters (file names and options)
* of the command. The function
* removes the used parameters.
*)
const proc: doCopy (inout string: parameters) is func
local
var string: aParam is "";
var boolean: overwriteExisting is FALSE;
var array string: fileList is 0 times "";
begin
# writeln("doCopy(" <& literal(parameters) <& ")");
skipWhiteSpace(parameters);
aParam := getDosCommandParameter(parameters);
while aParam <> "" do
if upper(aParam) = "/Y" then
overwriteExisting := TRUE;
elsif not startsWith(aParam, "/") then
addToFileList(fileList, aParam, FALSE);
end if;
skipWhiteSpace(parameters);
aParam := getDosCommandParameter(parameters);
end while;
doCopyCmd(fileList, FALSE, overwriteExisting, FALSE);
end func;
(**
* Copy files and directories like the DOS xcopy command.
* The command accepts the options /E, /O and /Y.
* @param parameters Parameters (file names and options)
* of the command. The function
* removes the used parameters.
*)
const proc: doXCopy (inout string: parameters) is func
local
var string: aParam is "";
var boolean: recursive is FALSE;
var boolean: overwriteExisting is FALSE;
var boolean: archive is FALSE;
var array string: fileList is 0 times "";
begin
# writeln("doXCopy(" <& literal(parameters) <& ")");
skipWhiteSpace(parameters);
aParam := getDosCommandParameter(parameters);
while aParam <> "" do
if upper(aParam) = "/E" then
recursive := TRUE;
elsif upper(aParam) = "/O" then
archive := TRUE;
elsif upper(aParam) = "/Y" then
overwriteExisting := TRUE;
elsif not startsWith(aParam, "/") then
addToFileList(fileList, aParam, FALSE);
end if;
skipWhiteSpace(parameters);
aParam := getDosCommandParameter(parameters);
end while;
doCopyCmd(fileList, recursive, overwriteExisting, archive);
end func;
(**
* Move files and directories like the Unix mv command.
* The command accepts the option -n.
* @param parameters Parameters (file names and options)
* of the command. The function
* removes the used parameters.
*)
const proc: doMv (inout string: parameters) is func
local
var string: aParam is "";
var char: option is ' ';
var boolean: overwriteExisting is TRUE;
var boolean: optionMayFollow is TRUE;
var array string: fileList is 0 times "";
begin
# writeln("doMv(" <& literal(parameters) <& ")");
skipWhiteSpace(parameters);
aParam := getUnixCommandParameter(parameters);
while startsWith(aParam, "-") and optionMayFollow do
aParam := aParam[2 ..];
for option range aParam do
case option of
when {'n'}: overwriteExisting := FALSE;
when {'-'}: optionMayFollow := FALSE;
end case;
end for;
skipWhiteSpace(parameters);
aParam := getUnixCommandParameter(parameters);
end while;
while aParam <> "" do
addToFileList(fileList, aParam, TRUE);
skipWhiteSpace(parameters);
aParam := getUnixCommandParameter(parameters);
end while;
doMoveCmd(fileList, overwriteExisting);
end func;
(**
* Move files and directories like the DOS move command.
* The command accepts the option /Y.
* @param parameters Parameters (file names and options)
* of the command. The function
* removes the used parameters.
*)
const proc: doMove (inout string: parameters) is func
local
var string: aParam is "";
var boolean: overwriteExisting is FALSE;
var array string: fileList is 0 times "";
begin
# writeln("doMove(" <& literal(parameters) <& ")");
skipWhiteSpace(parameters);
aParam := getDosCommandParameter(parameters);
while aParam <> "" do
if upper(aParam) = "/Y" then
overwriteExisting := TRUE;
elsif not startsWith(aParam, "/") then
addToFileList(fileList, aParam, FALSE);
end if;
skipWhiteSpace(parameters);
aParam := getDosCommandParameter(parameters);
end while;
doMoveCmd(fileList, overwriteExisting);
end func;
(**
* Make directories like the Unix mkdir command.
* The command accepts the option -p.
* @param parameters Parameters (file names and options)
* of the command. The function
* removes the used parameters.
*)
const proc: doMkdir (inout string: parameters) is func
local
var string: aParam is "";
var char: option is ' ';
var boolean: parentDirs is FALSE;
var boolean: optionMayFollow is TRUE;
var array string: fileList is 0 times "";
begin
# writeln("doMkdir(" <& literal(parameters) <& ")");
skipWhiteSpace(parameters);
aParam := getUnixCommandParameter(parameters);
while startsWith(aParam, "-") and optionMayFollow do
aParam := aParam[2 ..];
for option range aParam do
case option of
when {'p'}: parentDirs := TRUE;
when {'-'}: optionMayFollow := FALSE;
end case;
end for;
skipWhiteSpace(parameters);
aParam := getUnixCommandParameter(parameters);
end while;
while aParam <> "" do
addToFileList(fileList, aParam, TRUE);
skipWhiteSpace(parameters);
aParam := getUnixCommandParameter(parameters);
end while;
doMkdirCmd(fileList, TRUE); # Under windows mkdir generates parent dirs.
end func;
(**
* Make directories like the DOS md command.
* @param parameters Parameters (file names and options)
* of the command. The function
* removes the used parameters.
*)
const proc: doMd (inout string: parameters) is func
local
var string: aParam is "";
var array string: fileList is 0 times "";
begin
# writeln("doMd(" <& literal(parameters) <& ")");
skipWhiteSpace(parameters);
aParam := getDosCommandParameter(parameters);
while aParam <> "" do
if not startsWith(aParam, "/") then
addToFileList(fileList, aParam, FALSE);
end if;
skipWhiteSpace(parameters);
aParam := getDosCommandParameter(parameters);
end while;
doMkdirCmd(fileList, TRUE);
end func;
(**
* Act like the Unix/DOS pwd (print working directory) command.
* @param parameters Parameters (file names and options)
* of the command. The function
* removes the used parameters.
* @return the current working directory.
*)
const func string: doPwd (inout string: parameters) is func
result
var string: commandOutput is "";
begin
# writeln("doPwd(" <& literal(parameters) <& ")");
skipWhiteSpace(parameters);
if startsWith(parameters, "-W") then
parameters := parameters[3 ..];
skipWhiteSpace(parameters);
end if;
commandOutput := getcwd & "\n";
end func;
(**
* Act like the Unix/DOS echo (write text) command.
* @param parameters Parameters (file names and options)
* of the command. The function
* removes the used parameters.
* @return the string that should be written.
*)
const func string: doEcho (inout string: parameters) is func
result
var string: commandOutput is "";
local
var string: whiteSpace is "";
var string: aParam is "";
begin
# writeln("doEcho(" <& literal(parameters) <& ")");
whiteSpace := getWhiteSpace(parameters);
if parameters <> "" and (parameters[1] = '"' or parameters[1] = ''') then
while parameters <> "" and parameters[1] in parameter_char do
if commandOutput <> "" then
commandOutput &:= whiteSpace;
end if;
aParam := getUnixCommandParameter(parameters);
commandOutput &:= execBacktickCommands(aParam);
whiteSpace := getWhiteSpace(parameters);
end while;
else
while parameters <> "" and parameters[1] in parameter_char do
aParam := getDosEchoParameter(parameters);
commandOutput &:= aParam;
commandOutput &:= getWhiteSpace(parameters);
end while;
end if;
commandOutput &:= "\n";
end func;
(**
* Change working directory like the Unix/DOS cd command.
* @param parameters Parameters (file names and options)
* of the command. The function
* removes the used parameters.
*)
const proc: doCd (inout string: parameters) is func
local
var string: aParam is "";
begin
# writeln("doCd(" <& literal(parameters) <& ")");
skipWhiteSpace(parameters);
if parameters <> "" then
aParam := getCommandParameter(parameters);
aParam := convDosPath(aParam);
if fileType(aParam) = FILE_DIR then
chdir(aParam);
else
writeln(" *** cd " <& aParam <& " - No such file or directory");
# writeln(getcwd);
# writeln(fileType(aParam));
end if;
end if;
end func;
(**
* Act like the Unix make command.
* This library just contains a forward definition.
* The actual definition of this function must be done
* outside of this library.
* @param parameters Parameters (file names and options)
* of the command. The function
* removes the used parameters.
*)
const proc: doMake (inout string: parameters) is forward;
const func boolean: doOneCommand (inout string: command,
inout string: commandOutput) is func
result
var boolean: done is TRUE;
local
var string: commandWord is "";
var string: commandName is "";
begin
if command <> "" and command[1] = '#' then
command := "";
commandOutput := "";
else
commandWord := getWord(command);
commandName := lower(commandWord);
# writeln("doOneCommand: " <& commandName);
case commandName of