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
|
/*
* libics: Image Cytometry Standard file reading and writing.
*
* Copyright 2015-2018:
* Scientific Volume Imaging Holding B.V.
* Hilversum, The Netherlands.
* https://www.svi.nl
*
* Copyright (C) 2000-2013 Cris Luengo and others
*
* Large chunks of this library written by
* Bert Gijsbers
* Dr. Hans T.M. van der Voort
* And also Damir Sudar, Geert van Kempen, Jan Jitze Krol,
* Chiel Baarslag and Fons Laan.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Library General Public License for more details.`
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the Free
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/*
* FILE : libics_top.c
*
* The following library functions are contained in this file:
*
* IcsOpen()
* IcsClose()
* IcsGetLayout()
* IcsSetLayout()
* IcsGetDataSize()
* IcsGetImelSize()
* IcsGetImageSize()
* IcsGetData()
* IcsGetDataBlock()
* IcsSkipDataBlock()
* IcsGetROIData()
* IcsGetDataWithStrides()
* IcsSetData()
* IcsSetDataWithStrides()
* IcsSetSource()
* IcsSetCompression()
* IcsGetPosition()
* IcsGetPositionF()
* IcsSetPosition()
* IcsGetOrder()
* IcsGetOrderF()
* IcsSetOrder()
* IcsGetCoordinateSystem()
* IcsSetCoordinateSystem()
* IcsGetSignificantBits()
* IcsSetSignificantBits()
* IcsGetImelUnits()
* IcsGetImelUnitsF()
* IcsSetImelUnits()
* IcsGetScilType()
* IcsSetScilType()
* IcsGuessScilType()
* IcsGetErrorText()
*/
#include <stdlib.h>
#include <string.h>
#include "libics_intern.h"
/* Default Order and Label strings: */
char const* ICSKEY_ORDER[] = {"x", "y", "z", "t", "probe"};
const char * ICSKEY_LABEL[] = {"x-position", "y-position", "z-position",
"time", "probe"};
#define ICSKEY_ORDER_LENGTH 5 /* Number of elements in ICSKEY_ORDER and
ICSKEY_LABEL arrays. */
/* Create an ICS structure, and read the stuff from file if reading. */
Ics_Error IcsOpen(ICS **ics,
const char *filename,
const char *mode)
{
ICSINIT;
int version = 0, forceName = 0, forceLocale = 1, reading = 0;
int writing = 0;
size_t i;
/* the mode string is one of: "r", "w", "rw", with "f" and/or "l"
appended for reading and "1" or "2" appended for writing */
for (i = 0; i<strlen(mode); i++) {
switch (mode[i]) {
case 'r':
if (reading) return IcsErr_IllParameter;
reading = 1;
break;
case 'w':
if (writing) return IcsErr_IllParameter;
writing = 1;
break;
case 'f':
if (forceName) return IcsErr_IllParameter;
forceName = 1;
break;
case 'l':
if (forceLocale) return IcsErr_IllParameter;
forceLocale = 0;
break;
case '1':
if (version!=0) return IcsErr_IllParameter;
version = 1;
break;
case '2':
if (version!=0) return IcsErr_IllParameter;
version = 2;
break;
default:
return IcsErr_IllParameter;
}
}
*ics =(ICS*)malloc(sizeof(ICS));
if (*ics == NULL) return IcsErr_Alloc;
if (reading) {
/* We're reading or updating */
error = IcsReadIcs(*ics, filename, forceName, forceLocale);
if (error) {
free(*ics);
*ics = NULL;
} else {
if (writing) {
/* We're updating */
(*ics)->fileMode = IcsFileMode_update;
} else {
/* We're just reading */
(*ics)->fileMode = IcsFileMode_read;
}
}
} else if (writing) {
/* We're writing */
IcsInit(*ics);
(*ics)->fileMode = IcsFileMode_write;
if (version) {
(*ics)->version = version;
}
IcsStrCpy((*ics)->filename, filename, ICS_MAXPATHLEN);
} else {
/* Missing an "r" or "w" mode character */
return IcsErr_IllParameter;
}
return error;
}
/* Free the ICS structure, and write the stuff to file if writing. */
Ics_Error IcsClose(ICS *ics)
{
ICSINIT;
char filename[ICS_MAXPATHLEN+4];
if (ics == NULL) return IcsErr_NotValidAction;
if (ics->fileMode == IcsFileMode_read) {
/* We're reading */
if (ics->blockRead != NULL) {
error = IcsCloseIds(ics);
}
} else if (ics->fileMode == IcsFileMode_write) {
/* We're writing */
error = IcsWriteIcs(ics, NULL);
if (!error) error = IcsWriteIds(ics);
} else {
/* We're updating */
int needcopy = 0;
if (ics->blockRead != NULL) {
error = IcsCloseIds(ics);
}
if (ics->version == 2 && !strcmp(ics->srcFile, ics->filename)) {
/* The ICS file contains the data */
needcopy = 1;
ics->srcFile[0] = '\0'; /* needed to get the END keyword in the
header */
/* Rename the original file */
strcpy(filename, ics->filename);
strcat(filename, ".tmp");
if (rename(ics->filename, filename)) {
error = IcsErr_FTempMoveIcs;
}
}
if (!error) error = IcsWriteIcs(ics, NULL);
if (!error && needcopy) {
/* Copy the data over from the original file */
error = IcsCopyIds(filename, ics->srcOffset, ics->filename);
/* Delete original file */
if (!error) {
remove(filename);
}
}
if (error) {
/* Let's try copying the old file back */
remove(ics->filename);
rename(filename, ics->filename);
}
}
IcsFreeHistory(ics);
free(ics);
return error;
}
/* Get the layout parameters from the ICS structure. */
Ics_Error IcsGetLayout(const ICS *ics,
Ics_DataType *dt,
int *nDims,
size_t *dims)
{
ICSINIT;
int i;
if ((ics == NULL) || (ics->fileMode == IcsFileMode_write))
return IcsErr_NotValidAction;
*nDims = ics->dimensions;
*dt = ics->imel.dataType;
/* Get the image sizes. Ignore the orders */
for (i = 0; i < *nDims; i++) {
dims[i] = ics->dim[i].size;
}
return error;
}
/* Put the layout parameters in the ICS structure. */
Ics_Error IcsSetLayout(ICS *ics,
Ics_DataType dt,
int nDims,
const size_t *dims)
{
ICSINIT;
int i;
if ((ics == NULL) || (ics->fileMode != IcsFileMode_write))
return IcsErr_NotValidAction;
if (nDims > ICS_MAXDIM) return IcsErr_TooManyDims;
/* Set the pixel parameters */
ics->imel.dataType = dt;
/* Set the image sizes */
for (i=0; i<nDims; i++) {
ics->dim[i].size = dims[i];
if (i < ICSKEY_ORDER_LENGTH) {
strcpy(ics->dim[i].order, ICSKEY_ORDER[i]);
strcpy(ics->dim[i].label, ICSKEY_LABEL[i]);
} else {
/* Could overflow: */
snprintf(ics->dim[i].order, ICS_STRLEN_TOKEN, "dim_%d", i);
snprintf(ics->dim[i].label, ICS_STRLEN_TOKEN, "dim_%d", i);
}
}
ics->dimensions = nDims;
return error;
}
/* Get the image size in bytes. */
size_t IcsGetDataSize(const ICS *ics)
{
if (ics == NULL) return 0;
if (ics->dimensions == 0) return 0;
return IcsGetImageSize(ics) * (size_t)IcsGetBytesPerSample(ics);
}
/* Get the pixel size in bytes. */
size_t IcsGetImelSize(const ICS *ics)
{
if (ics != NULL) {
return (size_t)IcsGetBytesPerSample(ics);
} else {
return 0;
}
}
/* Get the image size in pixels. */
size_t IcsGetImageSize(const ICS *ics)
{
int i;
size_t size = 1;
if (ics == NULL) return 0;
if (ics->dimensions == 0) return 0;
for (i = 0; i < ics->dimensions; i++) {
size *= ics->dim[i].size;
}
return size;
}
/* Get the image data. It is read from the file right here. */
Ics_Error IcsGetData(ICS *ics,
void *dest,
size_t n)
{
ICSINIT;
if ((ics == NULL) || (ics->fileMode == IcsFileMode_write))
return IcsErr_NotValidAction;
if ((n != 0) &&(dest != NULL)) {
error = IcsReadIds(ics, dest, n);
}
return error;
}
/* Read a portion of the image data from an ICS file. */
Ics_Error IcsGetDataBlock(ICS *ics,
void *dest,
size_t n)
{
ICSINIT;
if ((ics == NULL) || (ics->fileMode == IcsFileMode_write))
return IcsErr_NotValidAction;
if ((n != 0) &&(dest != NULL)) {
if (ics->blockRead == NULL) {
error = IcsOpenIds(ics);
}
if (!error) error = IcsReadIdsBlock(ics, dest, n);
}
return error;
}
/* Skip a portion of the image from an ICS file. */
Ics_Error IcsSkipDataBlock(ICS *ics,
size_t n)
{
ICSINIT;
if ((ics == NULL) || (ics->fileMode == IcsFileMode_write))
return IcsErr_NotValidAction;
if (n != 0) {
if (ics->blockRead == NULL) {
error = IcsOpenIds(ics);
}
if (!error) error = IcsSkipIdsBlock(ics, n);
}
return error;
}
/* Read a square region of the image from an ICS file. */
Ics_Error IcsGetROIData(ICS *ics,
const size_t *offsetPtr,
const size_t *sizePtr,
const size_t *samplingPtr,
void *destPtr,
size_t n)
{
ICSINIT;
int i, sizeConflict = 0, p;
size_t j;
size_t imelSize, roiSize, curLoc, newLoc, bufSize;
size_t curPos[ICS_MAXDIM];
size_t stride[ICS_MAXDIM];
size_t bOffset[ICS_MAXDIM];
size_t bSize[ICS_MAXDIM];
size_t bSampling[ICS_MAXDIM];
const size_t *offset, *size, *sampling;
char *buf;
char *dest = (char*)destPtr;
if ((ics == NULL) || (ics->fileMode == IcsFileMode_write))
return IcsErr_NotValidAction;
if ((n == 0) ||(dest == NULL)) return IcsErr_Ok;
p = ics->dimensions;
if (offsetPtr != NULL) {
offset = offsetPtr;
} else {
for (i = 0; i < p; i++) {
bOffset[i] = 0;
}
offset = bOffset;
}
if (sizePtr != NULL) {
size = sizePtr;
} else {
for (i = 0; i < p; i++) {
bSize[i] = ics->dim[i].size - offset[i];
}
size = bSize;
}
if (samplingPtr != NULL) {
sampling = samplingPtr;
} else {
for (i = 0; i < p; i++) {
bSampling[i] = 1;
}
sampling = bSampling;
}
for (i = 0; i < p; i++) {
if (sampling[i] < 1 || offset[i] + size[i] > ics->dim[i].size)
return IcsErr_IllegalROI;
}
imelSize = (size_t)IcsGetBytesPerSample(ics);
roiSize = imelSize;
for (i = 0; i < p; i++) {
roiSize *= (size[i] + sampling[i] - 1) / sampling[i];
}
if (n != roiSize) {
sizeConflict = 1;
if (n < roiSize) return IcsErr_BufferTooSmall;
}
/* The stride array tells us how many imels to skip to go the next pixel
in each dimension */
stride[0] = 1;
for (i = 1; i < p; i++) {
stride[i] = stride[i - 1] * ics->dim[i - 1].size;
}
error = IcsOpenIds(ics);
if (error) return error;
bufSize = imelSize*size[0];
if (sampling[0] > 1) {
/* We read a line in a buffer, and then copy the needed imels to
dest */
buf =(char*)malloc(bufSize);
if (buf == NULL) return IcsErr_Alloc;
curLoc = 0;
for (i = 0; i < p; i++) {
curPos[i] = offset[i];
}
while (1) {
newLoc = 0;
for (i = 0; i < p; i++) {
newLoc += curPos[i] * stride[i];
}
newLoc *= imelSize;
if (curLoc < newLoc) {
error = IcsSkipIdsBlock(ics, newLoc - curLoc);
curLoc = newLoc;
}
if (!error) error = IcsReadIdsBlock(ics, buf, bufSize);
if (error != IcsErr_Ok) {
break; /* stop reading on error */
}
curLoc += bufSize;
for (j=0; j < size[0]; j += sampling[0]) {
memcpy(dest, buf + (unsigned)i * imelSize, imelSize);
dest += imelSize;
}
for (i = 1; i < p; i++) {
curPos[i] += sampling[i];
if (curPos[i] < offset[i] + size[i]) {
break;
}
curPos[i] = offset[i];
}
if (i==p) {
break; /* we're done reading */
}
}
free(buf);
} else {
/* No subsampling in dim[0] required: read directly into dest */
curLoc = 0;
for (i = 0; i < p; i++) {
curPos[i] = offset[i];
}
while (1) {
newLoc = 0;
for (i = 0; i < p; i++) {
newLoc += curPos[i] * stride[i];
}
newLoc *= imelSize;
if (curLoc < newLoc) {
error = IcsSkipIdsBlock(ics, newLoc - curLoc);
curLoc = newLoc;
}
if (!error) error = IcsReadIdsBlock(ics, dest, bufSize);
if (error != IcsErr_Ok) {
break; /* stop reading on error */
}
curLoc += bufSize;
dest += bufSize;
for (i = 1; i < p; i++) {
curPos[i] += sampling[i];
if (curPos[i] < offset[i] + size[i]) {
break;
}
curPos[i] = offset[i];
}
if (i==p) {
break; /* we're done reading */
}
}
}
if (error)
IcsCloseIds(ics);
else
error = IcsCloseIds(ics);
if ((error == IcsErr_Ok) && sizeConflict) {
error = IcsErr_OutputNotFilled;
}
return error;
}
/* Read the image data into a region of your buffer. */
Ics_Error IcsGetDataWithStrides(ICS *ics,
void *destPtr,
size_t n, /* ignored */
const ptrdiff_t *stridePtr,
int nDims)
{
ICSINIT;
int i, p;
size_t j;
size_t imelSize, bufSize;
size_t curPos[ICS_MAXDIM];
ptrdiff_t b_stride[ICS_MAXDIM];
ptrdiff_t const *stride;
char *buf;
char *dest = (char*)destPtr;
char *out;
(void)n; /* we're not using this parameter */
if ((ics == NULL) || (ics->fileMode == IcsFileMode_write))
return IcsErr_NotValidAction;
if (dest == NULL) return IcsErr_Ok;
p = ics->dimensions;
if (nDims != p) return IcsErr_IllParameter;
if (stridePtr != NULL) {
stride = stridePtr;
} else {
b_stride[0] = 1;
for (i = 1; i < p; i++) {
b_stride[i] = b_stride[i - 1] * (ptrdiff_t)ics->dim[i - 1].size;
}
stride = b_stride;
}
imelSize = (size_t)IcsGetBytesPerSample(ics);
error = IcsOpenIds(ics);
if (error) return error;
bufSize = imelSize * ics->dim[0].size;
if (stride[0] != 1) {
/* We read a line in a buffer, and then copy the imels to dest */
buf = (char*)malloc(bufSize);
if (buf == NULL) return IcsErr_Alloc;
for (i = 0; i < p; i++) {
curPos[i] = 0;
}
while (1) {
out = dest;
for (i = 1; i < p; i++) {
out += (ptrdiff_t)curPos[i] * stride[i] * (ptrdiff_t)imelSize;
}
if (!error) error = IcsReadIdsBlock(ics, buf, bufSize);
if (error != IcsErr_Ok) {
break; /* stop reading on error */
}
for (j = 0; j < ics->dim[0].size; j++) {
memcpy(out, buf + j * imelSize, imelSize);
out += stride[0] * (ptrdiff_t)imelSize;
}
for (i = 1; i < p; i++) {
curPos[i]++;
if (curPos[i] < ics->dim[i].size) {
break;
}
curPos[i] = 0;
}
if (i==p) {
break; /* we're done reading */
}
}
free(buf);
} else {
/* No subsampling in dim[0] required: read directly into dest */
for (i = 0; i < p; i++) {
curPos[i] = 0;
}
while (1) {
out = dest;
for (i = 1; i < p; i++) {
out += (ptrdiff_t)curPos[i] * stride[i] * (ptrdiff_t)imelSize;
}
if (!error) error = IcsReadIdsBlock(ics, out, bufSize);
if (error != IcsErr_Ok) {
break; /* stop reading on error */
}
for (i = 1; i < p; i++) {
curPos[i]++;
if (curPos[i] < ics->dim[i].size) {
break;
}
curPos[i] = 0;
}
if (i==p) {
break; /* we're done reading */
}
}
}
if (error)
IcsCloseIds(ics);
else
error = IcsCloseIds(ics);
return error;
}
/* Set the image data. The pointer must be valid until IcsClose() is called. */
Ics_Error IcsSetData(ICS *ics,
const void *src,
size_t n)
{
ICSINIT;
if ((ics == NULL) || (ics->fileMode != IcsFileMode_write))
return IcsErr_NotValidAction;
if (ics->srcFile[0] != '\0') return IcsErr_DuplicateData;
if (ics->data != NULL) return IcsErr_DuplicateData;
if (ics->dimensions == 0) return IcsErr_NoLayout;
if (n != IcsGetDataSize(ics)) {
error = IcsErr_FSizeConflict;
}
ics->data = src;
ics->dataLength = n;
ics->dataStrides = NULL;
return error;
}
/* Set the image data. The pointers must be valid until IcsClose() is
called. The strides indicate how to go to the next neighbor along each
dimension. Use this is your image data is not in one contiguous block or you
want to swap some dimensions in the file. nDims is the length of the strides
array and should match the dimensionality previously given. */
Ics_Error IcsSetDataWithStrides(ICS *ics,
const void *src,
size_t n,
const ptrdiff_t *strides,
int nDims)
{
ICSINIT;
if ((ics == NULL) || (ics->fileMode != IcsFileMode_write))
return IcsErr_NotValidAction;
if (ics->srcFile[0] != '\0') return IcsErr_DuplicateData;
if (ics->data != NULL) return IcsErr_DuplicateData;
if (ics->dimensions == 0) return IcsErr_NoLayout;
if (nDims != ics->dimensions) return IcsErr_IllParameter;
ics->data = src;
ics->dataLength = n;
ics->dataStrides = strides;
return error;
}
/* Set the image data source file. */
Ics_Error IcsSetSource(ICS *ics,
const char *fname,
size_t offset)
{
ICSINIT;
if ((ics == NULL) || (ics->fileMode != IcsFileMode_write))
return IcsErr_NotValidAction;
if (ics->version == 1) return IcsErr_NotValidAction;
if (ics->srcFile[0] != '\0') return IcsErr_DuplicateData;
if (ics->data != NULL) return IcsErr_DuplicateData;
IcsStrCpy(ics->srcFile, fname, ICS_MAXPATHLEN);
ics->srcOffset = offset;
return error;
}
Ics_Error IcsSetByteOrder(ICS *ics,
Ics_ByteOrder order) {
ICSINIT;
if ((ics == NULL) || (ics->fileMode != IcsFileMode_write))
return IcsErr_NotValidAction;
if (ics->version == 1) return IcsErr_NotValidAction;
if (ics->srcFile[0] == '\0') return IcsErr_NotValidAction;
switch (order) {
case IcsByteOrder_littleEndian:
IcsFillLittleEndianByteOrder(ics->imel.dataType,
(int)IcsGetDataTypeSize(ics->imel.dataType),
ics->byteOrder);
break;
case IcsByteOrder_bigEndian:
IcsFillBigEndianByteOrder(ics->imel.dataType,
(int)IcsGetDataTypeSize(ics->imel.dataType),
ics->byteOrder);
break;
default:
return IcsErr_IllParameter;
}
return error;
}
/* Set the compression method and compression parameter. */
Ics_Error IcsSetCompression(ICS *ics,
Ics_Compression compression,
int level)
{
ICSINIT;
if ((ics == NULL) || (ics->fileMode != IcsFileMode_write))
return IcsErr_NotValidAction;
if (compression == IcsCompr_compress)
compression = IcsCompr_gzip; /* don't try writing 'compress' compressed
data. */
ics->compression = compression;
ics->compLevel = level;
return error;
}
/* Get the position of the image in the real world: the origin of the first
pixel, the distances between pixels and the units in which to measure. If you
are not interested in one of the parameters, set the pointer to
NULL. Dimensions start at 0. */
Ics_Error IcsGetPosition(const ICS *ics,
int dimension,
double *origin,
double *scale,
char *units)
{
ICSINIT;
const char* ptr;
error = IcsGetPositionF(ics, dimension, origin, scale, &ptr);
if (!error) {
if (units) {
strcpy(units, ptr);
}
}
return error;
}
/* Idem, but without copying the strings. Output pointer `units` set to internal
buffer, which will be valid until IcsClose is called. */
Ics_Error IcsGetPositionF(const ICS *ics,
int dimension,
double *origin,
double *scale,
const char **units)
{
ICSINIT;
if (ics == NULL) return IcsErr_NotValidAction;
if (dimension >= ics->dimensions) return IcsErr_NotValidAction;
if (origin) {
*origin = ics->dim[dimension].origin;
}
if (scale) {
*scale = ics->dim[dimension].scale;
}
if (units) {
if (ics->dim[dimension].unit[0] != '\0') {
*units = ics->dim[dimension].unit;
} else {
*units = ICS_UNITS_UNDEFINED;
}
}
return error;
}
/* Set the position of the image in the real world: the origin of the first
pixel, the distances between pixels and the units in which to measure. If
units is NULL or empty, it is set to the default value of
"undefined". Dimensions start at 0. */
Ics_Error IcsSetPosition(ICS *ics,
int dimension,
double origin,
double scale,
const char *units)
{
ICSINIT;
if ((ics == NULL) || (ics->fileMode == IcsFileMode_read))
return IcsErr_NotValidAction;
if (dimension >= ics->dimensions) return IcsErr_NotValidAction;
ics->dim[dimension].origin = origin;
ics->dim[dimension].scale = scale;
if (units &&(units[0] != '\0')) {
IcsStrCpy(ics->dim[dimension].unit, units, ICS_STRLEN_TOKEN);
} else {
strcpy(ics->dim[dimension].unit, ICS_UNITS_UNDEFINED);
}
return error;
}
/* Get the ordering of the dimensions in the image. The ordering is defined by
names and labels for each dimension. The defaults are x, y, z, t(time) and
probe. Dimensions start at 0. */
Ics_Error IcsGetOrder(const ICS *ics,
int dimension,
char *order,
char *label)
{
ICSINIT;
const char *order_ptr;
const char *label_ptr;
error = IcsGetOrderF(ics, dimension, &order_ptr, &label_ptr);
if (!error) {
if (order) {
strcpy(order, order_ptr);
}
if (label) {
strcpy(label, label_ptr);
}
}
return error;
}
/* Idem, but without copying the strings. Output pointers `order` and `label` set
to internal buffer, which will be valid until IcsClose is called. */
Ics_Error IcsGetOrderF(const ICS *ics,
int dimension,
const char **order,
const char **label)
{
ICSINIT;
if (ics == NULL) return IcsErr_NotValidAction;
if (dimension >= ics->dimensions) return IcsErr_NotValidAction;
if (order) {
*order = ics->dim[dimension].order;
}
if (label) {
*label = ics->dim[dimension].label;
}
return error;
}
/* Set the ordering of the dimensions in the image. The ordering is defined by
providing names and labels for each dimension. The defaults are x, y, z, t
(time) and probe. Dimensions start at 0. */
Ics_Error IcsSetOrder(ICS *ics,
int dimension,
const char *order,
const char *label)
{
ICSINIT;
if ((ics == NULL) || (ics->fileMode == IcsFileMode_read))
return IcsErr_NotValidAction;
if (dimension >= ics->dimensions) return IcsErr_NotValidAction;
if (order &&(order[0] != '\0')) {
IcsStrCpy(ics->dim[dimension].order, order, ICS_STRLEN_TOKEN);
if (label &&(label[0] != '\0')) {
IcsStrCpy(ics->dim[dimension].label, label, ICS_STRLEN_TOKEN);
} else {
IcsStrCpy(ics->dim[dimension].label, order, ICS_STRLEN_TOKEN);
}
} else {
if (label &&(label[0] != '\0')) {
IcsStrCpy(ics->dim[dimension].label, label, ICS_STRLEN_TOKEN);
} else {
error = IcsErr_NotValidAction;
}
}
return error;
}
/* Get the coordinate system used in the positioning of the pixels. Related to
IcsGetPosition(). The default is "video". */
Ics_Error IcsGetCoordinateSystem(const ICS *ics,
char *coord)
{
ICSINIT;
if (ics == NULL) return IcsErr_NotValidAction;
if (coord == NULL) return IcsErr_NotValidAction;
if (ics->coord[0] != '\0') {
strcpy(coord, ics->coord);
} else {
strcpy(coord, ICS_COORD_VIDEO);
}
return error;
}
/* Set the coordinate system used in the positioning of the pixels. Related to
IcsSetPosition(). The default is "video". */
Ics_Error IcsSetCoordinateSystem(ICS *ics,
const char *coord)
{
ICSINIT;
if ((ics == NULL) || (ics->fileMode == IcsFileMode_read))
return IcsErr_NotValidAction;
if (coord &&(coord[0] != '\0')) {
IcsStrCpy(ics->coord, coord, ICS_STRLEN_TOKEN);
} else {
strcpy(ics->coord, ICS_COORD_VIDEO);
}
return error;
}
/* Get the number of significant bits. */
Ics_Error IcsGetSignificantBits(const ICS *ics,
size_t *nbits)
{
ICSINIT;
if ((ics == NULL) || (ics->fileMode == IcsFileMode_write))
return IcsErr_NotValidAction;
if (nbits == NULL) return IcsErr_NotValidAction;
*nbits = ics->imel.sigBits;
return error;
}
/* Set the number of significant bits. */
Ics_Error IcsSetSignificantBits(ICS *ics,
size_t nbits)
{
ICSINIT;
size_t maxbits = IcsGetDataTypeSize(ics->imel.dataType) * 8;
if ((ics == NULL) || (ics->fileMode != IcsFileMode_write))
return IcsErr_NotValidAction;
if (ics->dimensions == 0) return IcsErr_NoLayout;
if (nbits > maxbits) {
nbits = maxbits;
}
ics->imel.sigBits = nbits;
return error;
}
/* Set the position of the pixel values: the offset and scaling, and the units
in which to measure. If you are not interested in one of the parameters, set
the pointer to NULL. */
Ics_Error IcsGetImelUnits(const ICS *ics,
double *origin,
double *scale,
char *units)
{
ICSINIT;
const char* ptr;
error = IcsGetImelUnitsF(ics, origin, scale, &ptr);
if (!error) {
if (units) {
strcpy(units, ptr);
}
}
return error;
}
/* Idem, but without copying the strings. Output pointer `units` set to internal
buffer, which will be valid until IcsClose is called. */
Ics_Error IcsGetImelUnitsF(const ICS *ics,
double *origin,
double *scale,
const char **units)
{
ICSINIT;
if (ics == NULL) return IcsErr_NotValidAction;
if (origin) {
*origin = ics->imel.origin;
}
if (scale) {
*scale = ics->imel.scale;
}
if (units) {
if (ics->imel.unit[0] != '\0') {
*units = ics->imel.unit;
} else {
*units = ICS_UNITS_RELATIVE;
}
}
return error;
}
/* Set the position of the pixel values: the offset and scaling, and the units
in which to measure. If units is NULL or empty, it is set to the default
value of "relative". */
Ics_Error IcsSetImelUnits(ICS *ics,
double origin,
double scale,
const char *units)
{
ICSINIT;
if ((ics == NULL) || (ics->fileMode == IcsFileMode_read))
return IcsErr_NotValidAction;
ics->imel.origin = origin;
ics->imel.scale = scale;
if (units &&(units[0] != '\0')) {
IcsStrCpy(ics->imel.unit, units, ICS_STRLEN_TOKEN);
} else {
strcpy(ics->imel.unit, ICS_UNITS_RELATIVE);
}
return error;
}
/* Get the string for the SCIL_TYPE parameter. This string is used only by
SCIL_Image. */
Ics_Error IcsGetScilType(const ICS *ics,
char *sciltype)
{
ICSINIT;
if (ics == NULL) return IcsErr_NotValidAction;
if (sciltype == NULL) return IcsErr_NotValidAction;
strcpy(sciltype, ics->scilType);
return error;
}
/* Set the string for the SCIL_TYPE parameter. This string is used only by
SCIL_Image. It is required if you want to read the image using SCIL_Image. */
Ics_Error IcsSetScilType(ICS *ics,
const char *sciltype)
{
ICSINIT;
if ((ics == NULL) || (ics->fileMode == IcsFileMode_read))
return IcsErr_NotValidAction;
IcsStrCpy(ics->scilType, sciltype, ICS_STRLEN_TOKEN);
return error;
}
/* As IcsSetScilType, but creates a string according to the DataType in the ICS
structure. It can create a string for g2d, g3d, f2d, f3d, c2d and c3d. */
Ics_Error IcsGuessScilType(ICS *ics)
{
ICSINIT;
if ((ics == NULL) || (ics->fileMode == IcsFileMode_read))
return IcsErr_NotValidAction;
switch (ics->imel.dataType) {
case Ics_uint8:
case Ics_sint8:
case Ics_uint16:
case Ics_sint16:
ics->scilType[0] = 'g';
break;
case Ics_real32:
ics->scilType[0] = 'f';
break;
case Ics_complex32:
ics->scilType[0] = 'c';
break;
case Ics_uint32:
case Ics_sint32:
case Ics_uint64:
case Ics_sint64:
case Ics_real64:
case Ics_complex64:
return IcsErr_NoScilType;
case Ics_unknown:
default:
ics->scilType[0] = '\0';
return IcsErr_NotValidAction;
}
if (ics->dimensions == 3) {
ics->scilType[1] = '3';
} else if (ics->dimensions > 3) {
ics->scilType[0] = '\0';
error = IcsErr_NoScilType;
} else {
ics->scilType[1] = '2';
}
ics->scilType[2] = 'd';
ics->scilType[3] = '\0';
return error;
}
/* Returns a textual description of the error code. */
const char *IcsGetErrorText(Ics_Error error)
{
const char *msg;
switch (error) {
case IcsErr_Ok:
msg = "A-OK";
break;
case IcsErr_FSizeConflict:
msg = "Non fatal error: unexpected data size";
break;
case IcsErr_OutputNotFilled:
msg = "Non fatal error: the output buffer could not be completely "
"filled";
break;
case IcsErr_Alloc:
msg = "Memory allocation error";
break;
case IcsErr_BitsVsSizeConfl:
msg = "Image size conflicts with bits per element";
break;
case IcsErr_BlockNotAllowed:
msg = "It is not possible to read COMPRESS-compressed data in "
"blocks";
break;
case IcsErr_BufferTooSmall:
msg = "The buffer was too small to hold the given ROI";
break;
case IcsErr_CompressionProblem:
msg = "Some error occurred during compression";
break;
case IcsErr_CorruptedStream:
msg = "The compressed input stream is corrupted";
break;
case IcsErr_DecompressionProblem:
msg = "Some error occurred during decompression";
break;
case IcsErr_DuplicateData:
msg = "The ICS data structure already contains incompatible stuff";
break;
case IcsErr_EmptyField:
msg = "Empty field";
break;
case IcsErr_EndOfHistory:
msg = "All history lines have already been returned";
break;
case IcsErr_EndOfStream:
msg = "Unexpected end of stream";
break;
case IcsErr_FCloseIcs:
msg = "File close error on .ics file";
break;
case IcsErr_FCloseIds:
msg = "File close error on .ids file";
break;
case IcsErr_FCopyIds:
msg = "Failed to copy image data from temporary file on .ics file "
"opened for updating";
break;
case IcsErr_FOpenIcs:
msg = "File open error on .ics file";
break;
case IcsErr_FOpenIds:
msg = "File open error on .ids file";
break;
case IcsErr_FReadIcs:
msg = "File read error on .ics file";
break;
case IcsErr_FReadIds:
msg = "File read error on .ids file";
break;
case IcsErr_FTempMoveIcs:
msg = "Failed to rename .ics file opened for updating";
break;
case IcsErr_FWriteIcs:
msg = "File write error on .ics file";
break;
case IcsErr_FWriteIds:
msg = "File write error on .ids file";
break;
case IcsErr_FailWriteLine:
msg = "Failed to write a line in .ics file";
break;
case IcsErr_IllIcsToken:
msg = "Illegal ICS token detected";
break;
case IcsErr_IllParameter:
msg = "A function parameter has a value that is not legal or does "
"not match with a value previously given";
break;
case IcsErr_IllegalROI:
msg = "The given ROI extends outside the image";
break;
case IcsErr_LineOverflow:
msg = "Line overflow in .ics file";
break;
case IcsErr_MissBits:
msg = "Missing \"bits\" element in .ics file";
break;
case IcsErr_MissCat:
msg = "Missing main category";
break;
case IcsErr_MissLayoutSubCat:
msg = "Missing layout subcategory";
break;
case IcsErr_MissParamSubCat:
msg = "Missing parameter subcategory";
break;
case IcsErr_MissRepresSubCat:
msg = "Missing representation subcategory";
break;
case IcsErr_MissSensorSubCat:
msg = "Missing sensor subcategory";
break;
case IcsErr_MissSensorSubSubCat:
msg = "Missing sensor subsubcategory";
break;
case IcsErr_MissSensorSubSubCatIndex:
msg = "Missing sensor subsubcategory index";
break;
case IcsErr_MissSubCat:
msg = "Missing sub category";
break;
case IcsErr_MissingData:
msg = "There is no Data defined";
break;
case IcsErr_NoLayout:
msg = "Layout parameters missing or not defined";
break;
case IcsErr_NoScilType:
msg = "There doesn't exist a SCIL_TYPE value for this image";
break;
case IcsErr_NotIcsFile:
msg = "Not an ICS file";
break;
case IcsErr_NotValidAction:
msg = "The function won't work on the ICS given";
break;
case IcsErr_TooManyDetectors:
msg = "Too many detectors specified";
break;
case IcsErr_TooManyChans:
msg = "Too many channels specified";
break;
case IcsErr_TooManyDims:
msg = "Data has too many dimensions";
break;
case IcsErr_UnknownCompression:
msg = "Unknown compression type";
break;
case IcsErr_UnknownDataType:
msg = "The data type is not recognized";
break;
case IcsErr_UnknownSensorState:
msg = "The state is not recognized";
break;
case IcsErr_WrongZlibVersion:
msg = "libics is linking to a different version of zlib than used "
"during compilation";
break;
default:
msg = "Some error occurred I know nothing about.";
}
return msg;
}
|