1 /* system.c -- UNIX version */
5 * 14407 SW Teal Blvd. #C
11 /* This file contains a new version of the system() function and related stuff.
14 * system(cmd) - run a single shell command
15 * wildcard(names) - expand wildcard characters in filanames
16 * filter(m,n,cmd,back) - run text lines through a filter program
18 * This is probably the single least portable file in the program. The code
19 * shown here should work correctly if it links at all; it will work on UNIX
20 * and any O.S./Compiler combination which adheres to UNIX forking conventions.
25 extern char **environ
;
29 /* This is a new version of the system() function. The only difference
30 * between this one and the library one is: this one uses the o_shell option.
33 char *cmd
; /* a command to run */
35 int pid
; /* process ID of child */
37 int status
; /* exit status of the command */
40 signal(SIGINT
, SIG_IGN
);
50 /* for the child, close all files except stdin/out/err */
51 for (status
= 3; status
< 60 && (close(status
), errno
!= EINVAL
); status
++)
55 signal(SIGINT
, SIG_DFL
);
58 execle(o_shell
, o_shell
, (char *)0, environ
);
62 execle(o_shell
, o_shell
, "-c", cmd
, (char *)0, environ
);
64 msg("execle(\"%s\", ...) failed", o_shell
);
65 exit(1); /* if we get here, the exec failed */
71 } while (died
>= 0 && died
!= pid
);
77 signal(SIGINT
, (void (*)()) trapint
);
79 signal(SIGINT
, trapint
);
86 /* This private function opens a pipe from a filter. It is similar to the
87 * system() function above, and to popen(cmd, "r").
90 char *cmd
; /* the filter command to use */
91 int in
; /* the fd to use for stdin */
93 int r0w1
[2];/* the pipe fd's */
98 return -1; /* pipe failed */
101 /* The parent process (elvis) ignores signals while the filter runs.
102 * The child (the filter program) will reset this, so that it can
105 signal(SIGINT
, SIG_IGN
);
113 /* close the "read" end of the pipe */
116 /* redirect stdout to go to the "write" end of the pipe */
131 /* the filter should accept SIGINT signals */
132 signal(SIGINT
, SIG_DFL
);
134 /* exec the shell to run the command */
135 execle(o_shell
, o_shell
, "-c", cmd
, (char *)0, environ
);
136 exit(1); /* if we get here, exec failed */
138 default: /* parent */
139 /* close the "write" end of the pipe */
150 /* This private function opens a pipe from a filter. It is similar to the
151 * system() function above, and to popen(cmd, "r").
154 char *cmd
; /* the filter command to use */
155 int in
; /* the fd to use for stdin */
157 return osk_popen(cmd
, "r", in
, 0);
163 /* This function closes the pipe opened by rpipe(), and returns 0 for success */
171 #if __GNUC__ || _ANSI
172 signal(SIGINT
, (void (*)()) trapint
);
174 signal(SIGINT
, trapint
);
181 /* This function expands wildcards in a filename or filenames. It does this
182 * by running the "echo" command on the filenames via the shell; it is assumed
183 * that the shell will expand the names for you. If for any reason it can't
184 * run echo, then it returns the names unmodified.
188 #define PROG "wildcard "
197 char *wildcard(names
)
203 We could use expand() [vmswild.c], but what's the point on VMS?
204 Anyway, echo is the wrong thing to do, it takes too long to build
205 a subprocess on VMS and any "echo" program would have to be supplied
206 by elvis. More importantly, many VMS utilities expand names
207 themselves (the shell doesn't do any expansion) so the concept is
217 /* build the echo command */
218 if (names
!= tmpblk
.c
)
220 /* the names aren't in tmpblk.c, so we can do it the easy way */
221 strcpy(tmpblk
.c
, PROG
);
222 strcat(tmpblk
.c
, names
);
226 /* the names are already in tmpblk.c, so shift them to make
227 * room for the word "echo "
229 for (s
= names
+ strlen(names
) + 1, d
= s
+ PROGLEN
; s
> names
; )
233 strncpy(names
, PROG
, PROGLEN
);
236 /* run the command & read the resulting names */
237 fd
= rpipe(tmpblk
.c
, 0);
238 if (fd
< 0) return names
;
242 j
= tread(fd
, tmpblk
.c
+ i
, BLKSIZE
- i
);
247 if (rpclose(fd
) == 0 && j
== 0 && i
< BLKSIZE
&& i
> 0)
249 tmpblk
.c
[i
-1] = '\0'; /* "i-1" so we clip off the newline */
260 /* This function runs a range of lines through a filter program, and replaces
261 * the original text with the filtered version. As a special case, if "to"
262 * is MARK_UNSET, then it runs the filter program with stdin coming from
263 * /dev/null, and inserts any output lines.
265 int filter(from
, to
, cmd
, back
)
266 MARK from
, to
; /* the range of lines to filter */
267 char *cmd
; /* the filter command */
268 int back
; /* boolean: will we read lines back? */
270 int scratch
; /* fd of the scratch file */
271 int fd
; /* fd of the pipe from the filter */
272 char scrout
[50]; /* name of the scratch out file */
273 MARK
new; /* place where new text should go */
274 long sent
, rcvd
; /* number of lines sent/received */
277 /* write the lines (if specified) to a temp file */
282 strcpy(scrout
, o_directory
);
283 if ((i
=strlen(scrout
)) && !strchr("\\/:", scrout
[i
-1]))
285 strcpy(scrout
+i
, SCRATCHOUT
+3);
287 sprintf(scrout
, SCRATCHOUT
, o_directory
);
290 cmd_write(from
, to
, CMD_BANG
, FALSE
, scrout
);
291 sent
= markline(to
) - markline(from
) + 1L;
293 /* use those lines as stdin */
294 scratch
= open(scrout
, O_RDONLY
);
307 /* start the filter program */
310 VMS doesn't know a thing about file descriptor 0. The rpipe
311 concept is non-portable. Hence we need a file name argument.
313 fd
= rpipe(cmd
, scratch
, scrout
);
315 fd
= rpipe(cmd
, scratch
);
331 /* adjust MARKs for whole lines, and set "new" */
332 from
&= ~(BLKSIZE
- 1);
335 to
&= ~(BLKSIZE
- 1);
341 new = from
+ BLKSIZE
;
345 /* Reading from a VMS mailbox (pipe) is record oriented... */
346 # define tread vms_pread
349 /* repeatedly read in new text and add it */
351 while ((i
= tread(fd
, tmpblk
.c
, BLKSIZE
- 1)) > 0)
356 /* What! An advantage to record oriented reads? */
358 new = (new & ~(BLKSIZE
- 1)) + BLKSIZE
;
361 for (i
= 0; tmpblk
.c
[i
]; i
++)
363 if (tmpblk
.c
[i
] == '\n')
365 new = (new & ~(BLKSIZE
- 1)) + BLKSIZE
;
377 /* delete old text, if any */
386 /* read the command's output, and copy it to the screen */
387 while ((i
= tread(fd
, tmpblk
.c
, BLKSIZE
- 1)) > 0)
389 for (j
= 0; j
< i
; j
++)
398 if (sent
>= *o_report
|| rcvd
>= *o_report
)
400 if (sent
> 0L && rcvd
> 0L)
402 msg("%ld lines out, %ld lines back", sent
, rcvd
);
406 msg("%ld lines written to filter", sent
);
410 msg("%ld lines read from filter", rcvd
);