error = SystemTagList(command, tags)
D0 D1 D2
LONG SystemTagList(STRPTR, struct TagItem *)
error = System(command, tags)
D0 D1 D2
LONG System(STRPTR, struct TagItem *)
error = SystemTags(command, Tag1, ...)
LONG SystemTags(STRPTR, ULONG, ...)
Similar to
Execute(), creates a new shell in various ways. Spawns a Shell Process to execute the command. Depending on its arguments, may or may not wait for the command(s) to be completed. If it does wait, returns the return code of the command, or returns 0 for success in all cases, or -1 if the command(s) could not be run for any reason.
If System() waits for completion, the input and output filehandles will not be closed by System, you must close them (if needed) after System returns if you specified them via SYS_
Input or SYS_Output. The command stream SYS_Command/SYS_CmdName will always be closed on success, regardless of other arguments.
By default, the new Process will use your current
Input() and
Output() filehandles. Normal Shell command-line parsing will be done including redirection on 'command'. The current directory and path will be inherited from your Process. Your path will be used to find the command if no path is specified.
Note that you may NOT pass the same FileHandle for both SYS_
Input and SYS_Output. If you want input and output to both be to the same CON: window, pass a SYS_
Input of a FileHandle on the CON: window, and pass a SYS_
Output of NULL. The shell will automatically set the default
Output() stream to the window you passed via SYS_
Input, by opening "*" on that handler, or "NIL:" if "*" could not be opened.
If used with the SYS_Asynch flag, it WILL close both its input and output filehandles after running the command (even if these were your
Input() and
Output()!).
If command is NULL, System() will read from SYS_CmdStream, or SYS_
Input if the former is not given. It will return immediately and execute such commands in the background, even without SYS_Asynch set. (V40) This mode is used to implement RUN, see NOTES below.
SYS_Asynch can also be set along with a command or a SYS_CmdStream. In such a case, the shell will execute the commands from SYS_CmdStream or command asynchronously, and after its depletion, will continue to read commands interactively from the input FileHandle. (V47) This mode is used to implement the NEWSHELL command, see NOTES.
Normally uses the boot (ROM) shell, but other shells can be specified via SYS_UserShell and SYS_CustomShell. Normally, you should send things written by the user to the UserShell. The UserShell defaults to the same shell as the boot shell.
The tags are passed through to
CreateNewProc(), tags that conflict with SystemTagList() will be filtered out. This allows setting things like priority, etc. for the new Process. The tags that are currently filtered out are:
-
NP_Seglist
-
NP_FreeSeglist
-
NP_Entry
-
NP_Input
-
NP_Output
-
NP_Error
-
NP_CloseInput
-
NP_CloseOutput
-
NP_CloseError
-
NP_HomeDir
-
NP_Cli
This function requires (as of V47) about 800 bytes stack space, and needs the caller to be a Process. There is no automatic stack extension.
The RUN command is equivalent to
System(NULL,SYS_
Input,instream,SYS_
Output,
Output(),
SYS_UserShell,TRUE,TAG_DONE);
where instream is a stream that delivers the command to be run. For historical reasons, SYS_Async is implicitly set by System(), even if not given, and the command is passed in through a faked stream, not as first argument, see also BUGS below.
The NEWSHELL command is equivalent to
System(NULL,SYS_InName,"CON:...",
SYS_CmdStream,
Open("S:Shell-Startup",MODE_OLDFILE),
SYS_Asynch,TRUE,SYS_UserShell,TRUE,
NP_Name,"Shell Process",TAG_DONE);
While V47 goes through System(), previous releases of NewShell used an undocumented legacy shell startup mechanism that has been deprecated.
The
Execute() function is roughly equivalent to
System(NULL,SYS_CmdStream,cmd,
SYS_
Input,in,SYS_
Output,out,SYS_UserShell,FALSE,
NP_Priority,0,TAG_DONE);
where cmd is a stream that delivers the command otherwise
given as the first argument to
Execute(), and except that
Execute() returns DOSTRUE in case System() would return 0.
V45 and before could release SYS_
Input in some error cases. This is fixed in V47 where System() either returns the command return code, or -1, and does not release caller resources in the latter case.
In case the function returned -1 to indicate failure, any
Lock passed in as NP_
CurrentDir was released by V45 and before, even though the docs stated and still state that the caller is responsible for releasing it on error. This also got fixed in V47. Note that in case of success, NP_
CurrentDir is passed over to the shell/command created and is released there - this is as documented and not a bug.
NP_Name was not honoured. Instead, the new shell always received the name "Background CLI", even with NP_Name set. V47 fixes this.
If command is NULL, System() always detaches the shell it creates and does not wait for its completion, even if SYS_Async is FALSE. V47 retains this behaviour for compatibility reasons. The shell created this way is non-interactive, signal-handling is not forwarded to the shell, and the console port remains unset, i.e. the configuration is as required for the Run command which uses such parameters, see NOTES above. To create an interactive shell, set SYS_Asynch to TRUE explicitly.
In case command is NULL and a command and input stream coincide, System() prints the CLI number of the created shell in brackets over the output stream as these arguments also reflect the Run command. This should be again better implemented in the Run and not in the System() function but also remains as such for compatibility.
V45 and below did not clearly document that System() can (obviously) not return a command result code in asynchronous operations.