Difference between revisions of "AmigaDos.SystemTagList()"

From Freepascal Amiga wiki
Jump to navigation Jump to search
m (Paragraph Asynchrone/OutPut/Error: added other impossibilities (no brains today))
 
(10 intermediate revisions by the same user not shown)
Line 15: Line 15:
  
 
=== The tags ===
 
=== The tags ===
[Insert here explaination about the tags]
+
<u>Standard tags</u>
 +
SYS_Input - [http://www.alb42.de/fpc-docu/exec/bptr.html BPTR] to [http://repo.or.cz/w/AROS.git/blob?f=rom/filesys/console_handler/con_handler_intern.h pFileHandle]
 +
SYS_Output - [http://www.alb42.de/fpc-docu/exec/bptr.html BPTR] to [http://repo.or.cz/w/AROS.git/blob?f=rom/filesys/console_handler/con_handler_intern.h pFileHandle]
 +
SYS_Asynch - [http://www.alb42.de/fpc-docu/exec/bool.html BOOL]
 +
SYS_UserShell - [http://www.alb42.de/fpc-docu/exec/bptr.html BPTR]
 +
SYS_CustomShell - [http://www.alb42.de/fpc-docu/exec/strptr.html STRPTR]
  
 +
<u>Aros extensions</u>
 +
SYS_Error - [http://www.alb42.de/fpc-docu/exec/bptr.html BPTR] to [http://repo.or.cz/w/AROS.git/blob?f=rom/filesys/console_handler/con_handler_intern.h pFileHandle]
 +
SYS_ScriptInput - [http://www.alb42.de/fpc-docu/exec/bptr.html BPTR] to [http://repo.or.cz/w/AROS.git/blob?f=rom/filesys/console_handler/con_handler_intern.h pFileHandle]
 +
SYS_Background - [http://www.alb42.de/fpc-docu/exec/bool.html BOOL]
 +
SYS_CliNumPtr - [http://www.alb42.de/fpc-docu/exec/plong.html pLONG]
  
 +
Since these tags are passed through to CreateNewProc() you can also use tags that can be passed to that function, except those that conflict with SystemTagList() (the ones conflicting are striked).
 +
 +
<u>Standard tags</u>
 +
<strike>NP_Seglist</strike>
 +
<strike>NP_FreeSeglist</strike>
 +
<strike>NP_Entry</strike>
 +
<strike>NP_Input</strike>
 +
<strike>NP_Output</strike>
 +
<strike>NP_CloseInput</strike>
 +
<strike>NP_CloseOutput</strike>
 +
<strike>NP_Error</strike>
 +
<strike>NP_CloseError</strike>
 +
NP_CurrentDir - [http://www.alb42.de/fpc-docu/exec/bptr.html BPTR] to [http://repo.or.cz/w/AROS.git/blob?f=rom/filesys/console_handler/con_handler_intern.h pFileHandle]
 +
NP_StackSize - [http://www.alb42.de/fpc-docu/exec/ulong.html ULONG]
 +
NP_Name - [http://www.alb42.de/fpc-docu/exec/strptr.html STRPTR]
 +
NP_Priority - [http://www.alb42.de/fpc-docu/exec/long.html LONG]
 +
NP_ConsoleTask - [http://www.alb42.de/fpc-docu/exec/aptr.html APTR]
 +
NP_WindowPtr - [http://www.alb42.de/fpc-docu/intuition/pwindow.html pWindow]
 +
<strike>NP_HomeDir</strike>
 +
NP_CopyVars, [http://www.alb42.de/fpc-docu/exec/bool.html BOOL]
 +
<strike>NP_Cli</strike>
 +
NP_Path, [http://www.alb42.de/fpc-docu/exec/aptr.html APTR]
 +
NP_CommandName - [http://www.alb42.de/fpc-docu/exec/strptr.html STRPTR]
 +
<strike>NP_Arguments</strike>
 +
NP_NotifyOnDeath, [http://www.alb42.de/fpc-docu/exec/bool.html BOOL]
 +
<strike>NP_Synchronous</strike>
 +
NP_ExitCode - [http://www.alb42.de/fpc-docu/exec/aptr.html APTR]
 +
NP_ExitData - [http://www.alb42.de/fpc-docu/exec/aptr.html APTR]
 +
 +
<u>Aros extensions</u>
 +
<strike>NP_UserData</strike>
  
 
== Piping ==
 
== Piping ==
Line 38: Line 79:
 
pipe-handle unusable as the last read-command done on the pipe-handle would let that read-command wait forever until no-one (in this case the receiving-end itself) has the handle open for writing. The only way that somewhat solves this, is using the NP_ExitCode tag and in that called code, close the pipe-handle of the receiving end (in order to let the receiver's last read command 'unlock' so it can continue. But by doing so, it would also make the receiver's routine useless as it has no acces to the pipe-handler anymore. Besides that, the last read done by the recieving-end with the last read on the handle would also contain garbled values towards the end of what the last read tells that was possible to read (as some functions return how many bytes/characters were read).
 
pipe-handle unusable as the last read-command done on the pipe-handle would let that read-command wait forever until no-one (in this case the receiving-end itself) has the handle open for writing. The only way that somewhat solves this, is using the NP_ExitCode tag and in that called code, close the pipe-handle of the receiving end (in order to let the receiver's last read command 'unlock' so it can continue. But by doing so, it would also make the receiver's routine useless as it has no acces to the pipe-handler anymore. Besides that, the last read done by the recieving-end with the last read on the handle would also contain garbled values towards the end of what the last read tells that was possible to read (as some functions return how many bytes/characters were read).
  
 +
'''NOTE:'''
 +
As of abi-v0-on-trunk becoming mainstream abi-v0 (sep 2014), the above information isn't correct anymore. Use PIPE: device to handle your piped buffers. As a result, things behave more (if not completely) consistent with amigaOS 3.x pipe: device and handler.
  
 
== How to use SystemTagList() in practise ==
 
== How to use SystemTagList() in practise ==
Line 67: Line 110:
  
 
It took me a while to figure out that when using pipefs, i read all about buffers and pipe being buffered. So i didn't figure at first, that using buffered reads/writes would mess up things. Only when i started to use unbuffered reads/writes i was getting somewhere and got things to work. Ofcourse milage may vary in/for different situations.
 
It took me a while to figure out that when using pipefs, i read all about buffers and pipe being buffered. So i didn't figure at first, that using buffered reads/writes would mess up things. Only when i started to use unbuffered reads/writes i was getting somewhere and got things to work. Ofcourse milage may vary in/for different situations.
 +
 +
'''note:''' The parameterlist in NP_ExitCode routine is uncertain, so procedure CMDExitCode() could contain parameters based on what actually is being passed to it. Unfortunately i could only find one(!?) program using NP_ExitCode in AROS sourcetree, that used these exact parameters. But it could be possible that SegList Parameter is only passed when using this specific tag, just as NP_ExitData would perhaps add another parameter being passed to the procedure.
  
 
<source lang="pascal">
 
<source lang="pascal">
   Program RunCMDoo;
+
Program RunCMDoo;
 +
 
 +
{
 +
   Name  : RunCMDoo V0.1
 +
  Target : AROS ABIv0/i386
 +
  Author : n/a
 +
  Date  : 2013-09-15
 +
  Goal  : Run a command using SystemTagList() and catch its output
 +
  Usage  : RunCMDoo Command "[parameter1 parameter2 parameterN]"
 +
}
 +
 
 +
 
 +
{$MODE OBJFPC}{$H+}
 +
 
 +
 
 +
Uses
 +
  exec, amigados, utility, tagsarray;
 +
 
 +
 
 +
Type
 +
  BPTR              = LongInt;  // Quick fix to compensate for pointer
 +
 
 +
  TRCMode          =
 +
  (
 +
    rcm_output,    // Only use SYS_Output
 +
    rcm_combined,  // Use Sys_Output and Sys_Error using the same handle.
 +
                    // (impossible using SystemTagList() ?)
 +
    rcm_both        // use SYS_Output and Sys_Error both using their own handle.
 +
                    // (currently  bugs)
 +
  );
 +
 
 +
Var
 +
  CommandHasEnded  : boolean = false;
 +
  CommandExitCode  : longint = 0;
 +
  CommandSegList    : BPTR    = 0;
 +
 
 +
Var
 +
  OutPipeRead      : BPTR;
 +
  OutPipeWrite      : BPTR;
 +
 
 +
Const
 +
  OutPipeName      = 'PIPEFS:CmdOut';  // Name should be randomized or use * (* = untested)
 +
 
 +
 
 +
 
 +
Procedure CMDExitCode(retcode: LongInt; SegList: BPTR); cdecl;
 +
begin
 +
  Writeln('Enter - MyExitCode()');
 +
 
 +
  CommandHasEnded := true;
 +
  CommandExitCode := retcode;
 +
  CommandSegList  := SegList;
 +
 
 +
  Writeln('MyExitCode(): exitcode =', CommandExitCode);
 +
  Writeln('MyExitCode(): seglist  =', CommandSegList);
 
    
 
    
   {
+
   Writeln('Leave - MyExitCode()');
    Name  : RunCMDoo V0.1
+
end;
    Target : AROS ABIv0/i386
+
 
    Author : n/a
+
 
    Date  : 2013-09-15
 
    Goal  : Run a command using SystemTagList() and catch its output
 
    Usage  : RunCMDoo Command "[parameter1 parameter2 parameterN]"
 
  }
 
 
    
 
    
 
+
Procedure RunCMDOutput(CommandToRun: String);
  {$MODE OBJFPC}{$H+}
+
var
 
+
   TagsList      : TTagsList = nil;
 
+
   Tags           : pTagItem;
  Uses
+
   res            : LongInt;
    exec, amigados, utility, tagsarray;
+
   nread          : LongInt;
 
+
  OutPipeBuffer  : packed array[0..255] of char;
    
+
begin
  Type
+
   OutPipeWrite := DosOpen( OutPipeName , MODE_READWRITE);
    BPTR              = LongInt; // Quick fix to compensate for pointer
+
 
    
+
   if (OutPipeWrite <> 0) then
    TRCMode           =
 
    (
 
      rcm_output,    // Only use SYS_Output
 
      rcm_combined,  // Use Sys_Output and Sys_Error using the same handle.
 
                      // (impossible using SystemTagList() ?)
 
      rcm_both        // use SYS_Output and Sys_Error both using their own handle.
 
                      // (currently  bugs)
 
    );
 
    
 
  Var
 
    CommandHasEnded  : boolean = false;
 
    CommandExitCode   : longint = 0;
 
    CommandSegList    : BPTR    = 0;
 
 
 
   Var
 
    OutPipeRead      : BPTR;
 
    OutPipeWrite     : BPTR;
 
 
 
  Const
 
    OutPipeName      = 'PIPEFS:CmdOut';  // Name should be randomized or use * (* = untested)
 
 
 
    
 
 
 
  Procedure CMDExitCode(retcode: LongInt; SegList: BPTR); cdecl;
 
 
   begin
 
   begin
     Writeln('Enter - MyExitCode()');
+
     addtags(TagsList,
 
+
     [
     CommandHasEnded := true;
+
      LONG(SYS_Input)      , nil,
    CommandExitCode := retcode;
+
 
    CommandSegList  := SegList;
+
      LONG(SYS_Output)     , OutPipeWrite,
 
+
      LONG(NP_CloseOutput)  , 1,
    Writeln('MyExitCode(): exitcode =', CommandExitCode);
+
 
    Writeln('MyExitCode(): seglist =', CommandSegList);
+
      LONG(SYS_Error)       , nil,
 
+
 
    Writeln('Leave - MyExitCode()');
+
      LONG(SYS_Asynch)      , 1,
  end;
+
      LONG(SYS_BackGround)  , 1,
 
+
      LONG(NP_ExitCode)     , @CMDExitCode,
 
+
      TAG_DONE
 
+
     ]);
  Procedure RunCMDOutput(CommandToRun: String);
+
     Tags := GetTagPtr(TagsList);
  var
+
 
     TagsList      : TTagsList = nil;
+
     writeln('RUNCMD(): Executing SystemTagList()');
     Tags           : pTagItem;
+
     res := SystemTagList(CommandToRun, Tags);
    res            : LongInt;
+
     If (res <> -1) then
     nread          : LongInt;
 
     OutPipeBuffer  : packed array[0..255] of char;
 
  begin
 
    OutPipeWrite  := DosOpen( OutPipeName , MODE_READWRITE);
 
 
 
     if (OutPipeWrite <> 0) then
 
 
     begin
 
     begin
       addtags(TagsList,
+
       writeln('RUNCMD(): SystemTagList() returned value ', res);
      [
+
       writeln('RUNCMD(): opening OutPipe for reading');
        LONG(SYS_Input)       , nil,
+
       OutPipeRead  := DosOpen( OutPipeName  , MODE_OLDFILE);
 
+
 
        LONG(SYS_Output)     , OutPipeWrite,
+
       if (OutPipeRead <> 0) then
        LONG(NP_CloseOutput)  , 1,
 
 
 
        LONG(SYS_Error)      , nil,
 
 
 
        LONG(SYS_Asynch)      , 1,
 
        LONG(SYS_BackGround)  , 1,
 
        LONG(NP_ExitCode)    , @CMDExitCode,
 
        TAG_DONE
 
      ]);
 
      Tags := GetTagPtr(TagsList);
 
 
 
       writeln('RUNCMD(): Executing SystemTagList()');
 
       res := SystemTagList(CommandToRun, Tags);
 
       If (res <> -1) then
 
 
       begin
 
       begin
         writeln('RUNCMD(): SystemTagList() returned value ', res);
+
         writeln('RUNCMD(): entering main loop for reading data from OutPipe');
        writeln('RUNCMD(): opening OutPipe for reading');
+
         while true do
         OutPipeRead  := DosOpen( OutPipeName  , MODE_OLDFILE);
 
 
 
        if (OutPipeRead <> 0) then
 
 
         begin
 
         begin
          writeln('RUNCMD(): entering main loop for reading data from OutPipe');
+
            writeln('RUNCMD(): start a buffer read from OutPipe');
          while true do
+
            nread := DosRead(OutPipeRead, @OutPipeBuffer[0], 255);
          begin
+
            // -1 = error, 0 = EOF and >0 = number of bytes actually read.
              writeln('RUNCMD(): start a buffer read from OutPipe');
+
            if (nread <> -1) then
              nread := DosRead(OutPipeRead, @OutPipeBuffer[0], 255);
+
            begin
              // -1 = error, 0 = EOF and >0 = number of bytes actually read.
+
              writeln('RUNCMD(): buffer read from OutPipe was succesfull');
              if (nread <> -1) then
+
              OutPipeBuffer[nread] := #0;
              begin
+
              writeln(pchar(OutPipeBuffer));
                writeln('RUNCMD(): buffer read from OutPipe was succesfull');
+
              if (nread < 255) then break;
                OutPipeBuffer[nread] := #0;
+
            end
                writeln(pchar(OutPipeBuffer));
+
            else
                if (nread < 255) then break;
+
            begin
              end
+
              writeln('RUNCMD(): ERROR - buffer read failed, IoErr() = ', IoErr);
              else
+
              break;
              begin
+
            end;
                writeln('RUNCMD(): ERROR - buffer read failed, IoErr() = ', IoErr);
+
            // Safety check ?
                break;
+
            if CommandHasEnded then Break;
              end;
+
        end;
              // Safety check ?
+
        writeln('RUNCMD(): exiting main loop that read data from OutPipe');
              if CommandHasEnded then Break;
+
        // Close our Output Pipe reader.
          end;
+
        DOSClose(OutPipeRead);
          writeln('RUNCMD(): exiting main loop that read data from OutPipe');
 
          // Close our Output Pipe reader.
 
          DOSClose(OutPipeRead);
 
        end
 
        else writeln('RUNCMD(): ERROR - Failed to open pipe for read acces');
 
 
       end
 
       end
       else writeln('RUNCMD(): ERROR - Failed to execute command');
+
       else writeln('RUNCMD(): ERROR - Failed to open pipe for read acces');
      // close outputwrite when error occurend when executing systemtags()
+
    end
     end;
+
    else writeln('RUNCMD(): ERROR - Failed to execute command');
 +
    // close outputwrite when error occurend when executing systemtags()
 +
  end;
 +
end;
 +
 
 +
 
 +
 
 +
Procedure RunCommand(CommandToRun: String; RCMode: TRCMode);
 +
begin
 +
  writeln('enter - runcommmand');
 +
 
 +
  case RCMode of
 +
     rcm_output  : RunCMDOutput(CommandToRun);
 +
//    rcm_combined : RunCMDCombined(CommandToRun);
 +
//    rcm_Both    : RunCMDBoth(CommandToRun);
 +
  end; // case;
 +
 
 +
  writeln('leave - runcommmand');
 +
end;
 +
 
 +
 
 +
 
 +
(*
 +
    MAIN
 +
*)
 +
var
 +
  i : Integer;
 +
  S : String = '';
 +
 
 +
begin
 +
  writeln('enter');
 +
 
 +
  If paramcount > 0 then
 +
  begin
 +
    for i := 1 to paramcount
 +
      do S := S + Paramstr(i) + ' ';
 +
    Writeln('Trying to execute command "',S,'"');
 +
 
 +
    RunCommand(S, rcm_Output);
 +
  end
 +
  else    // Show usage/examples
 +
  begin
 +
    Writeln('RunCMDoo v0.1');
 +
    Writeln;
 +
    Writeln('usage:');
 +
    Writeln('  RunCMDoo Command [Parameter1 Paramere2 ParamterN]');
 +
    Writeln;
 +
    Writeln('example:');
 +
    Writeln('  RunCMDoo LD --help');
 +
    Writeln('  RunCMDoo LD --wrong_parameter_on_purpose');
 +
    Writeln('  RunCMDoo LD -v');
 +
    Writeln('  RunCMDoo dir ram:#?');
 +
    Writeln;
 
   end;
 
   end;
 
    
 
    
 +
  writeln('leave');
 +
end.
 +
</source>
 +
 +
===  Executing Asynchrone and catching Output as well as Error ===
 +
 +
[insert explanation here]
 +
 +
 +
 +
'''Problems encountered''':
 +
* Unable to determine which pipe needs to be read first, so in the end one would always end up in a deadlock because not knowing what comes first OutPut or Error. Choosing the wrong one would make you wait forever and can only be 'broken' by reading the other pipe (flushing did not help).
 +
* Unable to use WaitForChar() as pipes are not in raw mode
 +
* seems not possible to change the mode using SetMode() (returns error)
 +
* unable to use fib for size of pipe as a pipe-file is always zero
 +
* Seek() function does not seem to work on pipes, again unable to determine size
 +
* unable to glue/merge OutPut and Error together as SystemTaglist() automatically (no override possible) closes the Output and Error handle. Since the handles are the same (when glued/merged) it would result in a memory freed twice error (amongst others).
 +
 +
'''Solution used:''' using multiple threads.
 +
 +
Code presented here is not thorouogly tested and probably contains loads of errors and/or other not so obvious things as well. At least it runs, but feel free to correct of give some pointers.
 +
 +
<source lang="pascal">
 +
program RunCMDoe;
 +
 +
{
 +
  Name  : RunCMDoe V0.6
 +
  Target : AROS ABIv0/i386
 +
  Author : Molly
 +
  Date  : 2014-12-20
 +
  Goal  : Run a command using SystemTagList() and catch its output and error
 +
  usage  : RunCMDoe Command [parameter1 parameter2 parameterN]
 +
  Note  : Code only tested on 'simple' commands. Not tested against
 +
          commands that produces multiple consecutive output and error
 +
          messages.
 +
 +
  Important Information:
 +
  abi_v0_on_trunk brings improvements:
 +
  PipeFS: seems gone, use Pipe: instead also "*" works now.
 +
  The Pipe: device seems to work identical as on classic.
 +
}
 +
 +
 +
{$MODE OBJFPC}{$H+}
 +
 +
 +
uses
 +
  classes, exec, amigados, utility, tagsarray;
 +
 +
 +
 +
type
 +
  TRCMode          =
 +
  (
 +
    rcm_output,    // Only use SYS_Output
 +
    rcm_combined,  // Use Sys_Output and Sys_Error using the same handle.
 +
    rcm_both        // use SYS_Output and Sys_Error both using their own handle.
 +
  );
 +
 +
 +
  TPipeSettings    = record   
 +
    PipeName        : String;
 +
    ReadHandle      : BPTR;
 +
    WriteHandle    : BPTR;
 +
    EOFReached      : boolean;
 +
  end;
 +
 +
 +
var
 +
  CommandHasEnded  : boolean = false;
 +
  CommandExitCode  : longint = 0;
 +
  CommandSegList    : BPTR    = nil;
 +
 +
  StringCollector  : TMemoryStream;
 +
 +
 +
 +
// ==========================================================================
 +
// routine to add a String to a memorystream
 +
// ==========================================================================
 +
Procedure AddString(M: TMemoryStream; S: String);
 +
var i: integer;
 +
begin
 +
  For i := 1 to length(S) do M.WriteByte(Byte(S[i]));
 +
end;
 +
 +
 +
 +
// ==========================================================================
 +
// return function provided to SystemTagsList
 +
// ==========================================================================
 +
Procedure CMDExitCode(retcode: LongInt; SegList: BPTR); cdecl;
 +
var
 +
  ops : Text;
 +
begin
 +
  CommandHasEnded := true;
 +
 +
  ops := System.Output;
 +
  Writeln(ops, 'Enter - CMDExitCode()');
 +
 +
  CommandExitCode := retcode;
 +
  CommandSegList  := SegList;
 +
 +
  Writeln(ops, 'CMDExitCode(): exitcode =', CommandExitCode);
 +
  Writeln(ops, 'CMDExitCode(): seglist  =', LongWord(CommandSegList));
 +
 +
  Writeln(ops, 'Leave - CMDExitCode()');
 +
end;
 +
 +
 +
 +
//
 +
//  Creates an actual pipe-buffer from supplied PipeConfig, and returns
 +
//  true when succeeded
 +
//
 +
Function CreatePipeLink(var APipe: TPipeSettings): boolean;
 +
Var
 +
  NameBuf        : Packed array[0.. 63] of Char;
 +
begin
 +
  Result := false;
 +
 +
  APipe.ReadHandle  := nil;
 +
  APipe.WriteHandle := nil;
 
    
 
    
 +
  APipe.WriteHandle := DosOpen( PChar(APipe.PipeName), MODE_NEWFILE);
 +
  If (APipe.WriteHandle = nil) then exit;
 +
 +
  if Not (NameFromFH (APipe.WriteHandle, NameBuf, Sizeof(NameBuf))) then exit;
 +
  APipe.PipeName    := NameBuf;  // copy real name
 
    
 
    
   Procedure RunCommand(CommandToRun: String; RCMode: TRCMode);
+
   APipe.ReadHandle  := DosOpen(NameBuf, MODE_OLDFILE);
 +
  If (APipe.ReadHandle = nil) then exit;
 +
 
 +
  result := true;
 +
end;
 +
 
 +
 
 +
 
 +
//
 +
// read data from given APipe and return a value indicating state of read
 +
// return value:
 +
// 0  = EOF
 +
// < 0 = error
 +
// > 0 = nt of characters returned in RetBug
 +
//
 +
function ReadFromPipe(var APipe: TPipeSettings; Var RetBuf: String): LongInt;
 +
var
 +
  RDBuffer  : packed array[0..63] of char;
 +
  PRDBuffer : Pchar;
 +
  ThisErr  : LongInt;
 +
  fib      : TFileInfoBlock;
 +
begin
 +
  // some small debug info
 +
  If ExamineFH(APipe.Readhandle, @fib)
 +
  then writeln('bytes in buffer = ', fib.fib_size);
 +
 
 +
  PRDBuffer := @RDBuffer[0];
 +
  RetBuf    := '';
 +
 
 +
  // According to RKRM:
 +
  // If FGets()'s returned buffer nil, either error or EOF occured.
 +
  // If ioErr() = 0 then EOF else error-code.
 +
  // error-codes are not handled appropriately in this code
 +
 
 +
  if FgetS(APipe.ReadHandle, PRDBuffer, Sizeof(RDBuffer)) <> nil then
 
   begin
 
   begin
     writeln('enter - runcommmand');
+
     RetBuf := StrPas(PRDBuffer);
    
+
    Result := Length(RetBuf);
    case RCMode of
+
   end
      rcm_output   : RunCMDOutput(CommandToRun);
+
  else
  //    rcm_combined : RunCMDCombined(CommandToRun);
+
   begin
  //    rcm_Both    : RunCMDBoth(CommandToRun);
+
    ThisErr := amigados.IoErr;
     end; // case;
+
             
 
+
    If ( ThisErr = 0 ) then
     writeln('leave - runcommmand');
+
    begin
 +
      RetBuf := '';
 +
      APipe.EOFReached := True;
 +
      Result := 0;
 +
     end
 +
    else
 +
     begin
 +
      WriteStr(RetBuf, 'DOS ERROR = ', ThisErr);
 +
      Result := -1;
 +
    end;
 +
   
 
   end;
 
   end;
 
+
end;
 
+
 
 
+
 
  (*
+
 
      MAIN
+
procedure RunCMDBoth(CommandToRun: String; var OutPipe: TPipeSettings; var ErrorPipe: TPipeSettings);
   *)
+
var
   var
+
   TagsList      : TTagsList = nil;
  i : Integer;
+
   Tags          : pTagItem;
  S : String = '';
+
  res          : LongInt;
    
+
  S             : String = '';
 +
begin
 +
   If CreatePipeLink(OutPipe) and CreatePipeLink(ErrorPipe) then
 
   begin
 
   begin
     writeln('enter');
+
     writeln('RUNCMD(): OK - opened pipe(s) for read/write acces'); 
 +
    addtags(TagsList,
 +
    [
 +
      LONG(SYS_Input)      , nil,
 +
 +
      LONG(SYS_Output)      , OutPipe.WriteHandle,
 +
      LONG(NP_CloseOutput)  , 1,
 +
 +
      LONG(SYS_Error)      , ErrorPipe.WriteHandle,
 +
      LONG(NP_CloseError)  , 1,
 +
 +
      LONG(SYS_Asynch)      , 1,
 +
      LONG(SYS_BackGround)  , 1,
 +
      LONG(NP_ExitCode)    , @CMDExitCode,
 +
      TAG_DONE
 +
    ]);
 +
    Tags := GetTagPtr(TagsList);
 +
 +
    writeln('RUNCMD(): Executing SystemTagList()');
 +
    res := SystemTagList(pchar(CommandToRun), Tags);
 
    
 
    
     If paramcount > 0 then
+
     If (res <> -1) then
 
     begin
 
     begin
       for i := 1 to paramcount
+
       writeln('RUNCMD(): SystemTagList() returned value ', res);
        do S := S + Paramstr(i) + ' ';
+
 
       Writeln('Trying to execute command "',S,'"');
+
      begin
 +
        Writeln('RUNCMD(): Entering main loop, waiting for Output and Error thread to exit');
 +
       
 +
        //
 +
        //  Main Loop for reading pipe-buffers
 +
        //
 +
        while not CommandHasEnded do
 +
        begin
 +
 
 +
          //
 +
          // Handle OutPipe
 +
          //
 +
          If not OutPipe.EOFReached then //if not OutPipeDone then
 +
          begin
 +
            Res := ReadFromPipe(OutPipe, S);
 +
 
 +
            Case Res of            // < 0 -> doserror  // = 0 -> endoffile // > 0 -> ok, bufferlength
 +
              -2147483648 .. -1 :  // DosError
 +
                begin
 +
                  WriteStr(S, 'OUT: ', S);
 +
                  Writeln(S);
 +
                  AddString(StringCollector, S);
 +
                end;
 +
                              0 :  // End Of File
 +
                begin
 +
                  writestr(S, 'OUT: EOF');
 +
                  AddString(StringCollector, S);
 +
                end;
 +
              1 .. 2147483647  :  // ok, represent length of buffer
 +
                begin
 +
                  AddString(StringCollector, S);
 +
                end;
 +
              else               
 +
                begin
 +
                  Writeln('OUT: Unexpected Error');
 +
                end;
 +
            end;  // case
 +
          end;  // OutPipe.EOFReached
 +
 
 +
          //
 +
          // Handle ErrorPipe
 +
          //
 +
          If not ErrorPipe.EOFReached then //if not ErrorPipeDone then
 +
          begin
 +
            Res := ReadFromPipe(ErrorPipe, S);
 +
           
 +
            Case Res of  // < 0 -> doserror // = 0 -> endoffile  // > 0 -> ok, bufferlength
 +
              -2147483648 .. -1 :  // DosError
 +
                begin
 +
                  WriteStr(S, 'ERR: ', S);
 +
                  Writeln(S);
 +
                  AddString(StringCollector, S);
 +
                end;
 +
                              0 :  // End Of File
 +
                begin
 +
                  writestr(S, 'ERR: EOF');
 +
                  Writeln(S);
 +
                  AddString(StringCollector, S);
 +
                end;
 +
 
 +
              1 .. 2147483647  :  // ok, represent length of buffer
 +
                begin
 +
                  AddString(StringCollector, S);
 +
                end;
 +
              else               
 +
                begin
 +
                  Writeln('ERR: Unexpected Error');
 +
                end;
 +
            end;  // case
 +
          end; // ErrPipe.EOFReached
 +
 
 +
          // Assume that executed command is finished when both Pipes are
 +
          // reporting EOF. (which might be a totally wrong assumption)
 +
          CommandHasEnded := (OutPipe.EOFReached and ErrorPipe.EOFReached);
 +
        end;
 +
       
 +
       end;
 +
    end
 +
    else writeln('RUNCMD(): ERROR - Failed to execute command');
 +
 
 +
    // Write Handles are closed automatically for us, but we need to take
 +
    // care of the read handles ourselves.
 +
    DOSClose(OutPipe.ReadHandle);
 +
    DOSClose(ErrorPipe.ReadHandle);
 +
 +
  end
 +
  else writeln('RUNCMD(): ERROR - Failed to open pipe(s) for read/write acces');
 +
 
 +
end;
 +
 
 +
 
 +
 +
Procedure RunCommand(CommandToRun: String; RCMode: TRCMode);
 +
Var
 +
  OutPipe      : TPipeSettings =
 +
  (
 +
    PipeName    : 'PIPE:*';
 +
    ReadHandle  : nil;
 +
    WriteHandle : nil;
 +
    EOFReached  : false;
 +
  );
 +
 
 +
  ErrorPipe    : TPipeSettings =
 +
  (
 +
    PipeName    : 'PIPE:*';
 +
    ReadHandle  : nil;
 +
    WriteHandle : nil;
 +
    EOFReached  : false;   
 +
  );
 
    
 
    
      RunCommand(S, rcm_Output);
+
begin
    end
+
  writeln('enter - runcommmand');
    else    // Show usage/examples
+
 +
  case RCMode of
 +
//   rcm_output  : RunCMDOutput(CommandToRun);
 +
//   rcm_combined : RunCMDCombined(CommandToRun);
 +
    rcm_Both    :
 
     begin
 
     begin
       Writeln('RunCMDoo v0.1');
+
       RunCMDBoth(CommandToRun, OutPipe, ErrorPipe);
      Writeln;
 
      Writeln('usage:');
 
      Writeln('  RunCMDoo Command [Parameter1 Paramere2 ParamterN]');
 
      Writeln;
 
      Writeln('example:');
 
      Writeln('  RunCMDoo LD --help');
 
      Writeln('  RunCMDoo LD --wrong_parameter_on_purpose');
 
      Writeln('  RunCMDoo LD -v');
 
      Writeln('  RunCMDoo dir ram:#?');
 
      Writeln;
 
 
     end;
 
     end;
 +
  end; // case;
 +
 +
  writeln('leave - runcommmand');
 +
end;
 +
 +
 +
 +
(*
 +
      MAIN
 +
*)
 +
var
 +
  i  : integer;        // simple counter/index
 +
  c2e : String = '';    // Command To Execute
 +
  SList : TStringList;  // Used to print out output for user
 +
 +
begin
 +
  writeln('enter');
 +
 +
  StringCollector := TMemoryStream.Create;
 +
 +
  if (paramcount > 0) then
 +
  begin
 +
    for i := 1 to paramcount
 +
      do c2e := c2e + ParamStr(i) + ' ';
 +
    writeln('Trying to execute command "', c2e ,'"');
 +
 +
    RunCommand(c2e, rcm_both);
 +
  end
 +
  else    // Show usage/examples
 +
  begin
 +
    Writeln('RunCMDoe v0.6');
 +
    Writeln;
 +
    Writeln('usage:');
 +
    Writeln('  RunCMDoe Command [Parameter1 Parameter2 ParameterN]');
 +
    Writeln;
 +
    Writeln('example:');
 +
    Writeln('  RunCMDoe LD --help');
 +
    Writeln('  RunCMDoe LD --wrong_parameter_on_purpose');
 +
    Writeln('  RunCMDoe LD -v');
 +
    Writeln('  RunCMDoe dir ram:#?');
 +
    Writeln;
 +
  end;
 +
 +
 +
  // print results from the pipe to user
 +
  // which is usually done at run-time and
 +
  // not after the fact like is shown here.
 
    
 
    
    writeln('leave');
+
  writeln('=================================');
   end.
+
   writeln('Output/Error dump');
</source>
+
  writeln('================================='); 
  
 +
  // lazy solution for printing out memorystream.
 +
  SList := TStringList.Create;
  
===  Executing Asynchrone and catching Output as well as Error ===
+
  StringCollector.Position := 0;
 +
  SList.LoadFromStream(StringCollector);
  
[insert explanation here]
+
  // write loop
 +
  for i := 0 to pred(SList.Count)
 +
    do writeln(SList[i]);
  
'''Current problems''': Unable to determine which pipe needs to be read first, so in the end one would always end up in a deadlock because not knowing what comes first OutPut or Error. Choosing the wrong one would make you wait forever and can only be 'broken' by reading the other pipe (flushing did not help).
+
  SList.Free;
  
Unable to:
+
  writeln('=================================')
* use WaitForChar() as pipes are not in raw mode
+
  writeln('=================================')
* seems not possible to change the mode using SetMode() (returns error)
+
* unable to use fib for size of pipe as a pipe-file is always zero
+
  StringCollector.Free;
* Seek() function does not seem to work on pipes, again unable to determine size
 
* unable to glue/merge OutPut and Error together as SystemTaglist() automatically (no override possible) closes the Output and Error handle. Since the handles are the same (when glued/merged) it would result in a memory freed twice error (amongst others).
 
  
[insert example here]
+
  writeln('leave');
 +
end.
 +
</source>

Latest revision as of 12:53, 20 December 2014

This documentation will first of all focus on running a command using the shell and doing so in an asynchrone matter. At the same time it tries to catch the output of that executed command, using the pipefs handler in AROS.

Caveats: There is little documentation at all concerning this topic, let alone for AROS in specific. So, whenever there is some documentation, you have to read that literally and fill in the blanks yourself. Hopefully this documentation is able to fill in some of those blanks.

Introduction

As can be read in the AutoDocs, the SystemTagList() function provides a way to execute a command via the shell. But what is not so evident, is that there are some caveats as well as some undocumented features that are not very well described.

Parameters

Let's start with the parameters that can be passed to this function.


The tags

Standard tags

SYS_Input - BPTR to pFileHandle
SYS_Output - BPTR to pFileHandle
SYS_Asynch - BOOL
SYS_UserShell - BPTR
SYS_CustomShell - STRPTR

Aros extensions

SYS_Error - BPTR to pFileHandle
SYS_ScriptInput - BPTR to pFileHandle
SYS_Background - BOOL
SYS_CliNumPtr - pLONG

Since these tags are passed through to CreateNewProc() you can also use tags that can be passed to that function, except those that conflict with SystemTagList() (the ones conflicting are striked).

Standard tags

NP_Seglist
NP_FreeSeglist
NP_Entry
NP_Input
NP_Output
NP_CloseInput
NP_CloseOutput
NP_Error
NP_CloseError
NP_CurrentDir - BPTR to pFileHandle
NP_StackSize - ULONG
NP_Name - STRPTR
NP_Priority - LONG
NP_ConsoleTask - APTR
NP_WindowPtr - pWindow
NP_HomeDir
NP_CopyVars, BOOL
NP_Cli
NP_Path, APTR
NP_CommandName - STRPTR
NP_Arguments
NP_NotifyOnDeath, BOOL
NP_Synchronous
NP_ExitCode - APTR
NP_ExitData - APTR

Aros extensions

NP_UserData

Piping

Asynchronous piping with AROS using pipefs: can only be done following strict rules, not following those rules simply breaks your code.

First of all in asynchronous mode, you cannot use an exclusive lock on the pipehandle. The ideal situation for reading and writing simultanously from and into the pipehandler would require that the writing end opens the handle in shared write mode, and the recieving reading end should use a shared read mode.

A close inspection at the documentation reveals that this leaves only one single possibilty when using normal DOSOpen functionality, namely opening the writing-end in MODE_READWRITE and the reading recieving end should open the handle in MODE_OLDFILE. At first one would think that the recieving reading end could also open the handle in MODE_READWRITE (which would give the revieving end write acces to the handle as well), but there is a little caveat revealed in the pipe: documentation:

102 Pipes behave in most respects like ordinary files.  Some differences follow:
103 Pipes block for writing (i.e., the write request is suspended) when the
104 pipe's buffer is full, and block for reading when the pipe's buffer is
105 empty.  Thus, pipes are sort of like bounded ram: files.  EOF is returned
106 for reading when the pipe's buffer is empty and no process has the pipe
107 open for writing.

Which, in case one would open the receiving end in MODE_READWRITE, would render the pipe-handle unusable as the last read-command done on the pipe-handle would let that read-command wait forever until no-one (in this case the receiving-end itself) has the handle open for writing. The only way that somewhat solves this, is using the NP_ExitCode tag and in that called code, close the pipe-handle of the receiving end (in order to let the receiver's last read command 'unlock' so it can continue. But by doing so, it would also make the receiver's routine useless as it has no acces to the pipe-handler anymore. Besides that, the last read done by the recieving-end with the last read on the handle would also contain garbled values towards the end of what the last read tells that was possible to read (as some functions return how many bytes/characters were read).

NOTE: As of abi-v0-on-trunk becoming mainstream abi-v0 (sep 2014), the above information isn't correct anymore. Use PIPE: device to handle your piped buffers. As a result, things behave more (if not completely) consistent with amigaOS 3.x pipe: device and handler.

How to use SystemTagList() in practise

Executing shell commands using SystemTagList():


Synchrone

[insert explanation here] [insert example here]

Synchrone and hidden

[insert explanation here] [insert example here]

Synchrone, hidden and catching Output

[insert explanation here] [insert example here]

Synchrone, hidden, catching Output as well as Errors

[insert explanation here] [insert example here]

Executing Asynchrone and catching Output.

[insert more information here]

It took me a while to figure out that when using pipefs, i read all about buffers and pipe being buffered. So i didn't figure at first, that using buffered reads/writes would mess up things. Only when i started to use unbuffered reads/writes i was getting somewhere and got things to work. Ofcourse milage may vary in/for different situations.

note: The parameterlist in NP_ExitCode routine is uncertain, so procedure CMDExitCode() could contain parameters based on what actually is being passed to it. Unfortunately i could only find one(!?) program using NP_ExitCode in AROS sourcetree, that used these exact parameters. But it could be possible that SegList Parameter is only passed when using this specific tag, just as NP_ExitData would perhaps add another parameter being passed to the procedure.

Program RunCMDoo;

{
  Name   : RunCMDoo V0.1
  Target : AROS ABIv0/i386
  Author : n/a
  Date   : 2013-09-15
  Goal   : Run a command using SystemTagList() and catch its output
  Usage  : RunCMDoo Command "[parameter1 parameter2 parameterN]"
}


{$MODE OBJFPC}{$H+}


Uses
  exec, amigados, utility, tagsarray;


Type
  BPTR              = LongInt;  // Quick fix to compensate for pointer

  TRCMode           =
  (
    rcm_output,     // Only use SYS_Output
    rcm_combined,   // Use Sys_Output and Sys_Error using the same handle.
                    // (impossible using SystemTagList() ?)
    rcm_both        // use SYS_Output and Sys_Error both using their own handle.
                    // (currently   bugs)
  );

Var
  CommandHasEnded   : boolean = false;
  CommandExitCode   : longint = 0;
  CommandSegList    : BPTR    = 0;

Var
  OutPipeRead       : BPTR;
  OutPipeWrite      : BPTR;

Const
  OutPipeName       = 'PIPEFS:CmdOut';  // Name should be randomized or use * (* = untested)



Procedure CMDExitCode(retcode: LongInt; SegList: BPTR); cdecl;
begin
  Writeln('Enter - MyExitCode()');

  CommandHasEnded := true;
  CommandExitCode := retcode;
  CommandSegList  := SegList;

  Writeln('MyExitCode(): exitcode =', CommandExitCode);
  Writeln('MyExitCode(): seglist  =', CommandSegList);
  
  Writeln('Leave - MyExitCode()');
end;


  
Procedure RunCMDOutput(CommandToRun: String);
var
  TagsList       : TTagsList = nil;
  Tags           : pTagItem;
  res            : LongInt;
  nread          : LongInt;
  OutPipeBuffer  : packed array[0..255] of char;
begin
  OutPipeWrite  := DosOpen( OutPipeName , MODE_READWRITE);

  if (OutPipeWrite <> 0) then
  begin
    addtags(TagsList,
    [
      LONG(SYS_Input)       , nil,

      LONG(SYS_Output)      , OutPipeWrite,
      LONG(NP_CloseOutput)  , 1,

      LONG(SYS_Error)       , nil,

      LONG(SYS_Asynch)      , 1,
      LONG(SYS_BackGround)  , 1,
      LONG(NP_ExitCode)     , @CMDExitCode,
      TAG_DONE
    ]);
    Tags := GetTagPtr(TagsList);

    writeln('RUNCMD(): Executing SystemTagList()');
    res := SystemTagList(CommandToRun, Tags);
    If (res <> -1) then
    begin
      writeln('RUNCMD(): SystemTagList() returned value ', res);
      writeln('RUNCMD(): opening OutPipe for reading');
      OutPipeRead   := DosOpen( OutPipeName   , MODE_OLDFILE);

      if (OutPipeRead <> 0) then
      begin
        writeln('RUNCMD(): entering main loop for reading data from OutPipe');
        while true do
        begin
            writeln('RUNCMD(): start a buffer read from OutPipe');
            nread := DosRead(OutPipeRead, @OutPipeBuffer[0], 255);
            // -1 = error, 0 = EOF and >0 = number of bytes actually read.
            if (nread <> -1) then
            begin
              writeln('RUNCMD(): buffer read from OutPipe was succesfull');
              OutPipeBuffer[nread] := #0;
              writeln(pchar(OutPipeBuffer));
              if (nread < 255) then break;
            end
            else
            begin
              writeln('RUNCMD(): ERROR - buffer read failed, IoErr() = ', IoErr);
              break;
            end;
            // Safety check ?
            if CommandHasEnded then Break;
        end;
        writeln('RUNCMD(): exiting main loop that read data from OutPipe');
        // Close our Output Pipe reader.
        DOSClose(OutPipeRead);
      end
      else writeln('RUNCMD(): ERROR - Failed to open pipe for read acces');
    end
    else writeln('RUNCMD(): ERROR - Failed to execute command');
    // close outputwrite when error occurend when executing systemtags()
  end;
end;



Procedure RunCommand(CommandToRun: String; RCMode: TRCMode);
begin
  writeln('enter - runcommmand');

  case RCMode of
    rcm_output   : RunCMDOutput(CommandToRun);
//    rcm_combined : RunCMDCombined(CommandToRun);
//    rcm_Both     : RunCMDBoth(CommandToRun);
  end; // case;

  writeln('leave - runcommmand');
end;



(*
    MAIN
*)
var
  i : Integer;
  S : String = '';

begin
  writeln('enter');

  If paramcount > 0 then
  begin
    for i := 1 to paramcount
      do S := S + Paramstr(i) + ' ';
    Writeln('Trying to execute command "',S,'"');

    RunCommand(S, rcm_Output);
  end
  else     // Show usage/examples
  begin
    Writeln('RunCMDoo v0.1');
    Writeln;
    Writeln('usage:');
    Writeln('  RunCMDoo Command [Parameter1 Paramere2 ParamterN]');
    Writeln;
    Writeln('example:');
    Writeln('  RunCMDoo LD --help');
    Writeln('  RunCMDoo LD --wrong_parameter_on_purpose');
    Writeln('  RunCMDoo LD -v');
    Writeln('  RunCMDoo dir ram:#?');
    Writeln;
  end;
  
  writeln('leave');
end.

Executing Asynchrone and catching Output as well as Error

[insert explanation here]


Problems encountered:

  • Unable to determine which pipe needs to be read first, so in the end one would always end up in a deadlock because not knowing what comes first OutPut or Error. Choosing the wrong one would make you wait forever and can only be 'broken' by reading the other pipe (flushing did not help).
  • Unable to use WaitForChar() as pipes are not in raw mode
  • seems not possible to change the mode using SetMode() (returns error)
  • unable to use fib for size of pipe as a pipe-file is always zero
  • Seek() function does not seem to work on pipes, again unable to determine size
  • unable to glue/merge OutPut and Error together as SystemTaglist() automatically (no override possible) closes the Output and Error handle. Since the handles are the same (when glued/merged) it would result in a memory freed twice error (amongst others).

Solution used: using multiple threads.

Code presented here is not thorouogly tested and probably contains loads of errors and/or other not so obvious things as well. At least it runs, but feel free to correct of give some pointers.

program RunCMDoe;
 
{
  Name   : RunCMDoe V0.6
  Target : AROS ABIv0/i386
  Author : Molly
  Date   : 2014-12-20
  Goal   : Run a command using SystemTagList() and catch its output and error
  usage  : RunCMDoe Command [parameter1 parameter2 parameterN]
  Note   : Code only tested on 'simple' commands. Not tested against
           commands that produces multiple consecutive output and error
           messages.

  Important Information:
  abi_v0_on_trunk brings improvements: 
  PipeFS: seems gone, use Pipe: instead also "*" works now.
  The Pipe: device seems to work identical as on classic.
}

 
{$MODE OBJFPC}{$H+}
 
 
uses
  classes, exec, amigados, utility, tagsarray;



type
  TRCMode           =
  (
    rcm_output,     // Only use SYS_Output
    rcm_combined,   // Use Sys_Output and Sys_Error using the same handle.
    rcm_both        // use SYS_Output and Sys_Error both using their own handle.
  );


  TPipeSettings     = record    
    PipeName        : String;
    ReadHandle      : BPTR;
    WriteHandle     : BPTR;
    EOFReached      : boolean;
  end; 

 
var
  CommandHasEnded   : boolean = false;
  CommandExitCode   : longint = 0;
  CommandSegList    : BPTR    = nil;
 
  StringCollector   : TMemoryStream;
 


// ==========================================================================
// routine to add a String to a memorystream
// ==========================================================================
Procedure AddString(M: TMemoryStream; S: String);
var i: integer;
begin
  For i := 1 to length(S) do M.WriteByte(Byte(S[i]));
end;


 
// ==========================================================================
// return function provided to SystemTagsList 
// ==========================================================================
Procedure CMDExitCode(retcode: LongInt; SegList: BPTR); cdecl;
var
  ops : Text;
begin
  CommandHasEnded := true;

  ops := System.Output;
  Writeln(ops, 'Enter - CMDExitCode()');

  CommandExitCode := retcode;
  CommandSegList  := SegList;
 
  Writeln(ops, 'CMDExitCode(): exitcode =', CommandExitCode);
  Writeln(ops, 'CMDExitCode(): seglist  =', LongWord(CommandSegList));
 
  Writeln(ops, 'Leave - CMDExitCode()');
end;
 


//
//  Creates an actual pipe-buffer from supplied PipeConfig, and returns
//  true when succeeded
//
Function CreatePipeLink(var APipe: TPipeSettings): boolean;
Var 
  NameBuf         : Packed array[0.. 63] of Char;
begin
  Result := false;

  APipe.ReadHandle  := nil;
  APipe.WriteHandle := nil;
  
  APipe.WriteHandle := DosOpen( PChar(APipe.PipeName), MODE_NEWFILE);
  If (APipe.WriteHandle = nil) then exit;

  if Not (NameFromFH (APipe.WriteHandle, NameBuf, Sizeof(NameBuf))) then exit;
  APipe.PipeName    := NameBuf;  // copy real name
  
  APipe.ReadHandle  := DosOpen(NameBuf, MODE_OLDFILE);
  If (APipe.ReadHandle = nil) then exit;

  result := true;
end;



//
// read data from given APipe and return a value indicating state of read
// return value:
// 0   = EOF
// < 0 = error
// > 0 = nt of characters returned in RetBug
//
function ReadFromPipe(var APipe: TPipeSettings; Var RetBuf: String): LongInt;
var
  RDBuffer  : packed array[0..63] of char;
  PRDBuffer : Pchar;
  ThisErr   : LongInt;
  fib       : TFileInfoBlock;
begin
  // some small debug info
  If ExamineFH(APipe.Readhandle, @fib)
  then writeln('bytes in buffer = ', fib.fib_size);

  PRDBuffer := @RDBuffer[0];
  RetBuf    := '';

  // According to RKRM:
  // If FGets()'s returned buffer nil, either error or EOF occured.
  // If ioErr() = 0 then EOF else error-code.
  // error-codes are not handled appropriately in this code

  if FgetS(APipe.ReadHandle, PRDBuffer, Sizeof(RDBuffer)) <> nil then
  begin
    RetBuf := StrPas(PRDBuffer);
    Result := Length(RetBuf);
  end
  else
  begin
    ThisErr := amigados.IoErr;
              
    If ( ThisErr = 0 ) then
    begin
      RetBuf := '';
      APipe.EOFReached := True;
      Result := 0;
    end
    else
    begin
      WriteStr(RetBuf, 'DOS ERROR = ', ThisErr);
      Result := -1;
    end;
    
  end;
end;



procedure RunCMDBoth(CommandToRun: String; var OutPipe: TPipeSettings; var ErrorPipe: TPipeSettings);
var
  TagsList      : TTagsList = nil;
  Tags          : pTagItem;
  res           : LongInt;
  S             : String = '';
begin
  If CreatePipeLink(OutPipe) and CreatePipeLink(ErrorPipe) then
  begin
    writeln('RUNCMD(): OK - opened pipe(s) for read/write acces');  
    addtags(TagsList,
    [
      LONG(SYS_Input)       , nil,
 
      LONG(SYS_Output)      , OutPipe.WriteHandle,
      LONG(NP_CloseOutput)  , 1,
 
      LONG(SYS_Error)       , ErrorPipe.WriteHandle,
      LONG(NP_CloseError)   , 1,
 
      LONG(SYS_Asynch)      , 1,
      LONG(SYS_BackGround)  , 1,
      LONG(NP_ExitCode)     , @CMDExitCode,
      TAG_DONE
    ]);
    Tags := GetTagPtr(TagsList);
 
    writeln('RUNCMD(): Executing SystemTagList()');
    res := SystemTagList(pchar(CommandToRun), Tags);
  
    If (res <> -1) then
    begin
      writeln('RUNCMD(): SystemTagList() returned value ', res);

      begin
        Writeln('RUNCMD(): Entering main loop, waiting for Output and Error thread to exit');
        
        //
        //  Main Loop for reading pipe-buffers
        //
        while not CommandHasEnded do
        begin

          //
          // Handle OutPipe
          //
          If not OutPipe.EOFReached then //if not OutPipeDone then
          begin
            Res := ReadFromPipe(OutPipe, S);

            Case Res of             // < 0 -> doserror  // = 0 -> endoffile // > 0 -> ok, bufferlength
              -2147483648 .. -1 :   // DosError
                begin
                  WriteStr(S, 'OUT: ', S);
                  Writeln(S);
                  AddString(StringCollector, S);
                end;
                              0 :   // End Of File
                begin
                  writestr(S, 'OUT: EOF');
                  AddString(StringCollector, S);
                end;
              1 .. 2147483647   :   // ok, represent length of buffer
                begin
                  AddString(StringCollector, S);
                end;
              else                
                begin
                  Writeln('OUT: Unexpected Error');
                end;
            end;  // case
          end;  // OutPipe.EOFReached

          //
          // Handle ErrorPipe
          //
          If not ErrorPipe.EOFReached then //if not ErrorPipeDone then
          begin
            Res := ReadFromPipe(ErrorPipe, S);
            
            Case Res of   // < 0 -> doserror // = 0 -> endoffile  // > 0 -> ok, bufferlength
              -2147483648 .. -1 :   // DosError
                begin
                  WriteStr(S, 'ERR: ', S);
                  Writeln(S);
                  AddString(StringCollector, S);
                end;
                              0 :   // End Of File
                begin
                  writestr(S, 'ERR: EOF');
                  Writeln(S);
                  AddString(StringCollector, S);
                end;

              1 .. 2147483647   :   // ok, represent length of buffer
                begin
                  AddString(StringCollector, S);
                end;
              else                
                begin
                  Writeln('ERR: Unexpected Error');
                end;
            end;  // case
          end;  // ErrPipe.EOFReached

          // Assume that executed command is finished when both Pipes are 
          // reporting EOF. (which might be a totally wrong assumption)
          CommandHasEnded := (OutPipe.EOFReached and ErrorPipe.EOFReached);
        end;
        
      end;
    end
    else writeln('RUNCMD(): ERROR - Failed to execute command');

    // Write Handles are closed automatically for us, but we need to take
    // care of the read handles ourselves.
    DOSClose(OutPipe.ReadHandle);
    DOSClose(ErrorPipe.ReadHandle);
 
  end
  else writeln('RUNCMD(): ERROR - Failed to open pipe(s) for read/write acces');
  
end;


 
Procedure RunCommand(CommandToRun: String; RCMode: TRCMode);
Var
  OutPipe       : TPipeSettings =
  (
    PipeName    : 'PIPE:*';
    ReadHandle  : nil;
    WriteHandle : nil;
    EOFReached  : false;
  );

  ErrorPipe     : TPipeSettings =
  (
    PipeName    : 'PIPE:*';
    ReadHandle  : nil;
    WriteHandle : nil;
    EOFReached  : false;    
  );
  
begin
  writeln('enter - runcommmand');
 
  case RCMode of
//    rcm_output   : RunCMDOutput(CommandToRun);
//    rcm_combined : RunCMDCombined(CommandToRun);
    rcm_Both     : 
    begin
      RunCMDBoth(CommandToRun, OutPipe, ErrorPipe);
    end;
  end; // case;
 
  writeln('leave - runcommmand');
end;
 

 
(*
      MAIN
*)
var
  i   : integer;        // simple counter/index
  c2e : String = '';    // Command To Execute
  SList : TStringList;  // Used to print out output for user
 
begin
  writeln('enter');
 
  StringCollector := TMemoryStream.Create;
 
  if (paramcount > 0) then
  begin
    for i := 1 to paramcount
      do c2e := c2e + ParamStr(i) + ' ';
    writeln('Trying to execute command "', c2e ,'"');

    RunCommand(c2e, rcm_both);
  end
  else    // Show usage/examples
  begin
    Writeln('RunCMDoe v0.6');
    Writeln;
    Writeln('usage:');
    Writeln('  RunCMDoe Command [Parameter1 Parameter2 ParameterN]');
    Writeln;
    Writeln('example:');
    Writeln('  RunCMDoe LD --help');
    Writeln('  RunCMDoe LD --wrong_parameter_on_purpose');
    Writeln('  RunCMDoe LD -v');
    Writeln('  RunCMDoe dir ram:#?');
    Writeln;
  end;


  // print results from the pipe to user
  // which is usually done at run-time and
  // not after the fact like is shown here.
  
  writeln('=================================');
  writeln('Output/Error dump');
  writeln('=================================');  

  // lazy solution for printing out memorystream.
  SList := TStringList.Create;

  StringCollector.Position := 0;
  SList.LoadFromStream(StringCollector);

  // write loop
  for i := 0 to pred(SList.Count)
    do writeln(SList[i]);

  SList.Free;

  writeln('=================================');  
  writeln('=================================');  
 
  StringCollector.Free;

  writeln('leave');
end.