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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
|
/* $OpenBSD: dired.c,v 1.13 2003/08/16 00:24:51 deraadt Exp $ */
/* dired module for mg 2a */
/* by Robert A. Larson */
#include "def.h"
#include "kbd.h"
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include <signal.h>
#include <fcntl.h>
#include <errno.h>
#include <libgen.h>
#ifndef NO_DIRED
int d_findfile(int, int);
static PF dired_cmds_1[] = {
forwline, /* space */
d_shell_command, /* ! */
rescan, /* " */
rescan, /* # */
rescan, /* $ */
rescan, /* % */
rescan, /* & */
rescan, /* ' */
rescan, /* ( */
rescan, /* ) */
rescan, /* * */
d_create_directory, /* + */
};
static PF dired_cmds_2[] = {
rescan, /* a */
rescan, /* b */
rescan, /* c */
rescan, /* d */
d_findfile, /* e */
d_findfile, /* f */
rescan, /* g */
rescan, /* h */
rescan, /* i */
rescan, /* j */
rescan, /* k */
rescan, /* l */
rescan, /* m */
forwline, /* n */
d_ffotherwindow, /* o */
rescan, /* p */
rescan, /* q */
rescan, /* r */
rescan, /* s */
rescan, /* t */
rescan, /* u */
d_findfile, /* v */
rescan, /* w */
d_expunge, /* x */
rescan, /* y */
rescan, /* z */
};
static PF dired_cmds_3[] = {
rescan, /* A */
rescan, /* B */
d_copy, /* C */
d_del, /* D */
rescan, /* E */
rescan, /* F */
rescan, /* G */
rescan, /* H */
rescan, /* I */
rescan, /* J */
rescan, /* K */
rescan, /* L */
rescan, /* M */
rescan, /* N */
rescan, /* O */
rescan, /* P */
rescan, /* Q */
d_rename, /* R */
rescan, /* S */
rescan, /* T */
rescan, /* U */
d_findfile, /* V */
rescan, /* W */
d_expunge, /* X */
rescan, /* Y */
rescan, /* Z */
};
static PF dired_pf[] = {
d_findfile, /* ^M */
rescan, /* ^N */
d_findfile, /* ^O */
};
static struct KEYMAPE (4 + IMAPEXT) diredmap = {
4,
4 + IMAPEXT,
rescan,
{
{ CCHR('M'), CCHR('O'), dired_pf, NULL },
{ ' ', '+', dired_cmds_1, NULL },
{ 'A', 'Z', dired_cmds_3, NULL },
{ 'a', 'z', dired_cmds_2, NULL }
}
};
/* ARGSUSED */
int
dired(int f, int n)
{
static int inited = 0;
char dirname[NFILEN];
BUFFER *bp;
if (inited == 0) {
maps_add((KEYMAP *)&diredmap, "dired");
inited = 1;
}
dirname[0] = '\0';
if (eread("Dired: ", dirname, NFILEN, EFNEW | EFCR) == ABORT)
return ABORT;
if ((bp = dired_(dirname)) == NULL)
return FALSE;
bp->b_modes[0] = name_mode("fundamental");
bp->b_modes[1] = name_mode("dired");
bp->b_nmodes = 1;
curbp = bp;
return showbuffer(bp, curwp, WFHARD | WFMODE);
}
/* ARGSUSED */
int
d_otherwindow(int f, int n)
{
char dirname[NFILEN];
BUFFER *bp;
MGWIN *wp;
dirname[0] = '\0';
if (eread("Dired other window: ", dirname, NFILEN, EFNEW | EFCR)
== ABORT)
return ABORT;
if ((bp = dired_(dirname)) == NULL)
return FALSE;
if ((wp = popbuf(bp)) == NULL)
return FALSE;
curbp = bp;
curwp = wp;
return TRUE;
}
/* ARGSUSED */
int
d_del(int f, int n)
{
if (n < 0)
return FALSE;
while (n--) {
if (llength(curwp->w_dotp) > 0)
lputc(curwp->w_dotp, 0, 'D');
if (lforw(curwp->w_dotp) != curbp->b_linep)
curwp->w_dotp = lforw(curwp->w_dotp);
}
curwp->w_flag |= WFEDIT | WFMOVE;
curwp->w_doto = 0;
return TRUE;
}
/* ARGSUSED */
int
d_undel(int f, int n)
{
if (n < 0)
return d_undelbak(f, -n);
while (n--) {
if (llength(curwp->w_dotp) > 0)
lputc(curwp->w_dotp, 0, ' ');
if (lforw(curwp->w_dotp) != curbp->b_linep)
curwp->w_dotp = lforw(curwp->w_dotp);
}
curwp->w_flag |= WFEDIT | WFMOVE;
curwp->w_doto = 0;
return TRUE;
}
/* ARGSUSED */
int
d_undelbak(int f, int n)
{
if (n < 0)
return d_undel(f, -n);
while (n--) {
if (llength(curwp->w_dotp) > 0)
lputc(curwp->w_dotp, 0, ' ');
if (lback(curwp->w_dotp) != curbp->b_linep)
curwp->w_dotp = lback(curwp->w_dotp);
}
curwp->w_doto = 0;
curwp->w_flag |= WFEDIT | WFMOVE;
return TRUE;
}
/* ARGSUSED */
int
d_findfile(int f, int n)
{
BUFFER *bp;
int s;
char fname[NFILEN];
if ((s = d_makename(curwp->w_dotp, fname, sizeof fname)) == ABORT)
return FALSE;
if (s == TRUE)
bp = dired_(fname);
else
bp = findbuffer(fname);
if (bp == NULL)
return FALSE;
curbp = bp;
if (showbuffer(bp, curwp, WFHARD) != TRUE)
return FALSE;
if (bp->b_fname[0] != 0)
return TRUE;
return readin(fname);
}
/* ARGSUSED */
int
d_ffotherwindow(int f, int n)
{
char fname[NFILEN];
int s;
BUFFER *bp;
MGWIN *wp;
if ((s = d_makename(curwp->w_dotp, fname, sizeof fname)) == ABORT)
return FALSE;
if ((bp = (s ? dired_(fname) : findbuffer(fname))) == NULL)
return FALSE;
if ((wp = popbuf(bp)) == NULL)
return FALSE;
curbp = bp;
curwp = wp;
if (bp->b_fname[0] != 0)
return TRUE; /* never true for dired buffers */
return readin(fname);
}
/* ARGSUSED */
int
d_expunge(int f, int n)
{
LINE *lp, *nlp;
char fname[NFILEN];
for (lp = lforw(curbp->b_linep); lp != curbp->b_linep; lp = nlp) {
nlp = lforw(lp);
if (llength(lp) && lgetc(lp, 0) == 'D') {
switch (d_makename(lp, fname, sizeof fname)) {
case ABORT:
ewprintf("Bad line in dired buffer");
return FALSE;
case FALSE:
if (unlink(fname) < 0) {
ewprintf("Could not delete '%s'",
basename(fname));
return FALSE;
}
break;
case TRUE:
if (rmdir(fname) < 0) {
ewprintf("Could not delete directory '%s'",
basename(fname));
return FALSE;
}
break;
}
lfree(lp);
curwp->w_flag |= WFHARD;
}
}
return TRUE;
}
/* ARGSUSED */
int
d_copy(int f, int n)
{
char frname[NFILEN], toname[NFILEN];
int stat, off;
BUFFER *bp;
if (d_makename(curwp->w_dotp, frname, sizeof frname) != FALSE) {
ewprintf("Not a file");
return FALSE;
}
off = strlcpy(toname, curbp->b_fname, sizeof toname);
if (off >= sizeof toname - 1) { /* can't happen, really */
ewprintf("too long directory name");
return (FALSE);
}
if ((stat = eread("Copy %s to: ", toname + off, sizeof toname - off,
EFNEW | EFCR, basename(frname))) != TRUE)
return (stat);
stat = (copy(frname, toname) >= 0) ? TRUE : FALSE;
if (stat != TRUE)
return (stat);
bp = dired_(curbp->b_fname);
return (showbuffer(bp, curwp, WFHARD | WFMODE));
}
/* ARGSUSED */
int
d_rename(int f, int n)
{
char frname[NFILEN], toname[NFILEN];
int stat, off;
BUFFER *bp;
if (d_makename(curwp->w_dotp, frname, sizeof frname) != FALSE) {
ewprintf("Not a file");
return FALSE;
}
off = strlcpy(toname, curbp->b_fname, sizeof toname);
if (off >= sizeof toname - 1) { /* can't happen, really */
ewprintf("too long directory name");
return (FALSE);
}
if ((stat = eread("Rename %s to: ", toname + off,
sizeof toname - off, EFNEW | EFCR, basename(frname))) != TRUE)
return stat;
stat = (rename(frname, toname) >= 0) ? TRUE : FALSE;
if (stat != TRUE)
return (stat);
bp = dired_(curbp->b_fname);
return (showbuffer(bp, curwp, WFHARD | WFMODE));
}
#endif
void
reaper(int signo __attribute__((unused)))
{
pid_t ret;
int status;
while ((ret = waitpid(-1, &status, WNOHANG)) >= 0)
;
}
/*
* Pipe the currently selected file through a shell command.
*/
int
d_shell_command(int f, int n)
{
char command[512], fname[MAXPATHLEN], buf[BUFSIZ], *cp;
int infd, fds[2];
pid_t pid;
struct sigaction olda, newa;
BUFFER *bp;
MGWIN *wp;
FILE *fin;
bp = bfind("*Shell Command Output*", TRUE);
if (bclear(bp) != TRUE)
return (ABORT);
if (d_makename(curwp->w_dotp, fname, sizeof fname) != FALSE) {
ewprintf("bad line");
return (ABORT);
}
command[0] = '\0';
if (eread("! on %s: ", command, sizeof command, 0,
basename(fname)) == ABORT)
return (ABORT);
infd = open(fname, O_RDONLY);
if (infd == -1) {
ewprintf("Can't open input file : %s", strerror(errno));
return (ABORT);
}
if (pipe(fds) == -1) {
ewprintf("Can't create pipe : %s", strerror(errno));
close(infd);
return (ABORT);
}
newa.sa_handler = reaper;
newa.sa_flags = 0;
if (sigaction(SIGCHLD, &newa, &olda) == -1) {
close(infd);
close(fds[0]);
close(fds[1]);
return (ABORT);
}
pid = fork();
switch (pid) {
case -1:
ewprintf("Can't fork");
return (ABORT);
case 0:
close(fds[0]);
dup2(infd, STDIN_FILENO);
dup2(fds[1], STDOUT_FILENO);
dup2(fds[1], STDERR_FILENO);
execl("/bin/sh", "sh", "-c", command, (char *)NULL);
exit(1);
default:
close(infd);
close(fds[1]);
fin = fdopen(fds[0], "r");
if (fin == NULL) /* "r" is surely a valid mode! */
panic("can't happen");
while (fgets(buf, sizeof buf, fin) != NULL) {
cp = strrchr(buf, '\n');
if (cp == NULL && !feof(fin)) { /* too long a line */
int c;
addlinef(bp, "%s...", buf);
while ((c = getc(fin)) != EOF && c != '\n')
;
continue;
} else if (cp)
*cp = '\0';
addline(bp, buf);
}
fclose(fin);
close(fds[0]);
break;
}
wp = popbuf(bp);
if (wp == NULL)
return (ABORT); /* XXX - free the buffer?? */
curwp = wp;
curbp = wp->w_bufp;
if (sigaction(SIGCHLD, &olda, NULL) == -1)
ewprintf("Warning, couldn't reset previous signal handler");
return (TRUE);
}
int
d_create_directory(int f, int n)
{
char tocreate[MAXPATHLEN], off;
int stat;
BUFFER *bp;
off = strlcpy(tocreate, curbp->b_fname, sizeof tocreate);
if (off >= sizeof tocreate - 1)
return (FALSE);
if ((stat = ereply("Create directory: ", tocreate + off,
sizeof tocreate - off))
!= TRUE)
return (stat);
if (mkdir(tocreate, 0755) == -1) {
ewprintf("Creating directory: %s, %s", strerror(errno),
tocreate);
return (ABORT);
}
bp = dired_(curbp->b_fname);
return (showbuffer(bp, curwp, WFHARD | WFMODE));
}
|