PipeStream.st
author Claus Gittinger <cg@exept.de>
Mon, 08 Jun 2015 21:22:21 +0200
changeset 18465 e9e4bb62235f
parent 17460 27b6fcc56477
child 18120 e3a375d5f6a8
child 18638 d5624e45f660
permissions -rw-r--r--
added isOrdered query
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     1
"
5
67342904af11 *** empty log message ***
claus
parents: 3
diff changeset
     2
 COPYRIGHT (c) 1989 by Claus Gittinger
159
514c749165c3 *** empty log message ***
claus
parents: 99
diff changeset
     3
	      All Rights Reserved
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     4
a27a279701f8 Initial revision
claus
parents:
diff changeset
     5
 This software is furnished under a license and may be used
a27a279701f8 Initial revision
claus
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
a27a279701f8 Initial revision
claus
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
a27a279701f8 Initial revision
claus
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
a27a279701f8 Initial revision
claus
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
a27a279701f8 Initial revision
claus
parents:
diff changeset
    10
 hereby transferred.
a27a279701f8 Initial revision
claus
parents:
diff changeset
    11
"
5388
bef4d52749a4 terminate command on close (also under unix)
Claus Gittinger <cg@exept.de>
parents: 5243
diff changeset
    12
"{ Package: 'stx:libbasic' }"
bef4d52749a4 terminate command on close (also under unix)
Claus Gittinger <cg@exept.de>
parents: 5243
diff changeset
    13
17460
27b6fcc56477 class: PipeStream
Claus Gittinger <cg@exept.de>
parents: 17077
diff changeset
    14
"{ NameSpace: Smalltalk }"
27b6fcc56477 class: PipeStream
Claus Gittinger <cg@exept.de>
parents: 17077
diff changeset
    15
269
93162487a94b *** empty log message ***
claus
parents: 255
diff changeset
    16
NonPositionableExternalStream subclass:#PipeStream
2969
1fcf6dfb6004 VMS pipes in another directory
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
    17
	instanceVariableNames:'commandString pid exitStatus exitSema exitAction'
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
    18
	classVariableNames:'BrokenPipeSignal'
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
    19
	poolDictionaries:''
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
    20
	category:'Streams-External'
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    21
!
2
claus
parents: 1
diff changeset
    22
217
a0400fdbc933 *** empty log message ***
claus
parents: 180
diff changeset
    23
!PipeStream primitiveDefinitions!
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    24
%{
17077
8f4500d0df9e include os defs
Claus Gittinger <cg@exept.de>
parents: 16953
diff changeset
    25
#include "stxOSDefs.h"
437
claus
parents: 410
diff changeset
    26
4616
64dd3a9bebf5 *** empty log message ***
ps
parents: 4526
diff changeset
    27
#if defined(WIN32)
793
3d441d66beeb NT changes
Claus Gittinger <cg@exept.de>
parents: 613
diff changeset
    28
# undef UNIX_LIKE
3d441d66beeb NT changes
Claus Gittinger <cg@exept.de>
parents: 613
diff changeset
    29
# define MSDOS_LIKE
3d441d66beeb NT changes
Claus Gittinger <cg@exept.de>
parents: 613
diff changeset
    30
#endif
3d441d66beeb NT changes
Claus Gittinger <cg@exept.de>
parents: 613
diff changeset
    31
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    32
#include <stdio.h>
437
claus
parents: 410
diff changeset
    33
#define _STDIO_H_INCLUDED_
claus
parents: 410
diff changeset
    34
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    35
#include <errno.h>
437
claus
parents: 410
diff changeset
    36
#define _ERRNO_H_INCLUDED_
claus
parents: 410
diff changeset
    37
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    38
#ifndef transputer
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    39
# include <sys/types.h>
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    40
# include <sys/stat.h>
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    41
#endif
230
0300c6797890 interrupt & blocking close
claus
parents: 217
diff changeset
    42
0300c6797890 interrupt & blocking close
claus
parents: 217
diff changeset
    43
/*
0300c6797890 interrupt & blocking close
claus
parents: 217
diff changeset
    44
 * on some systems errno is a macro ... check for it here
0300c6797890 interrupt & blocking close
claus
parents: 217
diff changeset
    45
 */
0300c6797890 interrupt & blocking close
claus
parents: 217
diff changeset
    46
#ifndef errno
0300c6797890 interrupt & blocking close
claus
parents: 217
diff changeset
    47
 extern errno;
0300c6797890 interrupt & blocking close
claus
parents: 217
diff changeset
    48
#endif
0300c6797890 interrupt & blocking close
claus
parents: 217
diff changeset
    49
1663
dd111ec142da *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1662
diff changeset
    50
#ifdef LINUX
dd111ec142da *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1662
diff changeset
    51
# define BUGGY_STDIO_LIB
dd111ec142da *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1662
diff changeset
    52
#endif
dd111ec142da *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1662
diff changeset
    53
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    54
%}
180
c488255bd0be *** empty log message ***
claus
parents: 159
diff changeset
    55
! !
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    56
325
claus
parents: 308
diff changeset
    57
!PipeStream primitiveFunctions!
claus
parents: 308
diff changeset
    58
%{
claus
parents: 308
diff changeset
    59
claus
parents: 308
diff changeset
    60
/*
2925
1a64228425ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
    61
 * no longer needed - popen is useless ...
1a64228425ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
    62
 */
1a64228425ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
    63
#undef NEED_POPEN_WITH_VFORK
1a64228425ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
    64
1a64228425ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
    65
/*
325
claus
parents: 308
diff changeset
    66
 * some systems (i.e. ultrix) use fork;
16953
4fb3033a379f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 16579
diff changeset
    67
 * we're better off with a popen based on vfork ...
325
claus
parents: 308
diff changeset
    68
 */
claus
parents: 308
diff changeset
    69
#ifdef NEED_POPEN_WITH_VFORK
claus
parents: 308
diff changeset
    70
claus
parents: 308
diff changeset
    71
static int popen_pid = 0;
claus
parents: 308
diff changeset
    72
claus
parents: 308
diff changeset
    73
FILE *
claus
parents: 308
diff changeset
    74
popen(command, type)
claus
parents: 308
diff changeset
    75
/* const */ char *command;
claus
parents: 308
diff changeset
    76
/* const */ char *type;
claus
parents: 308
diff changeset
    77
{
claus
parents: 308
diff changeset
    78
    int pipes[2];
claus
parents: 308
diff changeset
    79
    int itype = (strcmp(type, "w") == 0 ? 1 : 0);
claus
parents: 308
diff changeset
    80
claus
parents: 308
diff changeset
    81
    if (pipe(pipes) == -1)
326
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
    82
	return NULL;
325
claus
parents: 308
diff changeset
    83
claus
parents: 308
diff changeset
    84
    switch (popen_pid = vfork()) {
claus
parents: 308
diff changeset
    85
    case -1:
326
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
    86
	(void)close(pipes[0]);
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
    87
	(void)close(pipes[1]);
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
    88
	return NULL;
325
claus
parents: 308
diff changeset
    89
claus
parents: 308
diff changeset
    90
    case 0:
326
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
    91
	if (itype) {
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
    92
	    dup2(pipes[0], fileno(stdin));
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
    93
	    close(pipes[1]);
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
    94
	} else {
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
    95
	    dup2(pipes[1], fileno(stdout));
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
    96
	    close(pipes[0]);
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
    97
	}
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
    98
	execl("/bin/sh", "/bin/sh", "-c", command, 0);
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
    99
	console_fprintf(stderr, "PipeStream [warning]: execlp failed in popen\n");
326
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
   100
	_exit(-1);
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
   101
	/* NOTREACHED */
325
claus
parents: 308
diff changeset
   102
claus
parents: 308
diff changeset
   103
    default:
326
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
   104
	    if (itype) {
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
   105
		close(pipes[0]);
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
   106
		return fdopen(pipes[1], "w");
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
   107
	    } else {
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
   108
		close(pipes[1]);
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
   109
		return fdopen(pipes[0], "r");
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
   110
	    }
325
claus
parents: 308
diff changeset
   111
    }
claus
parents: 308
diff changeset
   112
}
claus
parents: 308
diff changeset
   113
claus
parents: 308
diff changeset
   114
int
claus
parents: 308
diff changeset
   115
pclose(str)
claus
parents: 308
diff changeset
   116
FILE *str;
claus
parents: 308
diff changeset
   117
{
claus
parents: 308
diff changeset
   118
    int pd = 0;
claus
parents: 308
diff changeset
   119
    int status;
claus
parents: 308
diff changeset
   120
    int err;
claus
parents: 308
diff changeset
   121
claus
parents: 308
diff changeset
   122
    err = fclose(str);
claus
parents: 308
diff changeset
   123
claus
parents: 308
diff changeset
   124
    do {
326
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
   125
	if ((pd = wait(&status)) == -1)
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
   126
	{
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
   127
		err = EOF;
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
   128
		break;
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
   129
	}
325
claus
parents: 308
diff changeset
   130
    } while (pd !=  popen_pid);
claus
parents: 308
diff changeset
   131
claus
parents: 308
diff changeset
   132
    if (err == EOF)
326
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
   133
	return  -1;
325
claus
parents: 308
diff changeset
   134
claus
parents: 308
diff changeset
   135
    if (status)
326
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
   136
	status >>= 8;   /* exit status in high byte */
325
claus
parents: 308
diff changeset
   137
claus
parents: 308
diff changeset
   138
    return status;
claus
parents: 308
diff changeset
   139
}
claus
parents: 308
diff changeset
   140
2925
1a64228425ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
   141
#endif /* NEED_POPEN_WITH_VFORK */
325
claus
parents: 308
diff changeset
   142
claus
parents: 308
diff changeset
   143
%}
claus
parents: 308
diff changeset
   144
! !
claus
parents: 308
diff changeset
   145
2266
a94af740c68a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
   146
!PipeStream class methodsFor:'documentation'!
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   147
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   148
copyright
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   149
"
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   150
 COPYRIGHT (c) 1989 by Claus Gittinger
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   151
	      All Rights Reserved
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   152
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   153
 This software is furnished under a license and may be used
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   154
 only in accordance with the terms of that license and with the
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   155
 inclusion of the above copyright notice.   This software may not
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   156
 be provided or otherwise made available to, or used by, any
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   157
 other person.  No title to or ownership of the software is
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   158
 hereby transferred.
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   159
"
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   160
!
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   161
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   162
documentation
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   163
"
17460
27b6fcc56477 class: PipeStream
Claus Gittinger <cg@exept.de>
parents: 17077
diff changeset
   164
    Pipestreams allow reading or writing from/to a unix or dos command.
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   165
    For example, to get a stream reading the output of an 'ls -l'
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   166
    command, a PipeStream can be created with:
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   167
17460
27b6fcc56477 class: PipeStream
Claus Gittinger <cg@exept.de>
parents: 17077
diff changeset
   168
        PipeStream readingFrom:'ls -l'
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   169
17460
27b6fcc56477 class: PipeStream
Claus Gittinger <cg@exept.de>
parents: 17077
diff changeset
   170
    the characters of the command's output can be read using the
27b6fcc56477 class: PipeStream
Claus Gittinger <cg@exept.de>
parents: 17077
diff changeset
   171
    standard stream messages, such as next, nextLine etc.
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   172
8968
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   173
    Example for writing to a command:
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   174
17460
27b6fcc56477 class: PipeStream
Claus Gittinger <cg@exept.de>
parents: 17077
diff changeset
   175
        PipeStream writingTo:'cat >/tmp/x'
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   176
8968
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   177
    Bidirectional pipestreams (supporting both reading an writing) may be used for filters:
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   178
17460
27b6fcc56477 class: PipeStream
Claus Gittinger <cg@exept.de>
parents: 17077
diff changeset
   179
        PipeStream bidirectionalFor:'sed -e ''s/Hello/Greetings/'''
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   180
1662
ce26ca3d837c linux stdio does not work with buffered pipes
Claus Gittinger <cg@exept.de>
parents: 1648
diff changeset
   181
    Buffered pipes do not work with Linux - the stdio library seems to be
ce26ca3d837c linux stdio does not work with buffered pipes
Claus Gittinger <cg@exept.de>
parents: 1648
diff changeset
   182
    buggy (trying to restart the read ...)
ce26ca3d837c linux stdio does not work with buffered pipes
Claus Gittinger <cg@exept.de>
parents: 1648
diff changeset
   183
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   184
    [author:]
17460
27b6fcc56477 class: PipeStream
Claus Gittinger <cg@exept.de>
parents: 17077
diff changeset
   185
        Claus Gittinger
2966
856dfc8a294a lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
   186
856dfc8a294a lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
   187
    [see also:]
17460
27b6fcc56477 class: PipeStream
Claus Gittinger <cg@exept.de>
parents: 17077
diff changeset
   188
        ExternalStream FileStream Socket
27b6fcc56477 class: PipeStream
Claus Gittinger <cg@exept.de>
parents: 17077
diff changeset
   189
        OperatingSystem
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   190
"
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   191
! !
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   192
2266
a94af740c68a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
   193
!PipeStream class methodsFor:'initialization'!
2
claus
parents: 1
diff changeset
   194
claus
parents: 1
diff changeset
   195
initialize
claus
parents: 1
diff changeset
   196
    "setup the signal"
claus
parents: 1
diff changeset
   197
57
db9677479d35 *** empty log message ***
claus
parents: 49
diff changeset
   198
    BrokenPipeSignal isNil ifTrue:[
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   199
	BrokenPipeSignal := WriteError newSignalMayProceed:true.
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   200
	BrokenPipeSignal nameClass:self message:#brokenPipeSignal.
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   201
	BrokenPipeSignal notifierString:'write on a pipe with no one to read'.
57
db9677479d35 *** empty log message ***
claus
parents: 49
diff changeset
   202
    ]
2
claus
parents: 1
diff changeset
   203
! !
claus
parents: 1
diff changeset
   204
2266
a94af740c68a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
   205
!PipeStream class methodsFor:'instance creation'!
2
claus
parents: 1
diff changeset
   206
8968
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   207
bidirectionalFor:commandString
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   208
    "create and return a new bidirectonal pipeStream which can both be written to
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   209
     and read from the unix command given by commandString.
4202
b9f85ebd2e38 generalized errorDisposition (for other OS's);
Claus Gittinger <cg@exept.de>
parents: 4125
diff changeset
   210
     The commands error output is send to my own error output."
2
claus
parents: 1
diff changeset
   211
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   212
    ^ self
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   213
	bidirectionalFor:commandString
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   214
	errorDisposition:#stderr
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   215
	inDirectory:nil
1648
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   216
2966
856dfc8a294a lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
   217
    "
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   218
	|p|
8968
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   219
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   220
	p := PipeStream bidirectionalFor:'cat -u'.
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   221
	p nextPutAll:'Wer ist der Bürgermeister von Wesel'; cr.
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   222
	Transcript showCR:p nextLine.
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   223
	p close
2966
856dfc8a294a lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
   224
    "
856dfc8a294a lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
   225
856dfc8a294a lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
   226
    "
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   227
	|p|
8968
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   228
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   229
	p := PipeStream bidirectionalFor:'sed -e ''s/Hello/Greetings/'''.
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   230
	p nextPutAll:'Hello world'; cr.
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   231
	p shutDownOutput.
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   232
	Transcript showCR:p nextLine.
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   233
	p close
1648
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   234
    "
9313
297699a317d3 comment/example
Stefan Vogel <sv@exept.de>
parents: 9193
diff changeset
   235
297699a317d3 comment/example
Stefan Vogel <sv@exept.de>
parents: 9193
diff changeset
   236
    "
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   237
	|p|
9313
297699a317d3 comment/example
Stefan Vogel <sv@exept.de>
parents: 9193
diff changeset
   238
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   239
	p := PipeStream bidirectionalFor:'wc'.
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   240
	p nextPutAll:'Hello world'; cr.
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   241
	p shutDownOutput.
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   242
	Transcript showCR:p nextLine.
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   243
	p close
9313
297699a317d3 comment/example
Stefan Vogel <sv@exept.de>
parents: 9193
diff changeset
   244
    "
8968
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   245
!
1648
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   246
8968
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   247
bidirectionalFor:commandString errorDisposition:errorDisposition inDirectory:aDirectory
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   248
    "create and return a new bidirectonal pipeStream which can both be written to
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   249
     and read from the unix command given by commandString.
8968
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   250
     The directory will be changed to aDirectory while
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   251
     executing the command. Use this if a command is to be
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   252
     executed in another directory, to avoid any OS dependencies
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   253
     in your code.
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   254
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   255
     errorDisposition may be one of #discard, #inline or #stderr (default).
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   256
     #discard causes stderr to be discarded (/dev/null),
8968
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   257
     #inline causes it to be written to smalltalks own stdout and
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   258
     #stderr causes it to be written to smalltalks own stderr.
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   259
     Nil is treated like #stderr"
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   260
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   261
    ^ self basicNew
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   262
	openPipeFor:commandString
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   263
	withMode:#'r+'
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   264
	errorDisposition:errorDisposition
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   265
	inDirectory:aDirectory
8968
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   266
!
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   267
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   268
readingFrom:commandString
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   269
    "create and return a new pipeStream which can read from the unix command
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   270
     given by commandString.
8968
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   271
     The commands error output is send to my own error output."
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   272
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   273
    ^ self
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   274
	readingFrom:commandString
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   275
	errorDisposition:#stderr
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   276
	inDirectory:nil
8968
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   277
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   278
    "unix:
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   279
	PipeStream readingFrom:'ls -l'.
2966
856dfc8a294a lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
   280
    "
856dfc8a294a lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
   281
856dfc8a294a lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
   282
    "
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   283
	|p|
8968
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   284
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   285
	p := PipeStream readingFrom:'ls -l'.
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   286
	Transcript showCR:p nextLine.
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   287
	p close
8968
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   288
    "
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   289
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   290
    "
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   291
	|s|
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   292
	s := PipeStream readingFrom:'sh -c sleep\ 600'.
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   293
	(Delay forSeconds:2) wait.
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   294
	s shutDown
8968
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   295
    "
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   296
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   297
    "vms:
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   298
	PipeStream readingFrom:'dir'.
8968
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   299
    "
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   300
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   301
    "
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   302
	|p|
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   303
	p := PipeStream readingFrom:'dir'.
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   304
	Transcript showCR:p nextLine.
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   305
	p close
2966
856dfc8a294a lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
   306
    "
856dfc8a294a lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
   307
856dfc8a294a lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
   308
    "msdos:
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   309
	PipeStream readingFrom:'dir'.
2966
856dfc8a294a lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
   310
    "
856dfc8a294a lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
   311
    "
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   312
	|p|
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   313
	p := PipeStream readingFrom:'dir'.
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   314
	Transcript showCR:p nextLine.
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   315
	p close
2966
856dfc8a294a lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
   316
    "
856dfc8a294a lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
   317
1648
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   318
    "Modified: 24.4.1996 / 09:09:25 / stefan"
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   319
!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   320
4202
b9f85ebd2e38 generalized errorDisposition (for other OS's);
Claus Gittinger <cg@exept.de>
parents: 4125
diff changeset
   321
readingFrom:commandString errorDisposition:errorDisposition inDirectory:aDirectory
2985
eff9e86dd2f9 New method #readingFrom:errorDisposition:inDirectory.
Stefan Vogel <sv@exept.de>
parents: 2976
diff changeset
   322
    "similar to #readingFrom, but changes the directory while
eff9e86dd2f9 New method #readingFrom:errorDisposition:inDirectory.
Stefan Vogel <sv@exept.de>
parents: 2976
diff changeset
   323
     executing the command. Use this if a command is to be
eff9e86dd2f9 New method #readingFrom:errorDisposition:inDirectory.
Stefan Vogel <sv@exept.de>
parents: 2976
diff changeset
   324
     executed in another directory, to avoid any OS dependencies
eff9e86dd2f9 New method #readingFrom:errorDisposition:inDirectory.
Stefan Vogel <sv@exept.de>
parents: 2976
diff changeset
   325
     in your code.
4202
b9f85ebd2e38 generalized errorDisposition (for other OS's);
Claus Gittinger <cg@exept.de>
parents: 4125
diff changeset
   326
     errorDisposition may be one of #discard, #inline or #stderr (default).
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   327
     #discard causes stderr to be discarded (/dev/null),
4202
b9f85ebd2e38 generalized errorDisposition (for other OS's);
Claus Gittinger <cg@exept.de>
parents: 4125
diff changeset
   328
     #inline causes it to be merged into the PipeStream and
b9f85ebd2e38 generalized errorDisposition (for other OS's);
Claus Gittinger <cg@exept.de>
parents: 4125
diff changeset
   329
     #stderr causes it to be written to smalltalks own stderr.
b9f85ebd2e38 generalized errorDisposition (for other OS's);
Claus Gittinger <cg@exept.de>
parents: 4125
diff changeset
   330
     Nil is treated like #stderr"
2985
eff9e86dd2f9 New method #readingFrom:errorDisposition:inDirectory.
Stefan Vogel <sv@exept.de>
parents: 2976
diff changeset
   331
4202
b9f85ebd2e38 generalized errorDisposition (for other OS's);
Claus Gittinger <cg@exept.de>
parents: 4125
diff changeset
   332
    ^ self basicNew
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   333
	openPipeFor:commandString
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   334
	withMode:#r
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   335
	errorDisposition:errorDisposition
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   336
	inDirectory:aDirectory
2985
eff9e86dd2f9 New method #readingFrom:errorDisposition:inDirectory.
Stefan Vogel <sv@exept.de>
parents: 2976
diff changeset
   337
!
eff9e86dd2f9 New method #readingFrom:errorDisposition:inDirectory.
Stefan Vogel <sv@exept.de>
parents: 2976
diff changeset
   338
2969
1fcf6dfb6004 VMS pipes in another directory
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   339
readingFrom:commandString inDirectory:aDirectory
1fcf6dfb6004 VMS pipes in another directory
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   340
    "similar to #readingFrom, but changes the directory while
1fcf6dfb6004 VMS pipes in another directory
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   341
     executing the command. Use this if a command is to be
1fcf6dfb6004 VMS pipes in another directory
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   342
     executed in another directory, to avoid any OS dependencies
4202
b9f85ebd2e38 generalized errorDisposition (for other OS's);
Claus Gittinger <cg@exept.de>
parents: 4125
diff changeset
   343
     in your code.
b9f85ebd2e38 generalized errorDisposition (for other OS's);
Claus Gittinger <cg@exept.de>
parents: 4125
diff changeset
   344
     The commands error output is send to my own error output."
2969
1fcf6dfb6004 VMS pipes in another directory
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   345
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   346
     ^ self
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   347
	readingFrom:commandString
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   348
	errorDisposition:#stderr
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   349
	inDirectory:aDirectory
2969
1fcf6dfb6004 VMS pipes in another directory
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   350
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   351
    " UNIX:
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   352
	|p|
8968
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   353
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   354
	p := PipeStream readingFrom:'ls -l' inDirectory:'/etc'.
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   355
	Transcript showCR:p upToEnd.
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   356
	p close
9193
47ffbf7b9ee8 comment
Claus Gittinger <cg@exept.de>
parents: 8976
diff changeset
   357
    "
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   358
    "WINDOOF:
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   359
	|p|
9193
47ffbf7b9ee8 comment
Claus Gittinger <cg@exept.de>
parents: 8976
diff changeset
   360
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   361
	p := PipeStream readingFrom:'dir'.
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   362
	Transcript showCR:p upToEnd.
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   363
	p close
8968
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   364
   "
2969
1fcf6dfb6004 VMS pipes in another directory
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   365
!
1fcf6dfb6004 VMS pipes in another directory
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   366
2
claus
parents: 1
diff changeset
   367
writingTo:commandString
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   368
    "create and return a new pipeStream which can write to the unix command
a27a279701f8 Initial revision
claus
parents:
diff changeset
   369
     given by command."
a27a279701f8 Initial revision
claus
parents:
diff changeset
   370
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   371
    ^ self
4202
b9f85ebd2e38 generalized errorDisposition (for other OS's);
Claus Gittinger <cg@exept.de>
parents: 4125
diff changeset
   372
	writingTo:commandString errorDisposition:#stderr inDirectory:nil
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   373
2966
856dfc8a294a lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
   374
    "unix:
2969
1fcf6dfb6004 VMS pipes in another directory
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   375
	 PipeStream writingTo:'sort'
2966
856dfc8a294a lots of VMS changes
Claus Gittinger <cg@exept.de>
parents: 2961
diff changeset
   376
    "
2969
1fcf6dfb6004 VMS pipes in another directory
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   377
!
1fcf6dfb6004 VMS pipes in another directory
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   378
4202
b9f85ebd2e38 generalized errorDisposition (for other OS's);
Claus Gittinger <cg@exept.de>
parents: 4125
diff changeset
   379
writingTo:commandString errorDisposition:errorDisposition inDirectory:aDirectory
2969
1fcf6dfb6004 VMS pipes in another directory
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   380
    "similar to #writingTo, but changes the directory while
1fcf6dfb6004 VMS pipes in another directory
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   381
     executing the command. Use this if a command is to be
1fcf6dfb6004 VMS pipes in another directory
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   382
     executed in another directory, to avoid any OS dependencies
4202
b9f85ebd2e38 generalized errorDisposition (for other OS's);
Claus Gittinger <cg@exept.de>
parents: 4125
diff changeset
   383
     in your code.
b9f85ebd2e38 generalized errorDisposition (for other OS's);
Claus Gittinger <cg@exept.de>
parents: 4125
diff changeset
   384
     errorDisposition may be one of #discard, #inline or #stderr (default).
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   385
     #discard causes stderr to be discarded (/dev/null),
4202
b9f85ebd2e38 generalized errorDisposition (for other OS's);
Claus Gittinger <cg@exept.de>
parents: 4125
diff changeset
   386
     #inline causes it to be written to smalltalks own stdout and
b9f85ebd2e38 generalized errorDisposition (for other OS's);
Claus Gittinger <cg@exept.de>
parents: 4125
diff changeset
   387
     #stderr causes it to be written to smalltalks own stderr.
b9f85ebd2e38 generalized errorDisposition (for other OS's);
Claus Gittinger <cg@exept.de>
parents: 4125
diff changeset
   388
     Nil is treated like #stderr"
2969
1fcf6dfb6004 VMS pipes in another directory
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   389
4202
b9f85ebd2e38 generalized errorDisposition (for other OS's);
Claus Gittinger <cg@exept.de>
parents: 4125
diff changeset
   390
    ^ self basicNew
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   391
	openPipeFor:commandString
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   392
	withMode:#w
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   393
	errorDisposition:errorDisposition
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   394
	inDirectory:aDirectory
4526
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4202
diff changeset
   395
!
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4202
diff changeset
   396
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4202
diff changeset
   397
writingTo:commandString inDirectory:aDirectory
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4202
diff changeset
   398
    "create and return a new pipeStream which can write to the unix command
8968
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   399
     given by commandString. The command is executed in the given directory."
4526
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4202
diff changeset
   400
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   401
    ^ self
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   402
	writingTo:commandString errorDisposition:#stderr inDirectory:aDirectory
4526
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4202
diff changeset
   403
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4202
diff changeset
   404
    "unix:
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   405
	 PipeStream writingTo:'sort'
4526
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4202
diff changeset
   406
    "
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   407
! !
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   408
2266
a94af740c68a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
   409
!PipeStream class methodsFor:'Signal constants'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   410
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   411
brokenPipeSignal
2985
eff9e86dd2f9 New method #readingFrom:errorDisposition:inDirectory.
Stefan Vogel <sv@exept.de>
parents: 2976
diff changeset
   412
    "return the signal used to handle SIGPIPE unix-signals.
eff9e86dd2f9 New method #readingFrom:errorDisposition:inDirectory.
Stefan Vogel <sv@exept.de>
parents: 2976
diff changeset
   413
     Since SIGPIPE is asynchronous, we can't decide which smalltalk process
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   414
     should handle BrokenPipeSignal. So the system doesn't raise
2985
eff9e86dd2f9 New method #readingFrom:errorDisposition:inDirectory.
Stefan Vogel <sv@exept.de>
parents: 2976
diff changeset
   415
     BrokenPipeSignal for SIGPIPE any longer."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   416
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   417
    ^ BrokenPipeSignal
2985
eff9e86dd2f9 New method #readingFrom:errorDisposition:inDirectory.
Stefan Vogel <sv@exept.de>
parents: 2976
diff changeset
   418
eff9e86dd2f9 New method #readingFrom:errorDisposition:inDirectory.
Stefan Vogel <sv@exept.de>
parents: 2976
diff changeset
   419
    "Modified: 24.9.1997 / 09:43:23 / stefan"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   420
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   421
16579
3d51a7434f06 class: PipeStream
Claus Gittinger <cg@exept.de>
parents: 16339
diff changeset
   422
!PipeStream class methodsFor:'utilities'!
3d51a7434f06 class: PipeStream
Claus Gittinger <cg@exept.de>
parents: 16339
diff changeset
   423
3d51a7434f06 class: PipeStream
Claus Gittinger <cg@exept.de>
parents: 16339
diff changeset
   424
outputFromCommand:aCommand
3d51a7434f06 class: PipeStream
Claus Gittinger <cg@exept.de>
parents: 16339
diff changeset
   425
    "open a pipe reading from aCommand and return the complete output as a string.
3d51a7434f06 class: PipeStream
Claus Gittinger <cg@exept.de>
parents: 16339
diff changeset
   426
     If the command cannot be executed, return nil"
3d51a7434f06 class: PipeStream
Claus Gittinger <cg@exept.de>
parents: 16339
diff changeset
   427
3d51a7434f06 class: PipeStream
Claus Gittinger <cg@exept.de>
parents: 16339
diff changeset
   428
    |p cmdOutput|
3d51a7434f06 class: PipeStream
Claus Gittinger <cg@exept.de>
parents: 16339
diff changeset
   429
3d51a7434f06 class: PipeStream
Claus Gittinger <cg@exept.de>
parents: 16339
diff changeset
   430
    p := self readingFrom:aCommand.
3d51a7434f06 class: PipeStream
Claus Gittinger <cg@exept.de>
parents: 16339
diff changeset
   431
    p isNil ifTrue:[^ nil].
3d51a7434f06 class: PipeStream
Claus Gittinger <cg@exept.de>
parents: 16339
diff changeset
   432
3d51a7434f06 class: PipeStream
Claus Gittinger <cg@exept.de>
parents: 16339
diff changeset
   433
    [
16953
4fb3033a379f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 16579
diff changeset
   434
	cmdOutput := p contentsAsString.
16579
3d51a7434f06 class: PipeStream
Claus Gittinger <cg@exept.de>
parents: 16339
diff changeset
   435
    ] ensure:[
16953
4fb3033a379f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 16579
diff changeset
   436
	p close.
16579
3d51a7434f06 class: PipeStream
Claus Gittinger <cg@exept.de>
parents: 16339
diff changeset
   437
    ].
3d51a7434f06 class: PipeStream
Claus Gittinger <cg@exept.de>
parents: 16339
diff changeset
   438
    ^ cmdOutput
3d51a7434f06 class: PipeStream
Claus Gittinger <cg@exept.de>
parents: 16339
diff changeset
   439
3d51a7434f06 class: PipeStream
Claus Gittinger <cg@exept.de>
parents: 16339
diff changeset
   440
    "
3d51a7434f06 class: PipeStream
Claus Gittinger <cg@exept.de>
parents: 16339
diff changeset
   441
     PipeStream outputFromCommand:'ls -l'
3d51a7434f06 class: PipeStream
Claus Gittinger <cg@exept.de>
parents: 16339
diff changeset
   442
    "
3d51a7434f06 class: PipeStream
Claus Gittinger <cg@exept.de>
parents: 16339
diff changeset
   443
! !
3d51a7434f06 class: PipeStream
Claus Gittinger <cg@exept.de>
parents: 16339
diff changeset
   444
99
afba01fbe15c added access method for commandString
claus
parents: 93
diff changeset
   445
!PipeStream methodsFor:'accessing'!
afba01fbe15c added access method for commandString
claus
parents: 93
diff changeset
   446
afba01fbe15c added access method for commandString
claus
parents: 93
diff changeset
   447
commandString
afba01fbe15c added access method for commandString
claus
parents: 93
diff changeset
   448
    "return the command string"
afba01fbe15c added access method for commandString
claus
parents: 93
diff changeset
   449
afba01fbe15c added access method for commandString
claus
parents: 93
diff changeset
   450
    ^ commandString
1648
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   451
!
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   452
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   453
exitStatus
10343
c48f0a54ef69 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9313
diff changeset
   454
    "return the exitStatus"
1648
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   455
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   456
    ^ exitStatus
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   457
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   458
    "Created: 28.12.1995 / 14:54:41 / stefan"
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   459
!
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   460
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   461
pid
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   462
    "return pid"
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   463
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   464
    ^ pid
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   465
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   466
    "Created: 28.12.1995 / 14:54:30 / stefan"
99
afba01fbe15c added access method for commandString
claus
parents: 93
diff changeset
   467
! !
afba01fbe15c added access method for commandString
claus
parents: 93
diff changeset
   468
8968
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   469
!PipeStream methodsFor:'closing'!
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   470
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   471
shutDown
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   472
    "close the Stream and terminate the command"
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   473
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   474
    Lobby unregister:self.
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   475
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   476
    "terminate first under windows"
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   477
    OperatingSystem isMSDOSlike ifTrue:[
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   478
	self terminatePipeCommand.
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   479
	self closeFileDescriptor.
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   480
	^ self.
8968
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   481
    ].
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   482
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   483
    "terminate last under unix"
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   484
    self closeFileDescriptor.
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   485
    self terminatePipeCommand.
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   486
!
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   487
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   488
shutDownOutput
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   489
    "signal to the pipestream's command, that no more data will be sent"
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   490
8976
2ff451956d48 #shutDownOutput do nothing (ignore errors), if pipe is closed
Stefan Vogel <sv@exept.de>
parents: 8969
diff changeset
   491
    |fd|
2ff451956d48 #shutDownOutput do nothing (ignore errors), if pipe is closed
Stefan Vogel <sv@exept.de>
parents: 8969
diff changeset
   492
2ff451956d48 #shutDownOutput do nothing (ignore errors), if pipe is closed
Stefan Vogel <sv@exept.de>
parents: 8969
diff changeset
   493
    self isOpen ifTrue:[
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   494
	fd := self fileDescriptor.
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   495
	fd notNil ifTrue:[
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   496
	    OperatingSystem shutdownBidirectionalPipeOutput:fd.
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   497
	].
8976
2ff451956d48 #shutDownOutput do nothing (ignore errors), if pipe is closed
Stefan Vogel <sv@exept.de>
parents: 8969
diff changeset
   498
    ].
8968
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   499
! !
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   500
5243
d3b509746522 category change
Claus Gittinger <cg@exept.de>
parents: 5205
diff changeset
   501
!PipeStream methodsFor:'finalization'!
d3b509746522 category change
Claus Gittinger <cg@exept.de>
parents: 5205
diff changeset
   502
6439
0f841258ec4a Use #finalize instead of #disposed
Stefan Vogel <sv@exept.de>
parents: 6267
diff changeset
   503
finalize
5243
d3b509746522 category change
Claus Gittinger <cg@exept.de>
parents: 5205
diff changeset
   504
    "redefined to avoid blocking in close."
d3b509746522 category change
Claus Gittinger <cg@exept.de>
parents: 5205
diff changeset
   505
d3b509746522 category change
Claus Gittinger <cg@exept.de>
parents: 5205
diff changeset
   506
    self shutDown
d3b509746522 category change
Claus Gittinger <cg@exept.de>
parents: 5205
diff changeset
   507
! !
d3b509746522 category change
Claus Gittinger <cg@exept.de>
parents: 5205
diff changeset
   508
8968
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   509
!PipeStream protectedMethodsFor:'private'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   510
a27a279701f8 Initial revision
claus
parents:
diff changeset
   511
closeFile
1648
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   512
    "low level close
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   513
     This waits for the command to finish.
230
0300c6797890 interrupt & blocking close
claus
parents: 217
diff changeset
   514
     Use shutDown for a fast (nonBlocking) close."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   515
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11083
diff changeset
   516
    handle notNil ifTrue:[
16953
4fb3033a379f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 16579
diff changeset
   517
	super closeFile.
16339
26dfaf4606d5 class: PipeStream
Stefan Vogel <sv@exept.de>
parents: 15436
diff changeset
   518
"/        OperatingSystem isMSDOSlike ifTrue:[
26dfaf4606d5 class: PipeStream
Stefan Vogel <sv@exept.de>
parents: 15436
diff changeset
   519
"/            self terminatePipeCommand.
26dfaf4606d5 class: PipeStream
Stefan Vogel <sv@exept.de>
parents: 15436
diff changeset
   520
"/        ].
3834
93ec07316a98 oops - must nil pid when terminating the process
Claus Gittinger <cg@exept.de>
parents: 3833
diff changeset
   521
16953
4fb3033a379f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 16579
diff changeset
   522
	handle := nil.
4fb3033a379f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 16579
diff changeset
   523
	pid notNil ifTrue:[
4fb3033a379f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 16579
diff changeset
   524
	    "/ wait for the pipe-command to terminate.
4fb3033a379f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 16579
diff changeset
   525
	    self waitForPipeCommandWithTimeout:nil.
4fb3033a379f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 16579
diff changeset
   526
	].
1648
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   527
    ].
3833
3ae90f8da01a terminate process BEFORE closing the pipe under win32
Claus Gittinger <cg@exept.de>
parents: 3791
diff changeset
   528
3834
93ec07316a98 oops - must nil pid when terminating the process
Claus Gittinger <cg@exept.de>
parents: 3833
diff changeset
   529
    "Modified: / 12.9.1998 / 16:51:04 / cg"
12712
c1b3b5846541 Make most win32 wrap calls non-interruptable
Stefan Vogel <sv@exept.de>
parents: 12548
diff changeset
   530
! !
c1b3b5846541 Make most win32 wrap calls non-interruptable
Stefan Vogel <sv@exept.de>
parents: 12548
diff changeset
   531
c1b3b5846541 Make most win32 wrap calls non-interruptable
Stefan Vogel <sv@exept.de>
parents: 12548
diff changeset
   532
!PipeStream methodsFor:'private'!
369
claus
parents: 362
diff changeset
   533
claus
parents: 362
diff changeset
   534
closeFileDescriptor
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   535
    "alternative very low level close
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   536
     This closes the underlying OS-fileDescriptor
369
claus
parents: 362
diff changeset
   537
     - and will NOT write any buffered data to the stream.
claus
parents: 362
diff changeset
   538
     You have been warned."
claus
parents: 362
diff changeset
   539
2969
1fcf6dfb6004 VMS pipes in another directory
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   540
    |action|
1fcf6dfb6004 VMS pipes in another directory
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   541
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   542
%{
3296
bd2da537678b md's WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 3196
diff changeset
   543
#if !defined(transputer)
369
claus
parents: 362
diff changeset
   544
    OBJ fp;
claus
parents: 362
diff changeset
   545
    FILE *f;
4616
64dd3a9bebf5 *** empty log message ***
ps
parents: 4526
diff changeset
   546
    extern close();
6267
10016cc16511 pass name of API/C wrap function
Claus Gittinger <cg@exept.de>
parents: 5880
diff changeset
   547
    int retVal;
369
claus
parents: 362
diff changeset
   548
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11083
diff changeset
   549
    if ((fp = __INST(handle)) != nil) {
15436
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   550
	__INST(handle) = nil;
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   551
	f = __FILEVal(fp);
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   552
	if (@global(FileOpenTrace) == true) {
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   553
	    console_fprintf(stderr, "close [PipeStream] %"_lx_" fd=%d\n", (INT)f, fileno(f));
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   554
	}
3744
e2c57149f3b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3563
diff changeset
   555
#ifdef WIN32
15436
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   556
	do {
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   557
	    __threadErrno = 0;
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   558
	    retVal = __STX_C_NOINT_CALL1( "close", (void*)close, (void*)fileno(f) );
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   559
	} while ((retVal < 0) && (__threadErrno == EINTR));
3744
e2c57149f3b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3563
diff changeset
   560
#else
15436
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   561
	__BEGIN_INTERRUPTABLE__
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   562
	close(fileno(f));
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   563
	__END_INTERRUPTABLE__
3744
e2c57149f3b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3563
diff changeset
   564
#endif
369
claus
parents: 362
diff changeset
   565
    }
3296
bd2da537678b md's WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 3196
diff changeset
   566
#endif /* not transputer  */
2969
1fcf6dfb6004 VMS pipes in another directory
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   567
%}.
1fcf6dfb6004 VMS pipes in another directory
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   568
    exitAction notNil ifTrue:[
15436
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   569
	action := exitAction.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   570
	exitAction := nil.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   571
	action value.
2969
1fcf6dfb6004 VMS pipes in another directory
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   572
    ]
12712
c1b3b5846541 Make most win32 wrap calls non-interruptable
Stefan Vogel <sv@exept.de>
parents: 12548
diff changeset
   573
!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   574
2969
1fcf6dfb6004 VMS pipes in another directory
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   575
exitAction:aBlock
1fcf6dfb6004 VMS pipes in another directory
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   576
    "define a block to be evaluated when the pipe is closed.
1fcf6dfb6004 VMS pipes in another directory
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   577
     This is only used with VMS, to remove any temporary COM file.
1fcf6dfb6004 VMS pipes in another directory
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   578
     (see readingFrom:inDirectory:)"
1fcf6dfb6004 VMS pipes in another directory
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   579
1fcf6dfb6004 VMS pipes in another directory
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   580
    exitAction := aBlock
1fcf6dfb6004 VMS pipes in another directory
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   581
!
1fcf6dfb6004 VMS pipes in another directory
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   582
7079
07625dfffcbf Cleanup filedescriptor closing on #exec:withArguments:....
Stefan Vogel <sv@exept.de>
parents: 7060
diff changeset
   583
openPipeFor:aCommandString withMode:rwMode errorDisposition:errorDisposition inDirectory:aDirectory
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   584
    "open a pipe to the OS command in commandString;
8968
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   585
     rwMode may be 'r' or 'w' or 'r+'.
5481
680d6de80808 comment
Claus Gittinger <cg@exept.de>
parents: 5456
diff changeset
   586
     errorDisposition controls where the stdErr output should go,
680d6de80808 comment
Claus Gittinger <cg@exept.de>
parents: 5456
diff changeset
   587
     and may be one of #discard, #inline or #stderr (default).
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   588
     #discard causes stderr to be discarded (/dev/null),
5481
680d6de80808 comment
Claus Gittinger <cg@exept.de>
parents: 5456
diff changeset
   589
     #inline causes it to be written to smalltalks own stdout and
680d6de80808 comment
Claus Gittinger <cg@exept.de>
parents: 5456
diff changeset
   590
     #stderr causes it to be written to smalltalks own stderr.
680d6de80808 comment
Claus Gittinger <cg@exept.de>
parents: 5456
diff changeset
   591
     Nil is treated like #stderr"
3296
bd2da537678b md's WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 3196
diff changeset
   592
bd2da537678b md's WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 3196
diff changeset
   593
    |blocked pipeFdArray execFdArray execFd myFd shellAndArgs
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   594
     shellPath shellArgs mbx mbxName
14436
c65fa56075a4 changed: #openPipeFor:withMode:errorDisposition:inDirectory:
Stefan Vogel <sv@exept.de>
parents: 12712
diff changeset
   595
     realCmd execDirectory tmpComFile nullOutput resultPid errorNumber|
3296
bd2da537678b md's WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 3196
diff changeset
   596
12395
1db7ea277c93 filePointer -> handle migration
Claus Gittinger <cg@exept.de>
parents: 11083
diff changeset
   597
    handle notNil ifTrue:[
15436
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   598
	"the pipe was already open ...
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   599
	 this should (can) not happen."
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   600
	^ self errorAlreadyOpen
3296
bd2da537678b md's WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 3196
diff changeset
   601
    ].
4202
b9f85ebd2e38 generalized errorDisposition (for other OS's);
Claus Gittinger <cg@exept.de>
parents: 4125
diff changeset
   602
8968
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   603
    rwMode = #r ifTrue:[
15436
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   604
	mode := #readonly. didWrite := false.
8968
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   605
    ] ifFalse:[rwMode = #'r+' ifTrue:[
15436
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   606
	mode := #readwrite. didWrite := true.
4202
b9f85ebd2e38 generalized errorDisposition (for other OS's);
Claus Gittinger <cg@exept.de>
parents: 4125
diff changeset
   607
    ] ifFalse:[
15436
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   608
	mode := #writeonly. didWrite := true.
8968
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   609
    ]].
4202
b9f85ebd2e38 generalized errorDisposition (for other OS's);
Claus Gittinger <cg@exept.de>
parents: 4125
diff changeset
   610
3296
bd2da537678b md's WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 3196
diff changeset
   611
    lastErrorNumber := nil.
bd2da537678b md's WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 3196
diff changeset
   612
    exitStatus := nil.
bd2da537678b md's WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 3196
diff changeset
   613
    exitSema := Semaphore new name:'pipe exitSema'.
bd2da537678b md's WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 3196
diff changeset
   614
4202
b9f85ebd2e38 generalized errorDisposition (for other OS's);
Claus Gittinger <cg@exept.de>
parents: 4125
diff changeset
   615
    realCmd := aCommandString.
b9f85ebd2e38 generalized errorDisposition (for other OS's);
Claus Gittinger <cg@exept.de>
parents: 4125
diff changeset
   616
    execDirectory := aDirectory.
7079
07625dfffcbf Cleanup filedescriptor closing on #exec:withArguments:....
Stefan Vogel <sv@exept.de>
parents: 7060
diff changeset
   617
    execFdArray := #(0 1 2) copy.
4202
b9f85ebd2e38 generalized errorDisposition (for other OS's);
Claus Gittinger <cg@exept.de>
parents: 4125
diff changeset
   618
3791
76ea6c85ca1f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3773
diff changeset
   619
    OperatingSystem isVMSlike ifTrue:[
15436
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   620
	"/
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   621
	"/ the generated COM-file includes a 'set default'
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   622
	"/
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   623
	tmpComFile := OperatingSystem createCOMFileForVMSCommand:aCommandString in:aDirectory.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   624
	realCmd := '@' , tmpComFile osName.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   625
	execDirectory := nil.
4616
64dd3a9bebf5 *** empty log message ***
ps
parents: 4526
diff changeset
   626
15436
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   627
	mbx := OperatingSystem createMailBox.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   628
	mbx isNil ifTrue:[
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   629
	    lastErrorNumber := errorNumber := OperatingSystem currentErrorNumber.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   630
	    tmpComFile delete.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   631
	    ^ self openError:errorNumber.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   632
	].
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   633
	mbxName := OperatingSystem mailBoxNameOf:mbx.
3296
bd2da537678b md's WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 3196
diff changeset
   634
15436
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   635
	"/ 'mailBox is ' print. mbx print. ' name is ' print. mbxName printCR.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   636
	shellPath := ''.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   637
	shellArgs := realCmd.
4202
b9f85ebd2e38 generalized errorDisposition (for other OS's);
Claus Gittinger <cg@exept.de>
parents: 4125
diff changeset
   638
15436
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   639
	rwMode = #r ifTrue:[
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   640
	    "redirect stdout of subprocess to write to mailbox"
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   641
	    execFdArray at:2 put:mbx.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   642
	] ifFalse:[
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   643
	    "redirect stdin of subprocess to read from mailbox"
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   644
	    execFdArray at:1 put:mbx.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   645
	].
3296
bd2da537678b md's WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 3196
diff changeset
   646
    ] ifFalse:[
15436
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   647
	shellAndArgs := OperatingSystem commandAndArgsForOSCommand:realCmd.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   648
	shellPath := shellAndArgs at:1.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   649
	shellArgs := shellAndArgs at:2.
4202
b9f85ebd2e38 generalized errorDisposition (for other OS's);
Claus Gittinger <cg@exept.de>
parents: 4125
diff changeset
   650
15436
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   651
	mode == #readwrite ifTrue:[
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   652
	    pipeFdArray := OperatingSystem makeBidirectionalPipe.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   653
	    pipeFdArray isNil ifTrue:[
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   654
		lastErrorNumber := errorNumber := OperatingSystem currentErrorNumber.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   655
		^ self openError:errorNumber.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   656
	    ].
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   657
	    myFd := pipeFdArray at:1.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   658
	    execFd := pipeFdArray at:2.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   659
	    execFdArray at:1 put:execFd.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   660
	    execFdArray at:2 put:execFd.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   661
	] ifFalse:[
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   662
	    pipeFdArray := OperatingSystem makePipe.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   663
	    pipeFdArray isNil ifTrue:[
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   664
		lastErrorNumber := errorNumber := OperatingSystem currentErrorNumber.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   665
		^ self openError:errorNumber.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   666
	    ].
8968
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   667
15436
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   668
	    mode == #readonly ifTrue:[
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   669
		"redirect stdout of subprocess to write to pipe"
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   670
		myFd := pipeFdArray at:1.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   671
		execFd := pipeFdArray at:2.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   672
		execFdArray at:2 put:execFd.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   673
	    ] ifFalse:[
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   674
		"redirect stdin of subprocess to read from pipe"
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   675
		myFd := pipeFdArray at:2.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   676
		execFd := pipeFdArray at:1.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   677
		execFdArray at:1 put:execFd.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   678
	    ].
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   679
	].
3296
bd2da537678b md's WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 3196
diff changeset
   680
    ].
bd2da537678b md's WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 3196
diff changeset
   681
7079
07625dfffcbf Cleanup filedescriptor closing on #exec:withArguments:....
Stefan Vogel <sv@exept.de>
parents: 7060
diff changeset
   682
    errorDisposition == #discard ifTrue:[
15436
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   683
	nullOutput := Filename nullDevice writeStream.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   684
	execFdArray at:3 put:nullOutput fileDescriptor
11083
988c0b2e8a26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10408
diff changeset
   685
    ] ifFalse:[
15436
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   686
	(errorDisposition == #inline or:[errorDisposition == #stdout]) ifTrue:[
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   687
	    execFdArray at:3 put:1
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   688
	] ifFalse:[
11083
988c0b2e8a26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10408
diff changeset
   689
"/            errorDisposition isStream ifTrue:[
988c0b2e8a26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10408
diff changeset
   690
"/self halt.
988c0b2e8a26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10408
diff changeset
   691
"/            ].
15436
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   692
	].
11083
988c0b2e8a26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10408
diff changeset
   693
    ].
3296
bd2da537678b md's WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 3196
diff changeset
   694
bd2da537678b md's WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 3196
diff changeset
   695
    "/ must block here, to avoid races due to early finishing
bd2da537678b md's WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 3196
diff changeset
   696
    "/ subprocesses ...
bd2da537678b md's WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 3196
diff changeset
   697
bd2da537678b md's WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 3196
diff changeset
   698
    blocked := OperatingSystem blockInterrupts.
bd2da537678b md's WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 3196
diff changeset
   699
10363
5cf689c14989 Fix race condition in PipeStream.
Stefan Vogel <sv@exept.de>
parents: 10343
diff changeset
   700
    "beware: pid may change if subprocess is fast"
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   701
    pid := resultPid :=  Processor
15436
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   702
	       monitor:[
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   703
		  OperatingSystem
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   704
		      exec:shellPath
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   705
		      withArguments:shellArgs
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   706
		      environment:nil
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   707
		      fileDescriptors:execFdArray
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   708
		      fork:true
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   709
		      newPgrp:true
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   710
		      inDirectory:execDirectory.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   711
	       ]
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   712
	       action:[:status |
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   713
		  status stillAlive ifFalse:[
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   714
		      exitStatus := status.
8969
978613904d0b For writing Pipestreams: close write side of filedescriptor, when
Stefan Vogel <sv@exept.de>
parents: 8968
diff changeset
   715
15436
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   716
		      "writing doesn't make sense - there is no reader any longer"
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   717
		      mode == #readwrite ifTrue:[
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   718
			  "... but allow to read the rest of the command's output"
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   719
			  self shutDownOutput.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   720
		      ] ifFalse:[mode == #writeonly ifTrue:[
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   721
			  self closeFileDescriptor.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   722
		      ]].
10408
8027bf22ae31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10363
diff changeset
   723
15436
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   724
		      OperatingSystem closePid:pid.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   725
		      pid := nil.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   726
		      exitSema signal.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   727
		  ].
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   728
	       ].
3296
bd2da537678b md's WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 3196
diff changeset
   729
7079
07625dfffcbf Cleanup filedescriptor closing on #exec:withArguments:....
Stefan Vogel <sv@exept.de>
parents: 7060
diff changeset
   730
    "subprocess has been created.
07625dfffcbf Cleanup filedescriptor closing on #exec:withArguments:....
Stefan Vogel <sv@exept.de>
parents: 7060
diff changeset
   731
     close unused filedescriptors"
07625dfffcbf Cleanup filedescriptor closing on #exec:withArguments:....
Stefan Vogel <sv@exept.de>
parents: 7060
diff changeset
   732
07625dfffcbf Cleanup filedescriptor closing on #exec:withArguments:....
Stefan Vogel <sv@exept.de>
parents: 7060
diff changeset
   733
    execFd notNil ifTrue:[
15436
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   734
	OperatingSystem closeFd:execFd.
4202
b9f85ebd2e38 generalized errorDisposition (for other OS's);
Claus Gittinger <cg@exept.de>
parents: 4125
diff changeset
   735
    ].
b9f85ebd2e38 generalized errorDisposition (for other OS's);
Claus Gittinger <cg@exept.de>
parents: 4125
diff changeset
   736
b9f85ebd2e38 generalized errorDisposition (for other OS's);
Claus Gittinger <cg@exept.de>
parents: 4125
diff changeset
   737
    nullOutput notNil ifTrue:[
15436
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   738
	nullOutput close
3296
bd2da537678b md's WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 3196
diff changeset
   739
    ].
bd2da537678b md's WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 3196
diff changeset
   740
10363
5cf689c14989 Fix race condition in PipeStream.
Stefan Vogel <sv@exept.de>
parents: 10343
diff changeset
   741
    resultPid notNil ifTrue:[
15436
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   742
	"successfull creation of subprocesss"
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   743
	OperatingSystem isVMSlike ifTrue:[
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   744
	    "/
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   745
	    "/ reopen the mailbox as a file ...
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   746
	    "/
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   747
	    mbxName := OperatingSystem mailBoxNameOf:mbx.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   748
	    mbxName notNil ifTrue:[
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   749
		super open:mbxName withMode:rwMode.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   750
		exitAction := [tmpComFile delete].
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   751
	    ].
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   752
	] ifFalse:[
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   753
	    self setFileDescriptor:myFd mode:rwMode.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   754
	    handleType := #pipeFilePointer.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   755
	]
3296
bd2da537678b md's WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 3196
diff changeset
   756
    ] ifFalse:[
15436
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   757
	"creation of subprocesss failed"
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   758
	lastErrorNumber := OperatingSystem currentErrorNumber.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   759
	OperatingSystem isVMSlike ifTrue:[
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   760
	    OperatingSystem destroyMailBox:mbx.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   761
	    tmpComFile delete.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   762
	] ifFalse:[
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   763
	    OperatingSystem closeFd:myFd.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   764
	].
3296
bd2da537678b md's WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 3196
diff changeset
   765
    ].
bd2da537678b md's WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 3196
diff changeset
   766
bd2da537678b md's WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 3196
diff changeset
   767
    blocked ifFalse:[
15436
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   768
	OperatingSystem unblockInterrupts
3296
bd2da537678b md's WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 3196
diff changeset
   769
    ].
bd2da537678b md's WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 3196
diff changeset
   770
10363
5cf689c14989 Fix race condition in PipeStream.
Stefan Vogel <sv@exept.de>
parents: 10343
diff changeset
   771
    (resultPid isNil or:[lastErrorNumber notNil]) ifTrue:[
15436
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   772
	"
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   773
	 the pipe open failed for some reason ...
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   774
	 ... this may be either due to an invalid command string,
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   775
	 or due to the system running out of memory (when forking
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   776
	 the unix process)
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   777
	"
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   778
	exitAction value.
c3fbdee3669d casts for 64bit in printfs
Claus Gittinger <cg@exept.de>
parents: 15359
diff changeset
   779
	^ self openError:lastErrorNumber.
3296
bd2da537678b md's WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 3196
diff changeset
   780
    ].
bd2da537678b md's WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 3196
diff changeset
   781
4202
b9f85ebd2e38 generalized errorDisposition (for other OS's);
Claus Gittinger <cg@exept.de>
parents: 4125
diff changeset
   782
    commandString := realCmd.
5673
58ebbb50cd3a Set to unbuffered, sincestdio does not work with pipes.
Stefan Vogel <sv@exept.de>
parents: 5624
diff changeset
   783
58ebbb50cd3a Set to unbuffered, sincestdio does not work with pipes.
Stefan Vogel <sv@exept.de>
parents: 5624
diff changeset
   784
    "stdio lib does not work with blocking pipes and interrupts
58ebbb50cd3a Set to unbuffered, sincestdio does not work with pipes.
Stefan Vogel <sv@exept.de>
parents: 5624
diff changeset
   785
     for WIN, Linux, Solaris and probably any other UNIX"
58ebbb50cd3a Set to unbuffered, sincestdio does not work with pipes.
Stefan Vogel <sv@exept.de>
parents: 5624
diff changeset
   786
    buffered := false.
15359
060c677e3e92 class: PipeStream
Claus Gittinger <cg@exept.de>
parents: 14436
diff changeset
   787
    position := 0.
3296
bd2da537678b md's WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 3196
diff changeset
   788
    hitEOF := false.
bd2da537678b md's WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 3196
diff changeset
   789
    binary := false.
bd2da537678b md's WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 3196
diff changeset
   790
    Lobby register:self.
bd2da537678b md's WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 3196
diff changeset
   791
4202
b9f85ebd2e38 generalized errorDisposition (for other OS's);
Claus Gittinger <cg@exept.de>
parents: 4125
diff changeset
   792
    "Modified: / 23.4.1996 / 17:05:59 / stefan"
b9f85ebd2e38 generalized errorDisposition (for other OS's);
Claus Gittinger <cg@exept.de>
parents: 4125
diff changeset
   793
    "Modified: / 28.1.1998 / 14:47:34 / md"
6439
0f841258ec4a Use #finalize instead of #disposed
Stefan Vogel <sv@exept.de>
parents: 6267
diff changeset
   794
    "Created: / 19.5.1999 / 12:28:54 / cg"
8968
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   795
!
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   796
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   797
terminatePipeCommand
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   798
    |tpid|
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   799
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   800
    (tpid := pid) notNil ifTrue:[
16953
4fb3033a379f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 16579
diff changeset
   801
	OperatingSystem terminateProcessGroup:tpid.
4fb3033a379f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 16579
diff changeset
   802
	OperatingSystem terminateProcess:tpid.
8968
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   803
    ].
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   804
!
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   805
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   806
waitForPipeCommandWithTimeout:seconds
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   807
    "wait for the pipe command to terminate itself.
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   808
     Return true, if a timeout occurred."
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   809
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   810
    pid notNil ifTrue:[
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   811
	[
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   812
	    pid notNil ifTrue:[
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   813
		exitSema waitWithTimeout:seconds.
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   814
	    ]
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   815
	] valueUninterruptably
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   816
    ].
879991b52630 Support for bidirectional PipeStreams
Stefan Vogel <sv@exept.de>
parents: 8520
diff changeset
   817
    ^ pid notNil
6439
0f841258ec4a Use #finalize instead of #disposed
Stefan Vogel <sv@exept.de>
parents: 6267
diff changeset
   818
! !
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   819
2266
a94af740c68a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
   820
!PipeStream class methodsFor:'documentation'!
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   821
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   822
version
17460
27b6fcc56477 class: PipeStream
Claus Gittinger <cg@exept.de>
parents: 17077
diff changeset
   823
    ^ '$Header: /cvs/stx/stx/libbasic/PipeStream.st,v 1.119 2015-02-10 13:27:32 cg Exp $'
12712
c1b3b5846541 Make most win32 wrap calls non-interruptable
Stefan Vogel <sv@exept.de>
parents: 12548
diff changeset
   824
!
c1b3b5846541 Make most win32 wrap calls non-interruptable
Stefan Vogel <sv@exept.de>
parents: 12548
diff changeset
   825
c1b3b5846541 Make most win32 wrap calls non-interruptable
Stefan Vogel <sv@exept.de>
parents: 12548
diff changeset
   826
version_CVS
17460
27b6fcc56477 class: PipeStream
Claus Gittinger <cg@exept.de>
parents: 17077
diff changeset
   827
    ^ '$Header: /cvs/stx/stx/libbasic/PipeStream.st,v 1.119 2015-02-10 13:27:32 cg Exp $'
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   828
! !
7027
0efa9d55fa04 Remove unused method var
Stefan Vogel <sv@exept.de>
parents: 6487
diff changeset
   829
15359
060c677e3e92 class: PipeStream
Claus Gittinger <cg@exept.de>
parents: 14436
diff changeset
   830
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   831
PipeStream initialize!