-
Notifications
You must be signed in to change notification settings - Fork 1
/
flex-bsd44.c
executable file
·444 lines (348 loc) · 8.77 KB
/
flex-bsd44.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
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
/*
Copyright (c) 1999-2011, Phillip Stanley-Marbell (author)
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
* Redistributions of source code must retain the above
copyright notice, this list of conditions and the following
disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials
provided with the distribution.
* Neither the name of the author nor the names of its
contributors may be used to endorse or promote products
derived from this software without specific prior written
permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
#include <stdio.h>
#include <fcntl.h>
#include <stdarg.h>
#include <stdlib.h>
#include <string.h>
#include <sys/time.h>
#include <sys/resource.h>
#include <sys/stat.h>
#include <unistd.h>
#include "flextypes.h"
#include "flexerror.h"
#include "flex.h"
//TODO: (1) a lot of the routines in flex-darwin/linux/etc, particularly things like the buffered print routines and checkh2o, should be moved to a common file (flex-print.c?)
// (2)
static flexinline void checkh2o(int maxbufsz, FlexPrintBuf *P, char *buf);
flexinline void
checkh2o(int maxbufsz, FlexPrintBuf *P, char *buf)
{
int ndelete, newidx, n = strlen(buf) + 1;
/* Make sure NUL terminated string can fit in buffer */
if (n > maxbufsz)
{
n = maxbufsz;
}
ndelete = P->h2o - (maxbufsz - n);
if (ndelete < 0)
{
ndelete = 0;
}
/* Move old stuff in buffer backwards, discarding some */
memmove(&P->circbuf[0], &P->circbuf[ndelete], P->h2o - ndelete);
newidx = max(0, P->h2o - ndelete - 1);
/* Put new stuff in, overwriting terminating NUL in old */
memmove(&P->circbuf[newidx], buf, n);
P->h2o = newidx + n;
P->circbuf[P->h2o] = '\0';
return;
}
uvlong
flexfsize(FlexErrState *E, FlexMstate *M, FlexPrintBuf *P, int fd)
{
struct stat sb;
if (fstat(fd, &sb) < 0)
{
return -1;
}
return sb.st_size;
}
void
flexstatelock(FlexLock *l)
{
}
void
flexstateunlock(FlexLock *l)
{
}
char *
flexfgets(FlexErrState *E, FlexMstate *M, FlexPrintBuf *P, char *buf, int len, int fd)
{
int n, i = 0;
char ch;
if (len <= 0)
{
return NULL;
}
do
{
n = read(fd, &ch, 1);
if (n == 0)
{
if (i == 0)
return NULL;
else
break;
}
buf[i++] = ch;
} while ((i < len) && (ch != '\n'));
buf[i] = '\0';
return buf;
}
int
flexcreate(FlexErrState *E, FlexMstate *M, FlexPrintBuf *P, char *path, int mode)
{
int perm = S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP;
int flags = 0;
int rw = mode & (~FLEX_OTRUNCATE);
int fd;
if (rw == FLEX_OREAD)
flags = O_RDONLY;
if (rw == FLEX_OWRITE)
flags = O_WRONLY;
if (rw == (FLEX_OREAD|FLEX_OWRITE))
flags = O_RDWR;
if (mode & FLEX_OTRUNCATE)
flags |= O_TRUNC;
else
flags |= O_APPEND;
fd = open(path, flags|O_CREAT, perm);
return fd;
}
int
flexopen(FlexErrState *E, FlexMstate *M, FlexPrintBuf *P, char *path, int mode)
{
int perm = S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP;
int flags = 0;
int rw = mode & (~FLEX_OTRUNCATE);
if (rw == FLEX_OREAD)
flags = O_RDONLY;
if (rw == FLEX_OWRITE)
flags = O_WRONLY;
if (rw == (FLEX_OREAD|FLEX_OWRITE))
flags = O_RDWR;
if (mode & FLEX_OTRUNCATE)
flags |= O_TRUNC;
else
flags |= O_APPEND;
return open(path, flags, perm);
}
int
flexread(FlexErrState *E, FlexMstate *M, FlexPrintBuf *P, int fd, char* buf, int len)
{
return read(fd, buf, len);
}
int
flexclose(FlexErrState *E, FlexMstate *M, FlexPrintBuf *P, int fd)
{
return close(fd);
}
int
flexwrite(FlexErrState *E, FlexMstate *M, FlexPrintBuf *P, int fd, char* buf, int len)
{
return write(fd, buf, len);
}
int
flexchdir(FlexErrState *E, FlexMstate *M, FlexPrintBuf *P, char *path)
{
return chdir(path);
}
char *
flexgetpwd(FlexErrState *E, FlexMstate *M, FlexPrintBuf *P)
{
/* */
/* This is non-POSIX, but... */
/* On Darwin, let getcwd() auto allocate space for buf */
/* The buffer will be freed by caller, e.g., sf.y. */
/* */
return getcwd(NULL, 0);
}
int
flexsnprint(char *dst, int size, const char *fmt, ...)
{
va_list arg;
int n;
va_start(arg, fmt);
n = vsnprintf(dst, size, fmt, arg);
va_end(arg);
return n;
}
FlexPrintBuf*
flexbufalloc(FlexErrState *E, FlexMstate *M, FlexPrintBuf *P, int circbufsz, char *filename, FlexFileMode mode)
{
FlexPrintBuf *tmpflexbuf;
tmpflexbuf = (FlexPrintBuf *)flexcalloc(E, M, P, 1, sizeof(FlexPrintBuf),
"FlexPrintBuf* in flex-darwin.c/flexbufalloc");
if (tmpflexbuf == NULL)
{
if (E != NULL)
{
char tmperr[FLEX_ERRSTRLEN];
snprintf(tmperr, FLEX_ERRSTRLEN, " -> %s", Emalloc);
strncat(E->errstr, tmperr, sizeof(E->errstr) - strlen(E->errstr) - 1);
E->errlen = strlen(E->errstr);
}
return NULL;
}
if (circbufsz > 0)
{
tmpflexbuf->circbuf = (char *)flexcalloc(E, M, P, 1, circbufsz,
"FlexPrintBuf->char* in flex-darwin.c/flexbufalloc");
if (tmpflexbuf->circbuf == NULL)
{
if (E != NULL)
{
char tmperr[FLEX_ERRSTRLEN];
snprintf(tmperr, FLEX_ERRSTRLEN, " -> %s", Emalloc);
strncat(E->errstr, tmperr, sizeof(E->errstr) - strlen(E->errstr) - 1);
E->errlen = strlen(E->errstr);
}
return NULL;
}
}
tmpflexbuf->fd = -1;
if (filename != NULL)
{
tmpflexbuf->fd = flexcreate(E, M, P, filename, mode);
if (tmpflexbuf->fd <= 2)
{
if (E != NULL)
{
char tmperr[FLEX_ERRSTRLEN];
snprintf(tmperr, FLEX_ERRSTRLEN, " -> %s", Emalloc);
strncat(E->errstr, tmperr, sizeof(E->errstr) - strlen(E->errstr) - 1);
E->errlen = strlen(E->errstr);
}
return NULL;
}
}
return tmpflexbuf;
}
void
flexbufdealloc(FlexErrState *E, FlexMstate *M, FlexPrintBuf *P, FlexPrintBuf *moribund)
{
if (moribund == NULL)
{
return;
}
if (moribund->circbuf != NULL)
{
flexfree(E, M, P, moribund->circbuf, "flex-darwin.c/flexbufdealloc");
}
if (moribund->fd != -1)
{
flexclose(E, M, P, moribund->fd);
}
return;
}
void
flexbufreset(FlexErrState *E, FlexMstate *M, FlexPrintBuf *P)
{
if (P->circbuf == NULL)
{
fprintf(stderr, "Attempt to reset unallocated circular buffer in flex-darwin.c/flexbufreset.\n");
return;
}
P->h2o = 0;
P->circbuf[0] = '\0';
return;
}
void
flexprint(FlexErrState *E, FlexMstate *M, FlexPrintBuf *P, const char *fmt, ...)
{
int fmtlen;
char *buf;
va_list arg;
if (P != NULL && P->silent)
{
return;
}
/* */
/* If failing due to memory, further prints go to stderr */
/* */
buf = flexcalloc(E, M, NULL, 1, FLEX_CIRCBUFSZ, "flex-darwin.c:flexprint/buf");
if (buf == NULL)
{
fprintf(stderr, "Could not allocate memory for (char *)buf in flex-darwin.c/flexprint.\n");
return;
}
va_start(arg, fmt);
fmtlen = vsnprintf(buf, FLEX_CIRCBUFSZ, fmt, arg);
va_end(arg);
if (fmtlen < 0)
{
fprintf(stderr, "vsnprintf() in flexprint() failed.\n");
flexfree(E, M, NULL, buf, "flex-darwin.c:flexprint/buf");
return;
}
/* If no buffer structure is given, send to global output */
if (P == NULL)
{
fprintf(stdout, "%s", buf);
}
else if (P != NULL && P->circbuf == NULL)
{
write(P->fd, buf, strlen(buf));
//TODO: (also in other archs: if the write failed, append message to E->errstr)
}
else
{
checkh2o(FLEX_CIRCBUFSZ, P, buf);
}
flexfree(E, M, NULL, buf, "flex-darwin.c:flexprint/buf");
return;
}
void
flexnsleep(ulong nsecs)
{
/* */
/* Inferno doesn't provide us with enough granularity. */
/* This should still be fairly portable since nanosleep */
/* is POSIX.1b. */
/* */
struct timespec rqtp;
rqtp.tv_sec = nsecs/1000000000;
rqtp.tv_nsec = nsecs % 1000000000;
nanosleep(&rqtp, NULL);
}
ulong
flexusercputimeusecs(void)
{
struct rusage r;
getrusage(RUSAGE_SELF, &r);
return (ulong)(r.ru_utime.tv_sec*1E6 + r.ru_utime.tv_usec);
}
ulong
flexcputimeusecs(void)
{
struct rusage r;
getrusage(RUSAGE_SELF, &r);
return (ulong)(r.ru_utime.tv_sec*1E6 + r.ru_utime.tv_usec +
r.ru_stime.tv_sec*1E6 + r.ru_stime.tv_usec);
}
ulong
flexwallclockusecs(void)
{
struct timeval t;
gettimeofday(&t, NULL);
return t.tv_usec;
}