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 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071
|
/* Copyright 2018, UCAR/Unidata and OPeNDAP, Inc.
See the COPYRIGHT file for more information. */
#include "config.h"
#include <stdlib.h>
#include <assert.h>
#include <string.h>
#include "netcdf.h"
#include "ocinternal.h"
#include "ocdebug.h"
#include "ocdump.h"
#include "nclog.h"
#include "ncrc.h"
#include "occurlfunctions.h"
#include "ochttp.h"
#include "ncwinpath.h"
#undef TRACK
/**************************************************/
/* Track legal ids */
#define ocverify(o) ((o) != NULL && (((OCheader*)(o))->magic == OCMAGIC)?1:0)
#define ocverifyclass(o,cl) ((o) != NULL && (((OCheader*)(o))->occlass == cl)?1:0)
#define OCVERIFYX(k,x,r) if(!ocverify(x)||!ocverifyclass(x,k)) {return (r);}
#define OCVERIFY(k,x) OCVERIFYX(k,x,OCTHROW(OC_EINVAL))
#define OCDEREF(T,s,x) (s)=(T)(x)
/**************************************************/
/*!\file oc.c
*/
/*!\defgroup Link Link Management
@{*/
/*!
This procedure opens a link to some OPeNDAP
data server to request a specific url, possibly with constraints.
It returns an <i>OClink</i> object.
\param[in] url The url for the OPeNDAP server to which a connection
is created and the request is made.
\param[out] linkp A pointer to a location into which the link
object is to be returned.
\retval OC_NOERR The link was successfully created.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
*/
OCerror
oc_open(const char* url, OCobject* linkp)
{
OCerror ocerr = OC_NOERR;
OCstate* state = NULL;
ocerr = ocopen(&state,url);
if(ocerr == OC_NOERR && linkp) {
*linkp = (OCobject)(state);
} else {
if(state) free(state);
}
return OCTHROW(ocerr);
}
/*!
This procedure closes a previously opened
link and releases all resources associated with
that link.
\param[in] link The link object to be closed.
\retval OC_NOERR The link was successfully closed.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
*/
OCerror
oc_close(OCobject link)
{
OCstate* state;
OCVERIFY(OC_State,link);
OCDEREF(OCstate*,state,link);
occlose(state);
return OCTHROW(OC_NOERR);
}
/** @} */
/*!\defgroup Tree Tree Management
@{*/
/*!
This procedure is used to send requests to the server
to obtain either a DAS, DDS, or DATADDS response
and produce a corresponding tree.
It fetches and parses a given class of DXD the server specified
at open time, and using a specified set of constraints
and flags.
\param[in] link The link through which the server is accessed.
\param[in] constraint The constraint to be applied to the request.
\param[in] dxdkind The OCdxd value indicating what to fetch (i.e.
DAS, DDS, or DataDDS).
\param[in] flags The 'OR' of OCflags to control the fetch:
The OCONDISK flag is defined to cause the fetched
xdr data to be stored on disk instead of in memory.
\param[out] rootp A pointer a location to store
the root node of the tree associated with the the request.
\retval OC_NOERR The procedure executed normally.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
*/
OCerror
oc_fetch(OCobject link, const char* constraint,
OCdxd dxdkind, OCflags flags, OCobject* rootp)
{
OCstate* state;
OCerror ocerr = OC_NOERR;
OCnode* root;
OCVERIFY(OC_State,link);
OCDEREF(OCstate*,state,link);
ocerr = ocfetch(state,constraint,dxdkind,flags,&root);
if(ocerr) return OCTHROW(ocerr);
if(rootp) *rootp = (OCobject)(root);
return OCTHROW(ocerr);
}
/*!
This procedure reclaims all resources
associated with a given tree of objects
associated with a given root.
If the root is that of a DataDDS, then the associated data tree
will be reclaimed as well.
\param[in] link The link through which the server is accessed.
\param[in] ddsroot The root of the tree to be reclaimed.
\retval OC_NOERR The procedure executed normally.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
*/
OCerror
oc_root_free(OCobject link, OCobject ddsroot)
{
OCnode* root;
OCVERIFY(OC_Node,ddsroot);
OCDEREF(OCnode*,root,ddsroot);
ocroot_free(root);
return OCTHROW(OC_NOERR);
}
/*!
This procedure returns the textual part of
a DAS, DDS, or DATADDS request exactly as sent by the server.
\param[in] link The link through which the server is accessed.
\param[in] ddsroot The root of the tree whose text is to be returned.
\retval OC_NOERR The procedure executed normally.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
*/
const char*
oc_tree_text(OCobject link, OCobject ddsroot)
{
OCnode* root = NULL;
OCVERIFYX(OC_Node,ddsroot,NULL);
OCDEREF(OCnode*,root,ddsroot);
if(root == NULL) return NULL;
root = root->root;
if(root->tree == NULL) return NULL;
return root->tree->text;
}
/**@}*/
/*!\defgroup Node Node Management
@{*/
/*!
This procedure returns a variety of properties
associated with a specific node.
Any of the pointers may be NULL in the following procedure call;
If the node is of type Dataset, then return # of global attributes
If the node is of type Attribute, then return the # of values in nattrp.
\param[in] link The link through which the server is accessed.
\param[in] ddsnode The node whose properties are of interest.
\param[out] namep Pointer for storing the node's associated name.
The caller must free the returned name.
\param[out] octypep Pointer for storing the node's octype.
\param[out] atomtypep Pointer for storing the object's
atomic type (i.e. OC_NAT .. OC_URL);only defined when
the object's octype is OC_Atomic
\param[out] containerp Pointer for storing the
OCnode for which this object is a subnode. The value OCNULL
is stored if the object is a root object.
\param[out] rankp Pointer for storing the rank (i.e. the number
of dimensions) for this object; zero implies a scalar.
\param[out] nsubnodesp Pointer for storing the number
of subnodes of this object.
\param[out] nattrp Pointer for storing the number
of attributes associated with this object.
\retval OC_NOERR The procedure executed normally.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
*/
OCerror
oc_dds_properties(OCobject link,
OCobject ddsnode,
char** namep,
OCtype* octypep,
OCtype* atomtypep, /* if objecttype == OC_Atomic */
OCobject* containerp,
size_t* rankp,
size_t* nsubnodesp,
size_t* nattrp)
{
OCnode* node;
OCVERIFY(OC_Node,ddsnode);
OCDEREF(OCnode*,node,ddsnode);
if(namep) *namep = nulldup(node->name);
if(octypep) *octypep = node->octype;
if(atomtypep) *atomtypep = node->etype;
if(rankp) *rankp = node->array.rank;
if(containerp) *containerp = (OCobject)node->container;
if(nsubnodesp) *nsubnodesp = nclistlength(node->subnodes);
if(nattrp) {
if(node->octype == OC_Attribute) {
*nattrp = nclistlength(node->att.values);
} else {
*nattrp = nclistlength(node->attributes);
}
}
return OCTHROW(OC_NOERR);
}
/*!
Specialized accessor function as an alternative to oc_dds_properties.
\param[in] link The link through which the server is accessed.
\param[in] ddsnode The node whose properties are of interest.
\param[out] namep A pointer into which the node name is stored
as a null terminated string. The caller must free this value
when no longer needed.
\retval OC_NOERR The procedure executed normally.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
*/
OCerror
oc_dds_name(OCobject link, OCobject ddsnode, char** namep)
{
OCstate* state;
OCnode* node;
OCVERIFY(OC_State,link);
OCDEREF(OCstate*,state,link);
OCVERIFY(OC_Node,ddsnode);
OCDEREF(OCnode*,node,ddsnode);
if(state == NULL || node == NULL) return OCTHROW(OCTHROW(OC_EINVAL));
if(namep) *namep = nulldup(node->name);
return OCTHROW(OC_NOERR);
}
/*!
Specialized accessor function as an alternative to oc_dds_properties.
\param[in] link The link through which the server is accessed.
\param[in] ddsnode The node whose properties are of interest.
\param[out] nsubnodesp A pointer into which the number of subnodes
is stored.
\retval OC_NOERR The procedure executed normally.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
*/
OCerror
oc_dds_nsubnodes(OCobject link, OCobject ddsnode, size_t* nsubnodesp)
{
OCnode* node;
OCVERIFY(OC_Node,ddsnode);
OCDEREF(OCnode*,node,ddsnode);
if(nsubnodesp) *nsubnodesp = nclistlength(node->subnodes);
return OCTHROW(OC_NOERR);
}
/*!
Specialized accessor function as an alternative to oc_dds_properties.
\param[in] link The link through which the server is accessed.
\param[in] ddsnode The node whose properties are of interest.
\param[out] typep A pointer into which the atomictype is stored.
\retval OC_NOERR The procedure executed normally.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
*/
OCerror
oc_dds_atomictype(OCobject link, OCobject ddsnode, OCtype* typep)
{
OCnode* node;
OCVERIFY(OC_Node,ddsnode);
OCDEREF(OCnode*,node,ddsnode);
if(typep) *typep = node->etype;
return OCTHROW(OC_NOERR);
}
/*!
Specialized accessor function as an alternative to oc_dds_properties.
\param[in] link The link through which the server is accessed.
\param[in] ddsnode The node whose properties are of interest.
\param[out] typep A pointer into which the octype is stored.
\retval OC_NOERR The procedure executed normally.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
*/
OCerror
oc_dds_class(OCobject link, OCobject ddsnode, OCtype* typep)
{
OCnode* node;
OCVERIFY(OC_Node,ddsnode);
OCDEREF(OCnode*,node,ddsnode);
if(typep) *typep = node->octype;
return OCTHROW(OC_NOERR);
}
/*!
Specialized accessor function as an alternative to oc_dds_properties.
\param[in] link The link through which the server is accessed.
\param[in] ddsnode The node whose properties are of interest.
\param[out] rankp A pointer into which the rank is stored.
\retval OC_NOERR The procedure executed normally.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
*/
OCerror
oc_dds_rank(OCobject link, OCobject ddsnode, size_t* rankp)
{
OCnode* node;
OCVERIFY(OC_Node,ddsnode);
OCDEREF(OCnode*,node,ddsnode);
if(rankp) *rankp = node->array.rank;
return OCTHROW(OC_NOERR);
}
/*!
Specialized accessor function as an alternative to oc_dds_properties.
\param[in] link The link through which the server is accessed.
\param[in] ddsnode The node whose properties are of interest.
\param[out] nattrp A pointer into which the number of attributes is stored.
\retval OC_NOERR The procedure executed normally.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
*/
OCerror
oc_dds_attr_count(OCobject link, OCobject ddsnode, size_t* nattrp)
{
OCnode* node;
OCVERIFY(OC_Node,ddsnode);
OCDEREF(OCnode*,node,ddsnode);
if(nattrp) {
if(node->octype == OC_Attribute) {
*nattrp = nclistlength(node->att.values);
} else {
*nattrp = nclistlength(node->attributes);
}
}
return OCTHROW(OC_NOERR);
}
/*!
Specialized accessor function as an alternative to oc_dds_properties.
\param[in] link The link through which the server is accessed.
\param[in] ddsnode The node whose properties are of interest.
\param[out] rootp A pointer into which the the root of the tree containing
the node is stored.
\retval OC_NOERR The procedure executed normally.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
*/
OCerror
oc_dds_root(OCobject link, OCobject ddsnode, OCobject* rootp)
{
OCnode* node;
OCVERIFY(OC_Node,ddsnode);
OCDEREF(OCnode*,node,ddsnode);
if(rootp) *rootp = (OCobject)node->root;
return OCTHROW(OC_NOERR);
}
/*!
Specialized accessor function as an alternative to oc_dds_properties.
\param[in] link The link through which the server is accessed.
\param[in] ddsnode The node whose properties are of interest.
\param[out] containerp A pointer into which the the immediate
container ddsnode is stored.
\retval OC_NOERR The procedure executed normally.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
*/
OCerror
oc_dds_container(OCobject link, OCobject ddsnode, OCobject* containerp)
{
OCnode* node;
OCVERIFY(OC_Node,ddsnode);
OCDEREF(OCnode*,node,ddsnode);
if(containerp) *containerp = (OCobject)node->container;
return OCTHROW(OC_NOERR);
}
/*!
Obtain the DDS node corresponding to the i'th field
of a node that itself is a container (Dataset, Structure, Sequence, or Grid)
\param[in] link The link through which the server is accessed.
\param[in] ddsnode The container node of interest.
\param[in] index The index (starting at zero) of the field to return.
\param[out] fieldnodep A pointer into which the i'th field node is stored.
\retval OC_NOERR The procedure executed normally.
\retval OC_EINDEX The index was greater than the number of fields.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
\retval OC_EBADTYPE The dds node is not a container node.
*/
OCerror
oc_dds_ithfield(OCobject link, OCobject ddsnode, size_t index, OCobject* fieldnodep)
{
OCnode* node;
OCnode* field;
OCVERIFY(OC_Node,ddsnode);
OCDEREF(OCnode*,node,ddsnode);
if(!ociscontainer(node->octype))
return OCTHROW(OC_EBADTYPE);
if(index >= nclistlength(node->subnodes))
return OCTHROW(OC_EINDEX);
field = (OCnode*)nclistget(node->subnodes,index);
if(fieldnodep) *fieldnodep = (OCobject)field;
return OCTHROW(OC_NOERR);
}
/*!
Alias for oc_dds_ithfield.
\param[in] link The link through which the server is accessed.
\param[in] ddsnode The container node of interest.
\param[in] index The index (starting at zero) of the field to return.
\param[out] fieldnodep A pointer into which the i'th field node is stored.
\retval OC_NOERR The procedure executed normally.
\retval OC_EINDEX The index was greater than the number of fields.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
\retval OC_EBADTYPE The dds node is not a container node.
*/
OCerror
oc_dds_ithsubnode(OCobject link, OCobject ddsnode, size_t index, OCobject* fieldnodep)
{
return OCTHROW(oc_dds_ithfield(link,ddsnode,index,fieldnodep));
}
/*!
Obtain the DDS node corresponding to the array of a Grid container.
Equivalent to oc_dds_ithfield(link,grid-container,0,arraynode).
\param[in] link The link through which the server is accessed.
\param[in] grid The grid container node of interest.
\param[out] arraynodep A pointer into which the grid array node is stored.
\retval OC_NOERR The procedure executed normally.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
*/
OCerror
oc_dds_gridarray(OCobject link, OCobject grid, OCobject* arraynodep)
{
return OCTHROW(oc_dds_ithfield(link,grid,0,arraynodep));
}
/*!
Obtain the DDS node corresponding to the i'th map of a Grid container.
Equivalent to oc_dds_ithfield(link,grid-container,index+1,arraynode).
Note the map index starts at zero.
\param[in] link The link through which the server is accessed.
\param[in] grid The grid container node of interest.
\param[in] index The (zero-based) index of the map node to return.
\param[out] mapnodep A pointer into which the grid map node is stored.
\retval OC_NOERR The procedure executed normally.
\retval OC_EINDEX The map index is illegal.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
*/
OCerror
oc_dds_gridmap(OCobject link, OCobject grid, size_t index, OCobject* mapnodep)
{
return OCTHROW(oc_dds_ithfield(link,grid,index+1,mapnodep));
}
/*!
Obtain a dds node by name from a dds structure or dataset node.
\param[in] link The link through which the server is accessed.
\param[in] ddsnode The container node of interest.
\param[in] name The name of the field to return.
\param[out] fieldp A pointer into which the name'th field node is stored.
\retval OC_NOERR The procedure executed normally.
\retval OC_EINDEX No field with the given name was found.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
*/
OCerror
oc_dds_fieldbyname(OCobject link, OCobject ddsnode, const char* name, OCobject* fieldp)
{
OCerror err = OC_NOERR;
OCnode* node;
size_t count,i;
OCVERIFY(OC_Node,ddsnode);
OCDEREF(OCnode*,node,ddsnode);
if(!ociscontainer(node->octype))
return OCTHROW(OC_EBADTYPE);
/* Search the fields to find a name match */
err = oc_dds_nsubnodes(link,ddsnode,&count);
if(err != OC_NOERR) return err;
for(i=0;i<count;i++) {
OCobject field;
char* fieldname = NULL;
int match = 1;
err = oc_dds_ithfield(link,ddsnode,i,&field);
if(err != OC_NOERR) return err;
/* Get the field's name */
err = oc_dds_name(link,field,&fieldname);
if(err != OC_NOERR) return err;
if(fieldname != NULL) {
match = strcmp(name,fieldname);
free(fieldname);
}
if(match == 0) {
if(fieldp) *fieldp = field;
return OCTHROW(OC_NOERR);
}
}
return OCTHROW(OC_EINDEX); /* name was not found */
}
/*!
Obtain the dimension nodes (of octype OC_Dimension)
associated with the node of interest.
\param[in] link The link through which the server is accessed.
\param[in] ddsnode The dds node of interest.
\param[out] dims A vector into which the dimension nodes
are stored. The caller must allocate based on the rank of the node.
\retval OC_NOERR The procedure executed normally.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
*/
OCerror
oc_dds_dimensions(OCobject link, OCobject ddsnode, OCobject* dims)
{
OCnode* node;
size_t i;
OCVERIFY(OC_Node,ddsnode);
OCDEREF(OCnode*,node,ddsnode);
if(node->array.rank == 0) return OCTHROW(OCTHROW(OC_ESCALAR));
if(dims != NULL) {
for(i=0;i<node->array.rank;i++) {
OCnode* dim = (OCnode*)nclistget(node->array.dimensions,i);
dims[i] = (OCobject)dim;
}
}
return OCTHROW(OC_NOERR);
}
/*!
Obtain the i'th dimension node (of octype OC_Dimension)
associated with the node of interest.
\param[in] link The link through which the server is accessed.
\param[in] ddsnode The dds node of interest.
\param[in] index The index of the dimension to be returned.
\param[out] dimidp A pointer into which the index'th dimension is stored.
\retval OC_NOERR The procedure executed normally.
\retval OC_EINDEX The index is greater than the node's rank.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
*/
OCerror
oc_dds_ithdimension(OCobject link, OCobject ddsnode, size_t index, OCobject* dimidp)
{
OCnode* node;
OCobject dimid = NULL;
OCVERIFY(OC_Node,ddsnode);
OCDEREF(OCnode*,node,ddsnode);
if(node->array.rank == 0) return OCTHROW(OCTHROW(OC_ESCALAR));
if(index >= node->array.rank) return OCTHROW(OCTHROW(OC_EINDEX));
dimid = (OCobject)nclistget(node->array.dimensions,index);
if(dimidp) *dimidp = dimid;
return OCTHROW(OC_NOERR);
}
/*!
Obtain the properties of a dimension node.
\param[in] link The link through which the server is accessed.
\param[in] ddsnode The dimension node.
\param[out] sizep A pointer into which to store the size of the dimension.
\param[out] namep A pointer into which to store the name of the dimension.
If the dimension is anonymous, then the value NULL is returned as the name.
The caller must free the returned name.
\retval OC_NOERR The procedure executed normally.
\retval OC_BADTYPE If the node is not of type OC_Dimension.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
*/
OCerror
oc_dimension_properties(OCobject link, OCobject ddsnode, size_t* sizep, char** namep)
{
OCnode* dim;
OCVERIFY(OC_Node,ddsnode);
OCDEREF(OCnode*,dim,ddsnode);
if(dim->octype != OC_Dimension) return OCTHROW(OCTHROW(OC_EBADTYPE));
if(sizep) *sizep = dim->dim.declsize;
if(namep) *namep = nulldup(dim->name);
return OCTHROW(OC_NOERR);
}
/*!
Obtain just the set of sizes of the dimensions
associated with a dds node.
\param[in] link The link through which the server is accessed.
\param[in] ddsnode The node of interest
\param[out] dimsizes A vector into which the sizes of all
the dimensions of a node are stored. Its size is determined
by the rank of the node and must be allocated and free'd by the caller.
\retval OC_NOERR The procedure executed normally.
\retval OC_ESCALAR If the node is a scalar.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
*/
OCerror
oc_dds_dimensionsizes(OCobject link, OCobject ddsnode, size_t* dimsizes)
{
OCnode* node;
OCVERIFY(OC_Node,ddsnode);
OCDEREF(OCnode*,node,ddsnode);
if(node->array.rank == 0) return OCTHROW(OCTHROW(OC_ESCALAR));
if(dimsizes != NULL) {
size_t i;
for(i=0;i<node->array.rank;i++) {
OCnode* dim = (OCnode*)nclistget(node->array.dimensions,i);
dimsizes[i] = dim->dim.declsize;
}
}
return OCTHROW(OC_NOERR);
}
/*!
Return the name, type, length, and values associated with
the i'th attribute of a specified node. The actual attribute
strings are returned and the user must do any required
conversion based on the octype. The strings argument must
be allocated and freed by caller. Standard practice is to
call twice, once with the strings argument == NULL so we get
the number of values, then the second time with an allocated
char** vector. The caller should reclaim the contents of
the returned string vector using <i>oc_reclaim_strings</i>.
\param[in] link The link through which the server is accessed.
\param[in] ddsnode The node of interest
\param[in] index Return the information of the index'th attribute.
\param[out] namep A pointer into which the attribute's name is stored.
It must be freed by the caller.
\param[out] octypep A pointer into which the attribute's atomic type is stored.
\param[out] nvaluesp A pointer into which the number
of attribute values is stored.
\param[out] strings A vector into which the values of the attribute
are stored. It must be allocated and free'd by the caller.
\retval OC_NOERR The procedure executed normally.
\retval OC_EINDEX If the index is more than the number of attributes.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
*/
OCerror
oc_dds_attr(OCobject link, OCobject ddsnode, size_t index,
char** namep, OCtype* octypep,
size_t* nvaluesp, char** strings)
{
int i;
OCnode* node;
OCattribute* attr;
size_t nattrs;
OCVERIFY(OC_Node,ddsnode);
OCDEREF(OCnode*,node,ddsnode);
nattrs = nclistlength(node->attributes);
if(index >= nattrs) return OCTHROW(OCTHROW(OC_EINDEX));
attr = (OCattribute*)nclistget(node->attributes,index);
if(namep) *namep = strdup(attr->name);
if(octypep) *octypep = attr->etype;
if(nvaluesp) *nvaluesp = attr->nvalues;
if(strings) {
if(attr->nvalues > 0) {
for(i=0;i<attr->nvalues;i++)
strings[i] = nulldup(attr->values[i]);
}
}
return OCTHROW(OC_NOERR);
}
/*!
Given a counted vector of strings, free up all of the strings,
BUT NOT THE VECTOR since that was allocated by the caller.
\param[in] n The link through which the server is accessed.
\param[in] svec The node of interest.
*/
void
oc_reclaim_strings(size_t n, char** svec)
{
int i;
for(i=0;i<n;i++) if(svec[i] != NULL) free(svec[i]);
}
/*!
Return the count of DAS attribute values.
\param[in] link The link through which the server is accessed.
\param[in] dasnode The node of interest
\param[out] nvaluesp A pointer into which the number of attributes
is stored.
\retval OC_NOERR The procedure executed normally.
\retval OC_EBADTPE If the node is not of type OC_Attribute.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
*/
OCerror
oc_das_attr_count(OCobject link, OCobject dasnode, size_t* nvaluesp)
{
OCnode* attr;
OCVERIFY(OC_Node,dasnode);
OCDEREF(OCnode*,attr,dasnode);
if(attr->octype != OC_Attribute) return OCTHROW(OCTHROW(OC_EBADTYPE));
if(nvaluesp) *nvaluesp = nclistlength(attr->att.values);
return OCTHROW(OC_NOERR);
}
/*!
The procedure oc_das_attr returns the i'th string value
associated with a DAS object of type <i>OC_Attribute</i>.
Note carefully that this operation applies to DAS nodes
and not to DDS or DATADDS nodes.
Note also that the returned value is always a string
and it is the caller;'s responsibility to free the returned string.
\param[in] link The link through which the server is accessed.
\param[in] dasnode The DAS node of interest.
\param[in] index The index of the das value to return.
\param[in] atomtypep A pointer into which is stored the atomic
type of the attribute.
\param[out] valuep A vector into which the attribute's string values
are stored. Caller must allocate and free.
\retval OC_NOERR The procedure executed normally.
\retval OC_EBADTPE If the node is not of type OC_Attribute.
\retval OC_EINDEX If the index is larger than the number of attributes.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
*/
OCerror
oc_das_attr(OCobject link, OCobject dasnode, size_t index, OCtype* atomtypep, char** valuep)
{
OCnode* attr;
size_t nvalues;
OCVERIFY(OC_Node,dasnode);
OCDEREF(OCnode*,attr,dasnode);
if(attr->octype != OC_Attribute) return OCTHROW(OCTHROW(OC_EBADTYPE));
nvalues = nclistlength(attr->att.values);
if(index >= nvalues) return OCTHROW(OCTHROW(OC_EINDEX));
if(atomtypep) *atomtypep = attr->etype;
if(valuep) *valuep = nulldup((char*)nclistget(attr->att.values,index));
return OCTHROW(OC_NOERR);
}
/**@}*/
/**************************************************/
/*!\defgroup Interconnection Node Interconnection Management */
/**@{*/
/*!
As a rule, the attributes of an object are accessed using
the <i>oc_dds_attr</i> procedure rather than by traversing a
DAS. In order to support this, the <i>oc_merge_das</i>
procedure annotates a DDS node with attribute values taken
from a specified DAS node.
\param[in] link The link through which the server is accessed.
\param[in] dasroot The root object of a DAS tree.
\param[in] ddsroot The root object of a DDS (or DataDDS) tree.
\retval OC_NOERR The procedure executed normally.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
*/
OCerror
oc_merge_das(OCobject link, OCobject dasroot, OCobject ddsroot)
{
OCstate* state;
OCnode* das;
OCnode* dds;
OCVERIFY(OC_State,link);
OCDEREF(OCstate*,state,link);
OCVERIFY(OC_Node,dasroot);
OCDEREF(OCnode*,das,dasroot);
OCVERIFY(OC_Node,ddsroot);
OCDEREF(OCnode*,dds,ddsroot);
return OCTHROW(ocddsdasmerge(state,das,dds));
}
/**@}*/
/**************************************************/
/*!\defgroup Data Data Management */
/**@{*/
/*!
Obtain the datanode root associated with a DataDDS tree.
Do not confuse this with oc_data_root.
This procedure, given the DDS tree root, gets the data tree root.
\param[in] link The link through which the server is accessed.
\param[in] ddsroot The DataDDS tree root.
\param[out] datarootp A pointer into which the datanode root is stored.
\retval OC_NOERR The procedure executed normally.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
*/
OCerror
oc_dds_getdataroot(OCobject link, OCobject ddsroot, OCobject* datarootp)
{
OCerror ocerr = OC_NOERR;
OCstate* state;
OCnode* root;
OCdata* droot;
OCVERIFY(OC_State,link);
OCDEREF(OCstate*,state,link);
OCVERIFY(OC_Node,ddsroot);
OCDEREF(OCnode*,root,ddsroot);
if(datarootp == NULL)
return OCTHROW(OCTHROW(OC_EINVAL));
ocerr = ocdata_getroot(state,root,&droot);
if(ocerr == OC_NOERR && datarootp)
*datarootp = (OCobject)droot;
return OCTHROW(ocerr);
}
/*!
Obtain the data instance corresponding to the i'th field
of a data node instance that itself is a container instance.
\param[in] link The link through which the server is accessed.
\param[in] datanode The container data node instance of interest.
\param[in] index The index (starting at zero) of the field instance to return.
\param[out] fieldp A pointer into which the i'th field instance is stored.
\retval OC_NOERR The procedure executed normally.
\retval OC_EINDEX The index was greater than the number of fields.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
\retval OC_EBADTYPE The data node is not a container node.
*/
OCerror
oc_data_ithfield(OCobject link, OCobject datanode, size_t index, OCobject* fieldp)
{
OCerror ocerr = OC_NOERR;
OCstate* state;
OCdata* data;
OCdata* field;
OCVERIFY(OC_State,link);
OCDEREF(OCstate*,state,link);
OCVERIFY(OC_Data,datanode);
OCDEREF(OCdata*,data,datanode);
if(fieldp == NULL) return OCTHROW(OCTHROW(OC_EINVAL));
ocerr = ocdata_ithfield(state,data,index,&field);
if(ocerr == OC_NOERR)
*fieldp = (OCobject)field;
return OCTHROW(ocerr);
}
/*!
Obtain a data node by name from a container data node.
\param[in] link The link through which the server is accessed.
\param[in] datanode The container data node instance of interest.
\param[in] name The name of the field instance to return.
\param[out] fieldp A pointer into which the i'th field instance is stored.
\retval OC_NOERR The procedure executed normally.
\retval OC_EINDEX No field with the given name was found.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
\retval OC_EBADTYPE The data node is not a container node.
*/
OCerror
oc_data_fieldbyname(OCobject link, OCobject datanode, const char* name, OCobject* fieldp)
{
OCerror err = OC_NOERR;
size_t count=0,i;
OCobject ddsnode;
OCVERIFY(OC_State,link);
OCVERIFY(OC_Data,datanode);
/* Get the dds node for this datanode */
err = oc_data_ddsnode(link,datanode,&ddsnode);
if(err != OC_NOERR) return err;
/* Search the fields to find a name match */
err = oc_dds_nsubnodes(link,ddsnode,&count);
if(err != OC_NOERR) return err;
for(i=0;i<count;i++) {
int match;
OCobject field;
char* fieldname = NULL;
err = oc_dds_ithfield(link,ddsnode,i,&field);
if(err != OC_NOERR) return err;
/* Get the field's name */
err = oc_dds_name(link,field,&fieldname);
if(err != OC_NOERR) return err;
if(!fieldname)
return OCTHROW(OC_EINVAL);
match = strcmp(name,fieldname);
if(fieldname != NULL) free(fieldname);
if(match == 0) {
/* Get the ith datasubnode */
err = oc_data_ithfield(link,datanode,i,&field);
if(err != OC_NOERR) return err;
if(fieldp) *fieldp = field;
return OCTHROW(OC_NOERR);
}
}
return OCTHROW(OC_EINDEX); /* name was not found */
}
/*!
Obtain the data instance corresponding to the array field
of a Grid container instance.
Equivalent to oc_data_ithfield(link,grid,0,arraydata).
\param[in] link The link through which the server is accessed.
\param[in] grid The grid container instance of interest.
\param[out] arraydatap A pointer into which the grid array instance is stored.
\retval OC_NOERR The procedure executed normally.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
*/
OCerror
oc_data_gridarray(OCobject link, OCobject grid, OCobject* arraydatap)
{
return OCTHROW(oc_data_ithfield(link,grid,0,arraydatap));
}
/*!
Obtain the data instance corresponding to the ith map field
of a Grid container instance.
Equivalent to oc_data_ithfield(link,grid-container,index+1,mapdata).
Note that Map indices start at zero.
\param[in] link The link through which the server is accessed.
\param[in] grid The grid container instance of interest.
\param[in] index The map index of the map to return.
\param[out] mapdatap A pointer into which the grid map instance is stored.
\retval OC_NOERR The procedure executed normally.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
*/
OCerror
oc_data_gridmap(OCobject link, OCobject grid, size_t index, OCobject* mapdatap)
{
return OCTHROW(oc_data_ithfield(link,grid,index+1,mapdatap));
}
/*!
Obtain the data instance corresponding to the container
of a specified instance object.
\param[in] link The link through which the server is accessed.
\param[in] datanode The data instance of interest
\param[out] containerp A pointer into which the container instance is stored.
\retval OC_NOERR The procedure executed normally.
\retval OC_EINVAL The data object has no container
(=> it is a Dataset instance).
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
*/
OCerror
oc_data_container(OCobject link, OCobject datanode, OCobject* containerp)
{
OCerror ocerr = OC_NOERR;
OCstate* state;
OCdata* data;
OCdata* container;
OCVERIFY(OC_State,link);
OCDEREF(OCstate*,state,link);
OCVERIFY(OC_Data,datanode);
OCDEREF(OCdata*,data,datanode);
if(containerp == NULL) return OCTHROW(OCTHROW(OC_EINVAL));
ocerr = ocdata_container(state,data,&container);
if(ocerr == OC_NOERR)
*containerp = (OCobject)container;
return OCTHROW(ocerr);
}
/*!
Obtain the data instance corresponding to the root of the tree
of which the specified instance object is a part.
Do not confuse this with oc_dds_getdataroot.
This procedure, given any node in a data tree, get the root of that tree.
\param[in] link The link through which the server is accessed.
\param[in] datanode The data instance of interest
\param[out] rootp A pointer into which the root instance is stored.
\retval OC_NOERR The procedure executed normally.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
*/
OCerror
oc_data_root(OCobject link, OCobject datanode, OCobject* rootp)
{
OCerror ocerr = OC_NOERR;
OCstate* state;
OCdata* data;
OCdata* root;
OCVERIFY(OC_State,link);
OCDEREF(OCstate*,state,link);
OCVERIFY(OC_Data,datanode);
OCDEREF(OCdata*,data,datanode);
if(rootp == NULL) return OCTHROW(OCTHROW(OC_EINVAL));
ocerr = ocdata_root(state,data,&root);
if(ocerr == OC_NOERR)
*rootp = (OCobject)root;
return OCTHROW(ocerr);
}
/*!
Return the data of a dimensioned Structure corresponding
to the element instance specified by the indices argument.
\param[in] link The link through which the server is accessed.
\param[in] datanode The data node instance of interest.
\param[in] indices A vector of indices specifying the element instance
to return. This vector must be allocated and free'd by the caller.
\param[out] elementp A pointer into which the element instance is stored.
\retval OC_NOERR The procedure executed normally.
\retval OC_EBADTYPE The data instance was not of type OC_Structure
or was a scalar.
\retval OC_EINDEX The indices specified an illegal element.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
*/
OCerror
oc_data_ithelement(OCobject link, OCobject datanode, size_t* indices, OCobject* elementp)
{
OCerror ocerr = OC_NOERR;
OCstate* state;
OCdata* data;
OCdata* element;
OCVERIFY(OC_State,link);
OCDEREF(OCstate*,state,link);
OCVERIFY(OC_Data,datanode);
OCDEREF(OCdata*,data,datanode);
if(indices == NULL || elementp == NULL) return OCTHROW(OCTHROW(OC_EINVAL));
ocerr = ocdata_ithelement(state,data,indices,&element);
if(ocerr == OC_NOERR)
*elementp = (OCobject)element;
return OCTHROW(ocerr);
}
/*!
Return the i'th record instance
of a Sequence data instance.
\param[in] link The link through which the server is accessed.
\param[in] datanode The data node instance of interest.
\param[in] index The record instance to return.
\param[out] recordp A pointer into which the record instance is stored.
\retval OC_NOERR The procedure executed normally.
\retval OC_EBADTYPE The data instance was not of type OC_Sequence
\retval OC_EINDEX The indices is larger than the number of records
of the Sequence.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
*/
extern OCerror oc_data_ithrecord(OCobject link, OCobject datanode, size_t index, OCobject* recordp)
{
OCerror ocerr = OC_NOERR;
OCstate* state;
OCdata* data;
OCdata* record;
OCVERIFY(OC_State,link);
OCDEREF(OCstate*,state,link);
OCVERIFY(OC_Data,datanode);
OCDEREF(OCdata*,data,datanode);
if(recordp == NULL) return OCTHROW(OCTHROW(OC_EINVAL));
ocerr = ocdata_ithrecord(state,data,index,&record);
if(ocerr == OC_NOERR)
*recordp = (OCobject)record;
return OCTHROW(ocerr);
}
/*!
Return the i'th record instance
of a Sequence data instance.
Return the indices for this data instance; Assumes the data
was obtained using oc_data_ithelement or oc_data_ithrecord.
\param[in] link The link through which the server is accessed.
\param[in] datanode The data node instance of interest.
\param[out] indices A vector into which the indices of the
data instance are stored. If the data instance is a record,
then only indices[0] is used.
\retval OC_NOERR The procedure executed normally.
\retval OC_EBADTYPE The data instance was not of type OC_Sequence
or it was not a dimensioned instance of OC_Structure.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
*/
OCerror
oc_data_position(OCobject link, OCobject datanode, size_t* indices)
{
OCstate* state;
OCdata* data;
OCVERIFY(OC_State,link);
OCDEREF(OCstate*,state,link);
OCVERIFY(OC_Data,datanode);
OCDEREF(OCdata*,data,datanode);
if(indices == NULL) return OCTHROW(OCTHROW(OC_EINVAL));
return OCTHROW(ocdata_position(state,data,indices));
}
/*!
Return the number of records associated with a Sequence
data object. Be warned that applying this procedure
to a record data instance (as opposed to an instance
representing a whole Sequence) will return an error.
More succinctly, the data object's OCtype must be of
type OC_Sequence and oc_data_indexable() must be true.
\param[in] link The link through which the server is accessed.
\param[in] datanode The data node instance of interest.
\param[out] countp A pointer into which the record count is stored.
\retval OC_NOERR The procedure executed normally.
\retval OC_EBADTYPE The data instance was not of type OC_Sequence
or it was a record data instance.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
*/
OCerror
oc_data_recordcount(OCobject link, OCobject datanode, size_t* countp)
{
OCstate* state;
OCdata* data;
OCVERIFY(OC_State,link);
OCDEREF(OCstate*,state,link);
OCVERIFY(OC_Data,datanode);
OCDEREF(OCdata*,data,datanode);
if(countp == NULL) return OCTHROW(OCTHROW(OC_EINVAL));
return OCTHROW(ocdata_recordcount(state,data,countp));
}
/*!
Return the dds node that is the "pattern"
for this data instance.
\param[in] link The link through which the server is accessed.
\param[in] datanode The data node instance of interest.
\param[out] nodep A pointer into which the ddsnode is stored.
\retval OC_NOERR The procedure executed normally.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
*/
OCerror
oc_data_ddsnode(OCobject link, OCobject datanode, OCobject* nodep)
{
OCerror ocerr = OC_NOERR;
OCdata* data;
OCVERIFY(OC_Data,datanode);
OCDEREF(OCdata*,data,datanode);
OCASSERT(data->pattern != NULL);
if(nodep == NULL) ocerr = OC_EINVAL;
else *nodep = (OCobject)data->pattern;
return OCTHROW(ocerr);
}
/*!
Return the OCtype of the ddsnode that is the "pattern"
for this data instance. This is a convenience function
since it can be obtained using a combination of other
API procedures.
\param[in] link The link through which the server is accessed.
\param[in] datanode The data node instance of interest.
\param[out] typep A pointer into which the OCtype value is stored.
\retval OC_NOERR The procedure executed normally.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
*/
OCerror
oc_data_octype(OCobject link, OCobject datanode, OCtype* typep)
{
OCerror ocerr = OC_NOERR;
OCdata* data;
OCVERIFY(OC_Data,datanode);
OCDEREF(OCdata*,data,datanode);
OCASSERT(data->pattern != NULL);
if(typep == NULL) ocerr = OC_EINVAL;
else *typep = data->pattern->octype;
return OCTHROW(ocerr);
}
/*!
Return the value one (1) if the specified data instance
is indexable. Indexable means that the data instance
is a dimensioned Structure or it is a Sequence (but not
a record in a Sequence).
\param[in] link The link through which the server is accessed.
\param[in] datanode The data node instance of interest.
\retval one(1) if the specified data instance is indexable.
\retval zero(0) otherwise.
*/
int
oc_data_indexable(OCobject link, OCobject datanode)
{
OCdata* data;
OCVERIFY(OC_Data,datanode);
OCDEREF(OCdata*,data,datanode);
return (fisset(data->datamode,OCDT_ARRAY)
|| fisset(data->datamode,OCDT_SEQUENCE)) ? 1 : 0;
}
/*!
Return the value one (1) if the specified data instance
was obtained by applying either the procedure oc_data_ithelement
or oc_data_ithrecord. This means that the operation
oc_data_position() will succeed when applied to this data instance.
\param[in] link The link through which the server is accessed.
\param[in] datanode The data node instance of interest.
\retval one(1) if the specified data instance has an index.
\retval zero(0) otherwise.
*/
int
oc_data_indexed(OCobject link, OCobject datanode)
{
OCdata* data;
OCVERIFY(OC_Data,datanode);
OCDEREF(OCdata*,data,datanode);
return (fisset(data->datamode,OCDT_ELEMENT)
|| fisset(data->datamode,OCDT_RECORD)) ? 1 : 0;
}
/**************************************************/
/*!
This procedure does the work of actually extracting data
from a leaf instance of a data tree and storing it into
memory for use by the calling code. The data instance must be
referencing either a scalar primitive value or an array of
primitive values. That is, its oc_data_octype()
value must be OCatomic.
If the variable is a scalar, then the
index and edge vectors will be ignored.
\param[in] link The link through which the server is accessed.
\param[in] datanode The data node instance of interest.
\param[in] start A vector of indices specifying the starting element
to return.
\param[in] edges A vector of indices specifying the count in each dimension
of the number of elements to return.
\param[in] memsize The size (in bytes) of the memory argument.
\param[out] memory User allocated memory into which the extracted
data is to be stored. The caller is responsible for allocating and free'ing
this argument.
\retval OC_NOERR The procedure executed normally.
\retval OC_EINVAL The memsize argument is too small to hold
the specified data.
\retval OC_EINVALCOORDS The start and/or edges argument is outside
the range of legal indices.
\retval OC_EDATADDS The data retrieved from the server was malformed
and the read request cannot be completed.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
*/
OCerror
oc_data_read(OCobject link, OCobject datanode,
size_t* start, size_t* edges,
size_t memsize, void* memory)
{
OCdata* data;
OCnode* pattern;
size_t count, rank;
OCVERIFY(OC_Data,datanode);
OCDEREF(OCdata*,data,datanode);
if(start == NULL && edges == NULL) /* Assume it is a scalar read */
return OCTHROW(oc_data_readn(link,datanode,start,0,memsize,memory));
if(edges == NULL)
return OCTHROW(OCTHROW(OC_EINVALCOORDS));
/* Convert edges to a count */
pattern = data->pattern;
rank = pattern->array.rank;
count = octotaldimsize(rank,edges);
return OCTHROW(oc_data_readn(link,datanode,start,count,memsize,memory));
}
/*!
This procedure is a variant of oc_data_read for reading a
single scalar from a leaf instance of a data tree and
storing it into memory for use by the calling code. The
data instance must be referencing a scalar primitive value.
That is, its oc_data_octype() value must be OCatomic.
\param[in] link The link through which the server is accessed.
\param[in] datanode The data node instance of interest.
\param[in] memsize The size (in bytes) of the memory argument.
\param[out] memory User allocated memory into which the extracted
data is to be stored. The caller is responsible for allocating and free'ing
this argument.
\retval OC_NOERR The procedure executed normally.
\retval OC_EINVAL The memsize argument is too small to hold
the specified data.
\retval OC_ESCALAR The data instance is not a scalar.
\retval OC_EDATADDS The data retrieved from the server was malformed
and the read request cannot be completed.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
*/
OCerror
oc_data_readscalar(OCobject link, OCobject datanode,
size_t memsize, void* memory)
{
return OCTHROW(oc_data_readn(link,datanode,NULL,0,memsize,memory));
}
/*!
This procedure is a variant of oc_data_read for reading
nelements of values starting at a given index position.
If the variable is a scalar, then the
index vector and count will be ignored.
\param[in] link The link through which the server is accessed.
\param[in] datanode The data node instance of interest.
\param[in] start A vector of indices specifying the starting element
to return.
\param[in] N The number of elements to read. Reading is assumed
to use row-major order.
\param[in] memsize The size (in bytes) of the memory argument.
\param[out] memory User allocated memory into which the extracted
data is to be stored. The caller is responsible for allocating and free'ing
this argument.
\retval OC_NOERR The procedure executed normally.
\retval OC_EINVAL The memsize argument is too small to hold
the specified data.
\retval OC_EINVALCOORDS The start and/or count argument is outside
the range of legal indices.
\retval OC_EDATADDS The data retrieved from the server was malformed
and the read request cannot be completed.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
*/
OCerror
oc_data_readn(OCobject link, OCobject datanode,
const size_t* start, size_t N,
size_t memsize, void* memory)
{
OCerror ocerr = OC_NOERR;
OCstate* state;
OCdata* data;
OCnode* pattern;
size_t rank,startpoint;
OCVERIFY(OC_State,link);
OCDEREF(OCstate*,state,link);
OCVERIFY(OC_Data,datanode);
OCDEREF(OCdata*,data,datanode);
/* Do argument validation */
if(memory == NULL || memsize == 0)
return OCTHROW(OC_EINVAL);
pattern = data->pattern;
rank = pattern->array.rank;
if(rank == 0) {
startpoint = 0;
N = 1;
} else if(start == NULL) {
return OCTHROW(OCTHROW(OC_EINVALCOORDS));
} else {/* not scalar */
startpoint = ocarrayoffset(rank,pattern->array.sizes,start);
}
if(N > 0)
ocerr = ocdata_read(state,data,startpoint,N,memory,memsize);
if(ocerr == OC_EDATADDS)
ocdataddsmsg(state,pattern->tree);
return OCTHROW(OCTHROW(ocerr));
}
/*!
This procedure has the same semantics as oc_data_read.
However, it takes an OCddsnode as argument.
The limitation is that the DDS node must be a top-level,
atomic variable.
Top-level means that it is not nested in a Sequence or a
dimensioned Structure; being in a Grid is ok as is being in
a scalar structure.
\param[in] link The link through which the server is accessed.
\param[in] ddsnode The dds node instance of interest.
\param[in] start A vector of indices specifying the starting element
to return.
\param[in] edges A vector of indices specifying the count in each dimension
of the number of elements to return.
\param[in] memsize The size (in bytes) of the memory argument.
\param[out] memory User allocated memory into which the extracted
data is to be stored. The caller is responsible for allocating and free'ing
this argument.
\retval OC_NOERR The procedure executed normally.
\retval OC_EINVAL The memsize argument is too small to hold
the specified data.
\retval OC_EINVALCOORDS The start and/or edges argument is outside
the range of legal indices.
\retval OC_EDATADDS The data retrieved from the server was malformed
and the read request cannot be completed.
*/
OCerror
oc_dds_read(OCobject link, OCobject ddsnode,
size_t* start, size_t* edges,
size_t memsize, void* memory)
{
OCdata* data;
OCnode* dds;
OCVERIFY(OC_Node,ddsnode);
OCDEREF(OCnode*,dds,ddsnode);
/* Get the data associated with this top-level node */
data = dds->data;
if(data == NULL) return OCTHROW(OC_EINVAL);
return OCTHROW(oc_data_read(link,data,start,edges,memsize,memory));
}
/*!
This procedure is a variant of oc_data_read for reading a single scalar.
This procedure has the same semantics as oc_data_readscalar.
However, it takes an OCddsnode as argument.
The limitation is that the DDS node must be a top-level, atomic variable.
Top-level means that it is not nested in a Sequence or a
dimensioned Structure; being in a Grid is ok as is being in
a scalar structure.
\param[in] link The link through which the server is accessed.
\param[in] ddsnode The dds node instance of interest.
\param[in] memsize The size (in bytes) of the memory argument.
\param[out] memory User allocated memory into which the extracted
data is to be stored. The caller is responsible for allocating and free'ing
this argument.
\retval OC_NOERR The procedure executed normally.
\retval OC_EINVAL The memsize argument is too small to hold
the specified data.
\retval OC_ESCALAR The data instance is not a scalar.
\retval OC_EDATADDS The data retrieved from the server was malformed
and the read request cannot be completed.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
*/
OCerror
oc_dds_readscalar(OCobject link, OCobject ddsnode,
size_t memsize, void* memory)
{
return OCTHROW(oc_dds_readn(link,ddsnode,NULL,0,memsize,memory));
}
/*!
This procedure is a variant of oc_dds_read for reading
nelements of values starting at a given index position.
If the variable is a scalar, then the
index vector and count will be ignored.
This procedure has the same semantics as oc_data_readn.
However, it takes an OCddsnode as argument.
The limitation is that the DDS node must be a top-level, atomic variable.
Top-level means that it is not nested in a Sequence or a
dimensioned Structure; being in a Grid is ok as is being in
a scalar structure.
\param[in] link The link through which the server is accessed.
\param[in] ddsnode The dds node instance of interest.
\param[in] start A vector of indices specifying the starting element
to return.
\param[in] N The number of elements to read. Reading is assumed
to use row-major order.
\param[in] memsize The size (in bytes) of the memory argument.
\param[out] memory User allocated memory into which the extracted
data is to be stored. The caller is responsible for allocating and free'ing
this argument.
\retval OC_NOERR The procedure executed normally.
\retval OC_EINVAL The memsize argument is too small to hold
the specified data.
\retval OC_EINVALCOORDS The start and/or count argument is outside
the range of legal indices.
\retval OC_EDATADDS The data retrieved from the server was malformed
and the read request cannot be completed.
\retval OC_EINVAL One of the arguments (link, etc.) was invalid.
*/
OCerror
oc_dds_readn(OCobject link, OCobject ddsnode,
size_t* start, size_t N,
size_t memsize, void* memory)
{
OCdata* data;
OCnode* dds;
OCVERIFY(OC_Node,ddsnode);
OCDEREF(OCnode*,dds,ddsnode);
/* Get the data associated with this top-level node */
data = dds->data;
if(data == NULL) return OCTHROW(OC_EINVAL);
return OCTHROW(oc_data_readn(link,data,start,N,memsize,memory));
}
/**@}*/
/**************************************************/
/*!\defgroup OCtype OCtype Management
@{*/
/*!
Return the size of the C data structure corresponding
to a given atomic type.
For example,
oc_typesize(OC_Int32) == sizeof(int), and
oc_typesize(OC_String) == sizeof(char*).
Non-atomic types (e.g. OC_Structure) return zero.
\param[in] etype The atomic type.
\return The C size of the atomic type.
*/
size_t
oc_typesize(OCtype etype)
{
return octypesize(etype);
}
/*!
Return a string corresponding to the
to a given OCtype.
For example,
oc_typetostring(OC_Int32) == "Int32" and
oc_typesize(OC_Structure) == "Structure".
The caller MUST NOT free the returned string.
\param[in] octype The OCtype value.
\return The name, as a string, of that OCtype value.
*/
const char*
oc_typetostring(OCtype octype)
{
return octypetoddsstring(octype);
}
/*!
Print a value of an atomic type instance.
This is primarily for debugging and provides
a simple way to convert a value to a printable string.
\param[in] etype The OCtype atomic type.
\param[in] value A pointer to the value to be printed.
\param[in] bufsize The size of the buffer argument
\param[in] buffer The buffer into which to store the printable
value as a NULL terminated string.
\retval OC_NOERR if the procedure succeeded
\retval OC_EINVAL if one of the arguments is illegal.
*/
OCerror
oc_typeprint(OCtype etype, void* value, size_t bufsize, char* buffer)
{
return OCTHROW(octypeprint(etype,value,bufsize,buffer));
}
/**@}*/
/**************************************************/
/* The oc_logXXX procedures are defined in oclog.c */
/**************************************************/
/* Miscellaneous */
/*!\defgroup Miscellaneous Miscellaneous Procedures
@{*/
/*!
Return a user-readable error message corresponding
to a given OCerror value.
\param[in] err The OCerror value.
\return The error message
*/
const char*
oc_errstring(OCerror err)
{
return ocerrstring(err);
}
/**************************************************/
/*!
Sometimes, when a fetch request fails, there will be
error information in the reply from the server.
Typically this only occurs if an API operation
returns OC_EDAS, OC_EDDS, OC_EDATADDS, or OC_EDAPSVC.
This procedure will attempt to locate and return information
from such an error reply.
The error reply contains three pieces of information.
<ol>
<li> code - a string representing a numeric error code.
<li> msg - a string representing an extended error message.
<li> http - an integer representing an HTTP error return (e.g. 404).
</ol>
\param[in] link The link through which the server is accessed.
\param[in] codep A pointer for returning the error code.
\param[in] msgp A pointer for returning the error message.
\param[in] httpp A pointer for returning the HTTP error number.
\retval OC_NOERR if an error was found and the return values are defined.
\retval OC_EINVAL if no error reply could be found, so the return
values are meaningless.
*/
OCerror
oc_svcerrordata(OCobject link, char** codep,
char** msgp, long* httpp)
{
OCstate* state;
OCVERIFY(OC_State,link);
OCDEREF(OCstate*,state,link);
return OCTHROW(ocsvcerrordata(state,codep,msgp,httpp));
}
/*!
Obtain the HTTP code (e.g. 200, 404, etc) from the last
fetch command.
\param[in] link The link through which the server is accessed.
\retval the HTTP code
*/
OCerror
oc_httpcode(OCobject link)
{
OCstate* state;
OCVERIFY(OC_State,link);
OCDEREF(OCstate*,state,link);
return state->error.httpcode;
}
/**************************************************/
/* New 10/31/2009: return the size(in bytes)
of the fetched datadds.
*/
/*!
Return the size of the in-memory or on-disk
data chunk returned by the server.
\param[in] link The link through which the server is accessed.
\param[in] ddsroot The root dds node of the tree whose xdr size is desired.
\param[out] xdrsizep The size in bytes of the returned packet.
\retval OC_NOERR if the procedure succeeded
\retval OC_EINVAL if an argument was invalid
*/
OCerror
oc_raw_xdrsize(OCobject link, OCobject ddsroot, off_t* xdrsizep)
{
OCnode* root;
OCVERIFY(OC_Node,ddsroot);
OCDEREF(OCnode*,root,ddsroot);
if(root->root == NULL || root->root->tree == NULL
|| root->root->tree->dxdclass != OCDATADDS)
return OCTHROW(OCTHROW(OC_EINVAL));
if(xdrsizep) *xdrsizep = root->root->tree->data.datasize;
return OCTHROW(OC_NOERR);
}
/* Resend a url as a head request to check the Last-Modified time */
OCerror
oc_update_lastmodified_data(OCobject link)
{
OCstate* state;
OCVERIFY(OC_State,link);
OCDEREF(OCstate*,state,link);
return OCTHROW(ocupdatelastmodifieddata(state));
}
long
oc_get_lastmodified_data(OCobject link)
{
OCstate* state;
OCVERIFY(OC_State,link);
OCDEREF(OCstate*,state,link);
return state->datalastmodified;
}
/* Given an arbitrary OCnode, return the connection of which it is a part */
OCerror
oc_get_connection(OCobject ddsnode, OCobject* linkp)
{
OCnode* node;
OCVERIFY(OC_Node,ddsnode);
OCDEREF(OCnode*,node,ddsnode);
if(linkp) *linkp = node->root->tree->state;
return OCTHROW(OC_NOERR);
}
/*!
Attempt to retrieve a dataset using a specified URL
and using the DAP protocol.
\param[in] url The url to use for the request.
\retval OC_NOERR if the request succeeded.
\retval OC_EINVAL if the request failed.
*/
OCerror
oc_ping(const char* url)
{
return OCTHROW(ocping(url));
}
/**@}*/
/**************************************************/
int
oc_dumpnode(OCobject link, OCobject ddsroot)
{
OCnode* root;
OCerror ocerr = OC_NOERR;
OCVERIFY(OC_Node,ddsroot);
OCDEREF(OCnode*,root,ddsroot);
ocdumpnode(root);
return OCTHROW(ocerr);
}
/**************************************************/
/* ocx.h interface */
/* Following procedures are in API, but are not
externally documented.
*/
OCerror
oc_dds_dd(OCobject link, OCobject ddsroot, int level)
{
OCstate* state;
OCnode* root;
OCVERIFY(OC_State,link);
OCDEREF(OCstate*,state,link);
OCVERIFY(OC_Node,ddsroot);
OCDEREF(OCnode*,root,ddsroot);
ocdd(state,root,1,level);
return OCTHROW(OC_NOERR);
}
OCerror
oc_dds_ddnode(OCobject link, OCobject ddsroot)
{
OCnode* root;
OCVERIFY(OC_Node,ddsroot);
OCDEREF(OCnode*,root,ddsroot);
ocdumpnode(root);
return OCTHROW(OC_NOERR);
}
OCerror
oc_data_ddpath(OCobject link, OCobject datanode, char** resultp)
{
OCstate* state;
OCdata* data;
NCbytes* buffer;
OCVERIFY(OC_State,link);
OCDEREF(OCstate*,state,link);
OCVERIFY(OC_Data,datanode);
OCDEREF(OCdata*,data,datanode);
buffer = ncbytesnew();
ocdumpdatapath(state,data,buffer);
if(resultp) *resultp = ncbytesdup(buffer);
ncbytesfree(buffer);
return OCTHROW(OC_NOERR);
}
OCerror
oc_data_ddtree(OCobject link, OCobject ddsroot)
{
OCstate* state;
OCdata* data;
NCbytes* buffer;
OCVERIFY(OC_State,link);
OCDEREF(OCstate*,state,link);
OCVERIFY(OC_Data,ddsroot);
OCDEREF(OCdata*,data,ddsroot);
buffer = ncbytesnew();
ocdumpdatatree(state,data,buffer,0);
fprintf(stderr,"%s\n",ncbytescontents(buffer));
ncbytesfree(buffer);
return OCTHROW(OC_NOERR);
}
OCerror
oc_data_mode(OCobject link, OCobject datanode, OCDT* modep)
{
OCdata* data;
OCVERIFY(OC_Data,datanode);
OCDEREF(OCdata*,data,datanode);
if(modep) *modep = data->datamode;
return OC_NOERR;
}
/* Free up a datanode that is no longer being used;
Currently does nothing
*/
OCerror
oc_data_free(OCobject link, OCobject datanode)
{
return OCTHROW(OC_NOERR);
}
/* Free up a ddsnode that is no longer being used;
Currently does nothing
*/
OCerror
oc_dds_free(OCobject link, OCobject dds0)
{
return OCTHROW(OC_NOERR);
}
/**************************************************/
/* Curl specific options */
#if 0
/*!\defgroup Curl Curl-specifi Procedures
@{*/
/*!
Set an arbitrary curl option. Option
must be one of the ones supported by oc.
\param[in] link The link through which the server is accessed.
\param[in] option The name of the option to set;
See occurlfunction.c for
the set of supported flags and names.
\param[in] value The option value.
\retval OC_NOERR if the request succeeded.
\retval OC_ECURL if the request failed.
*/
OCerror
oc_set_curlopt(OClink link, const char* option, void* value)
{
OCstate* state;
struct OCCURLFLAG* f;
OCVERIFY(OC_State,link);
OCDEREF(OCstate*,state,link);
f = occurlflagbyname(option);
if(f == NULL)
return OCTHROW(OC_ECURL);
return OCTHROW(ocset_curlopt(state,f->flag,value));
}
#endif
/*!
Set the absolute path to use for the .netrc file
\param[in] link The link through which the server is accessed.
\param[in] netrc The path to use.
\retval OC_NOERR if the request succeeded.
\retval OC_EINVAL if the request failed, typically
because the path string is null or zero-length.
*/
OCerror
oc_set_netrc(OClink* link, const char* file)
{
OCstate* state;
FILE* f;
OCVERIFY(OC_State,link);
OCDEREF(OCstate*,state,link);
if(file == NULL || strlen(file) == 0)
return OC_EINVAL;
nclog(OCLOGDBG,"OC: using netrc file: %s",file);
/* See if it exists and is readable; ignore if not */
f = NCfopen(file,"r");
if(f != NULL) { /* Log what rc file is being used */
nclog(NCLOGNOTE,"OC: netrc file found: %s",file);
fclose(f);
}
return OCTHROW(ocset_netrc(state,file));
}
/*!
Set the user agent field.
\param[in] link The link through which the server is accessed.
\param[in] agent The user agent string
\retval OC_NOERR if the request succeeded.
\retval OC_EINVAL if the request failed, typically
because the agent string is null or zero-length.
*/
OCerror
oc_set_useragent(OCobject link, const char* agent)
{
OCstate* state;
OCVERIFY(OC_State,link);
OCDEREF(OCstate*,state,link);
if(agent == NULL || strlen(agent) == 0)
return OC_EINVAL;
return OCTHROW(ocset_useragent(state,agent));
}
/*!
Force the curl library to trace its actions.
\param[in] link The link through which the server is accessed.
\retval OC_NOERR if the request succeeded.
*/
OCerror
oc_trace_curl(OCobject link)
{
OCstate* state;
OCVERIFY(OC_State,link);
OCDEREF(OCstate*,state,link);
oc_curl_debug(state);
return OCTHROW(OC_NOERR);
}
/**@}*/
|