pci: don't do sanity check for missing pci bus, the check can misfire.
[minix.git] / commands / elvis / system.c
blob676d788c1c8292de381d6b0c09ea8fae4f0f27c6
1 /* system.c -- UNIX version */
3 /* Author:
4 * Steve Kirkendall
5 * 14407 SW Teal Blvd. #C
6 * Beaverton, OR 97005
7 * kirkenda@cs.pdx.edu
8 */
11 /* This file contains a new version of the system() function and related stuff.
13 * Entry points are:
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.
23 #include "config.h"
24 #include "vi.h"
25 extern char **environ;
27 #if ANY_UNIX
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.
32 int system(cmd)
33 char *cmd; /* a command to run */
35 int pid; /* process ID of child */
36 int died;
37 int status; /* exit status of the command */
40 signal(SIGINT, SIG_IGN);
41 pid = fork();
42 switch (pid)
44 case -1: /* error */
45 msg("fork() failed");
46 status = -1;
47 break;
49 case 0: /* child */
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);
56 if (cmd == o_shell)
58 execle(o_shell, o_shell, (char *)0, environ);
60 else
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 */
67 default: /* parent */
70 died = wait(&status);
71 } while (died >= 0 && died != pid);
72 if (died < 0)
74 status = -1;
76 #if __GNUC__ || _ANSI
77 signal(SIGINT, (void (*)()) trapint);
78 #else
79 signal(SIGINT, trapint);
80 #endif
83 return status;
86 /* This private function opens a pipe from a filter. It is similar to the
87 * system() function above, and to popen(cmd, "r").
89 int rpipe(cmd, in)
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 */
95 /* make the pipe */
96 if (pipe(r0w1) < 0)
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
103 * catch the signal.
105 signal(SIGINT, SIG_IGN);
107 switch (fork())
109 case -1: /* error */
110 return -1;
112 case 0: /* child */
113 /* close the "read" end of the pipe */
114 close(r0w1[0]);
116 /* redirect stdout to go to the "write" end of the pipe */
117 close(1);
118 dup(r0w1[1]);
119 close(2);
120 dup(r0w1[1]);
121 close(r0w1[1]);
123 /* redirect stdin */
124 if (in != 0)
126 close(0);
127 dup(in);
128 close(in);
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 */
140 close(r0w1[1]);
142 return r0w1[0];
146 #endif /* non-DOS */
148 #if OSK
150 /* This private function opens a pipe from a filter. It is similar to the
151 * system() function above, and to popen(cmd, "r").
153 int rpipe(cmd, in)
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);
159 #endif
161 #if ANY_UNIX || OSK
163 /* This function closes the pipe opened by rpipe(), and returns 0 for success */
164 int rpclose(fd)
165 int fd;
167 int status;
169 close(fd);
170 wait(&status);
171 #if __GNUC__ || _ANSI
172 signal(SIGINT, (void (*)()) trapint);
173 #else
174 signal(SIGINT, trapint);
175 #endif
176 return status;
179 #endif /* non-DOS */
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.
187 #if MSDOS || TOS
188 #define PROG "wildcard "
189 #define PROGLEN 9
190 #include <string.h>
191 #else
192 #define PROG "echo "
193 #define PROGLEN 5
194 #endif
196 #if !AMIGA
197 char *wildcard(names)
198 char *names;
201 # if VMS
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
208 non-native. jdc
210 return names;
211 # else
213 int i, j, fd;
214 REG char *s, *d;
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);
224 else
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; )
231 *--d = *--s;
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;
239 i = 0;
242 j = tread(fd, tmpblk.c + i, BLKSIZE - i);
243 i += j;
244 } while (j > 0);
246 /* successful? */
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 */
250 return tmpblk.c;
252 else
254 return names;
256 # endif
258 #endif
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 */
275 int i, j;
277 /* write the lines (if specified) to a temp file */
278 if (to)
280 /* we have lines */
281 #if MSDOS || TOS
282 strcpy(scrout, o_directory);
283 if ((i=strlen(scrout)) && !strchr("\\/:", scrout[i-1]))
284 scrout[i++]=SLASH;
285 strcpy(scrout+i, SCRATCHOUT+3);
286 #else
287 sprintf(scrout, SCRATCHOUT, o_directory);
288 #endif
289 mktemp(scrout);
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);
295 if (scratch < 0)
297 unlink(scrout);
298 return -1;
301 else
303 scratch = 0;
304 sent = 0L;
307 /* start the filter program */
308 #if VMS
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);
314 #else
315 fd = rpipe(cmd, scratch);
316 #endif
317 if (fd < 0)
319 if (to)
321 close(scratch);
322 unlink(scrout);
324 return -1;
327 if (back)
329 ChangeText
331 /* adjust MARKs for whole lines, and set "new" */
332 from &= ~(BLKSIZE - 1);
333 if (to)
335 to &= ~(BLKSIZE - 1);
336 to += BLKSIZE;
337 new = to;
339 else
341 new = from + BLKSIZE;
344 #if VMS
345 /* Reading from a VMS mailbox (pipe) is record oriented... */
346 # define tread vms_pread
347 #endif
349 /* repeatedly read in new text and add it */
350 rcvd = 0L;
351 while ((i = tread(fd, tmpblk.c, BLKSIZE - 1)) > 0)
353 tmpblk.c[i] = '\0';
354 add(new, tmpblk.c);
355 #if VMS
356 /* What! An advantage to record oriented reads? */
357 new += (i - 1);
358 new = (new & ~(BLKSIZE - 1)) + BLKSIZE;
359 rcvd++;
360 #else
361 for (i = 0; tmpblk.c[i]; i++)
363 if (tmpblk.c[i] == '\n')
365 new = (new & ~(BLKSIZE - 1)) + BLKSIZE;
366 rcvd++;
368 else
370 new++;
373 #endif
377 /* delete old text, if any */
378 if (to)
380 cut(from, to);
381 delete(from, to);
384 else
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++)
391 addch(tmpblk.c[j]);
394 rcvd = 0;
397 /* Reporting... */
398 if (sent >= *o_report || rcvd >= *o_report)
400 if (sent > 0L && rcvd > 0L)
402 msg("%ld lines out, %ld lines back", sent, rcvd);
404 else if (sent > 0)
406 msg("%ld lines written to filter", sent);
408 else
410 msg("%ld lines read from filter", rcvd);
413 rptlines = 0L;
415 /* cleanup */
416 rpclose(fd);
417 if (to)
419 close(scratch);
420 unlink(scrout);
422 return 0;