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
|
/***********************************************************************
* *
* This software is part of the ast package *
* Copyright (c) 1992-2010 AT&T Intellectual Property *
* and is licensed under the *
* Common Public License, Version 1.0 *
* by AT&T Intellectual Property *
* *
* A copy of the License is available at *
* http://www.opensource.org/licenses/cpl1.0.txt *
* (with md5 checksum 059e8cd6165cb4c31e351f2b69388fd9) *
* *
* Information and Software Systems Research *
* AT&T Research *
* Florham Park NJ *
* *
* Glenn Fowler <gsf@research.att.com> *
* David Korn <dgk@research.att.com> *
* *
***********************************************************************/
#pragma prototyped
/*
* rev [-l] [file ...]
*
* reverse the characters or lines of one or more files
*
* David Korn
* AT&T Laboratories
* dgk@research.att.com
*
*/
static const char usage[] =
"[-?\n@(#)$Id: rev (AT&T Research) 2007-11-29 $\n]"
USAGE_LICENSE
"[+NAME?rev - reverse the characters or lines of one or more files]"
"[+DESCRIPTION?\brev\b copies one or more files to standard output "
"reversing the order of characters on every line of the file "
"or reversing the order of lines of the file if \b-l\b is specified.]"
"[+?If no \afile\a is given, or if the \afile\a is \b-\b, \brev\b "
"copies from standard input starting at the current offset.]"
"[l:line?Reverse the lines of the file.]"
"\n"
"\n[file ...]\n"
"\n"
"[+EXIT STATUS?]{"
"[+0?All files copied successfully.]"
"[+>0?One or more files did not copy.]"
"}"
"[+SEE ALSO?\bcat\b(1), \btail\b(1)]"
;
#include <cmd.h>
#include <rev.h>
/*
* reverse the characters within a line
*/
static int rev_char(Sfio_t *in, Sfio_t *out)
{
register int c;
register char *ep, *bp, *cp;
register wchar_t *wp, *xp;
register size_t n;
register size_t w;
if (mbwide())
{
wp = 0;
w = 0;
while(cp = bp = sfgetr(in,'\n',0))
{
ep = bp + (n=sfvalue(in)) - 1;
if (n > w)
{
w = roundof(n + 1, 1024);
if (!(wp = newof(wp, wchar_t, w, 0)))
{
error(ERROR_SYSTEM|2, "out of space");
return 0;
}
}
xp = wp;
while (cp < ep)
*xp++ = mbchar(cp);
cp = bp;
while (xp > wp)
cp += mbconv(cp, *--xp);
*cp++ = '\n';
if (sfwrite(out, bp, cp - bp) < 0)
return -1;
}
if (wp)
free(wp);
}
else
while(cp = bp = sfgetr(in,'\n',0))
{
ep = bp + (n=sfvalue(in)) -1;
while(ep > bp)
{
c = *--ep;
*ep = *bp;
*bp++ = c;
}
if(sfwrite(out,cp,n)<0)
return(-1);
}
return(0);
}
int
b_rev(int argc, register char** argv, void* context)
{
register Sfio_t *fp;
register char *cp;
register int n, line=0;
NOT_USED(argc);
cmdinit(argc, argv, context, ERROR_CATALOG, 0);
while (n = optget(argv, usage)) switch (n)
{
case 'l':
line=1;
break;
case ':':
error(2, "%s", opt_info.arg);
break;
case '?':
error(ERROR_usage(2), "%s", opt_info.arg);
break;
}
argv += opt_info.index;
if(error_info.errors)
error(ERROR_usage(2),"%s",optusage((char*)0));
n=0;
if(cp = *argv)
argv++;
do
{
if(!cp || streq(cp,"-"))
fp = sfstdin;
else if(!(fp = sfopen((Sfio_t*)0,cp,"r")))
{
error(ERROR_system(0),"%s: cannot open",cp);
n=1;
continue;
}
if(line)
line = rev_line(fp,sfstdout,sftell(fp));
else
line = rev_char(fp,sfstdout);
if(fp!=sfstdin)
sfclose(fp);
if(line < 0)
error(ERROR_system(1),"write failed");
}
while(cp= *argv++);
return(n);
}
|