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
|
/***********************************************************************
* *
* This software is part of the ast package *
* Copyright (c) 1992-2008 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
/*
* David Korn
* AT&T Bell Laboratories
*
* library interface for word count
*/
#include <cmd.h>
#include <wc.h>
#include <ctype.h>
#if _hdr_wchar && _hdr_wctype && _lib_iswctype
#include <wchar.h>
#include <wctype.h>
#else
#ifndef iswspace
#define iswspace(x) isspace(x)
#endif
#endif
#define endline(c) (((signed char)-1)<0?(c)<0:(c)==((char)-1))
#define mbok(p,n) (((n)<1)?0:mbwide()?((*ast.mb_towc)(NiL,(char*)(p),n)>=0):1)
Wc_t *wc_init(int mode)
{
register int n;
register int w;
Wc_t* wp;
if(!(wp = (Wc_t*)stakalloc(sizeof(Wc_t))))
return(0);
wp->mode = mode;
w = mode & WC_WORDS;
for(n=(1<<CHAR_BIT);--n >=0;)
wp->space[n] = w ? !!isspace(n) : 0;
wp->space['\n'] = -1;
return(wp);
}
/*
* compute the line, word, and character count for file <fd>
*/
int wc_count(Wc_t *wp, Sfio_t *fd, const char* file)
{
register signed char *space = wp->space;
register unsigned char *cp;
register Sfoff_t nchars;
register Sfoff_t nwords;
register Sfoff_t nlines;
register Sfoff_t eline;
register Sfoff_t longest;
register ssize_t c;
register unsigned char *endbuff;
register int lasttype = 1;
unsigned int lastchar;
unsigned char *buff;
wchar_t x;
sfset(fd,SF_WRITE,1);
nlines = nwords = nchars = 0;
wp->longest = 0;
if (wp->mode & (WC_LONGEST|WC_MBYTE))
{
longest = 0;
eline = -1;
cp = buff = endbuff = 0;
for (;;)
{
if (!mbok(cp, endbuff-cp))
{
if (buff)
sfread(fd, buff, cp-buff);
if (!(buff = (unsigned char*)sfreserve(fd, SF_UNBOUND, SF_LOCKR)))
break;
endbuff = (cp = buff) + sfvalue(fd);
}
nchars++;
x = mbchar(cp);
if (x == -1)
{
if (eline != nlines && !(wp->mode & WC_QUIET))
{
error_info.file = (char*)file;
error_info.line = eline = nlines;
error(ERROR_SYSTEM|1, "invalid multibyte character");
error_info.file = 0;
error_info.line = 0;
}
}
else if (x == '\n')
{
if ((nchars - longest) > wp->longest)
wp->longest = nchars - longest;
longest = nchars;
nlines++;
lasttype = 1;
}
else if (iswspace(x))
lasttype = 1;
else if (lasttype)
{
lasttype = 0;
nwords++;
}
}
}
else
{
for (;;)
{
/* fill next buffer and check for end-of-file */
if (!(buff = (unsigned char*)sfreserve(fd, 0, 0)) || (c = sfvalue(fd)) <= 0)
break;
sfread(fd,(char*)(cp=buff),c);
nchars += c;
/* check to see whether first character terminates word */
if(c==1)
{
if(endline(lasttype))
nlines++;
if((c = space[*cp]) && !lasttype)
nwords++;
lasttype = c;
continue;
}
if(!lasttype && space[*cp])
nwords++;
lastchar = cp[--c];
cp[c] = '\n';
endbuff = cp+c;
c = lasttype;
/* process each buffer */
for (;;)
{
/* process spaces and new-lines */
do if (endline(c))
{
for (;;)
{
/* check for end of buffer */
if (cp > endbuff)
goto eob;
nlines++;
if (*cp != '\n')
break;
cp++;
}
} while (c = space[*cp++]);
/* skip over word characters */
while(!(c = space[*cp++]));
nwords++;
}
eob:
if((cp -= 2) >= buff)
c = space[*cp];
else
c = lasttype;
lasttype = space[lastchar];
/* see if was in word */
if(!c && !lasttype)
nwords--;
}
if(endline(lasttype))
nlines++;
else if(!lasttype)
nwords++;
}
wp->chars = nchars;
wp->words = nwords;
wp->lines = nlines;
return(0);
}
|