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 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497
|
/* ----------------------------------------------------------------------
* RPly library, read/write PLY files
* Diego Nehab, Princeton University
* http://www.cs.princeton.edu/~diego/professional/rply
*
* This library is distributed under the MIT License. See notice
* at the end of this file.
* ---------------------------------------------------------------------- */
#include <stdio.h>
#include <ctype.h>
#include <assert.h>
#include <string.h>
#include <limits.h>
#include <float.h>
#include <stdarg.h>
#include <stdlib.h>
#include <stddef.h>
#include "rply.h"
/* ----------------------------------------------------------------------
* Constants
* ---------------------------------------------------------------------- */
#define WORDSIZE 256
#define LINESIZE 1024
#define BUFFERSIZE (8*1024)
typedef enum e_ply_io_mode_ {
PLY_READ,
PLY_WRITE
} e_ply_io_mode;
static const char *const ply_storage_mode_list[] = {
"binary_big_endian", "binary_little_endian", "ascii", NULL
}; /* order matches e_ply_storage_mode enum */
static const char *const ply_type_list[] = {
"int8", "uint8", "int16", "uint16",
"int32", "uint32", "float32", "float64",
"char", "uchar", "short", "ushort",
"int", "uint", "float", "double",
"list", NULL
}; /* order matches e_ply_type enum */
/* ----------------------------------------------------------------------
* Property reading callback argument
*
* element: name of element being processed
* property: name of property being processed
* nelements: number of elements of this kind in file
* instance_index: index current element of this kind being processed
* length: number of values in current list (or 1 for scalars)
* value_index: index of current value int this list (or 0 for scalars)
* value: value of property
* pdata/idata: user data defined with ply_set_cb
*
* Returns handle to ply file if succesful, NULL otherwise.
* ---------------------------------------------------------------------- */
typedef struct t_ply_argument_ {
p_ply_element element;
long instance_index;
p_ply_property property;
long length, value_index;
double value;
void *pdata;
long idata;
} t_ply_argument;
/* ----------------------------------------------------------------------
* Property information
*
* name: name of this property
* type: type of this property (list or type of scalar value)
* length_type, value_type: type of list property count and values
* read_cb: function to be called when this property is called
*
* Returns 1 if should continue processing file, 0 if should abort.
* ---------------------------------------------------------------------- */
typedef struct t_ply_property_ {
char name[WORDSIZE];
e_ply_type type, value_type, length_type;
p_ply_read_cb read_cb;
void *pdata;
long idata;
} t_ply_property;
/* ----------------------------------------------------------------------
* Element information
*
* name: name of this property
* ninstances: number of elements of this type in file
* property: property descriptions for this element
* nproperty: number of properties in this element
*
* Returns 1 if should continue processing file, 0 if should abort.
* ---------------------------------------------------------------------- */
typedef struct t_ply_element_ {
char name[WORDSIZE];
long ninstances;
p_ply_property property;
long nproperties;
} t_ply_element;
/* ----------------------------------------------------------------------
* Input/output driver
*
* Depending on file mode, different functions are used to read/write
* property fields. The drivers make it transparent to read/write in ascii,
* big endian or little endian cases.
* ---------------------------------------------------------------------- */
typedef int (*p_ply_ihandler)(p_ply ply, double *value);
typedef int (*p_ply_ichunk)(p_ply ply, void *anydata, size_t size);
typedef struct t_ply_idriver_ {
p_ply_ihandler ihandler[16];
p_ply_ichunk ichunk;
const char *name;
} t_ply_idriver;
typedef t_ply_idriver *p_ply_idriver;
typedef int (*p_ply_ohandler)(p_ply ply, double value);
typedef int (*p_ply_ochunk)(p_ply ply, void *anydata, size_t size);
typedef struct t_ply_odriver_ {
p_ply_ohandler ohandler[16];
p_ply_ochunk ochunk;
const char *name;
} t_ply_odriver;
typedef t_ply_odriver *p_ply_odriver;
/* ----------------------------------------------------------------------
* Ply file handle.
*
* io_mode: read or write (from e_ply_io_mode)
* storage_mode: mode of file associated with handle (from e_ply_storage_mode)
* element: elements description for this file
* nelement: number of different elements in file
* comment: comments for this file
* ncomments: number of comments in file
* obj_info: obj_info items for this file
* nobj_infos: number of obj_info items in file
* fp: file pointer associated with ply file
* c: last character read from ply file
* buffer: last word/chunck of data read from ply file
* buffer_first, buffer_last: interval of untouched good data in buffer
* buffer_token: start of parsed token (line or word) in buffer
* idriver, odriver: input driver used to get property fields from file
* argument: storage space for callback arguments
* welement, wproperty: element/property type being written
* winstance_index: index of instance of current element being written
* wvalue_index: index of list property value being written
* wlength: number of values in list property being written
* error_cb: callback for error messages
* ---------------------------------------------------------------------- */
typedef struct t_ply_ {
e_ply_io_mode io_mode;
e_ply_storage_mode storage_mode;
p_ply_element element;
long nelements;
char *comment;
long ncomments;
char *obj_info;
long nobj_infos;
FILE *fp;
int c;
char buffer[BUFFERSIZE];
size_t buffer_first, buffer_token, buffer_last;
p_ply_idriver idriver;
p_ply_odriver odriver;
t_ply_argument argument;
long welement, wproperty;
long winstance_index, wvalue_index, wlength;
p_ply_error_cb error_cb;
} t_ply;
/* ----------------------------------------------------------------------
* I/O functions and drivers
* ---------------------------------------------------------------------- */
static t_ply_idriver ply_idriver_ascii;
static t_ply_idriver ply_idriver_binary;
static t_ply_idriver ply_idriver_binary_reverse;
static t_ply_odriver ply_odriver_ascii;
static t_ply_odriver ply_odriver_binary;
static t_ply_odriver ply_odriver_binary_reverse;
static int ply_read_word(p_ply ply);
static int ply_check_word(p_ply ply);
static int ply_read_line(p_ply ply);
static int ply_check_line(p_ply ply);
static int ply_read_chunk(p_ply ply, void *anybuffer, size_t size);
static int ply_read_chunk_reverse(p_ply ply, void *anybuffer, size_t size);
static int ply_write_chunk(p_ply ply, void *anybuffer, size_t size);
static int ply_write_chunk_reverse(p_ply ply, void *anybuffer, size_t size);
static void ply_reverse(void *anydata, size_t size);
/* ----------------------------------------------------------------------
* String functions
* ---------------------------------------------------------------------- */
static int ply_find_string(const char *item, const char* const list[]);
static p_ply_element ply_find_element(p_ply ply, const char *name);
static p_ply_property ply_find_property(p_ply_element element,
const char *name);
/* ----------------------------------------------------------------------
* Header parsing
* ---------------------------------------------------------------------- */
static int ply_read_header_format(p_ply ply);
static int ply_read_header_comment(p_ply ply);
static int ply_read_header_obj_info(p_ply ply);
static int ply_read_header_property(p_ply ply);
static int ply_read_header_element(p_ply ply);
/* ----------------------------------------------------------------------
* Error handling
* ---------------------------------------------------------------------- */
static void ply_error_cb(const char *message);
static void ply_error(p_ply ply, const char *fmt, ...);
/* ----------------------------------------------------------------------
* Memory allocation and initialization
* ---------------------------------------------------------------------- */
static void ply_init(p_ply ply);
static void ply_element_init(p_ply_element element);
static void ply_property_init(p_ply_property property);
static p_ply ply_alloc(void);
static p_ply_element ply_grow_element(p_ply ply);
static p_ply_property ply_grow_property(p_ply ply, p_ply_element element);
static void *ply_grow_array(p_ply ply, void **pointer, long *nmemb, long size);
/* ----------------------------------------------------------------------
* Special functions
* ---------------------------------------------------------------------- */
static e_ply_storage_mode ply_arch_endian(void);
static int ply_type_check(void);
/* ----------------------------------------------------------------------
* Auxiliary read functions
* ---------------------------------------------------------------------- */
static int ply_read_element(p_ply ply, p_ply_element element,
p_ply_argument argument);
static int ply_read_property(p_ply ply, p_ply_element element,
p_ply_property property, p_ply_argument argument);
static int ply_read_list_property(p_ply ply, p_ply_element element,
p_ply_property property, p_ply_argument argument);
static int ply_read_scalar_property(p_ply ply, p_ply_element element,
p_ply_property property, p_ply_argument argument);
/* ----------------------------------------------------------------------
* Buffer support functions
* ---------------------------------------------------------------------- */
/* pointers to tokenized word and line in buffer */
#define BWORD(p) (p->buffer + p->buffer_token)
#define BLINE(p) (p->buffer + p->buffer_token)
/* pointer to start of untouched bytes in buffer */
#define BFIRST(p) (p->buffer + p->buffer_first)
/* number of bytes untouched in buffer */
#define BSIZE(p) (p->buffer_last - p->buffer_first)
/* consumes data from buffer */
#define BSKIP(p, s) (p->buffer_first += s)
/* refills the buffer */
static int BREFILL(p_ply ply) {
/* move untouched data to beginning of buffer */
size_t size = BSIZE(ply);
memmove(ply->buffer, BFIRST(ply), size);
ply->buffer_last = size;
ply->buffer_first = ply->buffer_token = 0;
/* fill remaining with new data */
size = fread(ply->buffer+size, 1, BUFFERSIZE-size-1, ply->fp);
/* place sentinel so we can use str* functions with buffer */
ply->buffer[BUFFERSIZE-1] = '\0';
/* check if read failed */
if (size <= 0) return 0;
/* increase size to account for new data */
ply->buffer_last += size;
return 1;
}
/* ----------------------------------------------------------------------
* Exported functions
* ---------------------------------------------------------------------- */
/* ----------------------------------------------------------------------
* Read support functions
* ---------------------------------------------------------------------- */
p_ply ply_open(const char *name, p_ply_error_cb error_cb) {
char magic[5] = " ";
FILE *fp = NULL;
p_ply ply = NULL;
if (error_cb == NULL) error_cb = ply_error_cb;
if (!ply_type_check()) {
error_cb("Incompatible type system");
return NULL;
}
assert(name);
fp = fopen(name, "rb");
if (!fp) {
error_cb("Unable to open file");
return NULL;
}
if (fread(magic, 1, 4, fp) < 4) {
error_cb("Error reading from file");
fclose(fp);
return NULL;
}
if (strcmp(magic, "ply\n")) {
fclose(fp);
error_cb("Not a PLY file. Expected magic number 'ply\\n'");
return NULL;
}
ply = ply_alloc();
if (!ply) {
error_cb("Out of memory");
fclose(fp);
return NULL;
}
ply->fp = fp;
ply->io_mode = PLY_READ;
ply->error_cb = error_cb;
return ply;
}
int ply_read_header(p_ply ply) {
assert(ply && ply->fp && ply->io_mode == PLY_READ);
if (!ply_read_word(ply)) return 0;
/* parse file format */
if (!ply_read_header_format(ply)) {
ply_error(ply, "Invalid file format");
return 0;
}
/* parse elements, comments or obj_infos until the end of header */
while (strcmp(BWORD(ply), "end_header")) {
if (!ply_read_header_comment(ply) &&
!ply_read_header_element(ply) &&
!ply_read_header_obj_info(ply)) {
ply_error(ply, "Unexpected token '%s'", BWORD(ply));
return 0;
}
}
return 1;
}
long ply_set_read_cb(p_ply ply, const char *element_name,
const char* property_name, p_ply_read_cb read_cb,
void *pdata, long idata) {
p_ply_element element = NULL;
p_ply_property property = NULL;
assert(ply && element_name && property_name);
element = ply_find_element(ply, element_name);
if (!element) return 0;
property = ply_find_property(element, property_name);
if (!property) return 0;
property->read_cb = read_cb;
property->pdata = pdata;
property->idata = idata;
return (int) element->ninstances;
}
int ply_read(p_ply ply) {
long i;
p_ply_argument argument;
assert(ply && ply->fp && ply->io_mode == PLY_READ);
argument = &ply->argument;
/* for each element type */
for (i = 0; i < ply->nelements; i++) {
p_ply_element element = &ply->element[i];
argument->element = element;
if (!ply_read_element(ply, element, argument))
return 0;
}
return 1;
}
/* ----------------------------------------------------------------------
* Write support functions
* ---------------------------------------------------------------------- */
p_ply ply_create(const char *name, e_ply_storage_mode storage_mode,
p_ply_error_cb error_cb) {
FILE *fp = NULL;
p_ply ply = NULL;
if (error_cb == NULL) error_cb = ply_error_cb;
if (!ply_type_check()) {
error_cb("Incompatible type system");
return NULL;
}
assert(name && storage_mode <= PLY_DEFAULT);
fp = fopen(name, "wb");
if (!fp) {
error_cb("Unable to create file");
return NULL;
}
ply = ply_alloc();
if (!ply) {
fclose(fp);
error_cb("Out of memory");
return NULL;
}
ply->io_mode = PLY_WRITE;
if (storage_mode == PLY_DEFAULT) storage_mode = ply_arch_endian();
if (storage_mode == PLY_ASCII) ply->odriver = &ply_odriver_ascii;
else if (storage_mode == ply_arch_endian())
ply->odriver = &ply_odriver_binary;
else ply->odriver = &ply_odriver_binary_reverse;
ply->storage_mode = storage_mode;
ply->fp = fp;
ply->error_cb = error_cb;
return ply;
}
int ply_add_element(p_ply ply, const char *name, long ninstances) {
p_ply_element element = NULL;
assert(ply && ply->fp && ply->io_mode == PLY_WRITE);
assert(name && strlen(name) < WORDSIZE && ninstances >= 0);
if (strlen(name) >= WORDSIZE || ninstances < 0) {
ply_error(ply, "Invalid arguments");
return 0;
}
element = ply_grow_element(ply);
if (!element) return 0;
strcpy(element->name, name);
element->ninstances = ninstances;
return 1;
}
int ply_add_scalar_property(p_ply ply, const char *name, e_ply_type type) {
p_ply_element element = NULL;
p_ply_property property = NULL;
assert(ply && ply->fp && ply->io_mode == PLY_WRITE);
assert(name && strlen(name) < WORDSIZE);
assert(type < PLY_LIST);
if (strlen(name) >= WORDSIZE || type >= PLY_LIST) {
ply_error(ply, "Invalid arguments");
return 0;
}
element = &ply->element[ply->nelements-1];
property = ply_grow_property(ply, element);
if (!property) return 0;
strcpy(property->name, name);
property->type = type;
return 1;
}
int ply_add_list_property(p_ply ply, const char *name,
e_ply_type length_type, e_ply_type value_type) {
p_ply_element element = NULL;
p_ply_property property = NULL;
assert(ply && ply->fp && ply->io_mode == PLY_WRITE);
assert(name && strlen(name) < WORDSIZE);
if (strlen(name) >= WORDSIZE) {
ply_error(ply, "Invalid arguments");
return 0;
}
assert(length_type < PLY_LIST);
assert(value_type < PLY_LIST);
if (length_type >= PLY_LIST || value_type >= PLY_LIST) {
ply_error(ply, "Invalid arguments");
return 0;
}
element = &ply->element[ply->nelements-1];
property = ply_grow_property(ply, element);
if (!property) return 0;
strcpy(property->name, name);
property->type = PLY_LIST;
property->length_type = length_type;
property->value_type = value_type;
return 1;
}
int ply_add_property(p_ply ply, const char *name, e_ply_type type,
e_ply_type length_type, e_ply_type value_type) {
if (type == PLY_LIST)
return ply_add_list_property(ply, name, length_type, value_type);
else
return ply_add_scalar_property(ply, name, type);
}
int ply_add_comment(p_ply ply, const char *comment) {
char *new_comment = NULL;
assert(ply && comment && strlen(comment) < LINESIZE);
if (!comment || strlen(comment) >= LINESIZE) {
ply_error(ply, "Invalid arguments");
return 0;
}
new_comment = (char *) ply_grow_array(ply, (void **) &ply->comment,
&ply->ncomments, LINESIZE);
if (!new_comment) return 0;
strcpy(new_comment, comment);
return 1;
}
int ply_add_obj_info(p_ply ply, const char *obj_info) {
char *new_obj_info = NULL;
assert(ply && obj_info && strlen(obj_info) < LINESIZE);
if (!obj_info || strlen(obj_info) >= LINESIZE) {
ply_error(ply, "Invalid arguments");
return 0;
}
new_obj_info = (char *) ply_grow_array(ply, (void **) &ply->obj_info,
&ply->nobj_infos, LINESIZE);
if (!new_obj_info) return 0;
strcpy(new_obj_info, obj_info);
return 1;
}
int ply_write_header(p_ply ply) {
long i, j;
assert(ply && ply->fp && ply->io_mode == PLY_WRITE);
assert(ply->element || ply->nelements == 0);
assert(!ply->element || ply->nelements > 0);
if (fprintf(ply->fp, "ply\nformat %s 1.0\n",
ply_storage_mode_list[ply->storage_mode]) <= 0) goto error;
for (i = 0; i < ply->ncomments; i++)
if (fprintf(ply->fp, "comment %s\n", ply->comment + LINESIZE*i) <= 0)
goto error;
for (i = 0; i < ply->nobj_infos; i++)
if (fprintf(ply->fp, "obj_info %s\n", ply->obj_info + LINESIZE*i) <= 0)
goto error;
for (i = 0; i < ply->nelements; i++) {
p_ply_element element = &ply->element[i];
assert(element->property || element->nproperties == 0);
assert(!element->property || element->nproperties > 0);
if (fprintf(ply->fp, "element %s %ld\n", element->name,
element->ninstances) <= 0) goto error;
for (j = 0; j < element->nproperties; j++) {
p_ply_property property = &element->property[j];
if (property->type == PLY_LIST) {
if (fprintf(ply->fp, "property list %s %s %s\n",
ply_type_list[property->length_type],
ply_type_list[property->value_type],
property->name) <= 0) goto error;
} else {
if (fprintf(ply->fp, "property %s %s\n",
ply_type_list[property->type],
property->name) <= 0) goto error;
}
}
}
return fprintf(ply->fp, "end_header\n") > 0;
error:
ply_error(ply, "Error writing to file");
return 0;
}
int ply_write(p_ply ply, double value) {
p_ply_element element = NULL;
p_ply_property property = NULL;
int type = -1;
int breakafter = 0;
if (ply->welement > ply->nelements) return 0;
element = &ply->element[ply->welement];
if (ply->wproperty > element->nproperties) return 0;
property = &element->property[ply->wproperty];
if (property->type == PLY_LIST) {
if (ply->wvalue_index == 0) {
type = property->length_type;
ply->wlength = (long) value;
} else type = property->value_type;
} else {
type = property->type;
ply->wlength = 0;
}
if (!ply->odriver->ohandler[type](ply, value)) {
ply_error(ply, "Failed writing %s of %s %d (%s: %s)",
property->name, element->name,
ply->winstance_index,
ply->odriver->name, ply_type_list[type]);
return 0;
}
ply->wvalue_index++;
if (ply->wvalue_index > ply->wlength) {
ply->wvalue_index = 0;
ply->wproperty++;
}
if (ply->wproperty >= element->nproperties) {
ply->wproperty = 0;
ply->winstance_index++;
if (ply->storage_mode == PLY_ASCII) breakafter = 1;
}
if (ply->winstance_index >= element->ninstances) {
ply->winstance_index = 0;
ply->welement++;
}
return !breakafter || putc('\n', ply->fp) > 0;
}
int ply_close(p_ply ply) {
long i;
assert(ply && ply->fp);
assert(ply->element || ply->nelements == 0);
assert(!ply->element || ply->nelements > 0);
/* write last chunk to file */
if (ply->io_mode == PLY_WRITE &&
fwrite(ply->buffer, 1, ply->buffer_last, ply->fp) < ply->buffer_last) {
ply_error(ply, "Error closing up");
return 0;
}
fclose(ply->fp);
/* free all memory used by handle */
if (ply->element) {
for (i = 0; i < ply->nelements; i++) {
p_ply_element element = &ply->element[i];
if (element->property) free(element->property);
}
free(ply->element);
}
if (ply->obj_info) free(ply->obj_info);
if (ply->comment) free(ply->comment);
free(ply);
return 1;
}
/* ----------------------------------------------------------------------
* Query support functions
* ---------------------------------------------------------------------- */
p_ply_element ply_get_next_element(p_ply ply,
p_ply_element last) {
assert(ply);
if (!last) return ply->element;
last++;
if (last < ply->element + ply->nelements) return last;
else return NULL;
}
int ply_get_element_info(p_ply_element element, const char** name,
long *ninstances) {
assert(element);
if (name) *name = element->name;
if (ninstances) *ninstances = (long) element->ninstances;
return 1;
}
p_ply_property ply_get_next_property(p_ply_element element,
p_ply_property last) {
assert(element);
if (!last) return element->property;
last++;
if (last < element->property + element->nproperties) return last;
else return NULL;
}
int ply_get_property_info(p_ply_property property, const char** name,
e_ply_type *type, e_ply_type *length_type, e_ply_type *value_type) {
assert(property);
if (name) *name = property->name;
if (type) *type = property->type;
if (length_type) *length_type = property->length_type;
if (value_type) *value_type = property->value_type;
return 1;
}
const char *ply_get_next_comment(p_ply ply, const char *last) {
assert(ply);
if (!last) return ply->comment;
last += LINESIZE;
if (last < ply->comment + LINESIZE*ply->ncomments) return last;
else return NULL;
}
const char *ply_get_next_obj_info(p_ply ply, const char *last) {
assert(ply);
if (!last) return ply->obj_info;
last += LINESIZE;
if (last < ply->obj_info + LINESIZE*ply->nobj_infos) return last;
else return NULL;
}
/* ----------------------------------------------------------------------
* Callback argument support functions
* ---------------------------------------------------------------------- */
int ply_get_argument_element(p_ply_argument argument,
p_ply_element *element, long *instance_index) {
assert(argument);
if (!argument) return 0;
if (element) *element = argument->element;
if (instance_index) *instance_index = argument->instance_index;
return 1;
}
int ply_get_argument_property(p_ply_argument argument,
p_ply_property *property, long *length, long *value_index) {
assert(argument);
if (!argument) return 0;
if (property) *property = argument->property;
if (length) *length = argument->length;
if (value_index) *value_index = argument->value_index;
return 1;
}
int ply_get_argument_user_data(p_ply_argument argument, void **pdata,
long *idata) {
assert(argument);
if (!argument) return 0;
if (pdata) *pdata = argument->pdata;
if (idata) *idata = argument->idata;
return 1;
}
double ply_get_argument_value(p_ply_argument argument) {
assert(argument);
if (!argument) return 0.0;
return argument->value;
}
/* ----------------------------------------------------------------------
* Internal functions
* ---------------------------------------------------------------------- */
static int ply_read_list_property(p_ply ply, p_ply_element element,
p_ply_property property, p_ply_argument argument) {
int l;
p_ply_read_cb read_cb = property->read_cb;
p_ply_ihandler *driver = ply->idriver->ihandler;
/* get list length */
p_ply_ihandler handler = driver[property->length_type];
double length;
if (!handler(ply, &length)) {
ply_error(ply, "Error reading '%s' of '%s' number %d",
property->name, element->name, argument->instance_index);
return 0;
}
/* invoke callback to pass length in value field */
argument->length = (long) length;
argument->value_index = -1;
argument->value = length;
if (read_cb && !read_cb(argument)) {
ply_error(ply, "Aborted by user");
return 0;
}
/* read list values */
handler = driver[property->value_type];
/* for each value in list */
for (l = 0; l < (long) length; l++) {
/* read value from file */
argument->value_index = l;
if (!handler(ply, &argument->value)) {
ply_error(ply, "Error reading value number %d of '%s' of "
"'%s' number %d", l+1, property->name,
element->name, argument->instance_index);
return 0;
}
/* invoke callback to pass value */
if (read_cb && !read_cb(argument)) {
ply_error(ply, "Aborted by user");
return 0;
}
}
return 1;
}
static int ply_read_scalar_property(p_ply ply, p_ply_element element,
p_ply_property property, p_ply_argument argument) {
p_ply_read_cb read_cb = property->read_cb;
p_ply_ihandler *driver = ply->idriver->ihandler;
p_ply_ihandler handler = driver[property->type];
argument->length = 1;
argument->value_index = 0;
if (!handler(ply, &argument->value)) {
ply_error(ply, "Error reading '%s' of '%s' number %d",
property->name, element->name, argument->instance_index);
return 0;
}
if (read_cb && !read_cb(argument)) {
ply_error(ply, "Aborted by user");
return 0;
}
return 1;
}
static int ply_read_property(p_ply ply, p_ply_element element,
p_ply_property property, p_ply_argument argument) {
if (property->type == PLY_LIST)
return ply_read_list_property(ply, element, property, argument);
else
return ply_read_scalar_property(ply, element, property, argument);
}
static int ply_read_element(p_ply ply, p_ply_element element,
p_ply_argument argument) {
long j, k;
/* for each element of this type */
for (j = 0; j < element->ninstances; j++) {
argument->instance_index = j;
/* for each property */
for (k = 0; k < element->nproperties; k++) {
p_ply_property property = &element->property[k];
argument->property = property;
argument->pdata = property->pdata;
argument->idata = property->idata;
if (!ply_read_property(ply, element, property, argument))
return 0;
}
}
return 1;
}
static int ply_find_string(const char *item, const char* const list[]) {
int i;
assert(item && list);
for (i = 0; list[i]; i++)
if (!strcmp(list[i], item)) return i;
return -1;
}
static p_ply_element ply_find_element(p_ply ply, const char *name) {
p_ply_element element;
int i, nelements;
assert(ply && name);
element = ply->element;
nelements = ply->nelements;
assert(element || nelements == 0);
assert(!element || nelements > 0);
for (i = 0; i < nelements; i++)
if (!strcmp(element[i].name, name)) return &element[i];
return NULL;
}
static p_ply_property ply_find_property(p_ply_element element,
const char *name) {
p_ply_property property;
int i, nproperties;
assert(element && name);
property = element->property;
nproperties = element->nproperties;
assert(property || nproperties == 0);
assert(!property || nproperties > 0);
for (i = 0; i < nproperties; i++)
if (!strcmp(property[i].name, name)) return &property[i];
return NULL;
}
static int ply_check_word(p_ply ply) {
if (strlen(BLINE(ply)) >= WORDSIZE) {
ply_error(ply, "Word too long");
return 0;
}
return 1;
}
static int ply_read_word(p_ply ply) {
size_t t = 0;
assert(ply && ply->fp && ply->io_mode == PLY_READ);
/* skip leading blanks */
while (1) {
t = strspn(BFIRST(ply), " \n\r\t");
/* check if all buffer was made of blanks */
if (t >= BSIZE(ply)) {
if (!BREFILL(ply)) {
ply_error(ply, "Unexpected end of file");
return 0;
}
} else break;
}
BSKIP(ply, t);
/* look for a space after the current word */
t = strcspn(BFIRST(ply), " \n\r\t");
/* if we didn't reach the end of the buffer, we are done */
if (t < BSIZE(ply)) {
ply->buffer_token = ply->buffer_first;
BSKIP(ply, t);
*BFIRST(ply) = '\0';
BSKIP(ply, 1);
return ply_check_word(ply);
}
/* otherwise, try to refill buffer */
if (!BREFILL(ply)) {
ply_error(ply, "Unexpected end of file");
return 0;
}
/* keep looking from where we left */
t += strcspn(BFIRST(ply) + t, " \n\r\t");
/* check if the token is too large for our buffer */
if (t >= BSIZE(ply)) {
ply_error(ply, "Token too large");
return 0;
}
/* we are done */
ply->buffer_token = ply->buffer_first;
BSKIP(ply, t);
*BFIRST(ply) = '\0';
BSKIP(ply, 1);
return ply_check_word(ply);
}
static int ply_check_line(p_ply ply) {
if (strlen(BLINE(ply)) >= LINESIZE) {
ply_error(ply, "Line too long");
return 0;
}
return 1;
}
static int ply_read_line(p_ply ply) {
const char *end = NULL;
assert(ply && ply->fp && ply->io_mode == PLY_READ);
/* look for a end of line */
end = strchr(BFIRST(ply), '\n');
/* if we didn't reach the end of the buffer, we are done */
if (end) {
ply->buffer_token = ply->buffer_first;
BSKIP(ply, end - BFIRST(ply));
*BFIRST(ply) = '\0';
BSKIP(ply, 1);
return ply_check_line(ply);
} else {
end = ply->buffer + BSIZE(ply);
/* otherwise, try to refill buffer */
if (!BREFILL(ply)) {
ply_error(ply, "Unexpected end of file");
return 0;
}
}
/* keep looking from where we left */
end = strchr(end, '\n');
/* check if the token is too large for our buffer */
if (!end) {
ply_error(ply, "Token too large");
return 0;
}
/* we are done */
ply->buffer_token = ply->buffer_first;
BSKIP(ply, end - BFIRST(ply));
*BFIRST(ply) = '\0';
BSKIP(ply, 1);
return ply_check_line(ply);
}
static int ply_read_chunk(p_ply ply, void *anybuffer, size_t size) {
char *buffer = (char *) anybuffer;
size_t i = 0;
assert(ply && ply->fp && ply->io_mode == PLY_READ);
assert(ply->buffer_first <= ply->buffer_last);
while (i < size) {
if (ply->buffer_first < ply->buffer_last) {
buffer[i] = ply->buffer[ply->buffer_first];
ply->buffer_first++;
i++;
} else {
ply->buffer_first = 0;
ply->buffer_last = fread(ply->buffer, 1, BUFFERSIZE, ply->fp);
if (ply->buffer_last <= 0) return 0;
}
}
return 1;
}
static int ply_write_chunk(p_ply ply, void *anybuffer, size_t size) {
char *buffer = (char *) anybuffer;
size_t i = 0;
assert(ply && ply->fp && ply->io_mode == PLY_WRITE);
assert(ply->buffer_last <= BUFFERSIZE);
while (i < size) {
if (ply->buffer_last < BUFFERSIZE) {
ply->buffer[ply->buffer_last] = buffer[i];
ply->buffer_last++;
i++;
} else {
ply->buffer_last = 0;
if (fwrite(ply->buffer, 1, BUFFERSIZE, ply->fp) < BUFFERSIZE)
return 0;
}
}
return 1;
}
static int ply_write_chunk_reverse(p_ply ply, void *anybuffer, size_t size) {
int ret = 0;
ply_reverse(anybuffer, size);
ret = ply_write_chunk(ply, anybuffer, size);
ply_reverse(anybuffer, size);
return ret;
}
static int ply_read_chunk_reverse(p_ply ply, void *anybuffer, size_t size) {
if (!ply_read_chunk(ply, anybuffer, size)) return 0;
ply_reverse(anybuffer, size);
return 1;
}
static void ply_reverse(void *anydata, size_t size) {
char *data = (char *) anydata;
char temp;
size_t i;
for (i = 0; i < size/2; i++) {
temp = data[i];
data[i] = data[size-i-1];
data[size-i-1] = temp;
}
}
static void ply_init(p_ply ply) {
ply->c = ' ';
ply->element = NULL;
ply->nelements = 0;
ply->comment = NULL;
ply->ncomments = 0;
ply->obj_info = NULL;
ply->nobj_infos = 0;
ply->idriver = NULL;
ply->odriver = NULL;
ply->buffer[0] = '\0';
ply->buffer_first = ply->buffer_last = ply->buffer_token = 0;
ply->welement = 0;
ply->wproperty = 0;
ply->winstance_index = 0;
ply->wlength = 0;
ply->wvalue_index = 0;
}
static void ply_element_init(p_ply_element element) {
element->name[0] = '\0';
element->ninstances = 0;
element->property = NULL;
element->nproperties = 0;
}
static void ply_property_init(p_ply_property property) {
property->name[0] = '\0';
property->type = -1;
property->length_type = -1;
property->value_type = -1;
property->read_cb = (p_ply_read_cb) NULL;
property->pdata = NULL;
property->idata = 0;
}
static p_ply ply_alloc(void) {
p_ply ply = (p_ply) malloc(sizeof(t_ply));
if (!ply) return NULL;
ply_init(ply);
return ply;
}
static void *ply_grow_array(p_ply ply, void **pointer,
long *nmemb, long size) {
void *temp = *pointer;
long count = *nmemb + 1;
if (!temp) temp = malloc(count*size);
else temp = realloc(temp, count*size);
if (!temp) {
ply_error(ply, "Out of memory");
return NULL;
}
*pointer = temp;
*nmemb = count;
return (char *) temp + (count-1) * size;
}
static p_ply_element ply_grow_element(p_ply ply) {
p_ply_element element = NULL;
assert(ply);
assert(ply->element || ply->nelements == 0);
assert(!ply->element || ply->nelements > 0);
element = (p_ply_element) ply_grow_array(ply, (void **) &ply->element,
&ply->nelements, sizeof(t_ply_element));
if (!element) return NULL;
ply_element_init(element);
return element;
}
static p_ply_property ply_grow_property(p_ply ply, p_ply_element element) {
p_ply_property property = NULL;
assert(ply);
assert(element);
assert(element->property || element->nproperties == 0);
assert(!element->property || element->nproperties > 0);
property = (p_ply_property) ply_grow_array(ply,
(void **) &element->property,
&element->nproperties, sizeof(t_ply_property));
if (!property) return NULL;
ply_property_init(property);
return property;
}
static int ply_read_header_format(p_ply ply) {
assert(ply && ply->fp && ply->io_mode == PLY_READ);
if (strcmp(BWORD(ply), "format")) return 0;
if (!ply_read_word(ply)) return 0;
ply->storage_mode = ply_find_string(BWORD(ply), ply_storage_mode_list);
if (ply->storage_mode == (e_ply_storage_mode) (-1)) return 0;
if (ply->storage_mode == PLY_ASCII) ply->idriver = &ply_idriver_ascii;
else if (ply->storage_mode == ply_arch_endian())
ply->idriver = &ply_idriver_binary;
else ply->idriver = &ply_idriver_binary_reverse;
if (!ply_read_word(ply)) return 0;
if (strcmp(BWORD(ply), "1.0")) return 0;
if (!ply_read_word(ply)) return 0;
return 1;
}
static int ply_read_header_comment(p_ply ply) {
assert(ply && ply->fp && ply->io_mode == PLY_READ);
if (strcmp(BWORD(ply), "comment")) return 0;
if (!ply_read_line(ply)) return 0;
if (!ply_add_comment(ply, BLINE(ply))) return 0;
if (!ply_read_word(ply)) return 0;
return 1;
}
static int ply_read_header_obj_info(p_ply ply) {
assert(ply && ply->fp && ply->io_mode == PLY_READ);
if (strcmp(BWORD(ply), "obj_info")) return 0;
if (!ply_read_line(ply)) return 0;
if (!ply_add_obj_info(ply, BLINE(ply))) return 0;
if (!ply_read_word(ply)) return 0;
return 1;
}
static int ply_read_header_property(p_ply ply) {
p_ply_element element = NULL;
p_ply_property property = NULL;
/* make sure it is a property */
if (strcmp(BWORD(ply), "property")) return 0;
element = &ply->element[ply->nelements-1];
property = ply_grow_property(ply, element);
if (!property) return 0;
/* get property type */
if (!ply_read_word(ply)) return 0;
property->type = ply_find_string(BWORD(ply), ply_type_list);
if (property->type == (e_ply_type) (-1)) return 0;
if (property->type == PLY_LIST) {
/* if it's a list, we need the base types */
if (!ply_read_word(ply)) return 0;
property->length_type = ply_find_string(BWORD(ply), ply_type_list);
if (property->length_type == (e_ply_type) (-1)) return 0;
if (!ply_read_word(ply)) return 0;
property->value_type = ply_find_string(BWORD(ply), ply_type_list);
if (property->value_type == (e_ply_type) (-1)) return 0;
}
/* get property name */
if (!ply_read_word(ply)) return 0;
strcpy(property->name, BWORD(ply));
if (!ply_read_word(ply)) return 0;
return 1;
}
static int ply_read_header_element(p_ply ply) {
p_ply_element element = NULL;
long dummy;
assert(ply && ply->fp && ply->io_mode == PLY_READ);
if (strcmp(BWORD(ply), "element")) return 0;
/* allocate room for new element */
element = ply_grow_element(ply);
if (!element) return 0;
/* get element name */
if (!ply_read_word(ply)) return 0;
strcpy(element->name, BWORD(ply));
/* get number of elements of this type */
if (!ply_read_word(ply)) return 0;
if (sscanf(BWORD(ply), "%ld", &dummy) != 1) {
ply_error(ply, "Expected number got '%s'", BWORD(ply));
return 0;
}
element->ninstances = dummy;
/* get all properties for this element */
if (!ply_read_word(ply)) return 0;
while (ply_read_header_property(ply) ||
ply_read_header_comment(ply) || ply_read_header_obj_info(ply))
/* do nothing */;
return 1;
}
static void ply_error_cb(const char *message) {
fprintf(stderr, "RPly: %s\n", message);
}
static void ply_error(p_ply ply, const char *fmt, ...) {
char buffer[1024];
va_list ap;
va_start(ap, fmt);
vsprintf(buffer, fmt, ap);
va_end(ap);
ply->error_cb(buffer);
}
static e_ply_storage_mode ply_arch_endian(void) {
unsigned long i = 1;
unsigned char *s = (unsigned char *) &i;
if (*s == 1) return PLY_LITTLE_ENDIAN;
else return PLY_BIG_ENDIAN;
}
static int ply_type_check(void) {
assert(sizeof(char) == 1);
assert(sizeof(unsigned char) == 1);
assert(sizeof(short) == 2);
assert(sizeof(unsigned short) == 2);
assert(sizeof(int) == 4);
assert(sizeof(unsigned int) == 4);
assert(sizeof(float) == 4);
assert(sizeof(double) == 8);
if (sizeof(char) != 1) return 0;
if (sizeof(unsigned char) != 1) return 0;
if (sizeof(short) != 2) return 0;
if (sizeof(unsigned short) != 2) return 0;
if (sizeof(int) != 4) return 0;
if (sizeof(unsigned int) != 4) return 0;
if (sizeof(float) != 4) return 0;
if (sizeof(double) != 8) return 0;
return 1;
}
/* ----------------------------------------------------------------------
* Output handlers
* ---------------------------------------------------------------------- */
static int oascii_int8(p_ply ply, double value) {
if (value > CHAR_MAX || value < CHAR_MIN) return 0;
return fprintf(ply->fp, "%d ", (char) value) > 0;
}
static int oascii_uint8(p_ply ply, double value) {
if (value > UCHAR_MAX || value < 0) return 0;
return fprintf(ply->fp, "%d ", (unsigned char) value) > 0;
}
static int oascii_int16(p_ply ply, double value) {
if (value > SHRT_MAX || value < SHRT_MIN) return 0;
return fprintf(ply->fp, "%d ", (short) value) > 0;
}
static int oascii_uint16(p_ply ply, double value) {
if (value > USHRT_MAX || value < 0) return 0;
return fprintf(ply->fp, "%d ", (unsigned short) value) > 0;
}
static int oascii_int32(p_ply ply, double value) {
if (value > INT_MAX || value < INT_MIN) return 0;
return fprintf(ply->fp, "%d ", (int) value) > 0;
}
static int oascii_uint32(p_ply ply, double value) {
if (value > UINT_MAX || value < 0) return 0;
return fprintf(ply->fp, "%d ", (unsigned int) value) > 0;
}
static int oascii_float32(p_ply ply, double value) {
if (value < -FLT_MAX || value > FLT_MAX) return 0;
return fprintf(ply->fp, "%g ", (float) value) > 0;
}
static int oascii_float64(p_ply ply, double value) {
if (value < -DBL_MAX || value > DBL_MAX) return 0;
return fprintf(ply->fp, "%g ", value) > 0;
}
static int obinary_int8(p_ply ply, double value) {
char int8 = (char) value;
if (value > CHAR_MAX || value < CHAR_MIN) return 0;
return ply->odriver->ochunk(ply, &int8, sizeof(int8));
}
static int obinary_uint8(p_ply ply, double value) {
unsigned char uint8 = (unsigned char) value;
if (value > UCHAR_MAX || value < 0) return 0;
return ply->odriver->ochunk(ply, &uint8, sizeof(uint8));
}
static int obinary_int16(p_ply ply, double value) {
short int16 = (short) value;
if (value > SHRT_MAX || value < SHRT_MIN) return 0;
return ply->odriver->ochunk(ply, &int16, sizeof(int16));
}
static int obinary_uint16(p_ply ply, double value) {
unsigned short uint16 = (unsigned short) value;
if (value > USHRT_MAX || value < 0) return 0;
return ply->odriver->ochunk(ply, &uint16, sizeof(uint16));
}
static int obinary_int32(p_ply ply, double value) {
int int32 = (int) value;
if (value > INT_MAX || value < INT_MIN) return 0;
return ply->odriver->ochunk(ply, &int32, sizeof(int32));
}
static int obinary_uint32(p_ply ply, double value) {
unsigned int uint32 = (unsigned int) value;
if (value > UINT_MAX || value < 0) return 0;
return ply->odriver->ochunk(ply, &uint32, sizeof(uint32));
}
static int obinary_float32(p_ply ply, double value) {
float float32 = (float) value;
if (value > FLT_MAX || value < -FLT_MAX) return 0;
return ply->odriver->ochunk(ply, &float32, sizeof(float32));
}
static int obinary_float64(p_ply ply, double value) {
return ply->odriver->ochunk(ply, &value, sizeof(value));
}
/* ----------------------------------------------------------------------
* Input handlers
* ---------------------------------------------------------------------- */
static int iascii_int8(p_ply ply, double *value) {
char *end;
if (!ply_read_word(ply)) return 0;
*value = strtol(BWORD(ply), &end, 10);
if (*end || *value > CHAR_MAX || *value < CHAR_MIN) return 0;
return 1;
}
static int iascii_uint8(p_ply ply, double *value) {
char *end;
if (!ply_read_word(ply)) return 0;
*value = strtol(BWORD(ply), &end, 10);
if (*end || *value > UCHAR_MAX || *value < 0) return 0;
return 1;
}
static int iascii_int16(p_ply ply, double *value) {
char *end;
if (!ply_read_word(ply)) return 0;
*value = strtol(BWORD(ply), &end, 10);
if (*end || *value > SHRT_MAX || *value < SHRT_MIN) return 0;
return 1;
}
static int iascii_uint16(p_ply ply, double *value) {
char *end;
if (!ply_read_word(ply)) return 0;
*value = strtol(BWORD(ply), &end, 10);
if (*end || *value > USHRT_MAX || *value < 0) return 0;
return 1;
}
static int iascii_int32(p_ply ply, double *value) {
char *end;
if (!ply_read_word(ply)) return 0;
*value = strtol(BWORD(ply), &end, 10);
if (*end || *value > INT_MAX || *value < INT_MIN) return 0;
return 1;
}
static int iascii_uint32(p_ply ply, double *value) {
char *end;
if (!ply_read_word(ply)) return 0;
*value = strtol(BWORD(ply), &end, 10);
if (*end || *value < 0) return 0;
return 1;
}
static int iascii_float32(p_ply ply, double *value) {
char *end;
if (!ply_read_word(ply)) return 0;
*value = strtod(BWORD(ply), &end);
if (*end || *value < -FLT_MAX || *value > FLT_MAX) return 0;
return 1;
}
static int iascii_float64(p_ply ply, double *value) {
char *end;
if (!ply_read_word(ply)) return 0;
*value = strtod(BWORD(ply), &end);
if (*end || *value < -DBL_MAX || *value > DBL_MAX) return 0;
return 1;
}
static int ibinary_int8(p_ply ply, double *value) {
char int8;
if (!ply->idriver->ichunk(ply, &int8, 1)) return 0;
*value = int8;
return 1;
}
static int ibinary_uint8(p_ply ply, double *value) {
unsigned char uint8;
if (!ply->idriver->ichunk(ply, &uint8, 1)) return 0;
*value = uint8;
return 1;
}
static int ibinary_int16(p_ply ply, double *value) {
short int16;
if (!ply->idriver->ichunk(ply, &int16, sizeof(int16))) return 0;
*value = int16;
return 1;
}
static int ibinary_uint16(p_ply ply, double *value) {
unsigned short uint16;
if (!ply->idriver->ichunk(ply, &uint16, sizeof(uint16))) return 0;
*value = uint16;
return 1;
}
static int ibinary_int32(p_ply ply, double *value) {
int int32;
if (!ply->idriver->ichunk(ply, &int32, sizeof(int32))) return 0;
*value = int32;
return 1;
}
static int ibinary_uint32(p_ply ply, double *value) {
unsigned int uint32;
if (!ply->idriver->ichunk(ply, &uint32, sizeof(uint32))) return 0;
*value = uint32;
return 1;
}
static int ibinary_float32(p_ply ply, double *value) {
float float32;
if (!ply->idriver->ichunk(ply, &float32, sizeof(float32))) return 0;
*value = float32;
ply_reverse(&float32, sizeof(float32));
return 1;
}
static int ibinary_float64(p_ply ply, double *value) {
return ply->idriver->ichunk(ply, value, sizeof(double));
}
/* ----------------------------------------------------------------------
* Constants
* ---------------------------------------------------------------------- */
static t_ply_idriver ply_idriver_ascii = {
{ iascii_int8, iascii_uint8, iascii_int16, iascii_uint16,
iascii_int32, iascii_uint32, iascii_float32, iascii_float64,
iascii_int8, iascii_uint8, iascii_int16, iascii_uint16,
iascii_int32, iascii_uint32, iascii_float32, iascii_float64
}, /* order matches e_ply_type enum */
NULL,
"ascii input"
};
static t_ply_idriver ply_idriver_binary = {
{ ibinary_int8, ibinary_uint8, ibinary_int16, ibinary_uint16,
ibinary_int32, ibinary_uint32, ibinary_float32, ibinary_float64,
ibinary_int8, ibinary_uint8, ibinary_int16, ibinary_uint16,
ibinary_int32, ibinary_uint32, ibinary_float32, ibinary_float64
}, /* order matches e_ply_type enum */
ply_read_chunk,
"binary input"
};
static t_ply_idriver ply_idriver_binary_reverse = {
{ ibinary_int8, ibinary_uint8, ibinary_int16, ibinary_uint16,
ibinary_int32, ibinary_uint32, ibinary_float32, ibinary_float64,
ibinary_int8, ibinary_uint8, ibinary_int16, ibinary_uint16,
ibinary_int32, ibinary_uint32, ibinary_float32, ibinary_float64
}, /* order matches e_ply_type enum */
ply_read_chunk_reverse,
"reverse binary input"
};
static t_ply_odriver ply_odriver_ascii = {
{ oascii_int8, oascii_uint8, oascii_int16, oascii_uint16,
oascii_int32, oascii_uint32, oascii_float32, oascii_float64,
oascii_int8, oascii_uint8, oascii_int16, oascii_uint16,
oascii_int32, oascii_uint32, oascii_float32, oascii_float64
}, /* order matches e_ply_type enum */
NULL,
"ascii output"
};
static t_ply_odriver ply_odriver_binary = {
{ obinary_int8, obinary_uint8, obinary_int16, obinary_uint16,
obinary_int32, obinary_uint32, obinary_float32, obinary_float64,
obinary_int8, obinary_uint8, obinary_int16, obinary_uint16,
obinary_int32, obinary_uint32, obinary_float32, obinary_float64
}, /* order matches e_ply_type enum */
ply_write_chunk,
"binary output"
};
static t_ply_odriver ply_odriver_binary_reverse = {
{ obinary_int8, obinary_uint8, obinary_int16, obinary_uint16,
obinary_int32, obinary_uint32, obinary_float32, obinary_float64,
obinary_int8, obinary_uint8, obinary_int16, obinary_uint16,
obinary_int32, obinary_uint32, obinary_float32, obinary_float64
}, /* order matches e_ply_type enum */
ply_write_chunk_reverse,
"reverse binary output"
};
/* ----------------------------------------------------------------------
* Copyright (C) 2003 Diego Nehab. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
* ---------------------------------------------------------------------- */
|