PipeStream.st
author Stefan Vogel <sv@exept.de>
Mon, 09 Sep 1996 12:30:27 +0200
changeset 1648 faa891d2c1b0
parent 1295 83f594f05c52
child 1662 ce26ca3d837c
permissions -rw-r--r--
Use OperatingSystem executeCommand:... instead of popen().
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
"
a27a279701f8 Initial revision
claus
parents:
diff changeset
    12
269
93162487a94b *** empty log message ***
claus
parents: 255
diff changeset
    13
NonPositionableExternalStream subclass:#PipeStream
1648
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
    14
	instanceVariableNames:'commandString pid exitStatus exitSema'
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
    15
	classVariableNames:'BrokenPipeSignal'
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
    16
	poolDictionaries:''
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
    17
	category:'Streams-External'
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    18
!
2
claus
parents: 1
diff changeset
    19
217
a0400fdbc933 *** empty log message ***
claus
parents: 180
diff changeset
    20
!PipeStream primitiveDefinitions!
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    21
%{
437
claus
parents: 410
diff changeset
    22
793
3d441d66beeb NT changes
Claus Gittinger <cg@exept.de>
parents: 613
diff changeset
    23
#if defined(NT) || defined(WIN32) || defined(MSDOS)
3d441d66beeb NT changes
Claus Gittinger <cg@exept.de>
parents: 613
diff changeset
    24
# undef UNIX_LIKE
3d441d66beeb NT changes
Claus Gittinger <cg@exept.de>
parents: 613
diff changeset
    25
# define MSDOS_LIKE
3d441d66beeb NT changes
Claus Gittinger <cg@exept.de>
parents: 613
diff changeset
    26
#endif
3d441d66beeb NT changes
Claus Gittinger <cg@exept.de>
parents: 613
diff changeset
    27
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    28
#include <stdio.h>
437
claus
parents: 410
diff changeset
    29
#define _STDIO_H_INCLUDED_
claus
parents: 410
diff changeset
    30
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    31
#include <errno.h>
437
claus
parents: 410
diff changeset
    32
#define _ERRNO_H_INCLUDED_
claus
parents: 410
diff changeset
    33
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    34
#ifndef transputer
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    35
# include <sys/types.h>
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    36
# include <sys/stat.h>
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    37
#endif
230
0300c6797890 interrupt & blocking close
claus
parents: 217
diff changeset
    38
0300c6797890 interrupt & blocking close
claus
parents: 217
diff changeset
    39
/*
0300c6797890 interrupt & blocking close
claus
parents: 217
diff changeset
    40
 * on some systems errno is a macro ... check for it here
0300c6797890 interrupt & blocking close
claus
parents: 217
diff changeset
    41
 */
0300c6797890 interrupt & blocking close
claus
parents: 217
diff changeset
    42
#ifndef errno
0300c6797890 interrupt & blocking close
claus
parents: 217
diff changeset
    43
 extern errno;
0300c6797890 interrupt & blocking close
claus
parents: 217
diff changeset
    44
#endif
0300c6797890 interrupt & blocking close
claus
parents: 217
diff changeset
    45
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    46
%}
180
c488255bd0be *** empty log message ***
claus
parents: 159
diff changeset
    47
! !
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    48
325
claus
parents: 308
diff changeset
    49
!PipeStream primitiveFunctions!
claus
parents: 308
diff changeset
    50
%{
claus
parents: 308
diff changeset
    51
claus
parents: 308
diff changeset
    52
/*
claus
parents: 308
diff changeset
    53
 * some systems (i.e. ultrix) use fork;
claus
parents: 308
diff changeset
    54
 * were better off with a popen based on vfork ...
claus
parents: 308
diff changeset
    55
 */
claus
parents: 308
diff changeset
    56
#ifdef NEED_POPEN_WITH_VFORK
claus
parents: 308
diff changeset
    57
claus
parents: 308
diff changeset
    58
static int popen_pid = 0;
claus
parents: 308
diff changeset
    59
claus
parents: 308
diff changeset
    60
FILE *
claus
parents: 308
diff changeset
    61
popen(command, type)
claus
parents: 308
diff changeset
    62
/* const */ char *command;
claus
parents: 308
diff changeset
    63
/* const */ char *type;
claus
parents: 308
diff changeset
    64
{
claus
parents: 308
diff changeset
    65
    int pipes[2];
claus
parents: 308
diff changeset
    66
    int itype = (strcmp(type, "w") == 0 ? 1 : 0);
claus
parents: 308
diff changeset
    67
claus
parents: 308
diff changeset
    68
    if (pipe(pipes) == -1)
326
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
    69
	return NULL;
325
claus
parents: 308
diff changeset
    70
claus
parents: 308
diff changeset
    71
    switch (popen_pid = vfork()) {
claus
parents: 308
diff changeset
    72
    case -1:
326
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
    73
	(void)close(pipes[0]);
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
    74
	(void)close(pipes[1]);
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
    75
	return NULL;
325
claus
parents: 308
diff changeset
    76
claus
parents: 308
diff changeset
    77
    case 0:
326
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
    78
	if (itype) {
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
    79
	    dup2(pipes[0], fileno(stdin));
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
    80
	    close(pipes[1]);
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
    81
	} else {
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
    82
	    dup2(pipes[1], fileno(stdout));
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
    83
	    close(pipes[0]);
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
    84
	}
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
    85
	execl("/bin/sh", "/bin/sh", "-c", command, 0);
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
    86
	fprintf(stderr, "XRN Error: failed the execlp\n");
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
    87
	_exit(-1);
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
    88
	/* NOTREACHED */
325
claus
parents: 308
diff changeset
    89
claus
parents: 308
diff changeset
    90
    default:
326
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
    91
	    if (itype) {
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
    92
		close(pipes[0]);
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
    93
		return fdopen(pipes[1], "w");
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
    94
	    } else {
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
    95
		close(pipes[1]);
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
    96
		return fdopen(pipes[0], "r");
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
    97
	    }
325
claus
parents: 308
diff changeset
    98
    }
claus
parents: 308
diff changeset
    99
}
claus
parents: 308
diff changeset
   100
claus
parents: 308
diff changeset
   101
int
claus
parents: 308
diff changeset
   102
pclose(str)
claus
parents: 308
diff changeset
   103
FILE *str;
claus
parents: 308
diff changeset
   104
{
claus
parents: 308
diff changeset
   105
    int pd = 0;
claus
parents: 308
diff changeset
   106
    int status;
claus
parents: 308
diff changeset
   107
    int err;
claus
parents: 308
diff changeset
   108
claus
parents: 308
diff changeset
   109
    err = fclose(str);
claus
parents: 308
diff changeset
   110
claus
parents: 308
diff changeset
   111
    do {
326
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
   112
	if ((pd = wait(&status)) == -1)
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
   113
	{
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
   114
		err = EOF;
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
   115
		break;
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
   116
	}
325
claus
parents: 308
diff changeset
   117
    } while (pd !=  popen_pid);
claus
parents: 308
diff changeset
   118
claus
parents: 308
diff changeset
   119
    if (err == EOF)
326
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
   120
	return  -1;
325
claus
parents: 308
diff changeset
   121
claus
parents: 308
diff changeset
   122
    if (status)
326
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
   123
	status >>= 8;   /* exit status in high byte */
325
claus
parents: 308
diff changeset
   124
claus
parents: 308
diff changeset
   125
    return status;
claus
parents: 308
diff changeset
   126
}
claus
parents: 308
diff changeset
   127
claus
parents: 308
diff changeset
   128
#endif
claus
parents: 308
diff changeset
   129
claus
parents: 308
diff changeset
   130
%}
claus
parents: 308
diff changeset
   131
! !
claus
parents: 308
diff changeset
   132
1648
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   133
!PipeStream  class methodsFor:'documentation'!
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   134
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   135
copyright
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   136
"
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   137
 COPYRIGHT (c) 1989 by Claus Gittinger
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   138
	      All Rights Reserved
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   139
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   140
 This software is furnished under a license and may be used
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   141
 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
   142
 inclusion of the above copyright notice.   This software may not
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   143
 be provided or otherwise made available to, or used by, any
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   144
 other person.  No title to or ownership of the software is
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   145
 hereby transferred.
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   146
"
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   147
!
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   148
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   149
documentation
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   150
"
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   151
    Pipestreams allow reading or writing from/to a unix command.
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   152
    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
   153
    command, a PipeStream can be created with:
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   154
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   155
        PipeStream readingFrom:'ls -l'
613
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
    the characters of the commands output can be read using the
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   158
    standard stream messages as next, nextLine etc.
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   159
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   160
    If a writing pipeStream is written to, after the command has finished,
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   161
    UNIX will generate an error-signal (SIGPIPE), which will raise the
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   162
    BrokenPipeSignal. 
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   163
    Thus, to handle this condition correctly, the following code is suggested:
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   164
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   165
        |p|
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   166
        p := PipeStream writingTo:'echo hello'.
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   167
        PipeStream brokenPipeSignal handle:[:ex |
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   168
            'broken pipe' printNewline.
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   169
            p shutDown.
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   170
            ex return
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   171
        ] do:[
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   172
            p nextPutLine:'oops'.
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   173
           'after write' printNewline.
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   174
            p close.
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   175
           'after close' printNewline
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   176
        ]
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   177
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   178
    Notice, that if the Stream is buffered, the Signal may occur some time after
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   179
    the write - or even at close time; to avoid a recursive signal in the exception
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   180
    handler, a shutDown is useful there.
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   181
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   182
    [author:]
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   183
        Claus Gittinger
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   184
"
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   185
! !
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   186
1648
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   187
!PipeStream  class methodsFor:'initialization'!
2
claus
parents: 1
diff changeset
   188
claus
parents: 1
diff changeset
   189
initialize
claus
parents: 1
diff changeset
   190
    "setup the signal"
claus
parents: 1
diff changeset
   191
57
db9677479d35 *** empty log message ***
claus
parents: 49
diff changeset
   192
    BrokenPipeSignal isNil ifTrue:[
582
21f08116b28d BrokenPipeSignal now a child of WriteErrorSignal
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   193
	BrokenPipeSignal := WriteErrorSignal newSignalMayProceed:true.
159
514c749165c3 *** empty log message ***
claus
parents: 99
diff changeset
   194
	BrokenPipeSignal nameClass:self message:#brokenPipeSignal.
514c749165c3 *** empty log message ***
claus
parents: 99
diff changeset
   195
	BrokenPipeSignal notifierString:'write on a pipe with no one to read'.
57
db9677479d35 *** empty log message ***
claus
parents: 49
diff changeset
   196
    ]
2
claus
parents: 1
diff changeset
   197
! !
claus
parents: 1
diff changeset
   198
1648
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   199
!PipeStream  class methodsFor:'instance creation'!
2
claus
parents: 1
diff changeset
   200
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   201
readingFrom:commandString
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   202
    "create and return a new pipeStream which can read from the unix command
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   203
     given by command."
2
claus
parents: 1
diff changeset
   204
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   205
    ^ (self basicNew) readingFrom:commandString
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   206
1648
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   207
    "
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   208
        PipeStream readingFrom:'ls -l'
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   209
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   210
        |s|
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   211
        s := PipeStream readingFrom:'sh -c sleep\ 600'.
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   212
        (Delay forSeconds:2) wait.
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   213
        s shutDown
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   214
    "
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   215
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   216
    "Modified: 24.4.1996 / 09:09:25 / stefan"
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   217
!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   218
2
claus
parents: 1
diff changeset
   219
writingTo:commandString
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   220
    "create and return a new pipeStream which can write to the unix command
a27a279701f8 Initial revision
claus
parents:
diff changeset
   221
     given by command."
a27a279701f8 Initial revision
claus
parents:
diff changeset
   222
2
claus
parents: 1
diff changeset
   223
    ^ (self basicNew) writingTo:commandString
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   224
a27a279701f8 Initial revision
claus
parents:
diff changeset
   225
    "PipeStream writingTo:'sort'"
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   226
! !
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   227
1648
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   228
!PipeStream  class methodsFor:'Signal constants'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   229
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   230
brokenPipeSignal
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   231
    "return the signal used to handle SIGPIPE unix-signals"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   232
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   233
    ^ BrokenPipeSignal
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   234
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   235
99
afba01fbe15c added access method for commandString
claus
parents: 93
diff changeset
   236
!PipeStream methodsFor:'accessing'!
afba01fbe15c added access method for commandString
claus
parents: 93
diff changeset
   237
afba01fbe15c added access method for commandString
claus
parents: 93
diff changeset
   238
commandString
afba01fbe15c added access method for commandString
claus
parents: 93
diff changeset
   239
    "return the command string"
afba01fbe15c added access method for commandString
claus
parents: 93
diff changeset
   240
afba01fbe15c added access method for commandString
claus
parents: 93
diff changeset
   241
    ^ commandString
1648
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   242
!
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   243
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   244
exitStatus
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   245
    "return exitStatus"
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   246
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   247
    ^ exitStatus
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   248
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   249
    "Created: 28.12.1995 / 14:54:41 / stefan"
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   250
!
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   251
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   252
pid
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   253
    "return pid"
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   254
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   255
    ^ pid
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   256
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   257
    "Created: 28.12.1995 / 14:54:30 / stefan"
99
afba01fbe15c added access method for commandString
claus
parents: 93
diff changeset
   258
! !
afba01fbe15c added access method for commandString
claus
parents: 93
diff changeset
   259
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   260
!PipeStream methodsFor:'instance release'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   261
a27a279701f8 Initial revision
claus
parents:
diff changeset
   262
closeFile
1648
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   263
    "low level close
230
0300c6797890 interrupt & blocking close
claus
parents: 217
diff changeset
   264
     This waits for the command to finish. 
0300c6797890 interrupt & blocking close
claus
parents: 217
diff changeset
   265
     Use shutDown for a fast (nonBlocking) close."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   266
1648
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   267
    filePointer notNil ifTrue:[
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   268
        super closeFile.
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   269
        filePointer := nil.
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   270
        pid notNil ifTrue:[
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   271
            exitSema wait.
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   272
        ].
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   273
    ].
369
claus
parents: 362
diff changeset
   274
!
claus
parents: 362
diff changeset
   275
claus
parents: 362
diff changeset
   276
closeFileDescriptor
claus
parents: 362
diff changeset
   277
    "alternative very low level close 
claus
parents: 362
diff changeset
   278
     This closes the underlying OS-fileDescriptor 
claus
parents: 362
diff changeset
   279
     - and will NOT write any buffered data to the stream.
claus
parents: 362
diff changeset
   280
     You have been warned."
claus
parents: 362
diff changeset
   281
claus
parents: 362
diff changeset
   282
%{  /* NOCONTEXT */
793
3d441d66beeb NT changes
Claus Gittinger <cg@exept.de>
parents: 613
diff changeset
   283
#if !defined(transputer) && !defined(MSDOS_LIKE)
369
claus
parents: 362
diff changeset
   284
claus
parents: 362
diff changeset
   285
    OBJ fp;
claus
parents: 362
diff changeset
   286
    FILE *f;
claus
parents: 362
diff changeset
   287
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 793
diff changeset
   288
    if ((fp = __INST(filePointer)) != nil) {
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 793
diff changeset
   289
	__INST(filePointer) = nil;
1648
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   290
	f = __FILEVal(fp);
369
claus
parents: 362
diff changeset
   291
	__BEGIN_INTERRUPTABLE__
claus
parents: 362
diff changeset
   292
	close(fileno(f));
claus
parents: 362
diff changeset
   293
	__END_INTERRUPTABLE__
claus
parents: 362
diff changeset
   294
    }
793
3d441d66beeb NT changes
Claus Gittinger <cg@exept.de>
parents: 613
diff changeset
   295
#endif /* not transputer && not MSDOS_LIKE */
369
claus
parents: 362
diff changeset
   296
%}
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   297
!
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   298
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   299
disposed
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   300
    "redefined to avoid blocking in close."
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   301
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   302
    self shutDown
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   303
!
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   304
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   305
shutDown
1648
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   306
    "close the Stream, ignoring any broken-pipe errors.
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   307
     Terminate the command"
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   308
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   309
    BrokenPipeSignal catch:[
1648
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   310
        |tpid|
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   311
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   312
        Lobby unregister:self.
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   313
        self closeFileDescriptor.
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   314
        tpid := pid.                    "copy pid to avoid race"
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   315
        tpid notNil ifTrue:[
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   316
            "/
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   317
            "/ Terminate both the process and group, just in case the
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   318
            "/ operating system does not support process groups.
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   319
            "/
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   320
            OperatingSystem terminateProcess:tpid.
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   321
            OperatingSystem terminateProcessGroup:tpid.
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   322
            pid := nil.
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   323
        ].
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   324
    ]
1648
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   325
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   326
    "Modified: 23.5.1996 / 09:15:41 / stefan"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   327
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   328
a27a279701f8 Initial revision
claus
parents:
diff changeset
   329
!PipeStream methodsFor:'private'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   330
379
5b5a130ccd09 revision added
claus
parents: 369
diff changeset
   331
atEnd
93
e31220cb391f *** empty log message ***
claus
parents: 88
diff changeset
   332
    "return true, if position is at end"
e31220cb391f *** empty log message ***
claus
parents: 88
diff changeset
   333
e31220cb391f *** empty log message ***
claus
parents: 88
diff changeset
   334
%{  /* NOCONTEXT */
e31220cb391f *** empty log message ***
claus
parents: 88
diff changeset
   335
    FILE *f;
e31220cb391f *** empty log message ***
claus
parents: 88
diff changeset
   336
    OBJ t;
e31220cb391f *** empty log message ***
claus
parents: 88
diff changeset
   337
    OBJ _true = true;
e31220cb391f *** empty log message ***
claus
parents: 88
diff changeset
   338
    int c;
e31220cb391f *** empty log message ***
claus
parents: 88
diff changeset
   339
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 793
diff changeset
   340
    if (__INST(hitEOF) == _true) {
159
514c749165c3 *** empty log message ***
claus
parents: 99
diff changeset
   341
	RETURN (_true);
93
e31220cb391f *** empty log message ***
claus
parents: 88
diff changeset
   342
    }
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 793
diff changeset
   343
    if ((t = __INST(filePointer)) != nil) {
475
b57530aa1b0a use new FILE* wrapper macros (based on externalAddress)
Claus Gittinger <cg@exept.de>
parents: 437
diff changeset
   344
	f = __FILEVal(t);
159
514c749165c3 *** empty log message ***
claus
parents: 99
diff changeset
   345
	if (feof(f)) {
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 793
diff changeset
   346
	    __INST(hitEOF) = true;
159
514c749165c3 *** empty log message ***
claus
parents: 99
diff changeset
   347
	    RETURN (true);
514c749165c3 *** empty log message ***
claus
parents: 99
diff changeset
   348
	}
401
claus
parents: 384
diff changeset
   349
	clearerr(f);
159
514c749165c3 *** empty log message ***
claus
parents: 99
diff changeset
   350
	RETURN ( false );
93
e31220cb391f *** empty log message ***
claus
parents: 88
diff changeset
   351
    }
e31220cb391f *** empty log message ***
claus
parents: 88
diff changeset
   352
%}
e31220cb391f *** empty log message ***
claus
parents: 88
diff changeset
   353
.
e31220cb391f *** empty log message ***
claus
parents: 88
diff changeset
   354
    ^ super atEnd
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   355
!
93
e31220cb391f *** empty log message ***
claus
parents: 88
diff changeset
   356
49
f1c2d75f2eb6 *** empty log message ***
claus
parents: 32
diff changeset
   357
openPipeFor:aCommandString withMode:mode
1648
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   358
    "open a pipe to the unix command in commandString; 
255
2b2c5c0facab *** empty log message ***
claus
parents: 230
diff changeset
   359
     mode may be 'r' or 'w'"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   360
1648
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   361
    |blocked pipeFdArray execFdArray execFd myFd|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   362
326
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
   363
    filePointer notNil ifTrue:[
1648
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   364
        "the pipe was already open ...
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   365
         this should (can) not happen."
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   366
        ^ self errorOpen
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   367
    ].
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   368
    lastErrorNumber := nil.
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   369
    exitStatus := nil.
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   370
    exitSema := Semaphore new.
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   371
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   372
    pipeFdArray := OperatingSystem makePipe.
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   373
    pipeFdArray isNil ifTrue:[
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   374
        lastErrorNumber := OperatingSystem currentErrorNumber.
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   375
        ^ self openError
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   376
    ].
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   377
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   378
    mode = 'r' ifTrue:[
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   379
        execFd := pipeFdArray at:2.
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   380
        execFdArray := Array with:0 with:execFd with:2.
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   381
        myFd := pipeFdArray at:1.
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   382
    ] ifFalse:[
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   383
        execFd := pipeFdArray at:1.
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   384
        execFdArray := Array with:execFd with:1 with:2.
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   385
        myFd := pipeFdArray at:2.
326
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
   386
    ].
255
2b2c5c0facab *** empty log message ***
claus
parents: 230
diff changeset
   387
1648
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   388
    blocked := OperatingSystem blockInterrupts.
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   389
    pid := OperatingSystem exec:'/bin/sh'
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   390
                           withArguments:(Array with:'sh' with:'-c' with:aCommandString)
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   391
                           fileDescriptors:execFdArray
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   392
                           closeDescriptors:(Array with:myFd)
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   393
                           fork:true
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   394
                           newPgrp:true.
362
claus
parents: 360
diff changeset
   395
1648
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   396
    OperatingSystem closeFd:execFd.
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   397
    pid > 0 ifTrue:[
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   398
        self fileDescriptor:myFd withMode:mode.
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   399
        Processor monitorPid:pid action:[ :stat |
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   400
            exitStatus := stat.
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   401
            pid := nil.
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   402
            exitSema signal.
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   403
        ].
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   404
    ] ifFalse:[
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   405
        pid := nil.
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   406
        lastErrorNumber := OperatingSystem currentErrorNumber.
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   407
        OperatingSystem closeFd:myFd.
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   408
    ].
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   409
    blocked ifFalse:[
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   410
        OperatingSystem unblockInterrupts
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   411
    ].
1648
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   412
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   413
    lastErrorNumber isNil ifTrue:[
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   414
        commandString := aCommandString.
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   415
        buffered := true.
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   416
        hitEOF := false.
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   417
        binary := false.
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   418
        Lobby register:self
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   419
    ] ifFalse:[
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   420
        "
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   421
         the pipe open failed for some reason ...
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   422
         ... this may be either due to an invalid command string,
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   423
         or due to the system running out of memory (when forking
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   424
         the unix process)
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   425
        "
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   426
        ^ self openError
255
2b2c5c0facab *** empty log message ***
claus
parents: 230
diff changeset
   427
    ].
1648
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   428
    ^ self
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   429
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   430
    "Modified: 23.4.1996 / 17:05:59 / stefan"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   431
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   432
a27a279701f8 Initial revision
claus
parents:
diff changeset
   433
readingFrom:command
a27a279701f8 Initial revision
claus
parents:
diff changeset
   434
    "setup the receiver to read from command"
a27a279701f8 Initial revision
claus
parents:
diff changeset
   435
326
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
   436
    mode := #readonly. didWrite := false.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   437
    ^ self openPipeFor:command withMode:'r'
a27a279701f8 Initial revision
claus
parents:
diff changeset
   438
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   439
a27a279701f8 Initial revision
claus
parents:
diff changeset
   440
writingTo:command
a27a279701f8 Initial revision
claus
parents:
diff changeset
   441
    "setup the receiver to write to command"
a27a279701f8 Initial revision
claus
parents:
diff changeset
   442
326
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
   443
    mode := #writeonly. didWrite := true.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   444
    ^ self openPipeFor:command withMode:'w'
a27a279701f8 Initial revision
claus
parents:
diff changeset
   445
! !
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   446
1648
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   447
!PipeStream  class methodsFor:'documentation'!
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   448
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   449
version
1648
faa891d2c1b0 Use OperatingSystem executeCommand:... instead of popen().
Stefan Vogel <sv@exept.de>
parents: 1295
diff changeset
   450
    ^ '$Header: /cvs/stx/stx/libbasic/PipeStream.st,v 1.44 1996-09-09 10:30:27 stefan Exp $'
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   451
! !
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 582
diff changeset
   452
PipeStream initialize!