]> git.proxmox.com Git - mirror_edk2.git/blob - ShellPkg/Library/UefiShellLevel1CommandsLib/For.c
ShellPkg: patch to the "for" command when used with "in" iterating files in a folder...
[mirror_edk2.git] / ShellPkg / Library / UefiShellLevel1CommandsLib / For.c
1 /** @file
2 Main file for endfor and for shell level 1 functions.
3
4 Copyright (c) 2009 - 2012, Intel Corporation. All rights reserved.<BR>
5 This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 #include "UefiShellLevel1CommandsLib.h"
16 #include <Library/PrintLib.h>
17
18 /**
19 Determine if a valid string is a valid number for the 'for' command.
20
21 @param[in] Number The pointer to the string representation of the number to test.
22
23 @retval TRUE The number is valid.
24 @retval FALSE The number is not valid.
25 **/
26 BOOLEAN
27 EFIAPI
28 ShellIsValidForNumber (
29 IN CONST CHAR16 *Number
30 )
31 {
32 if (Number == NULL || *Number == CHAR_NULL) {
33 return (FALSE);
34 }
35
36 if (*Number == L'-') {
37 Number++;
38 }
39
40 if (StrLen(Number) == 0) {
41 return (FALSE);
42 }
43
44 if (StrLen(Number) >= 7) {
45 if ((StrStr(Number, L" ") == NULL) || (((StrStr(Number, L" ") != NULL) && (StrStr(Number, L" ") - Number) >= 7))) {
46 return (FALSE);
47 }
48 }
49
50 if (!ShellIsDecimalDigitCharacter(*Number)) {
51 return (FALSE);
52 }
53
54 return (TRUE);
55 }
56
57 /**
58 Function for 'endfor' command.
59
60 @param[in] ImageHandle Handle to the Image (NULL if Internal).
61 @param[in] SystemTable Pointer to the System Table (NULL if Internal).
62 **/
63 SHELL_STATUS
64 EFIAPI
65 ShellCommandRunEndFor (
66 IN EFI_HANDLE ImageHandle,
67 IN EFI_SYSTEM_TABLE *SystemTable
68 )
69 {
70 EFI_STATUS Status;
71 BOOLEAN Found;
72 SCRIPT_FILE *CurrentScriptFile;
73
74 Status = CommandInit();
75 ASSERT_EFI_ERROR(Status);
76
77 if (!gEfiShellProtocol->BatchIsActive()) {
78 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_NO_SCRIPT), gShellLevel1HiiHandle, L"EndFor");
79 return (SHELL_UNSUPPORTED);
80 }
81
82 if (gEfiShellParametersProtocol->Argc > 1) {
83 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_TOO_MANY), gShellLevel1HiiHandle);
84 return (SHELL_INVALID_PARAMETER);
85 }
86
87 Found = MoveToTag(GetPreviousNode, L"for", L"endfor", NULL, ShellCommandGetCurrentScriptFile(), FALSE, FALSE, FALSE);
88
89 if (!Found) {
90 CurrentScriptFile = ShellCommandGetCurrentScriptFile();
91 ShellPrintHiiEx(
92 -1,
93 -1,
94 NULL,
95 STRING_TOKEN (STR_SYNTAX_NO_MATCHING),
96 gShellLevel1HiiHandle,
97 L"For",
98 L"EndFor",
99 CurrentScriptFile!=NULL
100 && CurrentScriptFile->CurrentCommand!=NULL
101 ? CurrentScriptFile->CurrentCommand->Line:0);
102 return (SHELL_NOT_FOUND);
103 }
104 return (SHELL_SUCCESS);
105 }
106
107 typedef struct {
108 UINT32 Signature;
109 INTN Current;
110 INTN End;
111 INTN Step;
112 CHAR16 *ReplacementName;
113 CHAR16 *CurrentValue;
114 BOOLEAN RemoveSubstAlias;
115 CHAR16 Set[1];
116 } SHELL_FOR_INFO;
117 #define SIZE_OF_SHELL_FOR_INFO OFFSET_OF (SHELL_FOR_INFO, Set)
118 #define SHELL_FOR_INFO_SIGNATURE SIGNATURE_32 ('S', 'F', 'I', 's')
119
120 /**
121 Update the value of a given alias on the list. If the alias is not there then add it.
122
123 @param[in] Alias The alias to test for.
124 @param[in] CommandString The updated command string.
125 @param[in, out] List The list to search.
126
127 @retval EFI_SUCCESS The operation was completed successfully.
128 @retval EFI_OUT_OF_RESOURCES There was not enough free memory.
129 **/
130 EFI_STATUS
131 EFIAPI
132 InternalUpdateAliasOnList(
133 IN CONST CHAR16 *Alias,
134 IN CONST CHAR16 *CommandString,
135 IN OUT LIST_ENTRY *List
136 )
137 {
138 ALIAS_LIST *Node;
139 BOOLEAN Found;
140
141 //
142 // assert for NULL parameter
143 //
144 ASSERT(Alias != NULL);
145
146 //
147 // check for the Alias
148 //
149 for ( Node = (ALIAS_LIST *)GetFirstNode(List), Found = FALSE
150 ; !IsNull(List, &Node->Link)
151 ; Node = (ALIAS_LIST *)GetNextNode(List, &Node->Link)
152 ){
153 ASSERT(Node->CommandString != NULL);
154 ASSERT(Node->Alias != NULL);
155 if (StrCmp(Node->Alias, Alias)==0) {
156 FreePool(Node->CommandString);
157 Node->CommandString = NULL;
158 Node->CommandString = StrnCatGrow(&Node->CommandString, NULL, CommandString, 0);
159 Found = TRUE;
160 break;
161 }
162 }
163 if (!Found) {
164 Node = AllocateZeroPool(sizeof(ALIAS_LIST));
165 if (Node == NULL) {
166 return (EFI_OUT_OF_RESOURCES);
167 }
168 ASSERT(Node->Alias == NULL);
169 Node->Alias = StrnCatGrow(&Node->Alias, NULL, Alias, 0);
170 ASSERT(Node->CommandString == NULL);
171 Node->CommandString = StrnCatGrow(&Node->CommandString, NULL, CommandString, 0);
172 InsertTailList(List, &Node->Link);
173 }
174 return (EFI_SUCCESS);
175 }
176
177 /**
178 Find out if an alias is on the given list.
179
180 @param[in] Alias The alias to test for.
181 @param[in] List The list to search.
182
183 @retval TRUE The alias is on the list.
184 @retval FALSE The alias is not on the list.
185 **/
186 BOOLEAN
187 EFIAPI
188 InternalIsAliasOnList(
189 IN CONST CHAR16 *Alias,
190 IN CONST LIST_ENTRY *List
191 )
192 {
193 ALIAS_LIST *Node;
194
195 //
196 // assert for NULL parameter
197 //
198 ASSERT(Alias != NULL);
199
200 //
201 // check for the Alias
202 //
203 for ( Node = (ALIAS_LIST *)GetFirstNode(List)
204 ; !IsNull(List, &Node->Link)
205 ; Node = (ALIAS_LIST *)GetNextNode(List, &Node->Link)
206 ){
207 ASSERT(Node->CommandString != NULL);
208 ASSERT(Node->Alias != NULL);
209 if (StrCmp(Node->Alias, Alias)==0) {
210 return (TRUE);
211 }
212 }
213 return (FALSE);
214 }
215
216 /**
217 Remove an alias from the given list.
218
219 @param[in] Alias The alias to remove.
220 @param[in, out] List The list to search.
221 **/
222 BOOLEAN
223 EFIAPI
224 InternalRemoveAliasFromList(
225 IN CONST CHAR16 *Alias,
226 IN OUT LIST_ENTRY *List
227 )
228 {
229 ALIAS_LIST *Node;
230
231 //
232 // assert for NULL parameter
233 //
234 ASSERT(Alias != NULL);
235
236 //
237 // check for the Alias
238 //
239 for ( Node = (ALIAS_LIST *)GetFirstNode(List)
240 ; !IsNull(List, &Node->Link)
241 ; Node = (ALIAS_LIST *)GetNextNode(List, &Node->Link)
242 ){
243 ASSERT(Node->CommandString != NULL);
244 ASSERT(Node->Alias != NULL);
245 if (StrCmp(Node->Alias, Alias)==0) {
246 RemoveEntryList(&Node->Link);
247 FreePool(Node->Alias);
248 FreePool(Node->CommandString);
249 FreePool(Node);
250 return (TRUE);
251 }
252 }
253 return (FALSE);
254 }
255
256 /**
257 Function to determine whether a string is decimal or hex representation of a number
258 and return the number converted from the string.
259
260 @param[in] String String representation of a number
261
262 @return the number
263 @retval (UINTN)(-1) An error ocurred.
264 **/
265 UINTN
266 EFIAPI
267 ReturnUintn(
268 IN CONST CHAR16 *String
269 )
270 {
271 UINT64 RetVal;
272
273 if (!EFI_ERROR(ShellConvertStringToUint64(String, &RetVal, FALSE, TRUE))) {
274 return ((UINTN)RetVal);
275 }
276 return ((UINTN)(-1));
277 }
278
279 /**
280 Function for 'for' command.
281
282 @param[in] ImageHandle Handle to the Image (NULL if Internal).
283 @param[in] SystemTable Pointer to the System Table (NULL if Internal).
284 **/
285 SHELL_STATUS
286 EFIAPI
287 ShellCommandRunFor (
288 IN EFI_HANDLE ImageHandle,
289 IN EFI_SYSTEM_TABLE *SystemTable
290 )
291 {
292 EFI_STATUS Status;
293 SHELL_STATUS ShellStatus;
294 SCRIPT_FILE *CurrentScriptFile;
295 CHAR16 *ArgSet;
296 CHAR16 *ArgSetWalker;
297 UINTN ArgSize;
298 UINTN LoopVar;
299 SHELL_FOR_INFO *Info;
300 CHAR16 *TempString;
301 CHAR16 *TempSpot;
302 BOOLEAN FirstPass;
303 EFI_SHELL_FILE_INFO *Node;
304 EFI_SHELL_FILE_INFO *FileList;
305 UINTN NewSize;
306
307 ArgSet = NULL;
308 ArgSize = 0;
309 ShellStatus = SHELL_SUCCESS;
310 ArgSetWalker = NULL;
311 TempString = NULL;
312 FirstPass = FALSE;
313
314 //
315 // initialize the shell lib (we must be in non-auto-init...)
316 //
317 Status = ShellInitialize();
318 ASSERT_EFI_ERROR(Status);
319
320 Status = CommandInit();
321 ASSERT_EFI_ERROR(Status);
322
323 if (!gEfiShellProtocol->BatchIsActive()) {
324 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_NO_SCRIPT), gShellLevel1HiiHandle, L"For");
325 return (SHELL_UNSUPPORTED);
326 }
327
328 if (gEfiShellParametersProtocol->Argc < 4) {
329 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_TOO_FEW), gShellLevel1HiiHandle);
330 return (SHELL_INVALID_PARAMETER);
331 }
332
333 CurrentScriptFile = ShellCommandGetCurrentScriptFile();
334 ASSERT(CurrentScriptFile != NULL);
335
336 if (CurrentScriptFile->CurrentCommand->Data == NULL) {
337 FirstPass = TRUE;
338
339 //
340 // Make sure that an End exists.
341 //
342 if (!MoveToTag(GetNextNode, L"endfor", L"for", NULL, CurrentScriptFile, TRUE, TRUE, FALSE)) {
343 ShellPrintHiiEx(
344 -1,
345 -1,
346 NULL,
347 STRING_TOKEN (STR_SYNTAX_NO_MATCHING),
348 gShellLevel1HiiHandle,
349 L"EndFor",
350 L"For",
351 CurrentScriptFile->CurrentCommand!=NULL
352 ?CurrentScriptFile->CurrentCommand->Line:0);
353 return (SHELL_DEVICE_ERROR);
354 }
355
356 //
357 // Process the line.
358 //
359 if (gEfiShellParametersProtocol->Argv[1][0] != L'%' || gEfiShellParametersProtocol->Argv[1][2] != CHAR_NULL
360 ||!((gEfiShellParametersProtocol->Argv[1][1] >= L'a' && gEfiShellParametersProtocol->Argv[1][1] <= L'z')
361 ||(gEfiShellParametersProtocol->Argv[1][1] >= L'A' && gEfiShellParametersProtocol->Argv[1][1] <= L'Z'))
362 ) {
363 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_INV_VAR), gShellLevel1HiiHandle, gEfiShellParametersProtocol->Argv[1]);
364 return (SHELL_INVALID_PARAMETER);
365 }
366
367 if (gUnicodeCollation->StriColl(
368 gUnicodeCollation,
369 L"in",
370 gEfiShellParametersProtocol->Argv[2]) == 0) {
371 for (LoopVar = 0x3 ; LoopVar < gEfiShellParametersProtocol->Argc ; LoopVar++) {
372 ASSERT((ArgSet == NULL && ArgSize == 0) || (ArgSet != NULL));
373 if (StrStr(gEfiShellParametersProtocol->Argv[LoopVar], L"*") != NULL
374 ||StrStr(gEfiShellParametersProtocol->Argv[LoopVar], L"?") != NULL
375 ||StrStr(gEfiShellParametersProtocol->Argv[LoopVar], L"[") != NULL
376 ||StrStr(gEfiShellParametersProtocol->Argv[LoopVar], L"]") != NULL) {
377 FileList = NULL;
378 Status = ShellOpenFileMetaArg ((CHAR16*)gEfiShellParametersProtocol->Argv[LoopVar], EFI_FILE_MODE_READ, &FileList);
379 if (EFI_ERROR(Status) || FileList == NULL || IsListEmpty(&FileList->Link)) {
380 ArgSet = StrnCatGrow(&ArgSet, &ArgSize, L" \"", 0);
381 ArgSet = StrnCatGrow(&ArgSet, &ArgSize, gEfiShellParametersProtocol->Argv[LoopVar], 0);
382 ArgSet = StrnCatGrow(&ArgSet, &ArgSize, L"\"", 0);
383 } else {
384 for (Node = (EFI_SHELL_FILE_INFO *)GetFirstNode(&FileList->Link)
385 ; !IsNull(&FileList->Link, &Node->Link)
386 ; Node = (EFI_SHELL_FILE_INFO *)GetNextNode(&FileList->Link, &Node->Link)
387 ){
388 ArgSet = StrnCatGrow(&ArgSet, &ArgSize, L" \"", 0);
389 ArgSet = StrnCatGrow(&ArgSet, &ArgSize, Node->FullName, 0);
390 ArgSet = StrnCatGrow(&ArgSet, &ArgSize, L"\"", 0);
391 }
392 ShellCloseFileMetaArg(&FileList);
393 }
394 } else {
395 ArgSet = StrnCatGrow(&ArgSet, &ArgSize, L" \"", 0);
396 ArgSet = StrnCatGrow(&ArgSet, &ArgSize, gEfiShellParametersProtocol->Argv[LoopVar], 0);
397 ArgSet = StrnCatGrow(&ArgSet, &ArgSize, L"\"", 0);
398 }
399 }
400 if (ArgSet == NULL) {
401 ShellStatus = SHELL_OUT_OF_RESOURCES;
402 } else {
403 //
404 // set up for an 'in' for loop
405 //
406 NewSize = StrSize(ArgSet);
407 NewSize += sizeof(SHELL_FOR_INFO)+StrSize(gEfiShellParametersProtocol->Argv[1]);
408 Info = AllocateZeroPool(NewSize);
409 ASSERT(Info != NULL);
410 Info->Signature = SHELL_FOR_INFO_SIGNATURE;
411 CopyMem(Info->Set, ArgSet, StrSize(ArgSet));
412 NewSize = StrSize(gEfiShellParametersProtocol->Argv[1]);
413 CopyMem(Info->Set+(StrSize(ArgSet)/sizeof(Info->Set[0])), gEfiShellParametersProtocol->Argv[1], NewSize);
414 Info->ReplacementName = Info->Set+StrSize(ArgSet)/sizeof(Info->Set[0]);
415 Info->CurrentValue = (CHAR16*)Info->Set;
416 Info->Step = 0;
417 Info->Current = 0;
418 Info->End = 0;
419
420 if (InternalIsAliasOnList(Info->ReplacementName, &CurrentScriptFile->SubstList)) {
421 Info->RemoveSubstAlias = FALSE;
422 } else {
423 Info->RemoveSubstAlias = TRUE;
424 }
425 CurrentScriptFile->CurrentCommand->Data = Info;
426 }
427 } else if (gUnicodeCollation->StriColl(
428 gUnicodeCollation,
429 L"run",
430 gEfiShellParametersProtocol->Argv[2]) == 0) {
431 for (LoopVar = 0x3 ; LoopVar < gEfiShellParametersProtocol->Argc ; LoopVar++) {
432 ASSERT((ArgSet == NULL && ArgSize == 0) || (ArgSet != NULL));
433 if (ArgSet == NULL) {
434 // ArgSet = StrnCatGrow(&ArgSet, &ArgSize, L"\"", 0);
435 } else {
436 ArgSet = StrnCatGrow(&ArgSet, &ArgSize, L" ", 0);
437 }
438 ArgSet = StrnCatGrow(&ArgSet, &ArgSize, gEfiShellParametersProtocol->Argv[LoopVar], 0);
439 // ArgSet = StrnCatGrow(&ArgSet, &ArgSize, L" ", 0);
440 }
441 if (ArgSet == NULL) {
442 ShellStatus = SHELL_OUT_OF_RESOURCES;
443 } else {
444 //
445 // set up for a 'run' for loop
446 //
447 Info = AllocateZeroPool(sizeof(SHELL_FOR_INFO)+StrSize(gEfiShellParametersProtocol->Argv[1]));
448 ASSERT(Info != NULL);
449 Info->Signature = SHELL_FOR_INFO_SIGNATURE;
450 CopyMem(Info->Set, gEfiShellParametersProtocol->Argv[1], StrSize(gEfiShellParametersProtocol->Argv[1]));
451 Info->ReplacementName = Info->Set;
452 Info->CurrentValue = NULL;
453 ArgSetWalker = ArgSet;
454 if (ArgSetWalker[0] != L'(') {
455 ShellPrintHiiEx(
456 -1,
457 -1,
458 NULL,
459 STRING_TOKEN (STR_GEN_PROBLEM_SCRIPT),
460 gShellLevel1HiiHandle,
461 ArgSet,
462 CurrentScriptFile!=NULL
463 && CurrentScriptFile->CurrentCommand!=NULL
464 ? CurrentScriptFile->CurrentCommand->Line:0);
465 ShellStatus = SHELL_INVALID_PARAMETER;
466 } else {
467 TempSpot = StrStr(ArgSetWalker, L")");
468 if (TempSpot != NULL) {
469 TempString = TempSpot+1;
470 if (*(TempString) != CHAR_NULL) {
471 while(TempString != NULL && *TempString == L' ') {
472 TempString++;
473 }
474 if (StrLen(TempString) > 0) {
475 TempSpot = NULL;
476 }
477 }
478 }
479 if (TempSpot == NULL) {
480 ShellPrintHiiEx(
481 -1,
482 -1,
483 NULL,
484 STRING_TOKEN (STR_GEN_PROBLEM_SCRIPT),
485 gShellLevel1HiiHandle,
486 CurrentScriptFile!=NULL
487 && CurrentScriptFile->CurrentCommand!=NULL
488 ? CurrentScriptFile->CurrentCommand->Line:0);
489 ShellStatus = SHELL_INVALID_PARAMETER;
490 } else {
491 *TempSpot = CHAR_NULL;
492 ArgSetWalker++;
493 while (ArgSetWalker != NULL && ArgSetWalker[0] == L' ') {
494 ArgSetWalker++;
495 }
496 if (!ShellIsValidForNumber(ArgSetWalker)) {
497 ShellPrintHiiEx(
498 -1,
499 -1,
500 NULL,
501 STRING_TOKEN (STR_GEN_PROBLEM_SCRIPT),
502 gShellLevel1HiiHandle,
503 ArgSet,
504 CurrentScriptFile!=NULL
505 && CurrentScriptFile->CurrentCommand!=NULL
506 ? CurrentScriptFile->CurrentCommand->Line:0);
507 ShellStatus = SHELL_INVALID_PARAMETER;
508 } else {
509 if (ArgSetWalker[0] == L'-') {
510 Info->Current = 0 - (INTN)ReturnUintn(ArgSetWalker+1);
511 } else {
512 Info->Current = (INTN)ReturnUintn(ArgSetWalker);
513 }
514 ArgSetWalker = StrStr(ArgSetWalker, L" ");
515 while (ArgSetWalker != NULL && ArgSetWalker[0] == L' ') {
516 ArgSetWalker++;
517 }
518 if (ArgSetWalker == NULL || *ArgSetWalker == CHAR_NULL || !ShellIsValidForNumber(ArgSetWalker)){
519 ShellPrintHiiEx(
520 -1,
521 -1,
522 NULL,
523 STRING_TOKEN (STR_GEN_PROBLEM_SCRIPT),
524 gShellLevel1HiiHandle,
525 ArgSet,
526 CurrentScriptFile!=NULL
527 && CurrentScriptFile->CurrentCommand!=NULL
528 ? CurrentScriptFile->CurrentCommand->Line:0);
529 ShellStatus = SHELL_INVALID_PARAMETER;
530 } else {
531 if (ArgSetWalker[0] == L'-') {
532 Info->End = 0 - (INTN)ReturnUintn(ArgSetWalker+1);
533 } else {
534 Info->End = (INTN)ReturnUintn(ArgSetWalker);
535 }
536 if (Info->Current < Info->End) {
537 Info->Step = 1;
538 } else {
539 Info->Step = -1;
540 }
541
542 ArgSetWalker = StrStr(ArgSetWalker, L" ");
543 while (ArgSetWalker != NULL && ArgSetWalker[0] == L' ') {
544 ArgSetWalker++;
545 }
546 if (ArgSetWalker != NULL && *ArgSetWalker != CHAR_NULL) {
547 if (ArgSetWalker == NULL || *ArgSetWalker == CHAR_NULL || !ShellIsValidForNumber(ArgSetWalker)){
548 ShellPrintHiiEx(
549 -1,
550 -1,
551 NULL,
552 STRING_TOKEN (STR_GEN_PROBLEM_SCRIPT),
553 gShellLevel1HiiHandle,
554 ArgSet,
555 CurrentScriptFile!=NULL
556 && CurrentScriptFile->CurrentCommand!=NULL
557 ? CurrentScriptFile->CurrentCommand->Line:0);
558 ShellStatus = SHELL_INVALID_PARAMETER;
559 } else {
560 if (*ArgSetWalker == L')') {
561 ASSERT(Info->Step == 1 || Info->Step == -1);
562 } else {
563 if (ArgSetWalker[0] == L'-') {
564 Info->Step = 0 - (INTN)ReturnUintn(ArgSetWalker+1);
565 } else {
566 Info->Step = (INTN)ReturnUintn(ArgSetWalker);
567 }
568
569 if (StrStr(ArgSetWalker, L" ") != NULL) {
570 ShellPrintHiiEx(
571 -1,
572 -1,
573 NULL,
574 STRING_TOKEN (STR_GEN_PROBLEM_SCRIPT),
575 gShellLevel1HiiHandle,
576 ArgSet,
577 CurrentScriptFile!=NULL
578 && CurrentScriptFile->CurrentCommand!=NULL
579 ? CurrentScriptFile->CurrentCommand->Line:0);
580 ShellStatus = SHELL_INVALID_PARAMETER;
581 }
582 }
583 }
584
585 }
586 }
587 }
588 }
589 }
590 if (ShellStatus == SHELL_SUCCESS) {
591 if (InternalIsAliasOnList(Info->ReplacementName, &CurrentScriptFile->SubstList)) {
592 Info->RemoveSubstAlias = FALSE;
593 } else {
594 Info->RemoveSubstAlias = TRUE;
595 }
596 }
597 if (CurrentScriptFile->CurrentCommand != NULL) {
598 CurrentScriptFile->CurrentCommand->Data = Info;
599 }
600 }
601 } else {
602 ShellPrintHiiEx(
603 -1,
604 -1,
605 NULL,
606 STRING_TOKEN (STR_GEN_PROBLEM_SCRIPT),
607 gShellLevel1HiiHandle,
608 ArgSet,
609 CurrentScriptFile!=NULL
610 && CurrentScriptFile->CurrentCommand!=NULL
611 ? CurrentScriptFile->CurrentCommand->Line:0);
612 ShellStatus = SHELL_INVALID_PARAMETER;
613 }
614 } else {
615 //
616 // These need to be NULL since they are used to determine if this is the first pass later on...
617 //
618 ASSERT(ArgSetWalker == NULL);
619 ASSERT(ArgSet == NULL);
620 }
621
622 if (CurrentScriptFile != NULL && CurrentScriptFile->CurrentCommand != NULL) {
623 Info = (SHELL_FOR_INFO*)CurrentScriptFile->CurrentCommand->Data;
624 if (CurrentScriptFile->CurrentCommand->Reset) {
625 Info->CurrentValue = (CHAR16*)Info->Set;
626 FirstPass = TRUE;
627 CurrentScriptFile->CurrentCommand->Reset = FALSE;
628 }
629 } else {
630 ShellStatus = SHELL_UNSUPPORTED;
631 Info = NULL;
632 }
633 if (ShellStatus == SHELL_SUCCESS) {
634 ASSERT(Info != NULL);
635 if (Info->Step != 0) {
636 //
637 // only advance if not the first pass
638 //
639 if (!FirstPass) {
640 //
641 // sequence version of for loop...
642 //
643 Info->Current += Info->Step;
644 }
645
646 TempString = AllocateZeroPool(50*sizeof(CHAR16));
647 UnicodeSPrint(TempString, 50*sizeof(CHAR16), L"%d", Info->Current);
648 InternalUpdateAliasOnList(Info->ReplacementName, TempString, &CurrentScriptFile->SubstList);
649 FreePool(TempString);
650
651 if ((Info->Step > 0 && Info->Current > Info->End) || (Info->Step < 0 && Info->Current < Info->End)) {
652 CurrentScriptFile->CurrentCommand->Data = NULL;
653 //
654 // find the matching endfor (we're done with the loop)
655 //
656 if (!MoveToTag(GetNextNode, L"endfor", L"for", NULL, CurrentScriptFile, TRUE, FALSE, FALSE)) {
657 ShellPrintHiiEx(
658 -1,
659 -1,
660 NULL,
661 STRING_TOKEN (STR_SYNTAX_NO_MATCHING),
662 gShellLevel1HiiHandle,
663 L"EndFor",
664 L"For",
665 CurrentScriptFile!=NULL
666 && CurrentScriptFile->CurrentCommand!=NULL
667 ? CurrentScriptFile->CurrentCommand->Line:0);
668 ShellStatus = SHELL_DEVICE_ERROR;
669 }
670 if (Info->RemoveSubstAlias) {
671 //
672 // remove item from list
673 //
674 InternalRemoveAliasFromList(Info->ReplacementName, &CurrentScriptFile->SubstList);
675 }
676 FreePool(Info);
677 }
678 } else {
679 //
680 // Must be in 'in' version of for loop...
681 //
682 ASSERT(Info->Set != NULL);
683 if (Info->CurrentValue != NULL && *Info->CurrentValue != CHAR_NULL) {
684 if (Info->CurrentValue[0] == L' ') {
685 Info->CurrentValue++;
686 }
687 if (Info->CurrentValue[0] == L'\"') {
688 Info->CurrentValue++;
689 }
690 //
691 // do the next one of the set
692 //
693 ASSERT(TempString == NULL);
694 TempString = StrnCatGrow(&TempString, NULL, Info->CurrentValue, 0);
695 if (TempString == NULL) {
696 ShellStatus = SHELL_OUT_OF_RESOURCES;
697 } else {
698 TempSpot = StrStr(TempString, L"\" \"");
699 if (TempSpot != NULL) {
700 *TempSpot = CHAR_NULL;
701 }
702 while (TempString[StrLen(TempString)-1] == L'\"') {
703 TempString[StrLen(TempString)-1] = CHAR_NULL;
704 }
705 InternalUpdateAliasOnList(Info->ReplacementName, TempString, &CurrentScriptFile->SubstList);
706 Info->CurrentValue += StrLen(TempString);
707
708 if (Info->CurrentValue[0] == L'\"') {
709 Info->CurrentValue++;
710 }
711 while (Info->CurrentValue[0] == L' ') {
712 Info->CurrentValue++;
713 }
714 if (Info->CurrentValue[0] == L'\"') {
715 Info->CurrentValue++;
716 }
717 FreePool(TempString);
718 }
719 } else {
720 CurrentScriptFile->CurrentCommand->Data = NULL;
721 //
722 // find the matching endfor (we're done with the loop)
723 //
724 if (!MoveToTag(GetNextNode, L"endfor", L"for", NULL, CurrentScriptFile, TRUE, FALSE, FALSE)) {
725 ShellPrintHiiEx(
726 -1,
727 -1,
728 NULL,
729 STRING_TOKEN (STR_SYNTAX_NO_MATCHING),
730 gShellLevel1HiiHandle,
731 L"EndFor",
732 L"For",
733 CurrentScriptFile!=NULL
734 && CurrentScriptFile->CurrentCommand!=NULL
735 ? CurrentScriptFile->CurrentCommand->Line:0);
736 ShellStatus = SHELL_DEVICE_ERROR;
737 }
738 if (Info->RemoveSubstAlias) {
739 //
740 // remove item from list
741 //
742 InternalRemoveAliasFromList(Info->ReplacementName, &CurrentScriptFile->SubstList);
743 }
744 FreePool(Info);
745 }
746 }
747 }
748 if (ArgSet != NULL) {
749 FreePool(ArgSet);
750 }
751 return (ShellStatus);
752 }
753