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 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958
|
/* -----------------------------------------------------------------------------
* This file is part of SWIG, which is licensed as a whole under version 3
* (or any later version) of the GNU General Public License. Some additional
* terms also apply to certain portions of SWIG. The full details of the SWIG
* license and copyrights can be found in the LICENSE and COPYRIGHT files
* included with the SWIG source code as distributed by the SWIG developers
* and at http://www.swig.org/legal.html.
*
* base.c
*
* This file contains the function entry points for dispatching methods on
* DOH objects. A number of small utility functions are also included.
* ----------------------------------------------------------------------------- */
#include "dohint.h"
/* -----------------------------------------------------------------------------
* DohDelete()
* ----------------------------------------------------------------------------- */
#ifndef SWIG_DEBUG_DELETE
#define SWIG_DEBUG_DELETE 0
#endif
void DohDelete(DOH *obj) {
DohBase *b = (DohBase *) obj;
DohObjInfo *objinfo;
if (!obj)
return;
if (!DohCheck(b)) {
#if SWIG_DEBUG_DELETE
fputs("DOH: Fatal error. Attempt to delete a non-doh object.\n", stderr);
abort();
#else
assert(0);
#endif
return;
}
if (b->flag_intern)
return;
assert(b->refcount > 0);
b->refcount--;
if (b->refcount <= 0) {
objinfo = b->type;
if (objinfo->doh_del) {
(objinfo->doh_del) (b);
} else {
if (b->data)
DohFree(b->data);
}
DohObjFree(b);
}
}
/* -----------------------------------------------------------------------------
* DohCopy()
* ----------------------------------------------------------------------------- */
DOH *DohCopy(const DOH *obj) {
DohBase *b = (DohBase *) obj;
DohObjInfo *objinfo;
if (!obj)
return 0;
if (!DohCheck(b)) {
#if SWIG_DEBUG_DELETE
fputs("DOH: Fatal error. Attempt to copy a non-doh object.\n", stderr);
abort();
#else
assert(0);
#endif
return 0;
}
objinfo = b->type;
if (objinfo->doh_copy) {
DohBase *bc = (DohBase *) (objinfo->doh_copy) (b);
if ((bc) && b->meta) {
bc->meta = Copy(b->meta);
}
return (DOH *) bc;
}
return 0;
}
void DohIncref(DOH *obj) {
Incref(obj);
}
/* -----------------------------------------------------------------------------
* DohClear()
* ----------------------------------------------------------------------------- */
void DohClear(DOH *obj) {
DohBase *b = (DohBase *) obj;
DohObjInfo *objinfo = b->type;
if (objinfo->doh_clear)
(objinfo->doh_clear) (b);
}
/* -----------------------------------------------------------------------------
* DohStr()
* ----------------------------------------------------------------------------- */
DOH *DohStr(const DOH *obj) {
char buffer[512];
DohBase *b = (DohBase *) obj;
DohObjInfo *objinfo;
if (DohCheck(b)) {
objinfo = b->type;
if (objinfo->doh_str) {
return (objinfo->doh_str) (b);
}
sprintf(buffer, "<Object '%s' at %p>", objinfo->objname, (void *) b);
return NewString(buffer);
} else {
return NewString(obj);
}
}
/* -----------------------------------------------------------------------------
* DohDump()
* ----------------------------------------------------------------------------- */
int DohDump(const DOH *obj, DOH *out) {
DohBase *b = (DohBase *) obj;
DohObjInfo *objinfo = b->type;
if (objinfo->doh_dump) {
return (objinfo->doh_dump) (b, out);
}
return 0;
}
/* -----------------------------------------------------------------------------
* DohLen() - Defaults to strlen() if not a DOH object
* ----------------------------------------------------------------------------- */
int DohLen(const DOH *obj) {
DohBase *b = (DohBase *) obj;
DohObjInfo *objinfo;
if (!b)
return 0;
if (DohCheck(b)) {
objinfo = b->type;
if (objinfo->doh_len) {
return (objinfo->doh_len) (b);
}
return 0;
} else {
return (int)strlen((char *) obj);
}
}
/* -----------------------------------------------------------------------------
* DohHashVal()
* ----------------------------------------------------------------------------- */
int DohHashval(const DOH *obj) {
DohBase *b = (DohBase *) obj;
DohObjInfo *objinfo;
/* obj is already checked and/or converted into DohBase* */
/* if (DohCheck(b)) */
{
objinfo = b->type;
if (objinfo->doh_hashval) {
return (objinfo->doh_hashval) (b);
}
}
return 0;
}
/* -----------------------------------------------------------------------------
* DohData()
* ----------------------------------------------------------------------------- */
void *DohData(const DOH *obj) {
DohBase *b = (DohBase *) obj;
DohObjInfo *objinfo;
if (DohCheck(obj)) {
objinfo = b->type;
if (objinfo->doh_data) {
return (objinfo->doh_data) (b);
}
return 0;
}
return (void *) obj;
}
/* -----------------------------------------------------------------------------
* RawData()
* ----------------------------------------------------------------------------- */
static void *RawData(DohBase *b) {
DohObjInfo *objinfo = b->type;
return (objinfo->doh_data) ? (objinfo->doh_data) (b) : 0;
}
/* -----------------------------------------------------------------------------
* DohCmp()
* ----------------------------------------------------------------------------- */
int DohCmp(const DOH *obj1, const DOH *obj2) {
DohBase *b1, *b2;
DohObjInfo *b1info, *b2info;
int c1, c2;
b1 = (DohBase *) obj1;
b2 = (DohBase *) obj2;
c1 = DohCheck(b1);
c2 = DohCheck(b2);
/* most of the times, obj2 is a plain c string */
if (!c1 || !c2) {
if ((b1 == 0) && (b2 == 0))
return 0;
if (b1 && !b2)
return 1;
if (!b1 && b2)
return -1;
return strcmp((char *) (c1 ? RawData(b1) : (void *) obj1), (char *) (c2 ? RawData(b2) : (void *) obj2));
}
b1info = b1->type;
b2info = b2->type;
if ((b1info == b2info) && (b1info->doh_cmp))
return (b1info->doh_cmp) (b1, b2);
return 1;
}
/* -----------------------------------------------------------------------------
* DohEqual()
* ----------------------------------------------------------------------------- */
int DohEqual(const DOH *obj1, const DOH *obj2) {
DohBase *b1 = (DohBase *) obj1;
DohBase *b2 = (DohBase *) obj2;
if (!b1) {
return !b2;
} else if (!b2) {
return 0;
} else {
DohObjInfo *b1info = 0;
DohObjInfo *b2info = 0;
if (DohCheck(b1)) {
b1info = b1->type;
if (DohCheck(b2)) {
b2info = b2->type;
} else {
int len = (b1info->doh_len) (b1);
char *cobj = (char *) obj2;
return len == (int) strlen(cobj) ? (memcmp(RawData(b1), cobj, len) == 0) : 0;
}
} else if (DohCheck(b2)) {
int len = (b2->type->doh_len) (b2);
char *cobj = (char *) obj1;
return len == (int) strlen(cobj) ? (memcmp(RawData(b2), cobj, len) == 0) : 0;
} else {
return strcmp((char *) obj1, (char *) obj2) == 0;
}
if (!b1info) {
return obj1 == obj2;
} else if (b1info == b2info) {
return b1info->doh_equal ? (b1info->doh_equal) (b1, b2) : (b1info->doh_cmp ? (b1info->doh_cmp) (b1, b2) == 0 : (b1 == b2));
} else {
return 0;
}
}
}
/* -----------------------------------------------------------------------------
* DohFirst()
* ----------------------------------------------------------------------------- */
DohIterator DohFirst(DOH *obj) {
DohIterator iter;
DohBase *b;
DohObjInfo *binfo;
b = (DohBase *) obj;
if (DohCheck(b)) {
binfo = b->type;
if (binfo->doh_first) {
return (binfo->doh_first) (b);
}
}
iter.object = 0;
iter.item = 0;
iter.key = 0;
iter._current = 0;
iter._index = 0;
return iter;
}
/* -----------------------------------------------------------------------------
* DohNext()
* ----------------------------------------------------------------------------- */
DohIterator DohNext(DohIterator iter) {
DohIterator niter;
if (iter.object) {
DohBase *b;
DohObjInfo *binfo;
b = (DohBase *) iter.object;
binfo = b->type;
if (binfo->doh_next) {
return (binfo->doh_next) (iter);
}
}
niter = iter;
return niter;
}
/* -----------------------------------------------------------------------------
* DohIsMapping()
* ----------------------------------------------------------------------------- */
int DohIsMapping(const DOH *obj) {
DohBase *b = (DohBase *) obj;
DohObjInfo *objinfo;
if (!DohCheck(b))
return 0;
objinfo = b->type;
if (objinfo->doh_hash)
return 1;
else
return 0;
}
/* -----------------------------------------------------------------------------
* DohGetattr()
* ----------------------------------------------------------------------------- */
DOH *DohGetattr(DOH *obj, const DOH *name) {
DohBase *b = (DohBase *) obj;
DohObjInfo *objinfo = b->type;
if (objinfo->doh_hash && objinfo->doh_hash->doh_getattr) {
DOH *r = (objinfo->doh_hash->doh_getattr) (b, (DOH *) name);
return (r == DohNone) ? 0 : r;
}
return 0;
}
/* -----------------------------------------------------------------------------
* DohSetattr()
* ----------------------------------------------------------------------------- */
int DohSetattr(DOH *obj, const DOH *name, const DOH *value) {
DohBase *b = (DohBase *) obj;
DohObjInfo *objinfo = b->type;
if (objinfo->doh_hash && objinfo->doh_hash->doh_setattr) {
return (objinfo->doh_hash->doh_setattr) (b, (DOH *) name, (DOH *) value);
}
return 0;
}
/* -----------------------------------------------------------------------------
* DohDelattr()
* ----------------------------------------------------------------------------- */
int DohDelattr(DOH *obj, const DOH *name) {
DohBase *b = (DohBase *) obj;
DohObjInfo *objinfo = b->type;
if (objinfo->doh_hash && objinfo->doh_hash->doh_delattr) {
return (objinfo->doh_hash->doh_delattr) (b, (DOH *) name);
}
return 0;
}
/* -----------------------------------------------------------------------------
* DohCheckattr()
* ----------------------------------------------------------------------------- */
int DohCheckattr(DOH *obj, const DOH *name, const DOH *value) {
DOH *attr = Getattr(obj,name);
if (!attr) return 0;
return DohEqual(attr,value);
}
/* -----------------------------------------------------------------------------
* DohKeys()
* ----------------------------------------------------------------------------- */
DOH *DohKeys(DOH *obj) {
DohBase *b = (DohBase *) obj;
DohObjInfo *objinfo = b->type;
if (objinfo && objinfo->doh_hash->doh_keys) {
return (objinfo->doh_hash->doh_keys) (b);
}
return 0;
}
/* -----------------------------------------------------------------------------
* DohGetInt()
* ----------------------------------------------------------------------------- */
int DohGetInt(DOH *obj, const DOH *name) {
DOH *val;
val = Getattr(obj, (DOH *) name);
if (!val)
return 0;
if (DohIsString(val)) {
return atoi((char *) Data(val));
}
return 0;
}
/* -----------------------------------------------------------------------------
* DohGetDouble()
* ----------------------------------------------------------------------------- */
double DohGetDouble(DOH *obj, const DOH *name) {
DOH *val;
val = Getattr(obj, (DOH *) name);
if (!val)
return 0;
if (DohIsString(val)) {
return atof((char *) Data(val));
}
return 0;
}
/* -----------------------------------------------------------------------------
* DohGetChar()
* ----------------------------------------------------------------------------- */
char *DohGetChar(DOH *obj, const DOH *name) {
DOH *val;
val = Getattr(obj, (DOH *) name);
if (!val)
return 0;
if (DohIsString(val)) {
return (char *) Data(val);
}
return 0;
}
/* -----------------------------------------------------------------------------
* DohGetFlagAttr() / DohGetFlag()
* A flag is unset if the attribute (name) does not exist on the node (obj),
* or it is set to "0". If the attribute is set to any other value,
* the flag is set.
*
* DohGetFlag() returns if the flag is set or not
* DohGetFlagAttr() returns the flag value if is set, NULL otherwise
* ----------------------------------------------------------------------------- */
DOH *DohGetFlagAttr(DOH *obj, const DOH *name) {
DOH *val = Getattr(obj, (DOH *) name);
if (!val) {
return NULL;
} else {
const char *cval = Char(val);
if (!cval)
return val;
return (strcmp(cval, "0") != 0) ? val : NULL;
}
}
int DohGetFlag(DOH *obj, const DOH *name) {
return DohGetFlagAttr(obj, name) ? 1 : 0;
}
/* -----------------------------------------------------------------------------
* DohGetVoid()
* ----------------------------------------------------------------------------- */
void *DohGetVoid(DOH *obj, const DOH *name) {
DOH *val;
val = Getattr(obj, (DOH *) name);
if (!val)
return 0;
return (void *) Data(val);
}
/* -----------------------------------------------------------------------------
* DohSetInt()
* ----------------------------------------------------------------------------- */
void DohSetInt(DOH *obj, const DOH *name, int value) {
DOH *temp;
temp = NewStringEmpty();
Printf(temp, "%d", value);
Setattr(obj, (DOH *) name, temp);
}
/* -----------------------------------------------------------------------------
* DohSetDouble()
* ----------------------------------------------------------------------------- */
void DohSetDouble(DOH *obj, const DOH *name, double value) {
DOH *temp;
temp = NewStringEmpty();
Printf(temp, "%0.17f", value);
Setattr(obj, (DOH *) name, temp);
}
/* -----------------------------------------------------------------------------
* DohSetChar()
* ----------------------------------------------------------------------------- */
void DohSetChar(DOH *obj, const DOH *name, char *value) {
Setattr(obj, (DOH *) name, NewString(value));
}
/* -----------------------------------------------------------------------------
* DohSetFlag()
* ----------------------------------------------------------------------------- */
void DohSetFlagAttr(DOH *obj, const DOH *name, const DOH *attr) {
Setattr(obj, (DOH *) name, attr ? attr : NewString("0"));
}
void DohSetFlag(DOH *obj, const DOH *name) {
Setattr(obj, (DOH *) name, NewString("1"));
}
/* -----------------------------------------------------------------------------
* DohSetVoid()
* ----------------------------------------------------------------------------- */
void DohSetVoid(DOH *obj, const DOH *name, void *value) {
Setattr(obj, (DOH *) name, NewVoid(value, 0));
}
/* -----------------------------------------------------------------------------
* DohIsSequence()
* ----------------------------------------------------------------------------- */
int DohIsSequence(const DOH *obj) {
DohBase *b = (DohBase *) obj;
DohObjInfo *objinfo;
if (!DohCheck(b))
return 0;
objinfo = b->type;
if (objinfo->doh_list)
return 1;
else
return 0;
}
/* -----------------------------------------------------------------------------
* DohGetitem()
* ----------------------------------------------------------------------------- */
DOH *DohGetitem(DOH *obj, int index) {
DohBase *b = (DohBase *) obj;
DohObjInfo *objinfo = b->type;
if (objinfo->doh_list && objinfo->doh_list->doh_getitem) {
return (objinfo->doh_list->doh_getitem) (b, index);
}
return 0;
}
/* -----------------------------------------------------------------------------
* DohSetitem()
* ----------------------------------------------------------------------------- */
int DohSetitem(DOH *obj, int index, const DOH *value) {
DohBase *b = (DohBase *) obj;
DohObjInfo *objinfo = b->type;
if (objinfo->doh_list && objinfo->doh_list->doh_setitem) {
return (objinfo->doh_list->doh_setitem) (b, index, (DOH *) value);
}
return -1;
}
/* -----------------------------------------------------------------------------
* DohDelitem()
* ----------------------------------------------------------------------------- */
int DohDelitem(DOH *obj, int index) {
DohBase *b = (DohBase *) obj;
DohObjInfo *objinfo = b->type;
if (objinfo->doh_list && objinfo->doh_list->doh_delitem) {
return (objinfo->doh_list->doh_delitem) (b, index);
}
return -1;
}
/* -----------------------------------------------------------------------------
* DohInsertitem()
* ----------------------------------------------------------------------------- */
int DohInsertitem(DOH *obj, int index, const DOH *value) {
DohBase *b = (DohBase *) obj;
DohObjInfo *objinfo = b->type;
if (objinfo->doh_list && objinfo->doh_list->doh_insitem) {
return (objinfo->doh_list->doh_insitem) (b, index, (DOH *) value);
}
return -1;
}
/* -----------------------------------------------------------------------------
* DohDelslice()
* ----------------------------------------------------------------------------- */
int DohDelslice(DOH *obj, int sindex, int eindex) {
DohBase *b = (DohBase *) obj;
DohObjInfo *objinfo = b->type;
if (objinfo->doh_list && objinfo->doh_list->doh_delslice) {
return (objinfo->doh_list->doh_delslice) (b, sindex, eindex);
}
return -1;
}
/* -----------------------------------------------------------------------------
* DohIsFile()
* ----------------------------------------------------------------------------- */
int DohIsFile(const DOH *obj) {
DohBase *b = (DohBase *) obj;
DohObjInfo *objinfo;
if (!DohCheck(b))
return 0;
objinfo = b->type;
if (objinfo->doh_file)
return 1;
else
return 0;
}
/* -----------------------------------------------------------------------------
* DohRead()
* ----------------------------------------------------------------------------- */
int DohRead(DOH *obj, void *buffer, int length) {
DohBase *b = (DohBase *) obj;
DohObjInfo *objinfo;
if (DohCheck(obj)) {
objinfo = b->type;
if ((objinfo->doh_file) && (objinfo->doh_file->doh_read)) {
return (objinfo->doh_file->doh_read) (b, buffer, length);
}
return -1;
}
/* Hmmm. Not a file. Maybe it's a real FILE */
return (int)fread(buffer, 1, length, (FILE *) b);
}
/* -----------------------------------------------------------------------------
* DohWrite()
* ----------------------------------------------------------------------------- */
int DohWrite(DOH *obj, const void *buffer, int length) {
DohBase *b = (DohBase *) obj;
DohObjInfo *objinfo;
if (DohCheck(obj)) {
objinfo = b->type;
if ((objinfo->doh_file) && (objinfo->doh_file->doh_write)) {
return (objinfo->doh_file->doh_write) (b, buffer, length);
}
return -1;
}
/* Hmmm. Not a file. Maybe it's a real FILE */
return (int)fwrite(buffer, 1, length, (FILE *) b);
}
/* -----------------------------------------------------------------------------
* DohSeek()
* ----------------------------------------------------------------------------- */
int DohSeek(DOH *obj, long offset, int whence) {
DohBase *b = (DohBase *) obj;
DohObjInfo *objinfo;
if (DohCheck(obj)) {
objinfo = b->type;
if ((objinfo->doh_file) && (objinfo->doh_file->doh_seek)) {
return (objinfo->doh_file->doh_seek) (b, offset, whence);
}
return -1;
}
return fseek((FILE *) b, offset, whence);
}
/* -----------------------------------------------------------------------------
* DohTell()
* ----------------------------------------------------------------------------- */
long DohTell(DOH *obj) {
DohBase *b = (DohBase *) obj;
DohObjInfo *objinfo;
if (DohCheck(obj)) {
objinfo = b->type;
if ((objinfo->doh_file) && (objinfo->doh_file->doh_tell)) {
return (objinfo->doh_file->doh_tell) (b);
}
return -1;
}
return ftell((FILE *) b);
}
/* -----------------------------------------------------------------------------
* DohGetc()
* ----------------------------------------------------------------------------- */
int DohGetc(DOH *obj) {
static DOH *lastdoh = 0;
DohBase *b = (DohBase *) obj;
DohObjInfo *objinfo;
if (obj == lastdoh) {
objinfo = b->type;
return (objinfo->doh_file->doh_getc) (b);
}
if (DohCheck(obj)) {
objinfo = b->type;
if (objinfo->doh_file->doh_getc) {
lastdoh = obj;
return (objinfo->doh_file->doh_getc) (b);
}
return EOF;
}
return fgetc((FILE *) b);
}
/* -----------------------------------------------------------------------------
* DohPutc()
* ----------------------------------------------------------------------------- */
int DohPutc(int ch, DOH *obj) {
static DOH *lastdoh = 0;
DohBase *b = (DohBase *) obj;
DohObjInfo *objinfo;
if (obj == lastdoh) {
objinfo = b->type;
return (objinfo->doh_file->doh_putc) (b, ch);
}
if (DohCheck(obj)) {
objinfo = b->type;
if (objinfo->doh_file->doh_putc) {
lastdoh = obj;
return (objinfo->doh_file->doh_putc) (b, ch);
}
return EOF;
}
return fputc(ch, (FILE *) b);
}
/* -----------------------------------------------------------------------------
* DohUngetc()
* ----------------------------------------------------------------------------- */
int DohUngetc(int ch, DOH *obj) {
DohBase *b = (DohBase *) obj;
DohObjInfo *objinfo;
if (DohCheck(obj)) {
objinfo = b->type;
if (objinfo->doh_file->doh_ungetc) {
return (objinfo->doh_file->doh_ungetc) (b, ch);
}
return EOF;
}
return ungetc(ch, (FILE *) b);
}
/* -----------------------------------------------------------------------------
* DohClose()
* ----------------------------------------------------------------------------- */
/*
int DohClose(DOH *obj) {
DohBase *b = (DohBase *) obj;
DohObjInfo *objinfo;
if (DohCheck(obj)) {
objinfo = b->type;
if (objinfo->doh_file->doh_close) {
return (objinfo->doh_file->doh_close) (b);
}
return 0;
}
return fclose((FILE *) obj);
}
*/
/* -----------------------------------------------------------------------------
* DohIsString()
* ----------------------------------------------------------------------------- */
int DohIsString(const DOH *obj) {
DohBase *b = (DohBase *) obj;
DohObjInfo *objinfo;
if (!DohCheck(b))
return 0;
objinfo = b->type;
if (objinfo->doh_string)
return 1;
else
return 0;
}
/* -----------------------------------------------------------------------------
* DohReplace()
* ----------------------------------------------------------------------------- */
int DohReplace(DOH *src, const DOH *token, const DOH *rep, int flags) {
DohBase *b = (DohBase *) src;
DohObjInfo *objinfo;
if (!token)
return 0;
if (!rep)
rep = "";
if (DohIsString(src)) {
objinfo = b->type;
if (objinfo->doh_string->doh_replace) {
return (objinfo->doh_string->doh_replace) (b, (DOH *) token, (DOH *) rep, flags);
}
}
return 0;
}
/* -----------------------------------------------------------------------------
* DohChop()
* ----------------------------------------------------------------------------- */
void DohChop(DOH *src) {
DohBase *b = (DohBase *) src;
DohObjInfo *objinfo;
if (DohIsString(src)) {
objinfo = b->type;
if (objinfo->doh_string->doh_chop) {
(objinfo->doh_string->doh_chop) (b);
}
}
}
/* -----------------------------------------------------------------------------
* DohSetFile()
* ----------------------------------------------------------------------------- */
void DohSetfile(DOH *ho, DOH *file) {
DohBase *h = (DohBase *) ho;
DohObjInfo *objinfo;
if (!h)
return;
objinfo = h->type;
if (objinfo->doh_setfile)
(objinfo->doh_setfile) (h, file);
}
/* -----------------------------------------------------------------------------
* DohGetFile()
* ----------------------------------------------------------------------------- */
DOH *DohGetfile(const DOH *ho) {
DohBase *h = (DohBase *) ho;
DohObjInfo *objinfo;
if (!h)
return 0;
objinfo = h->type;
if (objinfo->doh_getfile)
return (objinfo->doh_getfile) (h);
return 0;
}
/* -----------------------------------------------------------------------------
* DohSetLine()
* ----------------------------------------------------------------------------- */
void DohSetline(DOH *ho, int l) {
DohBase *h = (DohBase *) ho;
DohObjInfo *objinfo;
if (!h)
return;
objinfo = h->type;
if (objinfo->doh_setline)
(objinfo->doh_setline) (h, l);
}
/* -----------------------------------------------------------------------------
* DohGetLine()
* ----------------------------------------------------------------------------- */
int DohGetline(const DOH *ho) {
DohBase *h = (DohBase *) ho;
DohObjInfo *objinfo;
if (!h)
return 0;
objinfo = h->type;
if (objinfo->doh_getline)
return (objinfo->doh_getline) (h);
return 0;
}
/* -----------------------------------------------------------------------------
* DohGetmeta()
* ----------------------------------------------------------------------------- */
DOH *DohGetmeta(DOH *ho, const DOH *name) {
DohBase *h = (DohBase *) ho;
if (!DohCheck(ho))
return 0;
if (!h->meta)
return 0;
return DohGetattr(h->meta, name);
}
/* -----------------------------------------------------------------------------
* DohGetmeta()
* ----------------------------------------------------------------------------- */
int DohSetmeta(DOH *ho, const DOH *name, const DOH *value) {
DohBase *h = (DohBase *) ho;
if (!DohCheck(ho))
return 0;
if (!h->meta)
h->meta = NewHash();
return DohSetattr(h->meta, name, value);
}
/* -----------------------------------------------------------------------------
* DohDelmeta()
* ----------------------------------------------------------------------------- */
int DohDelmeta(DOH *ho, const DOH *name) {
DohBase *h = (DohBase *) ho;
if (!DohCheck(ho))
return 0;
if (!h->meta)
return 0;
return DohDelattr(h->meta, name);
}
/* -----------------------------------------------------------------------------
* DohSetmark()
* ----------------------------------------------------------------------------- */
void DohSetmark(DOH *ho, int x) {
DohBase *h = (DohBase *) ho;
h->flag_usermark = x;
}
int DohGetmark(DOH *ho) {
DohBase *h = (DohBase *) ho;
return h->flag_usermark;
}
/* -----------------------------------------------------------------------------
* DohCall()
*
* Invokes a function via DOH. A Function is represented by a hash table with
* the following attributes:
*
* "builtin" - Pointer to built-in function (if any)
*
* (Additional attributes may be added later)
*
* Returns a DOH object with result on success. Returns NULL on error
* ----------------------------------------------------------------------------- */
DOH *DohCall(DOH *func, DOH *args) {
DOH *result;
DohFuncPtr_t builtin;
builtin.p = GetVoid(func, "builtin");
if (!builtin.p)
return 0;
result = (*builtin.func) (args);
return result;
}
|