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