-
Notifications
You must be signed in to change notification settings - Fork 0
/
txtconv.c
204 lines (193 loc) · 5.67 KB
/
txtconv.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
/*
* txtconv.c
*
* This is the core of a text line-ending and file-ending conversion
* filter which just needs the addition of functions to write the
* correct end-of-line and end-of-file sequences for the destination
* platform.
*/
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
typedef enum {
ST_GROUND,
ST_GOT_CR,
ST_GOT_LF,
ST_GOT_BOTH
} state_t;
static void txtconv(FILE *ifp, FILE *ofp) {
state_t state = ST_GROUND;
int ch, lines = 0, spaces = 0;
while ((ch = getc(ifp)) != EOF) {
if (ch == '\r') {
if (state == ST_GOT_LF)
state = ST_GOT_BOTH;
else {
lines++;
state = ST_GOT_CR;
}
}
else if (ch == '\n') {
if (state == ST_GOT_CR)
state = ST_GOT_BOTH;
else {
lines++;
state = ST_GOT_LF;
}
}
else {
if (state != ST_GROUND) {
newlines(lines, ofp);
lines = spaces = 0;
state = ST_GROUND;
}
if (ch == ' ')
spaces++;
else {
while (spaces > 0) {
putc(' ', ofp);
spaces--;
}
putc(ch, ofp);
}
}
}
newlines(lines, ofp);
}
static const char usage[] = "Usage: %s [ -b -r ] [ <file> ... ]\n";
static const char memerr[] = "%s: out of memory\n";
static const char renerr[] = "%s: unable to rename %s to %s: %m\n";
static const char orderr[] = "%s: unable to open %s for reading: %m\n";
static const char owterr[] = "%s: unable to open %s for writing: %m\n";
static int replace(const char *progname, int argc, char **argv, bool back)
{
int status = 0;
if (argc == 0) {
fprintf(stderr, usage, progname);
status = 1;
}
else {
while (argc--) {
const char *fn = *argv++;
FILE *ifp = fopen(fn, "rb");
if (ifp) {
size_t len = strlen(fn);
char *new = malloc(len+2);
if (new) {
memcpy(new, fn, len);
new[len] = '$';
new[len+1] = 0;
FILE *ofp = fopen(new, "wb");
if (ofp) {
txtconv(ifp, ofp);
endout(ofp);
fclose(ofp);
if (back) {
char *bak = malloc(len+2);
if (bak) {
memcpy(bak, fn, len);
bak[len] = '~';
bak[len+1] = 0;
if (rename(fn, bak) == 0) {
if (rename(new, fn) != 0) {
fprintf(stderr, renerr, progname, new, fn);
status = 1;
}
}
else {
fprintf(stderr, renerr, progname, fn, bak);
status = 1;
}
free(bak);
}
else {
fprintf(stderr, memerr, progname);
status = 1;
}
}
else if (rename(new, fn) != 0) {
fprintf(stderr, renerr, progname, new, fn);
status = 1;
}
}
else {
fprintf(stderr, owterr, progname, new);
status = 1;
}
free(new);
}
else {
fprintf(stderr, memerr, progname);
status = 1;
}
fclose(ifp);
}
else {
fprintf(stderr, orderr, progname, fn);
status = 1;
}
}
}
return status;
}
static int tostdout(const char *progname, int argc, char **argv)
{
int status = 0;
if (argc == 0)
txtconv(stdin, stdout);
else {
while (argc--) {
const char *fn = *argv++;
if (fn[0] == '-' && fn[1] == '\0')
txtconv(stdin, stdout);
else {
FILE *ifp = fopen(fn, "rb");
if (ifp) {
txtconv(ifp, stdout);
fclose(ifp);
}
else {
fprintf(stderr, orderr, progname, fn);
status = 1;
}
}
}
}
endout(stdout);
return status;
}
int main(int argc, char **argv) {
int status = 0;
const char *progname;
bool back = false;
bool repl = false;
progname = *argv;
while (--argc) {
const char *arg = *++argv;
if (*arg != '-')
break;
int ch;
while ((ch = *++arg)) {
if (ch == 'b')
back = 1;
else if (ch == 'r')
repl = true;
else {
status = 1;
break;
}
}
}
if (status == 0) {
if (repl)
status = replace(progname, argc, argv, back);
else
status = tostdout(progname, argc, argv);
}
else {
fprintf(stderr, usage, progname);
status = 1;
}
return status;
}