]> git.proxmox.com Git - mirror_edk2.git/blame - ShellPkg/Application/Shell/ShellProtocol.h
ShellPkg: Refactor Print logic out of main loop function
[mirror_edk2.git] / ShellPkg / Application / Shell / ShellProtocol.h
CommitLineData
a405b86d 1/** @file\r
2 Member functions of EFI_SHELL_PROTOCOL and functions for creation,\r
3 manipulation, and initialization of EFI_SHELL_PROTOCOL.\r
4\r
c1f9c346 5 Copyright (c) 2009 - 2014, Intel Corporation. All rights reserved.<BR>\r
a405b86d 6 This program and the accompanying materials\r
7 are licensed and made available under the terms and conditions of the BSD License\r
8 which accompanies this distribution. The full text of the license may be found at\r
9 http://opensource.org/licenses/bsd-license.php\r
10\r
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
13\r
14**/\r
15\r
16#ifndef _SHELL_PROTOCOL_HEADER_\r
17#define _SHELL_PROTOCOL_HEADER_\r
18\r
0406a571 19#include "Shell.h"\r
a405b86d 20\r
21typedef struct {\r
22 LIST_ENTRY Link;\r
23 EFI_SHELL_PROTOCOL *Interface;\r
24 EFI_HANDLE Handle;\r
25} SHELL_PROTOCOL_HANDLE_LIST;\r
26\r
27// flags values...\r
28#define SHELL_MAP_FLAGS_CONSIST BIT1\r
29\r
30/**\r
31 Function to create and install on the current handle.\r
32\r
33 Will overwrite any existing ShellProtocols in the system to be sure that\r
34 the current shell is in control.\r
35\r
36 This must be removed via calling CleanUpShellProtocol().\r
37\r
4ff7e37b 38 @param[in, out] NewShell The pointer to the pointer to the structure \r
a405b86d 39 to install.\r
40\r
41 @retval EFI_SUCCESS The operation was successful.\r
42 @return An error from LocateHandle, CreateEvent, or other core function.\r
43**/\r
44EFI_STATUS\r
45EFIAPI\r
46CreatePopulateInstallShellProtocol (\r
47 IN OUT EFI_SHELL_PROTOCOL **NewShell\r
48 );\r
49\r
50/**\r
51 Opposite of CreatePopulateInstallShellProtocol. \r
52\r
53 Free all memory and restore the system to the state it was in before calling\r
54 CreatePopulateInstallShellProtocol.\r
55\r
4ff7e37b 56 @param[in, out] NewShell The pointer to the new shell protocol structure.\r
a405b86d 57\r
58 @retval EFI_SUCCESS The operation was successful.\r
59**/\r
60EFI_STATUS\r
61EFIAPI\r
62CleanUpShellProtocol (\r
63 IN OUT EFI_SHELL_PROTOCOL *NewShell\r
64 );\r
65\r
66/**\r
67 This function creates a mapping for a device path.\r
68\r
69 @param DevicePath Points to the device path. If this is NULL and Mapping points to a valid mapping,\r
70 then the mapping will be deleted.\r
71 @param Mapping Points to the NULL-terminated mapping for the device path. Must end with a ':'\r
72\r
73 @retval EFI_SUCCESS Mapping created or deleted successfully.\r
74 @retval EFI_NO_MAPPING There is no handle that corresponds exactly to DevicePath. See the\r
75 boot service function LocateDevicePath().\r
76 @retval EFI_ACCESS_DENIED The mapping is a built-in alias.\r
77 @retval EFI_INVALID_PARAMETER Mapping was NULL\r
78 @retval EFI_INVALID_PARAMETER Mapping did not end with a ':'\r
79 @retval EFI_INVALID_PARAMETER DevicePath was not pointing at a device that had a SIMPLE_FILE_SYSTEM_PROTOCOL installed.\r
80 @retval EFI_NOT_FOUND There was no mapping found to delete\r
81 @retval EFI_OUT_OF_RESOURCES Memory allocation failed\r
82**/\r
83EFI_STATUS\r
84EFIAPI\r
85EfiShellSetMap(\r
86 IN CONST EFI_DEVICE_PATH_PROTOCOL *DevicePath OPTIONAL,\r
87 IN CONST CHAR16 *Mapping\r
88 );\r
89\r
90/**\r
91 Gets the device path from the mapping.\r
92\r
93 This function gets the device path associated with a mapping.\r
94\r
95 @param Mapping A pointer to the mapping\r
96\r
97 @retval !=NULL Pointer to the device path that corresponds to the\r
98 device mapping. The returned pointer does not need\r
99 to be freed.\r
100 @retval NULL There is no device path associated with the\r
101 specified mapping.\r
102**/\r
103CONST EFI_DEVICE_PATH_PROTOCOL *\r
104EFIAPI\r
105EfiShellGetDevicePathFromMap(\r
106 IN CONST CHAR16 *Mapping\r
107 );\r
108\r
109/**\r
110 Gets the mapping that most closely matches the device path.\r
111\r
112 This function gets the mapping which corresponds to the device path *DevicePath. If\r
113 there is no exact match, then the mapping which most closely matches *DevicePath\r
114 is returned, and *DevicePath is updated to point to the remaining portion of the\r
115 device path. If there is an exact match, the mapping is returned and *DevicePath\r
116 points to the end-of-device-path node.\r
117\r
118 @param DevicePath On entry, points to a device path pointer. On\r
119 exit, updates the pointer to point to the\r
120 portion of the device path after the mapping.\r
121\r
122 @retval NULL No mapping was found.\r
123 @return !=NULL Pointer to NULL-terminated mapping. The buffer\r
124 is callee allocated and should be freed by the caller.\r
125**/\r
126CONST CHAR16 *\r
127EFIAPI\r
128EfiShellGetMapFromDevicePath(\r
129 IN OUT EFI_DEVICE_PATH_PROTOCOL **DevicePath\r
130 );\r
131\r
132/**\r
133 Converts a device path to a file system-style path.\r
134\r
135 This function converts a device path to a file system path by replacing part, or all, of\r
136 the device path with the file-system mapping. If there are more than one application\r
137 file system mappings, the one that most closely matches Path will be used.\r
138\r
139 @param Path The pointer to the device path\r
140\r
141 @retval NULL the device path could not be found.\r
142 @return all The pointer of the NULL-terminated file path. The path\r
143 is callee-allocated and should be freed by the caller.\r
144**/\r
145CHAR16 *\r
146EFIAPI\r
147EfiShellGetFilePathFromDevicePath(\r
148 IN CONST EFI_DEVICE_PATH_PROTOCOL *Path\r
149 );\r
150\r
151/**\r
152 Converts a file system style name to a device path.\r
153\r
154 This function converts a file system style name to a device path, by replacing any\r
155 mapping references to the associated device path.\r
156\r
157 @param Path the pointer to the path\r
158\r
159 @return all The pointer of the file path. The file path is callee\r
160 allocated and should be freed by the caller.\r
161**/\r
162EFI_DEVICE_PATH_PROTOCOL *\r
163EFIAPI\r
164EfiShellGetDevicePathFromFilePath(\r
165 IN CONST CHAR16 *Path\r
166 );\r
167\r
168/**\r
169 Gets the name of the device specified by the device handle.\r
170\r
171 This function gets the user-readable name of the device specified by the device\r
172 handle. If no user-readable name could be generated, then *BestDeviceName will be\r
173 NULL and EFI_NOT_FOUND will be returned.\r
174\r
175 If EFI_DEVICE_NAME_USE_COMPONENT_NAME is set, then the function will return the\r
176 device's name using the EFI_COMPONENT_NAME2_PROTOCOL, if present on\r
177 DeviceHandle.\r
178\r
179 If EFI_DEVICE_NAME_USE_DEVICE_PATH is set, then the function will return the\r
180 device's name using the EFI_DEVICE_PATH_PROTOCOL, if present on DeviceHandle.\r
181 If both EFI_DEVICE_NAME_USE_COMPONENT_NAME and\r
182 EFI_DEVICE_NAME_USE_DEVICE_PATH are set, then\r
183 EFI_DEVICE_NAME_USE_COMPONENT_NAME will have higher priority.\r
184\r
185 @param DeviceHandle The handle of the device.\r
186 @param Flags Determines the possible sources of component names.\r
187 Valid bits are:\r
188 EFI_DEVICE_NAME_USE_COMPONENT_NAME\r
189 EFI_DEVICE_NAME_USE_DEVICE_PATH\r
190 @param Language A pointer to the language specified for the device\r
191 name, in the same format as described in the UEFI\r
192 specification, Appendix M\r
193 @param BestDeviceName On return, points to the callee-allocated NULL-\r
194 terminated name of the device. If no device name\r
195 could be found, points to NULL. The name must be\r
196 freed by the caller...\r
197\r
198 @retval EFI_SUCCESS Get the name successfully.\r
199 @retval EFI_NOT_FOUND Fail to get the device name.\r
200 @retval EFI_INVALID_PARAMETER Flags did not have a valid bit set.\r
201 @retval EFI_INVALID_PARAMETER BestDeviceName was NULL\r
202 @retval EFI_INVALID_PARAMETER DeviceHandle was NULL\r
203**/\r
204EFI_STATUS\r
205EFIAPI\r
206EfiShellGetDeviceName(\r
207 IN EFI_HANDLE DeviceHandle,\r
208 IN EFI_SHELL_DEVICE_NAME_FLAGS Flags,\r
209 IN CHAR8 *Language,\r
210 OUT CHAR16 **BestDeviceName\r
211 );\r
212\r
213/**\r
214 Opens the root directory of a device on a handle\r
215\r
216 This function opens the root directory of a device and returns a file handle to it.\r
217\r
218 @param DeviceHandle The handle of the device that contains the volume.\r
219 @param FileHandle On exit, points to the file handle corresponding to the root directory on the\r
220 device.\r
221\r
222 @retval EFI_SUCCESS Root opened successfully.\r
223 @retval EFI_NOT_FOUND EFI_SIMPLE_FILE_SYSTEM could not be found or the root directory\r
224 could not be opened.\r
225 @retval EFI_VOLUME_CORRUPTED The data structures in the volume were corrupted.\r
226 @retval EFI_DEVICE_ERROR The device had an error\r
227**/\r
228EFI_STATUS\r
229EFIAPI\r
230EfiShellOpenRootByHandle(\r
231 IN EFI_HANDLE DeviceHandle,\r
232 OUT SHELL_FILE_HANDLE *FileHandle\r
233 );\r
234\r
235/**\r
236 Opens the root directory of a device.\r
237\r
238 This function opens the root directory of a device and returns a file handle to it.\r
239\r
240 @param DevicePath Points to the device path corresponding to the device where the\r
241 EFI_SIMPLE_FILE_SYSTEM_PROTOCOL is installed.\r
242 @param FileHandle On exit, points to the file handle corresponding to the root directory on the\r
243 device.\r
244\r
245 @retval EFI_SUCCESS Root opened successfully.\r
246 @retval EFI_NOT_FOUND EFI_SIMPLE_FILE_SYSTEM could not be found or the root directory\r
247 could not be opened.\r
248 @retval EFI_VOLUME_CORRUPTED The data structures in the volume were corrupted.\r
249 @retval EFI_DEVICE_ERROR The device had an error\r
250**/\r
251EFI_STATUS\r
252EFIAPI\r
253EfiShellOpenRoot(\r
254 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath,\r
255 OUT SHELL_FILE_HANDLE *FileHandle\r
256 );\r
257\r
258/**\r
259 Returns whether any script files are currently being processed.\r
260\r
261 @retval TRUE There is at least one script file active.\r
262 @retval FALSE No script files are active now.\r
263\r
264**/\r
265BOOLEAN\r
266EFIAPI\r
267EfiShellBatchIsActive (\r
268 VOID\r
269 );\r
270\r
271/**\r
272 Worker function to open a file based on a device path. this will open the root\r
273 of the volume and then traverse down to the file itself.\r
274\r
275 @param DevicePath2 Device Path of the file\r
276 @param FileHandle Pointer to the file upon a successful return\r
277 @param OpenMode mode to open file in.\r
278 @param Attributes the File Attributes to use when creating a new file\r
279\r
280 @retval EFI_SUCCESS the file is open and FileHandle is valid\r
281 @retval EFI_UNSUPPORTED the device path cotained non-path elements\r
282 @retval other an error ocurred.\r
283**/\r
284EFI_STATUS\r
285EFIAPI\r
286InternalOpenFileDevicePath(\r
287 IN OUT EFI_DEVICE_PATH_PROTOCOL *DevicePath2,\r
288 OUT SHELL_FILE_HANDLE *FileHandle,\r
289 IN UINT64 OpenMode,\r
290 IN UINT64 Attributes OPTIONAL\r
291 );\r
292\r
293/**\r
294 Creates a file or directory by name.\r
295\r
296 This function creates an empty new file or directory with the specified attributes and\r
297 returns the new file's handle. If the file already exists and is read-only, then\r
298 EFI_INVALID_PARAMETER will be returned.\r
299\r
300 If the file already existed, it is truncated and its attributes updated. If the file is\r
301 created successfully, the FileHandle is the file's handle, else, the FileHandle is NULL.\r
302\r
303 If the file name begins with >v, then the file handle which is returned refers to the\r
304 shell environment variable with the specified name. If the shell environment variable\r
305 already exists and is non-volatile then EFI_INVALID_PARAMETER is returned.\r
306\r
307 @param FileName Pointer to NULL-terminated file path\r
308 @param FileAttribs The new file's attrbiutes. the different attributes are\r
309 described in EFI_FILE_PROTOCOL.Open().\r
310 @param FileHandle On return, points to the created file handle or directory's handle\r
311\r
312 @retval EFI_SUCCESS The file was opened. FileHandle points to the new file's handle.\r
313 @retval EFI_INVALID_PARAMETER One of the parameters has an invalid value.\r
314 @retval EFI_UNSUPPORTED could not open the file path\r
315 @retval EFI_NOT_FOUND the specified file could not be found on the devide, or could not\r
316 file the file system on the device.\r
317 @retval EFI_NO_MEDIA the device has no medium.\r
318 @retval EFI_MEDIA_CHANGED The device has a different medium in it or the medium is no\r
319 longer supported.\r
320 @retval EFI_DEVICE_ERROR The device reported an error or can't get the file path according\r
321 the DirName.\r
322 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.\r
323 @retval EFI_WRITE_PROTECTED An attempt was made to create a file, or open a file for write\r
324 when the media is write-protected.\r
325 @retval EFI_ACCESS_DENIED The service denied access to the file.\r
326 @retval EFI_OUT_OF_RESOURCES Not enough resources were available to open the file.\r
327 @retval EFI_VOLUME_FULL The volume is full.\r
328**/\r
329EFI_STATUS\r
330EFIAPI\r
331EfiShellCreateFile(\r
332 IN CONST CHAR16 *FileName,\r
333 IN UINT64 FileAttribs,\r
334 OUT SHELL_FILE_HANDLE *FileHandle\r
335 );\r
336\r
337/**\r
338 Opens a file or a directory by file name.\r
339\r
340 This function opens the specified file in the specified OpenMode and returns a file\r
341 handle.\r
342 If the file name begins with >v, then the file handle which is returned refers to the\r
343 shell environment variable with the specified name. If the shell environment variable\r
344 exists, is non-volatile and the OpenMode indicates EFI_FILE_MODE_WRITE, then\r
345 EFI_INVALID_PARAMETER is returned.\r
346\r
347 If the file name is >i, then the file handle which is returned refers to the standard\r
348 input. If the OpenMode indicates EFI_FILE_MODE_WRITE, then EFI_INVALID_PARAMETER\r
349 is returned.\r
350\r
351 If the file name is >o, then the file handle which is returned refers to the standard\r
352 output. If the OpenMode indicates EFI_FILE_MODE_READ, then EFI_INVALID_PARAMETER\r
353 is returned.\r
354\r
355 If the file name is >e, then the file handle which is returned refers to the standard\r
356 error. If the OpenMode indicates EFI_FILE_MODE_READ, then EFI_INVALID_PARAMETER\r
357 is returned.\r
358\r
359 If the file name is NUL, then the file handle that is returned refers to the standard NUL\r
360 file. If the OpenMode indicates EFI_FILE_MODE_READ, then EFI_INVALID_PARAMETER is\r
361 returned.\r
362\r
363 If return EFI_SUCCESS, the FileHandle is the opened file's handle, else, the\r
364 FileHandle is NULL.\r
365\r
366 @param FileName Points to the NULL-terminated UCS-2 encoded file name.\r
367 @param FileHandle On return, points to the file handle.\r
368 @param OpenMode File open mode. Either EFI_FILE_MODE_READ or\r
369 EFI_FILE_MODE_WRITE from section 12.4 of the UEFI\r
370 Specification.\r
371 @retval EFI_SUCCESS The file was opened. FileHandle has the opened file's handle.\r
372 @retval EFI_INVALID_PARAMETER One of the parameters has an invalid value. FileHandle is NULL.\r
373 @retval EFI_UNSUPPORTED Could not open the file path. FileHandle is NULL.\r
374 @retval EFI_NOT_FOUND The specified file could not be found on the device or the file\r
375 system could not be found on the device. FileHandle is NULL.\r
376 @retval EFI_NO_MEDIA The device has no medium. FileHandle is NULL.\r
377 @retval EFI_MEDIA_CHANGED The device has a different medium in it or the medium is no\r
378 longer supported. FileHandle is NULL.\r
379 @retval EFI_DEVICE_ERROR The device reported an error or can't get the file path according\r
380 the FileName. FileHandle is NULL.\r
381 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted. FileHandle is NULL.\r
382 @retval EFI_WRITE_PROTECTED An attempt was made to create a file, or open a file for write\r
383 when the media is write-protected. FileHandle is NULL.\r
384 @retval EFI_ACCESS_DENIED The service denied access to the file. FileHandle is NULL.\r
385 @retval EFI_OUT_OF_RESOURCES Not enough resources were available to open the file. FileHandle\r
386 is NULL.\r
387 @retval EFI_VOLUME_FULL The volume is full. FileHandle is NULL.\r
388**/\r
389EFI_STATUS\r
390EFIAPI\r
391EfiShellOpenFileByName(\r
392 IN CONST CHAR16 *FileName,\r
393 OUT SHELL_FILE_HANDLE *FileHandle,\r
394 IN UINT64 OpenMode\r
395 );\r
396\r
397/**\r
398 Deletes the file specified by the file name.\r
399\r
400 This function deletes a file.\r
401\r
402 @param FileName Points to the NULL-terminated file name.\r
403\r
404 @retval EFI_SUCCESS The file was closed and deleted, and the handle was closed.\r
405 @retval EFI_WARN_DELETE_FAILURE The handle was closed but the file was not deleted.\r
406 @sa EfiShellCreateFile\r
407 @sa FileHandleDelete\r
408**/\r
409EFI_STATUS\r
410EFIAPI\r
411EfiShellDeleteFileByName(\r
412 IN CONST CHAR16 *FileName\r
413 );\r
414\r
415/**\r
416 Disables the page break output mode.\r
417**/\r
418VOID\r
419EFIAPI\r
420EfiShellDisablePageBreak (\r
421 VOID\r
422 );\r
423\r
424/**\r
425 Enables the page break output mode.\r
426**/\r
427VOID\r
428EFIAPI\r
429EfiShellEnablePageBreak (\r
430 VOID\r
431 );\r
432\r
433/**\r
434 internal worker function to run a command via Device Path\r
435\r
436 @param ParentImageHandle A handle of the image that is executing the specified\r
437 command line.\r
438 @param DevicePath device path of the file to execute\r
439 @param CommandLine Points to the NULL-terminated UCS-2 encoded string\r
440 containing the command line. If NULL then the command-\r
441 line will be empty.\r
442 @param Environment Points to a NULL-terminated array of environment\r
443 variables with the format 'x=y', where x is the\r
444 environment variable name and y is the value. If this\r
445 is NULL, then the current shell environment is used.\r
446 @param StatusCode Points to the status code returned by the command.\r
447\r
448 @retval EFI_SUCCESS The command executed successfully. The status code\r
449 returned by the command is pointed to by StatusCode.\r
450 @retval EFI_INVALID_PARAMETER The parameters are invalid.\r
451 @retval EFI_OUT_OF_RESOURCES Out of resources.\r
452 @retval EFI_UNSUPPORTED Nested shell invocations are not allowed.\r
453**/\r
454EFI_STATUS\r
455EFIAPI\r
456InternalShellExecuteDevicePath(\r
457 IN CONST EFI_HANDLE *ParentImageHandle,\r
458 IN CONST EFI_DEVICE_PATH_PROTOCOL *DevicePath,\r
459 IN CONST CHAR16 *CommandLine OPTIONAL,\r
460 IN CONST CHAR16 **Environment OPTIONAL,\r
461 OUT EFI_STATUS *StatusCode OPTIONAL\r
462 );\r
463\r
464/**\r
465 Execute the command line.\r
466\r
467 This function creates a nested instance of the shell and executes the specified\r
468 command (CommandLine) with the specified environment (Environment). Upon return,\r
469 the status code returned by the specified command is placed in StatusCode.\r
470\r
471 If Environment is NULL, then the current environment is used and all changes made\r
472 by the commands executed will be reflected in the current environment. If the\r
473 Environment is non-NULL, then the changes made will be discarded.\r
474\r
475 The CommandLine is executed from the current working directory on the current\r
476 device.\r
477\r
478 @param ParentImageHandle A handle of the image that is executing the specified\r
479 command line.\r
480 @param CommandLine Points to the NULL-terminated UCS-2 encoded string\r
481 containing the command line. If NULL then the command-\r
482 line will be empty.\r
483 @param Environment Points to a NULL-terminated array of environment\r
484 variables with the format 'x=y', where x is the\r
485 environment variable name and y is the value. If this\r
486 is NULL, then the current shell environment is used.\r
487 @param StatusCode Points to the status code returned by the command.\r
488\r
489 @retval EFI_SUCCESS The command executed successfully. The status code\r
490 returned by the command is pointed to by StatusCode.\r
491 @retval EFI_INVALID_PARAMETER The parameters are invalid.\r
492 @retval EFI_OUT_OF_RESOURCES Out of resources.\r
493 @retval EFI_UNSUPPORTED Nested shell invocations are not allowed.\r
494**/\r
495EFI_STATUS\r
496EFIAPI\r
497EfiShellExecute(\r
498 IN EFI_HANDLE *ParentImageHandle,\r
499 IN CHAR16 *CommandLine OPTIONAL,\r
500 IN CHAR16 **Environment OPTIONAL,\r
501 OUT EFI_STATUS *StatusCode OPTIONAL\r
502 );\r
503\r
504/**\r
505 Utility cleanup function for EFI_SHELL_FILE_INFO objects.\r
506\r
507 1) frees all pointers (non-NULL)\r
508 2) Closes the SHELL_FILE_HANDLE\r
509\r
510 @param FileListNode pointer to the list node to free\r
511**/\r
512VOID\r
513EFIAPI\r
514FreeShellFileInfoNode(\r
515 IN EFI_SHELL_FILE_INFO *FileListNode\r
516 );\r
517\r
518/**\r
519 Frees the file list.\r
520\r
521 This function cleans up the file list and any related data structures. It has no\r
522 impact on the files themselves.\r
523\r
524 @param FileList The file list to free. Type EFI_SHELL_FILE_INFO is\r
525 defined in OpenFileList()\r
526\r
527 @retval EFI_SUCCESS Free the file list successfully.\r
528 @retval EFI_INVALID_PARAMETER FileList was NULL or *FileList was NULL;\r
529**/\r
530EFI_STATUS\r
531EFIAPI\r
532EfiShellFreeFileList(\r
533 IN EFI_SHELL_FILE_INFO **FileList\r
534 );\r
535\r
536/**\r
537 Deletes the duplicate file names files in the given file list.\r
538\r
539 This function deletes the reduplicate files in the given file list.\r
540\r
541 @param FileList A pointer to the first entry in the file list.\r
542\r
543 @retval EFI_SUCCESS Always success.\r
544 @retval EFI_INVALID_PARAMETER FileList was NULL or *FileList was NULL;\r
545**/\r
546EFI_STATUS\r
547EFIAPI\r
548EfiShellRemoveDupInFileList(\r
549 IN EFI_SHELL_FILE_INFO **FileList\r
550 );\r
551\r
552/**\r
553 Allocates and populates a EFI_SHELL_FILE_INFO structure. if any memory operation\r
554 failed it will return NULL.\r
555\r
556 @param[in] BasePath the Path to prepend onto filename for FullPath\r
557 @param[in] Status Status member initial value.\r
a405b86d 558 @param[in] FileName FileName member initial value.\r
559 @param[in] Handle Handle member initial value.\r
560 @param[in] Info Info struct to copy.\r
561\r
562**/\r
563EFI_SHELL_FILE_INFO *\r
564EFIAPI\r
565CreateAndPopulateShellFileInfo(\r
566 IN CONST CHAR16 *BasePath,\r
567 IN CONST EFI_STATUS Status,\r
a405b86d 568 IN CONST CHAR16 *FileName,\r
569 IN CONST SHELL_FILE_HANDLE Handle,\r
570 IN CONST EFI_FILE_INFO *Info\r
571 );\r
572\r
573/**\r
574 Find all files in a specified directory.\r
575\r
576 @param FileDirHandle Handle of the directory to search.\r
577 @param FileList On return, points to the list of files in the directory\r
578 or NULL if there are no files in the directory.\r
579\r
580 @retval EFI_SUCCESS File information was returned successfully.\r
581 @retval EFI_VOLUME_CORRUPTED The file system structures have been corrupted.\r
582 @retval EFI_DEVICE_ERROR The device reported an error.\r
583 @retval EFI_NO_MEDIA The device media is not present.\r
584 @retval EFI_INVALID_PARAMETER The FileDirHandle was not a directory.\r
585**/\r
586EFI_STATUS\r
587EFIAPI\r
588EfiShellFindFilesInDir(\r
589 IN SHELL_FILE_HANDLE FileDirHandle,\r
590 OUT EFI_SHELL_FILE_INFO **FileList\r
591 );\r
592\r
593/**\r
594 Find files that match a specified pattern.\r
595\r
596 This function searches for all files and directories that match the specified\r
597 FilePattern. The FilePattern can contain wild-card characters. The resulting file\r
598 information is placed in the file list FileList.\r
599\r
600 Wildcards are processed\r
601 according to the rules specified in UEFI Shell 2.0 spec section 3.7.1.\r
602\r
603 The files in the file list are not opened. The OpenMode field is set to 0 and the FileInfo\r
604 field is set to NULL.\r
605\r
606 if *FileList is not NULL then it must be a pre-existing and properly initialized list.\r
607\r
608 @param FilePattern Points to a NULL-terminated shell file path, including wildcards.\r
609 @param FileList On return, points to the start of a file list containing the names\r
610 of all matching files or else points to NULL if no matching files\r
611 were found. only on a EFI_SUCCESS return will; this be non-NULL.\r
612\r
613 @retval EFI_SUCCESS Files found. FileList is a valid list.\r
614 @retval EFI_NOT_FOUND No files found.\r
615 @retval EFI_NO_MEDIA The device has no media\r
616 @retval EFI_DEVICE_ERROR The device reported an error\r
617 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted\r
618**/\r
619EFI_STATUS\r
620EFIAPI\r
621EfiShellFindFiles(\r
622 IN CONST CHAR16 *FilePattern,\r
623 OUT EFI_SHELL_FILE_INFO **FileList\r
624 );\r
625\r
626/**\r
627 Opens the files that match the path specified.\r
628\r
629 This function opens all of the files specified by Path. Wildcards are processed\r
630 according to the rules specified in UEFI Shell 2.0 spec section 3.7.1. Each\r
631 matching file has an EFI_SHELL_FILE_INFO structure created in a linked list.\r
632\r
633 @param Path A pointer to the path string.\r
634 @param OpenMode Specifies the mode used to open each file, EFI_FILE_MODE_READ or\r
635 EFI_FILE_MODE_WRITE.\r
636 @param FileList Points to the start of a list of files opened.\r
637\r
638 @retval EFI_SUCCESS Create the file list successfully.\r
639 @return Others Can't create the file list.\r
640**/\r
641EFI_STATUS\r
642EFIAPI\r
643EfiShellOpenFileList(\r
644 IN CHAR16 *Path,\r
645 IN UINT64 OpenMode,\r
646 IN OUT EFI_SHELL_FILE_INFO **FileList\r
647 );\r
648\r
649/**\r
650 Gets the environment variable.\r
651\r
652 This function returns the current value of the specified environment variable.\r
653\r
654 @param Name A pointer to the environment variable name\r
655\r
656 @return !=NULL The environment variable's value. The returned\r
657 pointer does not need to be freed by the caller.\r
658 @retval NULL The environment variable doesn't exist.\r
659**/\r
660CONST CHAR16 *\r
661EFIAPI\r
662EfiShellGetEnv(\r
663 IN CONST CHAR16 *Name\r
664 );\r
665\r
666/**\r
667 Sets the environment variable.\r
668\r
669 This function changes the current value of the specified environment variable. If the\r
670 environment variable exists and the Value is an empty string, then the environment\r
671 variable is deleted. If the environment variable exists and the Value is not an empty\r
672 string, then the value of the environment variable is changed. If the environment\r
673 variable does not exist and the Value is an empty string, there is no action. If the\r
674 environment variable does not exist and the Value is a non-empty string, then the\r
675 environment variable is created and assigned the specified value.\r
676\r
677 For a description of volatile and non-volatile environment variables, see UEFI Shell\r
678 2.0 specification section 3.6.1.\r
679\r
680 @param Name Points to the NULL-terminated environment variable name.\r
681 @param Value Points to the NULL-terminated environment variable value. If the value is an\r
682 empty string then the environment variable is deleted.\r
683 @param Volatile Indicates whether the variable is non-volatile (FALSE) or volatile (TRUE).\r
684\r
685 @retval EFI_SUCCESS The environment variable was successfully updated.\r
686**/\r
687EFI_STATUS\r
688EFIAPI\r
689EfiShellSetEnv(\r
690 IN CONST CHAR16 *Name,\r
691 IN CONST CHAR16 *Value,\r
692 IN BOOLEAN Volatile\r
693 );\r
694\r
695/**\r
696 Returns the current directory on the specified device.\r
697\r
698 If FileSystemMapping is NULL, it returns the current working directory. If the\r
699 FileSystemMapping is not NULL, it returns the current directory associated with the\r
700 FileSystemMapping. In both cases, the returned name includes the file system\r
701 mapping (i.e. fs0:\current-dir).\r
702\r
703 @param FileSystemMapping A pointer to the file system mapping. If NULL,\r
704 then the current working directory is returned.\r
705\r
706 @retval !=NULL The current directory.\r
707 @retval NULL Current directory does not exist.\r
708**/\r
709CONST CHAR16 *\r
710EFIAPI\r
711EfiShellGetCurDir(\r
712 IN CONST CHAR16 *FileSystemMapping OPTIONAL\r
713 );\r
714\r
715/**\r
716 Changes the current directory on the specified device.\r
717\r
718 If the FileSystem is NULL, and the directory Dir does not contain a file system's\r
719 mapped name, this function changes the current working directory. If FileSystem is\r
720 NULL and the directory Dir contains a mapped name, then the current file system and\r
721 the current directory on that file system are changed.\r
722\r
723 If FileSystem is not NULL, and Dir is NULL, then this changes the current working file\r
724 system.\r
725\r
726 If FileSystem is not NULL and Dir is not NULL, then this function changes the current\r
727 directory on the specified file system.\r
728\r
729 If the current working directory or the current working file system is changed then the\r
730 %cwd% environment variable will be updated\r
731\r
732 @param FileSystem A pointer to the file system's mapped name. If NULL, then the current working\r
733 directory is changed.\r
734 @param Dir Points to the NULL-terminated directory on the device specified by FileSystem.\r
735\r
736 @retval EFI_SUCCESS The operation was sucessful\r
737**/\r
738EFI_STATUS\r
739EFIAPI\r
740EfiShellSetCurDir(\r
741 IN CONST CHAR16 *FileSystem OPTIONAL,\r
742 IN CONST CHAR16 *Dir\r
743 );\r
744\r
745/**\r
746 Return help information about a specific command.\r
747\r
748 This function returns the help information for the specified command. The help text\r
749 can be internal to the shell or can be from a UEFI Shell manual page.\r
750\r
751 If Sections is specified, then each section name listed will be compared in a casesensitive\r
752 manner, to the section names described in Appendix B. If the section exists,\r
753 it will be appended to the returned help text. If the section does not exist, no\r
754 information will be returned. If Sections is NULL, then all help text information\r
755 available will be returned.\r
756\r
757 @param Command Points to the NULL-terminated UEFI Shell command name.\r
758 @param Sections Points to the NULL-terminated comma-delimited\r
759 section names to return. If NULL, then all\r
760 sections will be returned.\r
761 @param HelpText On return, points to a callee-allocated buffer\r
762 containing all specified help text.\r
763\r
764 @retval EFI_SUCCESS The help text was returned.\r
765 @retval EFI_OUT_OF_RESOURCES The necessary buffer could not be allocated to hold the\r
766 returned help text.\r
767 @retval EFI_INVALID_PARAMETER HelpText is NULL\r
768 @retval EFI_NOT_FOUND There is no help text available for Command.\r
769**/\r
770EFI_STATUS\r
771EFIAPI\r
772EfiShellGetHelpText(\r
773 IN CONST CHAR16 *Command,\r
774 IN CONST CHAR16 *Sections OPTIONAL,\r
775 OUT CHAR16 **HelpText\r
776 );\r
777\r
778/**\r
779 Gets the enable status of the page break output mode.\r
780\r
781 User can use this function to determine current page break mode.\r
782\r
783 @retval TRUE The page break output mode is enabled\r
784 @retval FALSE The page break output mode is disabled\r
785**/\r
786BOOLEAN\r
787EFIAPI\r
788EfiShellGetPageBreak(\r
789 VOID\r
790 );\r
791\r
792/**\r
793 Judges whether the active shell is the root shell.\r
794\r
795 This function makes the user to know that whether the active Shell is the root shell.\r
796\r
797 @retval TRUE The active Shell is the root Shell.\r
798 @retval FALSE The active Shell is NOT the root Shell.\r
799**/\r
800BOOLEAN\r
801EFIAPI\r
802EfiShellIsRootShell(\r
803 VOID\r
804 );\r
805\r
806/**\r
807 This function returns the command associated with a alias or a list of all\r
808 alias'.\r
809\r
810 @param[in] Command Points to the NULL-terminated shell alias.\r
811 If this parameter is NULL, then all\r
812 aliases will be returned in ReturnedData.\r
813 @param[out] Volatile upon return of a single command if TRUE indicates\r
814 this is stored in a volatile fashion. FALSE otherwise.\r
815 @return If Alias is not NULL, it will return a pointer to\r
816 the NULL-terminated command for that alias.\r
817 If Alias is NULL, ReturnedData points to a ';'\r
818 delimited list of alias (e.g.\r
819 ReturnedData = "dir;del;copy;mfp") that is NULL-terminated.\r
820 @retval NULL an error ocurred\r
821 @retval NULL Alias was not a valid Alias\r
822**/\r
823CONST CHAR16 *\r
824EFIAPI\r
825EfiShellGetAlias(\r
826 IN CONST CHAR16 *Command,\r
827 OUT BOOLEAN *Volatile OPTIONAL\r
828 );\r
829\r
830/**\r
831 Changes a shell command alias.\r
832\r
833 This function creates an alias for a shell command or if Alias is NULL it will delete an existing alias.\r
834\r
835 this function does not check for built in alias'.\r
836\r
837 @param[in] Command Points to the NULL-terminated shell command or existing alias.\r
838 @param[in] Alias Points to the NULL-terminated alias for the shell command. If this is NULL, and\r
839 Command refers to an alias, that alias will be deleted.\r
840 @param[in] Volatile if TRUE the Alias being set will be stored in a volatile fashion. if FALSE the\r
841 Alias being set will be stored in a non-volatile fashion.\r
842\r
843 @retval EFI_SUCCESS Alias created or deleted successfully.\r
844 @retval EFI_NOT_FOUND the Alias intended to be deleted was not found\r
845**/\r
846EFI_STATUS\r
847EFIAPI\r
848InternalSetAlias(\r
849 IN CONST CHAR16 *Command,\r
850 IN CONST CHAR16 *Alias OPTIONAL,\r
851 IN BOOLEAN Volatile\r
852 );\r
853\r
854/**\r
855 Changes a shell command alias.\r
856\r
857 This function creates an alias for a shell command or if Alias is NULL it will delete an existing alias.\r
858\r
859\r
860 @param[in] Command Points to the NULL-terminated shell command or existing alias.\r
861 @param[in] Alias Points to the NULL-terminated alias for the shell command. If this is NULL, and\r
862 Command refers to an alias, that alias will be deleted.\r
863 @param[in] Replace If TRUE and the alias already exists, then the existing alias will be replaced. If\r
864 FALSE and the alias already exists, then the existing alias is unchanged and\r
865 EFI_ACCESS_DENIED is returned.\r
866 @param[in] Volatile if TRUE the Alias being set will be stored in a volatile fashion. if FALSE the\r
867 Alias being set will be stored in a non-volatile fashion.\r
868\r
869 @retval EFI_SUCCESS Alias created or deleted successfully.\r
870 @retval EFI_NOT_FOUND the Alias intended to be deleted was not found\r
871 @retval EFI_ACCESS_DENIED The alias is a built-in alias or already existed and Replace was set to\r
872 FALSE.\r
873**/\r
874EFI_STATUS\r
875EFIAPI\r
876EfiShellSetAlias(\r
877 IN CONST CHAR16 *Command,\r
878 IN CONST CHAR16 *Alias OPTIONAL,\r
879 IN BOOLEAN Replace,\r
880 IN BOOLEAN Volatile\r
881 );\r
882\r
883/**\r
884 Utility cleanup function for EFI_SHELL_FILE_INFO objects.\r
885\r
886 1) frees all pointers (non-NULL)\r
887 2) Closes the SHELL_FILE_HANDLE\r
888\r
889 @param FileListNode pointer to the list node to free\r
890**/\r
891VOID\r
892EFIAPI\r
893InternalFreeShellFileInfoNode(\r
894 IN EFI_SHELL_FILE_INFO *FileListNode\r
895 );\r
896\r
897/**\r
898 Internal variable setting function. Allows for setting of the read only variables.\r
899\r
900 @param Name Points to the NULL-terminated environment variable name.\r
901 @param Value Points to the NULL-terminated environment variable value. If the value is an\r
902 empty string then the environment variable is deleted.\r
903 @param Volatile Indicates whether the variable is non-volatile (FALSE) or volatile (TRUE).\r
904\r
905 @retval EFI_SUCCESS The environment variable was successfully updated.\r
906**/\r
907EFI_STATUS\r
908EFIAPI\r
909InternalEfiShellSetEnv(\r
910 IN CONST CHAR16 *Name,\r
911 IN CONST CHAR16 *Value,\r
912 IN BOOLEAN Volatile\r
913 );\r
914\r
8be0ba36 915/**\r
916 Function to start monitoring for CTRL-C using SimpleTextInputEx. This \r
917 feature's enabled state was not known when the shell initially launched.\r
918\r
919 @retval EFI_SUCCESS The feature is enabled.\r
920 @retval EFI_OUT_OF_RESOURCES There is not enough mnemory available.\r
921**/\r
922EFI_STATUS\r
923EFIAPI\r
924InernalEfiShellStartMonitor(\r
925 VOID\r
926 );\r
733f138d 927\r
928/**\r
929 Notification function for keystrokes.\r
930\r
931 @param[in] KeyData The key that was pressed.\r
932\r
933 @retval EFI_SUCCESS The operation was successful.\r
934**/\r
935EFI_STATUS\r
936EFIAPI\r
937NotificationFunction(\r
938 IN EFI_KEY_DATA *KeyData\r
939 );\r
a405b86d 940#endif //_SHELL_PROTOCOL_HEADER_\r
941\r