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 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728
|
/* This file is part of GNU Dico.
Copyright (C) 1998-2024 Sergey Poznyakoff
GNU Dico is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
any later version.
GNU Dico is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Dico. If not, see <http://www.gnu.org/licenses/>. */
#include <config.h>
#include <dico.h>
#include <string.h>
#include <errno.h>
#include <limits.h>
#define _STR_DIRTY 0x1000 /* Buffer dirty */
#define _STR_ERR 0x2000 /* Permanent error state */
#define _STR_EOF 0x4000 /* EOF encountered */
struct dico_stream {
enum dico_buffer_type buftype;
size_t bufsize;
char *buffer;
size_t level;
char *cur;
int flags;
off_t bytes_in, bytes_out;
int last_err;
int (*read) (void *, char *, size_t, size_t *);
int (*write) (void *, const char *, size_t, size_t *);
int (*flush) (void *);
int (*open) (void *, int);
int (*close) (void *);
int (*destroy) (void *);
int (*seek) (void *, off_t, int, off_t *);
int (*size) (void *, off_t *);
int (*ctl) (void *, int, void *);
const char *(*error_string) (void *, int);
void *data;
};
static int
_stream_seterror(dico_stream_t stream, int code, int perm)
{
stream->last_err = code;
if (perm)
stream->flags |= _STR_ERR;
return code;
}
int
dico_stream_create(dico_stream_t *pstream, int flags, void *data)
{
dico_stream_t stream = malloc(sizeof(*stream));
if (stream == NULL)
return ENOMEM;
memset(stream, 0, sizeof(*stream));
stream->flags = flags;
stream->data = data;
*pstream = stream;
return 0;
}
int
dico_stream_open(dico_stream_t stream)
{
int rc;
if (stream->open && (rc = stream->open(stream->data, stream->flags)))
return _stream_seterror(stream, rc, 1);
stream->bytes_in = stream->bytes_out = 0;
return 0;
}
void
dico_stream_set_error_string(dico_stream_t stream,
const char *(*error_string) (void *, int))
{
stream->error_string = error_string;
}
void
dico_stream_set_open(dico_stream_t stream, int (*openfn) (void *, int))
{
stream->open = openfn;
}
void
dico_stream_set_seek(dico_stream_t stream,
int (*fun_seek) (void *, off_t, int, off_t *))
{
stream->seek = fun_seek;
}
void
dico_stream_set_read(dico_stream_t stream,
int (*readfn) (void *, char *, size_t, size_t *))
{
stream->read = readfn;
}
void
dico_stream_set_write(dico_stream_t stream,
int (*writefn) (void *, const char *, size_t, size_t *))
{
stream->write = writefn;
}
void
dico_stream_set_flush(dico_stream_t stream, int (*flushfn) (void *))
{
stream->flush = flushfn;
}
void
dico_stream_set_close(dico_stream_t stream, int (*closefn) (void *))
{
stream->close = closefn;
}
void
dico_stream_set_destroy(dico_stream_t stream, int (*destroyfn) (void *))
{
stream->destroy = destroyfn;
}
void
dico_stream_set_size(dico_stream_t stream, int (*sizefn) (void *, off_t *))
{
stream->size = sizefn;
}
void
dico_stream_set_ioctl(dico_stream_t stream, int (*ctl) (void *, int, void *))
{
stream->ctl = ctl;
}
const char *
dico_stream_strerror(dico_stream_t stream, int rc)
{
const char *str;
if (stream->error_string)
str = stream->error_string(stream->data, rc);
else
str = strerror(rc);
return str;
}
int
dico_stream_last_error(dico_stream_t stream)
{
return stream->last_err;
}
void
dico_stream_clearerr(dico_stream_t stream)
{
stream->last_err = 0;
}
int
dico_stream_eof(dico_stream_t stream)
{
return stream->flags & _STR_EOF;
}
#define _stream_cleareof(s) ((s)->flags &= ~_STR_EOF)
#define _stream_advance_buffer(s,n) ((s)->cur += n, (s)->level -= n)
#define _stream_buffer_offset(s) ((s)->cur - (s)->buffer)
#define _stream_orig_level(s) ((s)->level + _stream_buffer_offset(s))
off_t
dico_stream_seek(dico_stream_t stream, off_t offset, int whence)
{
int rc;
off_t res;
size_t bpos;
if (stream->flags & _STR_ERR)
return -1;
if (!stream->seek) {
_stream_seterror(stream, ENOSYS, 0);
return -1;
}
if (!(stream->flags & DICO_STREAM_SEEK)) {
_stream_seterror(stream, EACCES, 1);
return -1;
}
switch (whence) {
case DICO_SEEK_SET:
break;
case DICO_SEEK_CUR:
break;
case DICO_SEEK_END:
bpos = _stream_buffer_offset(stream);
if (bpos + offset >= 0 && bpos + offset < _stream_orig_level(stream)) {
if ((rc = stream->seek(stream->data, offset, whence, &res))) {
_stream_seterror(stream, rc, 1);
return -1;
}
offset -= bpos;
_stream_advance_buffer(stream, offset);
_stream_cleareof(stream);
return res - stream->level;
}
break;
default:
_stream_seterror(stream, EINVAL, 1);
return -1;
}
if (dico_stream_flush(stream))
return -1;
rc = stream->seek(stream->data, offset, whence, &res);
if (rc) {
_stream_seterror(stream, rc, 1);
return -1;
}
_stream_cleareof(stream);
return res;
}
int
dico_stream_set_buffer(dico_stream_t stream, enum dico_buffer_type type,
size_t size)
{
if (size == 0)
type = dico_buffer_none;
if (stream->buffer) {
dico_stream_flush(stream);
free(stream->buffer);
}
stream->buftype = type;
if (type == dico_buffer_none) {
stream->buffer = NULL;
return 0;
}
stream->buffer = malloc(size);
if (stream->buffer == NULL) {
stream->buftype = dico_buffer_none;
return _stream_seterror(stream, ENOMEM, 1);
}
stream->bufsize = size;
stream->cur = stream->buffer;
stream->level = 0;
return 0;
}
int
dico_stream_read_unbuffered(dico_stream_t stream, void *buf, size_t size,
size_t *pread)
{
int rc = 0;
if (!stream->read)
return _stream_seterror(stream, ENOSYS, 0);
if (!(stream->flags & DICO_STREAM_READ))
return _stream_seterror(stream, EACCES, 1);
if (stream->flags & _STR_ERR)
return stream->last_err;
if ((stream->flags & _STR_EOF) || size == 0) {
if (pread) {
*pread = 0;
return 0;
} else {
_stream_seterror(stream, EIO, 0);
return EIO;
}
}
if (pread == NULL) {
size_t rdbytes;
while (size > 0
&& (rc = stream->read(stream->data, buf, size, &rdbytes)) == 0) {
if (rdbytes == 0) {
stream->flags |= _STR_EOF;
break;
}
buf += rdbytes;
size -= rdbytes;
stream->bytes_in += rdbytes;
}
if (size) {
_stream_seterror(stream, EIO, 0);
return EIO;
}
} else {
rc = stream->read(stream->data, buf, size, pread);
if (rc == 0) {
if (*pread == 0)
stream->flags |= _STR_EOF;
stream->bytes_in += *pread;
}
}
_stream_seterror(stream, rc, rc != 0);
return rc;
}
int
dico_stream_write_unbuffered(dico_stream_t stream,
const void *buf, size_t size,
size_t *pwrite)
{
int rc;
if (!stream->write)
return _stream_seterror(stream, ENOSYS, 0);
if (!(stream->flags & DICO_STREAM_WRITE))
return _stream_seterror(stream, EACCES, 1);
if (stream->flags & _STR_ERR)
return stream->last_err;
if (size == 0) {
if (pwrite)
*pwrite = 0;
return 0;
}
if (pwrite == NULL) {
size_t wrbytes;
const char *bufp = buf;
while (size > 0
&& (rc = stream->write(stream->data, bufp, size, &wrbytes))
== 0) {
if (wrbytes == 0) {
rc = EIO;
break;
}
bufp += wrbytes;
size -= wrbytes;
stream->bytes_out += wrbytes;
}
} else {
rc = stream->write(stream->data, buf, size, pwrite);
if (rc == 0)
stream->bytes_out += *pwrite;
}
_stream_seterror(stream, rc, rc != 0);
return rc;
}
static int
_stream_fill_buffer(dico_stream_t stream)
{
size_t n;
int rc = 0;
char c;
switch (stream->buftype) {
case dico_buffer_none:
return 0;
case dico_buffer_full:
if (dico_stream_read_unbuffered(stream,
stream->buffer, stream->bufsize,
&stream->level))
return 1;
break;
case dico_buffer_line:
for (n = 0;
n < stream->bufsize
&& (rc = dico_stream_read_unbuffered(stream,
&c, 1, NULL)) == 0;) {
stream->buffer[n++] = c;
if (c == '\n')
break;
}
stream->level = n;
break;
}
stream->cur = stream->buffer;
return rc;
}
#define BUFFER_FULL_P(s) \
((s)->cur + (s)->level == (s)->buffer + (s)->bufsize)
static int
_stream_buffer_full_p(dico_stream_t stream)
{
switch (stream->buftype) {
case dico_buffer_none:
break;
case dico_buffer_line:
return BUFFER_FULL_P(stream)
|| memchr(stream->cur, '\n', stream->level) != NULL;
case dico_buffer_full:
return BUFFER_FULL_P(stream);
}
return 0;
}
static int
_stream_flush_buffer(dico_stream_t stream, int all)
{
char *end;
if (stream->flags & _STR_DIRTY) {
if ((stream->flags & DICO_STREAM_SEEK)
&& dico_stream_seek(stream,
- _stream_orig_level(stream),
DICO_SEEK_CUR) < 0)
return 1;
switch (stream->buftype) {
case dico_buffer_none:
abort(); /* should not happen */
case dico_buffer_full:
if (dico_stream_write_unbuffered(stream, stream->cur,
stream->level, NULL))
return 1;
_stream_advance_buffer(stream, stream->level);
break;
case dico_buffer_line:
if (stream->level == 0)
break;
for (end = memchr(stream->cur, '\n', stream->level);
end;
end = memchr(stream->cur, '\n', stream->level)) {
size_t size = end - stream->cur + 1;
int rc = dico_stream_write_unbuffered(stream, stream->cur,
size, NULL);
if (rc)
return rc;
_stream_advance_buffer(stream, size);
}
if ((all && stream->level) || BUFFER_FULL_P(stream)) {
int rc = dico_stream_write_unbuffered(stream, stream->cur,
stream->level, NULL);
if (rc)
return rc;
_stream_advance_buffer(stream, stream->level);
}
}
}
if (stream->level) {
if (stream->cur > stream->buffer)
memmove(stream->buffer, stream->cur, stream->level);
} else {
stream->flags &= ~_STR_DIRTY;
stream->level = 0;
}
stream->cur = stream->buffer;
return 0;
}
int
dico_stream_read(dico_stream_t stream, void *buf, size_t size, size_t *pread)
{
if (stream->buftype == dico_buffer_none)
return dico_stream_read_unbuffered(stream, buf, size, pread);
else {
char *bufp = buf;
size_t nbytes = 0;
if (stream->flags & _STR_ERR)
return stream->last_err;
while (size) {
size_t n;
if (stream->level == 0) {
if (_stream_fill_buffer(stream)) {
if (nbytes)
break;
return 1;
}
if (stream->level == 0)
break;
}
n = size;
if (n > stream->level)
n = stream->level;
memcpy(bufp, stream->cur, n);
_stream_advance_buffer(stream, n);
nbytes += n;
bufp += n;
size -= n;
if (stream->buftype == dico_buffer_line && bufp[-1] == '\n')
break;
}
if (pread)
*pread = nbytes;
else if (size)
return _stream_seterror(stream, EIO, 1);
}
return 0;
}
int
dico_stream_readln(dico_stream_t stream, char *buf, size_t size, size_t *pread)
{
int rc;
char c;
size_t n = 0;
if (size == 0)
return EIO;
size--;
for (n = 0; n < size && (rc = dico_stream_read(stream, &c, 1, NULL)) == 0;
n++) {
*buf++ = c;
if (c == '\n')
break;
}
*buf = 0;
if (pread)
*pread = n;
return rc;
}
int
dico_stream_getdelim(dico_stream_t stream, char **pbuf, size_t *psize,
int delim, size_t *pread)
{
int rc;
char *lineptr = *pbuf;
size_t n = *psize;
size_t cur_len = 0;
if (lineptr == NULL || n == 0) {
char *new_lineptr;
n = 120;
new_lineptr = realloc(lineptr, n);
if (new_lineptr == NULL)
return ENOMEM;
lineptr = new_lineptr;
}
for (;;) {
char c;
rc = dico_stream_read(stream, &c, 1, NULL);
if (rc)
break;
/* Make enough space for len+1 (for final NUL) bytes. */
if (cur_len + 1 >= n) {
char *new_lineptr;
if ((size_t) -1 / 3 * 2 <= n) {
rc = EOVERFLOW;
break;
}
n += (n + 1) / 2;
new_lineptr = realloc(lineptr, n);
if (new_lineptr == NULL) {
rc = ENOMEM;
break;
}
lineptr = new_lineptr;
}
lineptr[cur_len] = c;
cur_len++;
if (c == delim)
break;
}
lineptr[cur_len] = '\0';
*pbuf = lineptr;
*psize = n;
if (pread)
*pread = cur_len;
return rc;
}
int
dico_stream_getline(dico_stream_t stream, char **pbuf, size_t *psize,
size_t *pread)
{
return dico_stream_getdelim(stream, pbuf, psize, '\n', pread);
}
int
dico_stream_write(dico_stream_t stream, const void *buf, size_t size)
{
if (stream->buftype == dico_buffer_none)
return dico_stream_write_unbuffered(stream, buf, size, NULL);
else {
size_t nbytes = 0;
const char *bufp = buf;
if (stream->flags & _STR_ERR)
return stream->last_err;
while (1) {
size_t n;
if (_stream_buffer_full_p(stream)
&& _stream_flush_buffer(stream, 0))
return 1;
if (size == 0)
break;
n = stream->bufsize - stream->level;
if (n > size)
n = size;
memcpy(stream->cur + stream->level, bufp, n);
stream->level += n;
nbytes += n;
bufp += n;
size -= n;
stream->flags |= _STR_DIRTY;
}
}
return 0;
}
int
dico_stream_writeln(dico_stream_t stream, const char *buf, size_t size)
{
int rc;
if ((rc = dico_stream_write(stream, buf, size)) == 0)
rc = dico_stream_write(stream, "\n", 1);
return rc;
}
int
dico_stream_flush(dico_stream_t stream)
{
if (!stream) {
errno = EINVAL;
return 1;
}
if (_stream_flush_buffer(stream, 1))
return 1;
if (stream->flush)
return stream->flush(stream->data);
return 0;
}
int
dico_stream_close(dico_stream_t stream)
{
int rc = 0;
if (!stream)
return EINVAL;
dico_stream_flush(stream);
if (stream->close)
rc = stream->close(stream->data);
return rc;
}
int
dico_stream_size(dico_stream_t stream, off_t *psize)
{
int rc;
if (!stream->size)
return _stream_seterror(stream, ENOSYS, 0);
rc = stream->size(stream->data, psize);
return _stream_seterror(stream, rc, rc != 0);
}
void
dico_stream_destroy(dico_stream_t *stream)
{
if (!stream || !*stream)
return;
if ((*stream)->destroy)
(*stream)->destroy((*stream)->data);
free(*stream);
*stream = NULL;
}
off_t
dico_stream_bytes_in(dico_stream_t stream)
{
off_t val;
if (dico_stream_ioctl(stream, DICO_IOCTL_BYTES_IN, &val) == 0)
return val;
return stream->bytes_in;
}
off_t
dico_stream_bytes_out(dico_stream_t stream)
{
off_t val;
if (dico_stream_ioctl(stream, DICO_IOCTL_BYTES_OUT, &val) == 0)
return val;
return stream->bytes_out;
}
int
dico_stream_ioctl(dico_stream_t stream, int code, void *ptr)
{
if (stream->ctl == NULL) {
errno = ENOSYS;
return -1;
}
return stream->ctl(stream->data, code, ptr);
}
|