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 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522
|
/* ----------------------------- MNI Header -----------------------------------
@NAME : minc_convenience.c
@DESCRIPTION: File of convenience functions following the minc standard.
@METHOD : Routines included in this file :
public :
miget_datatype
miget_default_range
miget_valid_range
miset_valid_range
miget_image_range
mivar_exists
miattput_pointer
miattget_pointer
miadd_child
micreate_std_variable
micreate_group_variable
miget_version
miappend_history
micreate_ident
private :
MI_create_dim_variable
MI_create_dimwidth_variable
MI_create_image_variable
MI_create_imaxmin_variable
MI_verify_maxmin_dims
MI_create_root_variable
MI_create_simple_variable
MI_add_stdgroup
MI_is_in_list
@CREATED : July 27, 1992. (Peter Neelin, Montreal Neurological Institute)
@MODIFIED :
* $Log: minc_convenience.c,v $
* Revision 6.21 2008-01-17 02:33:02 rotor
* * removed all rcsids
* * removed a bunch of ^L's that somehow crept in
* * removed old (and outdated) BUGS file
*
* Revision 6.20 2008/01/12 19:08:14 stever
* Add __attribute__ ((unused)) to all rcsid variables.
*
* Revision 6.19 2007/12/03 14:19:35 rotor
* * fixed history appending bug (Thanks Claude)
* * updated version for release
* * few more fixes for CMake build
*
* Revision 6.18 2004/12/14 23:53:46 bert
* Get rid of compilation warnings
*
* Revision 6.17 2004/12/03 21:52:35 bert
* Minor changes for Windows build
*
* Revision 6.16 2004/10/15 13:46:15 bert
* Minor changes for Windows compatibility
*
* Revision 6.15 2004/08/26 16:14:21 bert
* Fix up miappend_history() again
*
* Revision 6.14 2004/06/04 18:15:46 bert
* Added micreate_ident()
*
* Revision 6.13 2004/04/27 15:49:17 bert
* Use new logging, gettext preparation
*
* Revision 6.12 2004/03/24 20:53:48 bert
* Increase att_length by one in miappend_history() in order to read the entire attribute
*
* Revision 6.11 2004/02/02 18:22:46 bert
* Added miget_version() and miappend_history()
*
* Revision 6.10 2001/12/06 14:09:07 neelin
* Corrected return from mivar_exists to use minc macro MI_RETURN so that
* ncopts is properly restored.
*
* Revision 6.9 2001/11/13 14:15:18 neelin
* Added functions miget_image_range and mivar_exists
*
* Revision 6.8 2001/10/17 14:32:20 neelin
* Modified miset_valid_range to write out valid_range as double in all
* cases except float. Unfortunately, writing out values in a type that
* matched the type of the image variable caused problems with programs
* linked against old minc libraries.
*
* Revision 6.7 2001/09/18 15:44:27 neelin
* When output type is NC_BYTE, valid_range attribute should have type NC_SHORT.
*
* Revision 6.6 2001/08/20 13:19:14 neelin
* Added function miattget_with_sign to allow the caller to specify the sign
* of the input attribute since this information is ambiguous. This is
* necessary for the valid_range attribute which should have the same sign
* as the image data. Modified miget_valid_range to make use of this function.
*
* Revision 6.5 2001/08/16 19:24:11 neelin
* Fixes to the code handling valid_range values.
*
* Revision 6.4 2001/08/16 16:41:32 neelin
* Added library functions to handle reading of datatype, sign and valid range,
* plus writing of valid range and setting of default ranges. These functions
* properly handle differences between valid_range type and image type. Such
* difference can cause valid data to appear as invalid when double to float
* conversion causes rounding in the wrong direction (out of range).
* Modified voxel_loop, volume_io and programs to use these functions.
*
* Revision 6.3 2001/08/16 13:32:18 neelin
* Partial fix for valid_range of different type from image (problems
* arising from double to float conversion/rounding). NOT COMPLETE.
*
* Revision 6.2 2001/04/17 18:40:13 neelin
* Modifications to work with NetCDF 3.x
* In particular, changed NC_LONG to NC_INT (and corresponding longs to ints).
* Changed NC_UNSPECIFIED to NC_NAT.
* A few fixes to the configure script.
*
* Revision 6.1 1999/10/19 14:45:09 neelin
* Fixed Log subsitutions for CVS
*
* Revision 6.0 1997/09/12 13:24:54 neelin
* Release of minc version 0.6
*
* Revision 5.0 1997/08/21 13:25:53 neelin
* Release of minc version 0.5
*
* Revision 4.0 1997/05/07 20:07:52 neelin
* Release of minc version 0.4
*
* Revision 3.0 1995/05/15 19:33:12 neelin
* Release of minc version 0.3
*
* Revision 2.1 1995/02/08 19:01:06 neelin
* Moved private function declarations from minc_routines.h to appropriate file.
*
* Revision 2.0 1994/09/28 10:38:02 neelin
* Release of minc version 0.2
*
* Revision 1.18 94/09/28 10:37:12 neelin
* Pre-release
*
* Revision 1.17 93/08/11 12:06:19 neelin
* Added RCS logging in source.
*
@COPYRIGHT :
Copyright 1993 Peter Neelin, McConnell Brain Imaging Centre,
Montreal Neurological Institute, McGill University.
Permission to use, copy, modify, and distribute this
software and its documentation for any purpose and without
fee is hereby granted, provided that the above copyright
notice appear in all copies. The author and McGill University
make no representations about the suitability of this
software for any purpose. It is provided "as is" without
express or implied warranty.
---------------------------------------------------------------------------- */
#include "minc_private.h"
#include "type_limits.h"
#include "minc_varlists.h"
#include <time.h>
#if HAVE_UNISTD_H
#include <unistd.h> /* for getpid() */
#endif /* HAVE_UNISTD_H */
/* Private functions */
PRIVATE int MI_create_dim_variable(int cdfid, char *name,
nc_type datatype, int ndims);
PRIVATE int MI_create_dimwidth_variable(int cdfid, char *name,
nc_type datatype, int ndims);
PRIVATE int MI_create_image_variable(int cdfid, char *name, nc_type datatype,
int ndims, int dim[]);
PRIVATE int MI_create_imaxmin_variable(int cdfid, char *name, nc_type datatype,
int ndims, int dim[]);
PRIVATE int MI_verify_maxmin_dims(int cdfid,
int image_ndims, int image_dim[],
int maxmin_ndims, int maxmin_dim[]);
PRIVATE int MI_create_root_variable(int cdfid, char *name);
PRIVATE int MI_create_simple_variable(int cdfid, char *name);
PRIVATE int MI_add_stdgroup(int cdfid, int varid);
PRIVATE int MI_is_in_list(char *string, char *list[]);
/* ----------------------------- MNI Header -----------------------------------
@NAME : miget_datatype
@INPUT : cdfid - cdf file id
imgid - image variable id
@OUTPUT : datatype
is_signed - TRUE if type is signed
@RETURNS : MI_ERROR when an error occurs.
@DESCRIPTION: Gets the datatype and sign of the image variable.
@METHOD :
@GLOBALS :
@CALLS : NetCDF and MINC routines.
@CREATED : August 15, 2001
@MODIFIED :
---------------------------------------------------------------------------- */
MNCAPI int miget_datatype(int cdfid, int imgid,
nc_type *datatype, int *is_signed)
{
int old_ncopts;
int use_default_sign;
char attstr[MI_MAX_ATTSTR_LEN];
MI_SAVE_ROUTINE_NAME("miget_datatype");
/* Get the type information for the variable */
if (ncvarinq(cdfid, imgid, NULL, datatype, NULL, NULL, NULL) == MI_ERROR)
MI_RETURN(MI_ERROR);
/* Save the ncopts value */
old_ncopts = ncopts;
ncopts = 0;
/* Get the sign information */
if ((miattgetstr(cdfid, imgid, MIsigntype,
MI_MAX_ATTSTR_LEN, attstr) != NULL)) {
use_default_sign = FALSE;
if (strcmp(attstr, MI_SIGNED) == 0)
*is_signed = TRUE;
else if (strcmp(attstr, MI_UNSIGNED) == 0)
*is_signed = FALSE;
else
use_default_sign = TRUE;
}
else {
use_default_sign = TRUE;
}
/* Set a default sign if needed */
if (use_default_sign) {
if (*datatype == NC_BYTE)
*is_signed = FALSE;
else
*is_signed = TRUE;
}
/* Restore ncopts */
ncopts = old_ncopts;
MI_RETURN(MI_NOERROR);
}
/* ----------------------------- MNI Header -----------------------------------
@NAME : miget_default_range
@INPUT : datatype
is_signed - TRUE if type is signed
@OUTPUT : default_range - array containing default range for variable
@RETURNS : MI_NOERROR
@DESCRIPTION: Gets the default range for a data type.
@METHOD :
@GLOBALS :
@CALLS : NetCDF and MINC routines.
@CREATED : August 15, 2001
@MODIFIED :
---------------------------------------------------------------------------- */
MNCAPI int miget_default_range(nc_type datatype, int is_signed,
double default_range[])
{
MI_SAVE_ROUTINE_NAME("miget_default_range");
switch (datatype) {
case NC_INT:
default_range[0] = (is_signed) ? INT_MIN : 0;
default_range[1] = (is_signed) ? INT_MAX : UINT_MAX;
break;
case NC_SHORT:
default_range[0] = (is_signed) ? SHRT_MIN : 0;
default_range[1] = (is_signed) ? SHRT_MAX : USHRT_MAX;
break;
case NC_BYTE:
default_range[0] = (is_signed) ? SCHAR_MIN : 0;
default_range[1] = (is_signed) ? SCHAR_MAX : UCHAR_MAX;
break;
case NC_FLOAT:
default_range[0] = -FLT_MAX;
default_range[1] = FLT_MAX;
break;
case NC_DOUBLE:
default_range[0] = -DBL_MAX;
default_range[1] = DBL_MAX;
break;
default:
default_range[0]= MI_DEFAULT_MIN;
default_range[1]= MI_DEFAULT_MAX;
break;
}
MI_RETURN(MI_NOERROR);
}
/* ----------------------------- MNI Header -----------------------------------
@NAME : miget_valid_range
@INPUT : cdfid - cdf file id
imgid - image variable id
@OUTPUT : valid_range - array containing valid min and max of image
@RETURNS : MI_ERROR when an error occurs.
@DESCRIPTION: Gets the valid range for an image variable. Ensures that
the values are cast to the appropriate type to ensure
that they are correctly truncated. This is particularly
important for float images. If the range cannot be found,
then use the default values.
@METHOD :
@GLOBALS :
@CALLS : NetCDF and MINC routines.
@CREATED : August 15, 2001
@MODIFIED :
---------------------------------------------------------------------------- */
MNCAPI int miget_valid_range(int cdfid, int imgid, double valid_range[])
{
int old_ncopts;
int status;
int length;
nc_type datatype;
int is_signed;
char *att_sign;
double temp;
MI_SAVE_ROUTINE_NAME("miget_valid_range");
/* Get the type information for the variable */
if (miget_datatype(cdfid, imgid, &datatype, &is_signed) == MI_ERROR)
MI_RETURN(MI_ERROR);
/* Save the ncopts value */
old_ncopts = ncopts;
ncopts = 0;
/* Get the sign string for the attribute */
if (is_signed)
att_sign = MI_SIGNED;
else
att_sign = MI_UNSIGNED;
/* Get valid range */
status=miattget_with_sign(cdfid, imgid, MIvalid_range,
att_sign, NC_DOUBLE, NULL,
2, valid_range, &length);
/* If not there, look for the max and min */
if ((status==MI_ERROR) || (length!=2)) {
/* Get the default range for the type */
(void) miget_default_range(datatype, is_signed, valid_range);
/* Try to read the valid max */
(void) miattget_with_sign(cdfid, imgid, MIvalid_max,
att_sign, NC_DOUBLE, NULL,
1, &valid_range[1], NULL);
/* Try to read the valid min */
(void) miattget_with_sign(cdfid, imgid, MIvalid_min,
att_sign, NC_DOUBLE, NULL,
1, &valid_range[0], NULL);
}
/* Restore the ncopts value */
ncopts = old_ncopts;
/* Make sure that the first element is the minimum */
if (valid_range[1] < valid_range[0]) {
temp = valid_range[0];
valid_range[0] = valid_range[1];
valid_range[1] = temp;
}
/* Cast to the appropriate type and back to make sure that things are
rounded/truncated properly. This is only really needed for floats */
switch (datatype) {
case NC_INT:
case NC_SHORT:
case NC_BYTE:
if (is_signed) {
valid_range[0] = (int) valid_range[0];
valid_range[1] = (int) valid_range[1];
}
else {
valid_range[0] = (unsigned int) valid_range[0];
valid_range[1] = (unsigned int) valid_range[1];
}
break;
case NC_FLOAT:
valid_range[0] = (float) valid_range[0];
valid_range[1] = (float) valid_range[1];
break;
}
MI_RETURN(MI_NOERROR);
}
/* ----------------------------- MNI Header -----------------------------------
@NAME : miset_valid_range
@INPUT : cdfid - cdf file id
imgid - image variable id
valid_range - array containing valid min and max of image
@OUTPUT : (none)
@RETURNS : MI_ERROR when an error occurs.
@DESCRIPTION: Sets the valid range for an image variable. Ensures that
the attribute types match the image variable type.
This is particularly important for float images because of
potential rounding when going from double to float.
@METHOD :
@GLOBALS :
@CALLS : NetCDF and MINC routines.
@CREATED : August 15, 2001
@MODIFIED :
---------------------------------------------------------------------------- */
MNCAPI int miset_valid_range(int cdfid, int imgid, double valid_range[])
{
nc_type datatype;
int is_signed;
int status;
char *attname;
float fval[2];
MI_SAVE_ROUTINE_NAME("miset_valid_range");
/* Get the type information for the variable */
if (miget_datatype(cdfid, imgid, &datatype, &is_signed) == MI_ERROR)
MI_RETURN(MI_ERROR);
/* Cast to the appropriate type and save. Originally, it was thought
that casting to the type of the image variable would be a good idea
because NetCDF says that it should. Unfortunately, this breaks
compatibility in some cases with programs linked with old minc
libraries, so we only cast for floats to avoid rounding problems
(cast from double to float can put values out of range) - for
everything else double is used. */
attname = MIvalid_range;
switch (datatype) {
case NC_FLOAT:
fval[0] = valid_range[0];
fval[1] = valid_range[1];
status = ncattput(cdfid, imgid, attname, datatype, 2, fval);
break;
default:
status = ncattput(cdfid, imgid, attname, NC_DOUBLE, 2, valid_range);
break;
}
MI_RETURN(status);
}
/* ----------------------------- MNI Header -----------------------------------
@NAME : miget_image_range
@INPUT : cdfid - cdf file id
@OUTPUT : image_range - array containing min and max of image-min/max
for the entire file
@RETURNS : MI_ERROR when an error occurs.
@DESCRIPTION: Gets the image range for a file - that is, the maximum
image-max value and the minimum image-min value.
For float images, ensures that values are cast to float to
ensure that they are correctly truncated. If the range cannot
be found, then use the default values for int images and
valid_range for floating-point images.
@METHOD :
@GLOBALS :
@CALLS : NetCDF and MINC routines.
@CREATED : October 19, 2001
@MODIFIED :
---------------------------------------------------------------------------- */
MNCAPI int miget_image_range(int cdfid, double image_range[])
{
int oldncopts; /* For saving value of ncopt */
int vid[2]; /* Variable ids for min and max */
int imgid; /* Image variable id */
nc_type datatype; /* Type of image variable */
int is_signed; /* Indicates if image variable is signed */
int is_float, no_range_found; /* Flags */
int imm; /* For looping over min and max */
int ndims; /* Number of dimensions of variable */
int idim; /* For looping over dimensions */
int dim[MAX_VAR_DIMS]; /* Dimension ids of variable */
long ientry; /* For stepping through values */
long size; /* Size of min and max variables */
long start[MAX_VAR_DIMS]; /* Start of variable */
long count[MAX_VAR_DIMS]; /* Dimension sizes */
double *buffer; /* Pointer to buffer for min/max values */
MI_SAVE_ROUTINE_NAME("miget_image_range");
/* Set default values for image_range */
image_range[0] = MI_DEFAULT_MIN;
image_range[1] = MI_DEFAULT_MAX;
/* Get the image-min/max variable ids */
oldncopts=ncopts; ncopts=0;
vid[0] = ncvarid(cdfid, MIimagemin);
vid[1] = ncvarid(cdfid, MIimagemax);
ncopts = oldncopts;
/* Get the type information for the image variable */
if ( ((imgid = ncvarid(cdfid, MIimage)) == MI_ERROR) ||
(miget_datatype(cdfid, imgid, &datatype, &is_signed) == MI_ERROR) )
MI_RETURN(MI_ERROR);
/* No max/min variables, so use valid_range values for floats
if it is set and defaults otherwise */
if ((vid[0] == MI_ERROR) || (vid[1] == MI_ERROR)) {
/* Check for a floating-point type - if it is, try to get the
valid_range. If the valid_range was set to full range
for the type, then that means that the valid range was probably
not set (and if it was, it was not particularly reasonable). */
is_float = (datatype == NC_FLOAT || datatype == NC_DOUBLE);
no_range_found = FALSE;
if (is_float) {
if (miget_valid_range(cdfid, imgid, image_range) == MI_ERROR)
MI_RETURN(MI_ERROR);
no_range_found =
(datatype == NC_FLOAT && image_range[1] == FLT_MAX) ||
(datatype == NC_DOUBLE && image_range[1] == DBL_MAX);
}
/* If it is not a float, or if the valid range was not set, then use
the default. */
if (!is_float || no_range_found) {
image_range[0] = MI_DEFAULT_MIN;
image_range[1] = MI_DEFAULT_MAX;
}
}
/* If the variables are there then get the max and min and fastest
varying dimension */
else {
/* Set initial values */
image_range[0] = DBL_MAX;
image_range[1] = -DBL_MAX;
/* Loop over min and max */
for (imm=0; imm<2; imm++) {
/* Get dimension list */
MI_CHK_ERR(ncvarinq(cdfid, vid[imm], NULL, NULL,
&ndims, dim, NULL))
/* Loop through dimensions, getting dimension sizes and
total min/max variable size */
size=1; /* Size of MIimagemin/max variable */
for (idim=0; idim<ndims; idim++) {
MI_CHK_ERR(ncdiminq(cdfid, dim[idim], NULL, &(count[idim])))
size *= count[idim];
}
/* Get space */
if ((buffer=MALLOC(size, double))==NULL) {
milog_message(MI_MSG_OUTOFMEM, size);
MI_RETURN(MI_ERROR);
}
/* Get values */
if (mivarget(cdfid, vid[imm],
miset_coords(ndims, 0L, start),
count, NC_DOUBLE, NULL, buffer)==MI_ERROR) {
FREE(buffer);
MI_RETURN(MI_ERROR);
}
/* Loop through values, getting max/min */
for (ientry=0; ientry<size; ientry++) {
image_range[0] = MIN(image_range[0], buffer[ientry]);
image_range[1] = MAX(image_range[1], buffer[ientry]);
}
FREE(buffer);
} /* End for (imm=0; imm<2; imm++) */
} /* End if {} else {} no min/max vars */
/* Handle possible rounding errors in having double image-min/max for
float image type */
if (datatype == NC_FLOAT) {
image_range[0] = (float) image_range[0];
image_range[1] = (float) image_range[1];
}
MI_RETURN(MI_NOERROR);
}
/* ----------------------------- MNI Header -----------------------------------
@NAME : mivar_exists
@INPUT : cdfid - cdf file id
varname - name of variable
@OUTPUT : (none)
@RETURNS : TRUE if variable exists, false otherwise
@DESCRIPTION: Checks for the existence of a variable.
@METHOD :
@GLOBALS :
@CALLS : NetCDF and MINC routines.
@CREATED : October 22, 2001
@MODIFIED :
---------------------------------------------------------------------------- */
MNCAPI int mivar_exists(int cdfid, char *varname)
{
int oldncopts; /* For saving value of ncopt */
int exists; /* Flag */
MI_SAVE_ROUTINE_NAME("mivar_exists");
oldncopts = ncopts;
ncopts = 0;
exists = (ncvarid(cdfid, varname) != MI_ERROR);
ncopts = oldncopts;
MI_RETURN(exists);
}
/* ----------------------------- MNI Header -----------------------------------
@NAME : miattput_pointer
@INPUT : cdfid - cdf file id
varid - variable id
name - name of attribute to point to variable
ptrvarid - variable id of existing variable to which name
should point
@OUTPUT : (none)
@RETURNS : MI_ERROR when an error occurs
@DESCRIPTION: Creates an variable attribute which points to another variable
(generally a multi-dimensional attribute that must be stored
as a variable). The variable to which the attribute points must
already exist in the file.
@METHOD :
@GLOBALS :
@CALLS : NetCDF and MINC routines.
@CREATED : August 5, 1992
@MODIFIED :
---------------------------------------------------------------------------- */
MNCAPI int miattput_pointer(int cdfid, int varid, char *name, int ptrvarid)
{
/* String to hold pointer to variable */
char pointer_string[MAX_NC_NAME+sizeof(MI_VARATT_POINTER_PREFIX)];
int index; /* Index into string */
MI_SAVE_ROUTINE_NAME("miattput_pointer");
/* Set the first part of the string */
index=strlen(strcpy(pointer_string,MI_VARATT_POINTER_PREFIX));
/* Get the name of the variable to which we should point */
MI_CHK_ERR(ncvarinq(cdfid, ptrvarid, &(pointer_string[index]), NULL,
NULL, NULL, NULL))
/* Set the attribute of the parent */
MI_CHK_ERR(miattputstr(cdfid, varid, name, pointer_string))
/* Get the name of the parent variable */
MI_CHK_ERR(ncvarinq(cdfid, varid, pointer_string, NULL,
NULL, NULL, NULL))
/* Set the attribute of the variable to which we point */
MI_CHK_ERR(miattputstr(cdfid, ptrvarid, MIparent, pointer_string))
/* Set the MIvartype attribute for ptrvarid */
MI_CHK_ERR(miattputstr(cdfid, ptrvarid, MIvartype, MI_VARATT))
MI_RETURN(MI_NOERROR);
}
/* ----------------------------- MNI Header -----------------------------------
@NAME : miattget_pointer
@INPUT : cdfid - cdf file id
varid - variable id
name - attribute name that should contain a pointer to
a variable
@OUTPUT : (none)
@RETURNS : variable id pointed to by name, MI_ERROR if an error occurs.
@DESCRIPTION:
@METHOD :
@GLOBALS :
@CALLS : NetCDF and MINC routines
@CREATED : August 5, 1992
@MODIFIED :
---------------------------------------------------------------------------- */
MNCAPI int miattget_pointer(int cdfid, int varid, char *name)
{
/* Character string to hold attribute */
char pointer_string[MAX_NC_NAME+sizeof(MI_VARATT_POINTER_PREFIX)];
int index; /* Index into string */
char *prefix_string=MI_VARATT_POINTER_PREFIX; /* Prefix string */
int ptrvarid; /* Id of variable pointed to by name */
MI_SAVE_ROUTINE_NAME("miattget_pointer");
/* Get the attribute */
if (miattgetstr(cdfid, varid, name, sizeof(pointer_string),
pointer_string) == NULL)
MI_RETURN_ERROR(MI_ERROR);
/* Check for the prefix */
for (index=0; prefix_string[index]!='\0'; index++) {
if (pointer_string[index]!=prefix_string[index]) {
milog_message(MI_MSG_ATTRNOTPTR, name);
MI_RETURN(MI_ERROR);
}
}
/* Get the variable id */
{MI_CHK_ERR((ptrvarid=ncvarid(cdfid, &pointer_string[index])))}
MI_RETURN(ptrvarid);
}
/* ----------------------------- MNI Header -----------------------------------
@NAME : miadd_child
@INPUT : cdfid - cdf file id
parent_varid - variable id of parent variable
child_varid - variable id of child variable
@OUTPUT : (none)
@RETURNS : MI_ERROR if an error occurs.
@DESCRIPTION: Adds the name of child_varid to the children attribute of
parent_varid and sets the parent attribute of child_varid
to the name of parent_varid.
@METHOD :
@GLOBALS :
@CALLS : NetCDF and MINC routines
@CREATED : August 5, 1992
@MODIFIED :
---------------------------------------------------------------------------- */
MNCAPI int miadd_child(int cdfid, int parent_varid, int child_varid)
{
char *child_list; /* Pointer to string list of children */
int child_list_size; /* Length of child list string */
int oldncopts; /* To set and reset ncopts */
nc_type datatype; /* Type of attribute */
int status; /* Status of function call */
char *new_child; /* String containing name of new child */
MI_SAVE_ROUTINE_NAME("miadd_child");
/* Get the size of the child list in the parent. Handle the case where the
child list does not exist. */
oldncopts=ncopts; ncopts=0;
status=ncattinq(cdfid, parent_varid, MIchildren, &datatype,
&child_list_size);
ncopts=oldncopts;
if ((status == MI_ERROR) || (datatype != NC_CHAR))
child_list_size=0;
/* Allocate space for new child list */
if ((child_list = MALLOC(child_list_size+MAX_NC_NAME+
strlen(MI_CHILD_SEPARATOR), char)) == NULL) {
milog_message(MI_MSG_OUTOFMEM,
child_list_size+MAX_NC_NAME+strlen(MI_CHILD_SEPARATOR));
MI_RETURN(MI_ERROR);
}
/* Get the old list if needed and check for terminating null character
(child_list_size should point to the next spot in child_list,
overwriting any null character) */
if (child_list_size>0) {
if (ncattget(cdfid, parent_varid, MIchildren, child_list) == MI_ERROR) {
FREE(child_list);
milog_message(MI_MSG_READATTR, MIchildren);
MI_RETURN(MI_ERROR);
}
if (child_list[child_list_size-1] == '\0')
child_list_size--;
/* Copy the child list element separator (only if there are other
elements in the list */
(void) strcpy(&child_list[child_list_size], MI_CHILD_SEPARATOR);
child_list_size += strlen(MI_CHILD_SEPARATOR);
}
/* Get pointer to name of new child */
new_child = &child_list[child_list_size];
/* Add the new child name to the list */
if (ncvarinq(cdfid, child_varid, new_child, NULL,
NULL, NULL, NULL) == MI_ERROR) {
FREE(child_list);
MI_RETURN_ERROR(MI_ERROR);
}
/* Check for multiple copies of child */
if (strstr(child_list, new_child) != new_child) {
child_list_size -= strlen(MI_CHILD_SEPARATOR);
child_list[child_list_size] = '\0';
}
/* Put the attribute MIchildren */
if (miattputstr(cdfid, parent_varid, MIchildren, child_list) == MI_ERROR) {
FREE(child_list);
MI_RETURN_ERROR(MI_ERROR);
}
/* Get the parent variable name */
if (ncvarinq(cdfid, parent_varid, child_list, NULL, NULL, NULL, NULL)
== MI_ERROR) {
FREE(child_list);
MI_RETURN_ERROR(MI_ERROR);
}
/* Put the attribute MIparent */
if (miattputstr(cdfid, child_varid, MIparent, child_list) == MI_ERROR) {
FREE(child_list);
MI_RETURN_ERROR(MI_ERROR);
}
FREE(child_list);
MI_RETURN(MI_NOERROR);
}
/* ----------------------------- MNI Header -----------------------------------
@NAME : micreate_std_variable
@INPUT : cdfid - cdf file id
name - name of standard variable to create
datatype - type of data to store (see ncvardef)
ndims - number of dimensions of variable (see ncvardef)
dim - vector of variable dimensions (see ncvardef)
@OUTPUT : (none)
@RETURNS : id of created variable, or MI_ERROR if an error occurs
@DESCRIPTION: Creates a standard MINC variable by calling ncvardef
and then sets default attributes. The standard variables are
identified by name, so an unrecognised name produces an error.
@METHOD :
@GLOBALS :
@CALLS : NetCDF and MINC routines
@CREATED : August 5, 1992
@MODIFIED :
---------------------------------------------------------------------------- */
MNCAPI int micreate_std_variable(int cdfid, char *name, nc_type datatype,
int ndims, int dim[])
{
int varid; /* Created variable id */
MI_SAVE_ROUTINE_NAME("micreate_std_variable");
/* Check to see if it is a standard dimension */
if (MI_is_in_list(name, dimvarlist)) {
MI_CHK_ERR(varid=MI_create_dim_variable(cdfid, name, datatype, ndims))
}
/* Check for a dimension width */
else if (MI_is_in_list(name, dimwidthlist)) {
MI_CHK_ERR(varid=MI_create_dimwidth_variable(cdfid, name,
datatype, ndims))
}
/* Check for a standard variable or group */
else if (MI_is_in_list(name, varlist)) {
if (STRINGS_EQUAL(name, MIimage))
MI_CHK_ERR(varid=MI_create_image_variable(cdfid, name, datatype,
ndims, dim))
else if ((STRINGS_EQUAL(name, MIimagemax)) ||
(STRINGS_EQUAL(name, MIimagemin)))
MI_CHK_ERR(varid=MI_create_imaxmin_variable(cdfid, name, datatype,
ndims, dim))
else if (STRINGS_EQUAL(name, MIrootvariable))
MI_CHK_ERR(varid=MI_create_root_variable(cdfid, name))
else if (STRINGS_EQUAL(name, MIpatient))
MI_CHK_ERR(varid=MI_create_simple_variable(cdfid, name))
else if (STRINGS_EQUAL(name, MIstudy))
MI_CHK_ERR(varid=MI_create_simple_variable(cdfid, name))
else if (STRINGS_EQUAL(name, MIacquisition))
MI_CHK_ERR(varid=MI_create_simple_variable(cdfid, name))
else {
milog_message(MI_MSG_VARNOTSTD, name);
MI_RETURN(MI_ERROR);
}
}
/* If not in any list, then return an error */
else {
milog_message(MI_MSG_VARNOTSTD, name);
MI_RETURN(MI_ERROR);
}
MI_RETURN(varid);
}
/* ----------------------------- MNI Header -----------------------------------
@NAME : MI_create_dim_variable
@INPUT : cdfid - cdf file id
name - name of standard variable to create
datatype - type of data to store
ndims - number of dimensions - must be 0 or 1
@OUTPUT : (none)
@RETURNS : id of created variable, or MI_ERROR if an error occurs
@DESCRIPTION: Creates a standard MINC dimension variable by calling ncvardef
and then sets default attributes. The standard variables are
identified by name, so an unrecognised name produces an error.
@METHOD :
@GLOBALS :
@CALLS : NetCDF and MINC routines
@CREATED : August 5, 1992
@MODIFIED :
---------------------------------------------------------------------------- */
PRIVATE int MI_create_dim_variable(int cdfid, char *name,
nc_type datatype, int ndims)
{
int dimid; /* Dimension id (for dimensions variables) */
int varid; /* Created variable id */
MI_SAVE_ROUTINE_NAME("MI_create_dim_variable");
/* Check for MIvector_dimension - no associated variable */
if (STRINGS_EQUAL(name, MIvector_dimension)) {
milog_message(MI_MSG_VARNOTSTD, name);
MI_RETURN(MI_ERROR);
}
/* Check for ndims being 0 or 1 */
if (ndims>1) {
milog_message(MI_MSG_TOOMANYDIMS, 1);
MI_RETURN(MI_ERROR);
}
/* Look for dimension and create the variable */
MI_CHK_ERR(dimid=ncdimid(cdfid, name))
MI_CHK_ERR(varid=ncvardef(cdfid, name, datatype, ndims, &dimid))
/* Standard attributes */
MI_CHK_ERR(miattputstr(cdfid, varid, MIvarid, MI_STDVAR))
MI_CHK_ERR(miattputstr(cdfid, varid, MIvartype, MI_DIMENSION))
MI_CHK_ERR(miattputstr(cdfid, varid, MIversion, MI_CURRENT_VERSION))
/* Add comments for spatial dimensions */
if (STRINGS_EQUAL(name, MIxspace))
{MI_CHK_ERR(miattputstr(cdfid, varid, MIcomments,
_("X increases from patient left to right")))}
else if (STRINGS_EQUAL(name, MIyspace))
{MI_CHK_ERR(miattputstr(cdfid, varid, MIcomments,
_("Y increases from patient posterior to anterior")))}
else if (STRINGS_EQUAL(name, MIzspace))
{MI_CHK_ERR(miattputstr(cdfid, varid, MIcomments,
_("Z increases from patient inferior to superior")))}
/* Dimension attributes */
if (ndims==0) {
MI_CHK_ERR(miattputstr(cdfid, varid, MIspacing, MI_REGULAR))
}
else {
MI_CHK_ERR(miattputstr(cdfid, varid, MIspacing, MI_IRREGULAR))
}
if (STRINGS_EQUAL(name, MItime))
MI_CHK_ERR(miattputstr(cdfid, varid, MIalignment, MI_START))
else
MI_CHK_ERR(miattputstr(cdfid, varid, MIalignment, MI_CENTRE))
MI_RETURN(varid);
}
/* ----------------------------- MNI Header -----------------------------------
@NAME : MI_create_dimwidth_variable
@INPUT : cdfid - cdf file id
name - name of standard variable to create
datatype - type of data to store
ndims - number of dimensions - must be 0 or 1
@OUTPUT : (none)
@RETURNS : id of created variable, or MI_ERROR if an error occurs
@DESCRIPTION: Creates a standard MINC dimension width variable by calling
ncvardef and then sets default attributes. The standard
variables are identified by name, so an unrecognised name
produces an error.
@METHOD :
@GLOBALS :
@CALLS : NetCDF and MINC routines
@CREATED : August 5, 1992
@MODIFIED :
---------------------------------------------------------------------------- */
PRIVATE int MI_create_dimwidth_variable(int cdfid, char *name,
nc_type datatype, int ndims)
{
int dimid; /* Dimension id (for dimensions variables) */
int varid; /* Created variable id */
char string[MAX_NC_NAME]; /* String for dimension name */
char *str;
MI_SAVE_ROUTINE_NAME("MI_create_dimwidth_variable");
/* Look for dimension name in name (remove width suffix) */
if ((str=strstr(strcpy(string, name),MI_WIDTH_SUFFIX)) == NULL) {
milog_message(MI_MSG_DIMWIDTH);
MI_RETURN(MI_ERROR);
}
*str='\0';
/* Check for ndims being 0 or 1 */
if (ndims>1) {
milog_message(MI_MSG_TOOMANYDIMS, 1);
MI_RETURN(MI_ERROR);
}
/* Look for the dimension */
MI_CHK_ERR(dimid=ncdimid(cdfid, string))
/* Create the variable and set defaults */
MI_CHK_ERR(varid=ncvardef(cdfid, name, datatype, ndims, &dimid))
MI_CHK_ERR(miattputstr(cdfid, varid, MIvarid, MI_STDVAR))
MI_CHK_ERR(miattputstr(cdfid, varid, MIvartype, MI_DIM_WIDTH))
MI_CHK_ERR(miattputstr(cdfid, varid, MIversion, MI_CURRENT_VERSION))
if (ndims==0) {
MI_CHK_ERR(miattputstr(cdfid, varid, MIspacing, MI_REGULAR))
}
else {
MI_CHK_ERR(miattputstr(cdfid, varid, MIspacing, MI_IRREGULAR))
}
MI_CHK_ERR(miattputstr(cdfid, varid, MIfiltertype, MI_SQUARE))
MI_RETURN(varid);
}
/* ----------------------------- MNI Header -----------------------------------
@NAME : MI_create_image_variable
@INPUT : cdfid - cdf file id
name - name of standard variable to create
datatype - type of data to store (see ncvardef)
ndims - number of dimensions of variable (see ncvardef)
dim - vector of variable dimensions (see ncvardef)
@OUTPUT : (none)
@RETURNS : id of created variable, or MI_ERROR if an error occurs
@DESCRIPTION: Creates a standard MINC image variable by calling ncvardef
and then sets default attributes.
@METHOD :
@GLOBALS :
@CALLS : NetCDF and MINC routines
@CREATED : August 6, 1992
@MODIFIED :
---------------------------------------------------------------------------- */
PRIVATE int MI_create_image_variable(int cdfid, char *name, nc_type datatype,
int ndims, int dim[])
{
int varid; /* Created variable id */
int max_varid; /* Variable id for dimensional attribute */
int min_varid; /* Variable id for dimensional attribute */
int maxmin_ndims; /* Number of dimensions in max/min variable */
int maxmin_dim[MAX_VAR_DIMS]; /* Dimensions of max/min variable */
int oldncopts; /* For saving and restoring ncopts */
MI_SAVE_ROUTINE_NAME("MI_create_image_variable");
/* Look to see if MIimagemax or MIimagemin exist for dimension checking
and pointers */
oldncopts=ncopts; ncopts=0;
max_varid=ncvarid(cdfid, MIimagemax);
min_varid=ncvarid(cdfid, MIimagemin);
ncopts=oldncopts;
if (max_varid != MI_ERROR) {
/* Get MIimagemax dimensions */
MI_CHK_ERR(ncvarinq(cdfid, max_varid, NULL, NULL, &maxmin_ndims,
maxmin_dim, NULL))
MI_CHK_ERR(MI_verify_maxmin_dims(cdfid, ndims, dim,
maxmin_ndims, maxmin_dim))
}
if (min_varid != MI_ERROR) {
/* Get MIimagemin dimensions */
MI_CHK_ERR(ncvarinq(cdfid, min_varid, NULL, NULL, &maxmin_ndims,
maxmin_dim, NULL))
MI_CHK_ERR(MI_verify_maxmin_dims(cdfid, ndims, dim,
maxmin_ndims, maxmin_dim))
}
/* Create the variable */
MI_CHK_ERR(varid=ncvardef(cdfid, name, datatype, ndims, dim))
/* Standard attributes */
MI_CHK_ERR(MI_add_stdgroup(cdfid, varid))
/* Create pointers to MIimagemax and MIimagemin if they exist */
if (max_varid!=MI_ERROR)
MI_CHK_ERR(miattput_pointer(cdfid, varid, MIimagemax, max_varid))
if (min_varid!=MI_ERROR)
MI_CHK_ERR(miattput_pointer(cdfid, varid, MIimagemin, min_varid))
MI_RETURN(varid);
}
/* ----------------------------- MNI Header -----------------------------------
@NAME : MI_create_imaxmin_variable
@INPUT : cdfid - cdf file id
name - name of standard variable to create
datatype - type of data to store (see ncvardef)
ndims - number of dimensions of variable (see ncvardef)
dim - vector of variable dimensions (see ncvardef)
@OUTPUT : (none)
@RETURNS : id of created variable, or MI_ERROR if an error occurs
@DESCRIPTION: Creates a standard MINC image maximum or minimum dimensional
attribute variable by calling ncvardef and then sets default
attributes. If MIimage exists, then dimensions are checked
(MIimagemax and MIimagemin cannot vary over the first two
dimensions of MIimage (or first three if the first is
MIvector_dimension)), and a pointer attribute is added to
MIimage.
@METHOD :
@GLOBALS :
@CALLS : NetCDF and MINC routines
@CREATED : August 6, 1992
@MODIFIED :
---------------------------------------------------------------------------- */
PRIVATE int MI_create_imaxmin_variable(int cdfid, char *name, nc_type datatype,
int ndims, int dim[])
{
int varid; /* Created variable id */
int image_varid; /* Variable id for image */
int image_ndims; /* Number of image dimensions */
int image_dim[MAX_VAR_DIMS]; /* Image dimensions */
void *fillp; /* Pointer to fill value */
int oldncopts; /* For saving and restoring ncopts */
int index;
static char fill_b[]={0,1};
static short fill_s[]={0,1};
static int fill_i[]={0,1};
static float fill_f[]={0.0,1.0};
static double fill_d[]={0.0,1.0};
MI_SAVE_ROUTINE_NAME("MI_create_imaxmin_variable");
/* Look to see if MIimage exists for dimension checking and pointers */
oldncopts=ncopts; ncopts=0;
image_varid=ncvarid(cdfid, MIimage);
ncopts=oldncopts;
if (image_varid != MI_ERROR) {
/* Get image dimensions */
MI_CHK_ERR(ncvarinq(cdfid, image_varid, NULL, NULL, &image_ndims,
image_dim, NULL))
MI_CHK_ERR(MI_verify_maxmin_dims(cdfid, image_ndims, image_dim,
ndims, dim))
}
/* Create the variable */
MI_CHK_ERR(varid=ncvardef(cdfid, name, datatype, ndims, dim))
/* Standard attributes */
MI_CHK_ERR(miattputstr(cdfid, varid, MIvarid, MI_STDVAR))
MI_CHK_ERR(miattputstr(cdfid, varid, MIvartype, MI_VARATT))
MI_CHK_ERR(miattputstr(cdfid, varid, MIversion, MI_CURRENT_VERSION))
/* Attribute for setting default values to something reasonable */
index = STRINGS_EQUAL(name, MIimagemax) ? 1 : 0;
fillp = ((datatype==NC_BYTE) ? (void *) &fill_b[index] :
(datatype==NC_SHORT) ? (void *) &fill_s[index] :
(datatype==NC_INT) ? (void *) &fill_i[index] :
(datatype==NC_FLOAT) ? (void *) &fill_f[index] :
(datatype==NC_DOUBLE) ? (void *) &fill_d[index] :
(void *) NULL);
if (fillp != NULL) {
MI_CHK_ERR(ncattput(cdfid, varid, MI_FillValue, datatype, 1, fillp))
}
/* Create pointer from MIimage to max or min if MIimage exists */
if (image_varid != MI_ERROR)
MI_CHK_ERR(miattput_pointer(cdfid, image_varid, name, varid))
MI_RETURN(varid);
}
/* ----------------------------- MNI Header -----------------------------------
@NAME : MI_verify_maxmin_dims
@INPUT : cdfid - cdf file id
image_ndims - number of MIimage dimensions
image_dim - image dimensions
maxmin_ndims - number of MIimagemax or MIimagemin dimensions
maxmin_dim - max/min dimensions
@OUTPUT : (none)
@RETURNS : MI_ERROR if dimensions don't agree
@DESCRIPTION: Verifies that MIimage dimensions and MIimagemax/MIimagemin
dimensions agree. MIimagemax/MIimagemin cannot vary over the
two fastest varying (last) dimensions of MIimage - three
fastest dimensions if MIvector_dimension is the fastest varying
dimension of MIimage (this maintains the image nature of MIimage
and its dimensional attributes MIimagemax and MIimagemin).
@METHOD :
@GLOBALS :
@CALLS : NetCDF and MINC routines
@CREATED : August 7, 1992
@MODIFIED :
---------------------------------------------------------------------------- */
PRIVATE int MI_verify_maxmin_dims(int cdfid,
int image_ndims, int image_dim[],
int maxmin_ndims, int maxmin_dim[])
{
char dimname[MAX_NC_NAME];
int i,j;
int nbaddims = 2; /* Number of dimension over which max/min
should not vary */
MI_SAVE_ROUTINE_NAME("MI_verify_maxmin_dims");
/* Check to see if last dimension is MIvectordimension */
MI_CHK_ERR(ncdiminq(cdfid, image_dim[image_ndims-1], dimname, NULL))
if (STRINGS_EQUAL(dimname, MIvector_dimension))
nbaddims++;
/* Loop through illegal image dimensions (last nbaddims) checking
dimensions against maxmin_dim */
for (i=MAX(0,image_ndims-nbaddims); i<image_ndims; i++)
for (j=0; j<maxmin_ndims; j++)
if (image_dim[i]==maxmin_dim[j]) {
milog_message(MI_MSG_MAXMINVARY);
MI_RETURN(MI_ERROR);
}
MI_RETURN(MI_NOERROR);
}
/* ----------------------------- MNI Header -----------------------------------
@NAME : MI_create_root_variable
@INPUT : cdfid - cdf file id
name - name of standard variable to create
@OUTPUT : (none)
@RETURNS : id of created variable, or MI_ERROR if an error occurs
@DESCRIPTION: Creates a standard MINC root variable by calling ncvardef
and then sets default attributes.
@METHOD :
@GLOBALS :
@CALLS : NetCDF and MINC routines
@CREATED : August 6, 1992
@MODIFIED :
---------------------------------------------------------------------------- */
PRIVATE int MI_create_root_variable(int cdfid, char *name)
{
int varid; /* Created variable id */
MI_SAVE_ROUTINE_NAME("MI_create_root_variable");
/* Create the variable */
MI_CHK_ERR(varid=ncvardef(cdfid, name, NC_INT, 0, NULL))
/* Standard attributes */
MI_CHK_ERR(miattputstr(cdfid, varid, MIvarid, MI_STDVAR))
MI_CHK_ERR(miattputstr(cdfid, varid, MIvartype, MI_GROUP))
MI_CHK_ERR(miattputstr(cdfid, varid, MIversion, MI_CURRENT_VERSION))
/* Add empty parent pointer */
MI_CHK_ERR(miattputstr(cdfid, varid, MIparent, MI_EMPTY_STRING))
MI_RETURN(varid);
}
/* ----------------------------- MNI Header -----------------------------------
@NAME : MI_create_simple_variable
@INPUT : cdfid - cdf file id
name - name of standard variable to create
@OUTPUT : (none)
@RETURNS : id of created variable, or MI_ERROR if an error occurs
@DESCRIPTION: Creates a standard MINC variable by calling ncvardef
and then sets default attributes (only standard ones)
@METHOD :
@GLOBALS :
@CALLS : NetCDF and MINC routines
@CREATED : August 6, 1992
@MODIFIED :
---------------------------------------------------------------------------- */
PRIVATE int MI_create_simple_variable(int cdfid, char *name)
{
int varid; /* Created variable id */
MI_SAVE_ROUTINE_NAME("MI_create_simple_variable");
/* Create the variable */
MI_CHK_ERR(varid=ncvardef(cdfid, name, NC_INT, 0, NULL))
/* Standard attributes */
MI_CHK_ERR(MI_add_stdgroup(cdfid, varid))
MI_RETURN(varid);
}
/* ----------------------------- MNI Header -----------------------------------
@NAME : MI_add_stdgroup
@INPUT : cdfid - cdf file id
varid - id of variable
@OUTPUT : (none)
@RETURNS : MI_ERROR if an error occurs
@DESCRIPTION: Adds an MI standard variable to the MIchildren list of
MIrootvariable and sets some standard attributes. If
MIrootvariable does not exist, it is created.
@METHOD :
@GLOBALS :
@CALLS : NetCDF and MINC routines
@CREATED : August 6, 1992
@MODIFIED :
---------------------------------------------------------------------------- */
PRIVATE int MI_add_stdgroup(int cdfid, int varid)
{
int root_varid; /* Id of root variable */
int oldncopts; /* Old value of ncopts */
MI_SAVE_ROUTINE_NAME("MI_add_stdgroup");
/* Check for root variable, and add it if it is not there */
oldncopts=ncopts; ncopts=0;
root_varid=ncvarid(cdfid, MIrootvariable);
ncopts=oldncopts;
if (root_varid==MI_ERROR) {
MI_CHK_ERR(root_varid=MI_create_root_variable(cdfid, MIrootvariable))
}
/* Add group as child of root */
MI_CHK_ERR(miadd_child(cdfid, root_varid, varid))
/* Standard attributes */
MI_CHK_ERR(miattputstr(cdfid, varid, MIvarid, MI_STDVAR))
MI_CHK_ERR(miattputstr(cdfid, varid, MIvartype, MI_GROUP))
MI_CHK_ERR(miattputstr(cdfid, varid, MIversion, MI_CURRENT_VERSION))
MI_RETURN(MI_NOERROR);
}
/* ----------------------------- MNI Header -----------------------------------
@NAME : micreate_group_variable
@INPUT : cdfid - cdf file id
name - name of standard variable to create
@OUTPUT : (none)
@RETURNS : id of created variable or MI_ERROR if an error occurs
@DESCRIPTION: Creates a standard MINC variable whose values and dimensions
are unimportant by calling ncvardef and then sets default
attributes. The standard variables are identified by name, so
an unrecognised name produces an error.
@METHOD :
@GLOBALS :
@CALLS : NetCDF routines
@CREATED : August 6, 1992 (Peter Neelin)
@MODIFIED :
---------------------------------------------------------------------------- */
MNCAPI int micreate_group_variable(int cdfid, char *name)
{
int varid;
MI_SAVE_ROUTINE_NAME("micreate_group_variable");
MI_CHK_ERR(varid=micreate_std_variable(cdfid, name, NC_INT, 0, NULL))
MI_RETURN(varid);
}
/* ----------------------------- MNI Header -----------------------------------
@NAME : miappend_history
@INPUT : id - cdf file id
tm_stamp - timestamp as returned by time_stamp() function.
@OUTPUT : (none)
@RETURNS : MI_NOERROR if successfuly
@DESCRIPTION: Appends the string (which should be in the format returned
by the time_stamp() function) to the global "history"
attribute.
@METHOD :
@GLOBALS :
@CALLS : NetCDF routines
@CREATED : January 1, 2004 (Bert Vincent)
@MODIFIED :
---------------------------------------------------------------------------- */
MNCAPI int
miappend_history(int fd, const char *tm_stamp)
{
nc_type att_type;
int att_len;
int r;
char *att_val;
int old_ncopts;
old_ncopts = ncopts;
ncopts = 0;
r = ncattinq(fd, NC_GLOBAL, MIhistory, &att_type, &att_len);
if (r < 0 || att_type != NC_CHAR) {
att_len = 0;
}
ncopts = old_ncopts;
/* Allocate enough bytes for the existing attribute, the string which
* will be appended, a terminating null character, and a possible
* additional newline.
*/
att_val = malloc(att_len + strlen(tm_stamp) + 2);
if (att_val == NULL) {
return (MI_ERROR);
}
if (att_len != 0) {
if (miattgetstr(fd, NC_GLOBAL, MIhistory, att_len + 1, att_val) == NULL) {
return (MI_ERROR);
}
/* Remove any trailing null characters. Make sure not to go before
the start of the string. */
while (att_val[att_len-1] == '\0' ) {
att_len--;
if( att_len == 0 ) break;
}
/* Add a carriage return to separate from the new history line
if there is a previous history line. */
if( att_len > 0 ) {
if (att_val[att_len-1] != '\n') {
att_val[att_len] = '\n';
att_len++;
}
}
}
/* Append the new history.
*/
strcpy(att_val + att_len, tm_stamp);
r = miattputstr(fd, NC_GLOBAL, MIhistory, att_val);
free(att_val);
return (r);
}
/* ----------------------------- MNI Header -----------------------------------
@NAME : MI_is_in_list
@INPUT : string - string for which to look
list - list in which to look (must be NULL terminated)
@OUTPUT : (none)
@RETURNS : TRUE if found, FALSE if not
@DESCRIPTION: Searches a list of character strings for string and returns
TRUE if the string is in the list.
@METHOD :
@GLOBALS :
@CALLS :
@CREATED : August 5, 1992 (Peter Neelin)
@MODIFIED :
---------------------------------------------------------------------------- */
PRIVATE int MI_is_in_list(char *string, char *list[])
{
int i;
MI_SAVE_ROUTINE_NAME("MI_is_in_list");
for (i=0; list[i] != NULL; i++) {
if (STRINGS_EQUAL(string, list[i])) MI_RETURN(TRUE);
}
MI_RETURN(FALSE);
}
/* ----------------------------- MNI Header -----------------------------------
@NAME : miget_version
@INPUT : (none)
@OUTPUT : const char *
@RETURNS : A string describing the MINC library version.
@DESCRIPTION: Just returns a fixed string.
@METHOD :
@GLOBALS :
@CALLS :
@CREATED : December 8 2003
@MODIFIED :
---------------------------------------------------------------------------- */
MNCAPI const char * miget_version(void)
{
return (VERSION);
}
/* ----------------------------- MNI Header -----------------------------------
@NAME : micreate_ident
@INPUT : (none)
@OUTPUT : int
@RETURNS : The length of the ID string
@DESCRIPTION: Creates a (hopefully) unique identifier to associate with a
MINC file, by concatenating various information about the
system, process, etc.
@METHOD :
@GLOBALS :
@CALLS :
@CREATED : 2004-May-11
@MODIFIED :
---------------------------------------------------------------------------- */
#define MI_IDENT_SEP ':'
MNCAPI int micreate_ident( char * id_str, size_t length )
{
static int identx = 1; /* Static ID counter */
time_t now;
struct tm tm_buf;
char host_str[128];
char user_str[128];
char *temp_ptr;
char time_str[26];
int result;
if (gethostname(host_str, sizeof(host_str)) != 0) {
strcpy(host_str, "unknown");
}
temp_ptr = getenv("LOGNAME");
if (temp_ptr != NULL) {
strcpy(user_str, temp_ptr);
}
else {
strcpy(user_str, "nobody");
}
time(&now);
#ifdef _MSC_VER
memcpy(&tm_buf, localtime(&now), sizeof(tm_buf));
#else
localtime_r(&now, &tm_buf);
#endif
strftime(time_str, sizeof(time_str), "%Y.%m.%d.%H.%M.%S", &tm_buf);
result = snprintf(id_str, length, "%s%c%s%c%s%c%u%c%u",
user_str,
MI_IDENT_SEP,
host_str,
MI_IDENT_SEP,
time_str,
MI_IDENT_SEP,
getpid(),
MI_IDENT_SEP,
identx++);
return (result);
}
|