Mercurial > vim
annotate src/tee/tee.c @ 29898:3276298c67c5 v9.0.0287
patch 9.0.0287: Irix systems no longer exist
Commit: https://github.com/vim/vim/commit/aebc6ef7cdc5d4d0627a711ff66e6fe8d67f9d87
Author: Yegappan Lakshmanan <yegappan@yahoo.com>
Date: Sat Aug 27 21:24:26 2022 +0100
patch 9.0.0287: Irix systems no longer exist
Problem: Irix systems no longer exist.
Solution: Remove references to Irix. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/10994)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 27 Aug 2022 22:30:03 +0200 |
parents | 1fe2d79f7309 |
children |
rev | line source |
---|---|
7 | 1 /* vim:set ts=4 sw=4: |
2 * | |
3 * Copyright (c) 1996, Paul Slootman | |
4 * | |
5 * Author: Paul Slootman | |
6 * (paul@wurtel.hobby.nl, paul@murphy.nl, paulS@toecompst.nl) | |
7475
6b5ce5161d6d
commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents:
7
diff
changeset
|
7 * Modifications for MSVC: Yasuhiro Matsumoto |
7 | 8 * |
9 * This source code is released into the public domain. It is provided on an | |
10 * as-is basis and no responsibility is accepted for its failure to perform | |
11 * as expected. It is worth at least as much as you paid for it! | |
12 * | |
13 * tee.c - pipe fitting | |
14 * | |
15 * tee reads stdin, and writes what it reads to each of the specified | |
16 * files. The primary reason of existence for this version is a quick | |
17 * and dirty implementation to distribute with Vim, to make one of the | |
18 * most useful features of Vim possible on OS/2: quickfix. | |
19 * | |
20 * Of course, not using tee but instead redirecting make's output directly | |
21 * into a temp file and then processing that is possible, but if we have a | |
22 * system capable of correctly piping (unlike DOS, for example), why not | |
23 * use it as well as possible? This tee should also work on other systems, | |
24 * but it's not been tested there, only on OS/2. | |
25 * | |
26 * tee is also available in the GNU shellutils package, which is available | |
27 * precompiled for OS/2. That one probably works better. | |
28 */ | |
29 | |
7475
6b5ce5161d6d
commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents:
7
diff
changeset
|
30 #ifndef _MSC_VER |
6b5ce5161d6d
commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents:
7
diff
changeset
|
31 # include <unistd.h> |
6b5ce5161d6d
commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents:
7
diff
changeset
|
32 #endif |
7 | 33 #include <malloc.h> |
34 #include <stdio.h> | |
21244
bc7ed647d654
patch 8.2.1173: tee doesn't build on some systems
Bram Moolenaar <Bram@vim.org>
parents:
7475
diff
changeset
|
35 #include <stdlib.h> |
bc7ed647d654
patch 8.2.1173: tee doesn't build on some systems
Bram Moolenaar <Bram@vim.org>
parents:
7475
diff
changeset
|
36 #include <string.h> |
7475
6b5ce5161d6d
commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents:
7
diff
changeset
|
37 #include <fcntl.h> |
6b5ce5161d6d
commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents:
7
diff
changeset
|
38 |
6b5ce5161d6d
commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents:
7
diff
changeset
|
39 #ifdef _WIN32 |
6b5ce5161d6d
commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents:
7
diff
changeset
|
40 # define sysconf(x) -1 |
6b5ce5161d6d
commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents:
7
diff
changeset
|
41 #endif |
7 | 42 |
43 void usage(void) | |
44 { | |
45 fprintf(stderr, | |
46 "tee usage:\n\ | |
47 \ttee [-a] file ... file_n\n\ | |
48 \n\ | |
49 \t-a\tappend to files instead of truncating\n\ | |
50 \nTee reads its input, and writes to each of the specified files,\n\ | |
51 as well as to the standard output.\n\ | |
52 \n\ | |
53 This version supplied with Vim 4.2 to make ':make' possible.\n\ | |
54 For a more complete and stable version, consider getting\n\ | |
55 [a port of] the GNU shellutils package.\n\ | |
56 "); | |
57 } | |
58 | |
59 /* | |
60 * fread only returns when count is read or at EOF. | |
61 * We could use fgets, but I want to be able to handle binary blubber. | |
62 */ | |
63 | |
64 int | |
65 myfread(char *buf, int elsize /*ignored*/, int max, FILE *fp) | |
66 { | |
67 int c; | |
68 int n = 0; | |
69 | |
70 while ((n < max) && ((c = getchar()) != EOF)) | |
71 { | |
72 *(buf++) = c; | |
73 n++; | |
74 if (c == '\n' || c == '\r') | |
75 break; | |
76 } | |
77 return n; | |
78 } | |
79 | |
80 | |
29088
ba435f6bc1ad
patch 8.2.5065: wrong return type for main() in tee.c
Bram Moolenaar <Bram@vim.org>
parents:
21244
diff
changeset
|
81 int |
7 | 82 main(int argc, char *argv[]) |
83 { | |
84 int append = 0; | |
29094
1fe2d79f7309
patch 8.2.5068: gcc 12.1 warning when building tee
Bram Moolenaar <Bram@vim.org>
parents:
29088
diff
changeset
|
85 size_t numfiles; |
7 | 86 int maxfiles; |
87 FILE **filepointers; | |
88 int i; | |
89 char buf[BUFSIZ]; | |
90 int n; | |
7475
6b5ce5161d6d
commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents:
7
diff
changeset
|
91 int optind = 1; |
7 | 92 |
7475
6b5ce5161d6d
commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents:
7
diff
changeset
|
93 for (i = 1; i < argc; i++) |
7 | 94 { |
7475
6b5ce5161d6d
commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents:
7
diff
changeset
|
95 if (argv[i][0] != '-') |
6b5ce5161d6d
commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents:
7
diff
changeset
|
96 break; |
6b5ce5161d6d
commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents:
7
diff
changeset
|
97 if (!strcmp(argv[i], "-a")) |
6b5ce5161d6d
commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents:
7
diff
changeset
|
98 append++; |
6b5ce5161d6d
commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents:
7
diff
changeset
|
99 else |
6b5ce5161d6d
commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents:
7
diff
changeset
|
100 usage(); |
6b5ce5161d6d
commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents:
7
diff
changeset
|
101 optind++; |
7 | 102 } |
103 | |
104 numfiles = argc - optind; | |
105 | |
106 if (numfiles == 0) | |
107 { | |
108 fprintf(stderr, "doesn't make much sense using tee without any file name arguments...\n"); | |
109 usage(); | |
110 exit(2); | |
111 } | |
112 | |
113 maxfiles = sysconf(_SC_OPEN_MAX); /* or fill in 10 or so */ | |
114 if (maxfiles < 0) | |
115 maxfiles = 10; | |
116 if (numfiles + 3 > maxfiles) /* +3 accounts for stdin, out, err */ | |
117 { | |
118 fprintf(stderr, "Sorry, there is a limit of max %d files.\n", maxfiles - 3); | |
119 exit(1); | |
120 } | |
121 filepointers = calloc(numfiles, sizeof(FILE *)); | |
122 if (filepointers == NULL) | |
123 { | |
29094
1fe2d79f7309
patch 8.2.5068: gcc 12.1 warning when building tee
Bram Moolenaar <Bram@vim.org>
parents:
29088
diff
changeset
|
124 fprintf(stderr, "Error allocating memory for %ld files\n", |
1fe2d79f7309
patch 8.2.5068: gcc 12.1 warning when building tee
Bram Moolenaar <Bram@vim.org>
parents:
29088
diff
changeset
|
125 (long)numfiles); |
7 | 126 exit(1); |
127 } | |
128 for (i = 0; i < numfiles; i++) | |
129 { | |
130 filepointers[i] = fopen(argv[i+optind], append ? "ab" : "wb"); | |
131 if (filepointers[i] == NULL) | |
132 { | |
133 fprintf(stderr, "Can't open \"%s\"\n", argv[i+optind]); | |
134 exit(1); | |
135 } | |
136 } | |
21244
bc7ed647d654
patch 8.2.1173: tee doesn't build on some systems
Bram Moolenaar <Bram@vim.org>
parents:
7475
diff
changeset
|
137 #ifdef _WIN32 |
7475
6b5ce5161d6d
commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents:
7
diff
changeset
|
138 setmode(fileno(stdin), O_BINARY); |
7 | 139 fflush(stdout); /* needed for _fsetmode(stdout) */ |
7475
6b5ce5161d6d
commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents:
7
diff
changeset
|
140 setmode(fileno(stdout), O_BINARY); |
21244
bc7ed647d654
patch 8.2.1173: tee doesn't build on some systems
Bram Moolenaar <Bram@vim.org>
parents:
7475
diff
changeset
|
141 #endif |
7 | 142 |
143 while ((n = myfread(buf, sizeof(char), sizeof(buf), stdin)) > 0) | |
144 { | |
145 fwrite(buf, sizeof(char), n, stdout); | |
146 fflush(stdout); | |
147 for (i = 0; i < numfiles; i++) | |
148 { | |
149 if (filepointers[i] && | |
150 fwrite(buf, sizeof(char), n, filepointers[i]) != n) | |
151 { | |
152 fprintf(stderr, "Error writing to file \"%s\"\n", argv[i+optind]); | |
153 fclose(filepointers[i]); | |
154 filepointers[i] = NULL; | |
155 } | |
156 } | |
157 } | |
158 for (i = 0; i < numfiles; i++) | |
159 { | |
160 if (filepointers[i]) | |
161 fclose(filepointers[i]); | |
162 } | |
163 | |
164 exit(0); | |
165 } |