netcdf-c/oc2/oc.c

1772 lines
50 KiB
C
Raw Normal View History

/* Copyright 2009, 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 "ocinternal.h"
#include "ocdebug.h"
#include "ocdump.h"
#include "oclog.h"
#include "occlientparams.h"
#include "ochttp.h"
#undef TRACK
/**************************************************/
static int ocinitialized = 0;
/**************************************************/
/* 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)
/**************************************************/
static int
oc_initialize(void)
{
int status = OC_NOERR;
status = ocinternalinitialize();
ocinitialized = 1;
return status;
}
/**************************************************/
/*!\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;
OCstate* state;
if(!ocinitialized) oc_initialize();
ocerr = ocopen(&state,url);
if(ocerr == OC_NOERR && linkp) {
*linkp = (OCobject)(state);
}
return 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 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 fetchs 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 ocerr;
if(rootp) *rootp = (OCobject)(root);
return 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 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 = oclistlength(node->subnodes);
if(nattrp) {
if(node->octype == OC_Attribute) {
*nattrp = oclistlength(node->att.values);
} else {
*nattrp = oclistlength(node->attributes);
}
}
return 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(OC_EINVAL);
if(namep) *namep = nulldup(node->name);
return 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 = oclistlength(node->subnodes);
return 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 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 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 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 = oclistlength(node->att.values);
} else {
*nattrp = oclistlength(node->attributes);
}
}
return 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 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 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.
*/
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(!iscontainer(node->octype))
return OC_EBADTYPE;
if(index >= oclistlength(node->subnodes))
return OC_EINDEX;
field = (OCnode*)oclistget(node->subnodes,index);
if(fieldnodep) *fieldnodep = (OCobject)field;
return 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.
*/
OCerror
oc_dds_ithsubnode(OCobject link, OCobject ddsnode, size_t index, OCobject* fieldnodep)
{
return 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 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 oc_dds_ithfield(link,grid,index+1,mapnodep);
}
/*!
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(OC_ESCALAR);
if(dims != NULL) {
for(i=0;i<node->array.rank;i++) {
OCnode* dim = (OCnode*)oclistget(node->array.dimensions,i);
dims[i] = (OCobject)dim;
}
}
return 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(OC_ESCALAR);
if(index >= node->array.rank) return OCTHROW(OC_EINDEX);
dimid = (OCobject)oclistget(node->array.dimensions,index);
if(dimidp) *dimidp = dimid;
return 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(OC_EBADTYPE);
if(sizep) *sizep = dim->dim.declsize;
if(namep) *namep = nulldup(dim->name);
return 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(OC_ESCALAR);
if(dimsizes != NULL) {
int i;
for(i=0;i<node->array.rank;i++) {
OCnode* dim = (OCnode*)oclistget(node->array.dimensions,i);
dimsizes[i] = dim->dim.declsize;
}
}
return 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 = oclistlength(node->attributes);
if(index >= nattrs) return OCTHROW(OC_EINDEX);
attr = (OCattribute*)oclistget(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 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(OC_EBADTYPE);
if(nvaluesp) *nvaluesp = oclistlength(attr->att.values);
return 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(OC_EBADTYPE);
nvalues = oclistlength(attr->att.values);
if(index >= nvalues) return OCTHROW(OC_EINDEX);
if(atomtypep) *atomtypep = attr->etype;
if(valuep) *valuep = nulldup((char*)oclistget(attr->att.values,index));
return OC_NOERR;
}
/**@}*/
/**************************************************/
/*! 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 ocddsdasmerge(state,das,dds);
}
/**@}*/
/**************************************************/
/*! Data Management */
/**@{*/
/*!
Obtain the datanode root associated with a DataDDS tree.
\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_data_getroot(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(OC_EINVAL);
ocerr = ocdata_getroot(state,root,&droot);
if(ocerr == OC_NOERR && datarootp)
*datarootp = (OCobject)droot;
return 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.
*/
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(OC_EINVAL);
ocerr = ocdata_ithfield(state,data,index,&field);
if(ocerr == OC_NOERR)
*fieldp = (OCobject)field;
return ocerr;
}
/*!
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 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 oc_data_ithfield(link,grid,index+1,mapdatap);
}
/*!
Obtain the data instance corresponding to the container
of a specied 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(OC_EINVAL);
ocerr = ocdata_container(state,data,&container);
if(ocerr == OC_NOERR)
*containerp = (OCobject)container;
return ocerr;
}
/*!
Obtain the data instance corresponding to the root of the tree
of which the specified instance object is a part.
\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(OC_EINVAL);
ocerr = ocdata_root(state,data,&root);
if(ocerr == OC_NOERR)
*rootp = (OCobject)root;
return 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(OC_EINVAL);
ocerr = ocdata_ithelement(state,data,indices,&element);
if(ocerr == OC_NOERR)
*elementp = (OCobject)element;
return 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(OC_EINVAL);
ocerr = ocdata_ithrecord(state,data,index,&record);
if(ocerr == OC_NOERR)
*recordp = (OCobject)record;
return 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(OC_EINVAL);
return 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(OC_EINVAL);
return ocdata_recordcount(state,data,countp);
}
/*!
Return the dds node that is the "template"
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->template != NULL);
if(nodep == NULL) ocerr = OC_EINVAL;
else *nodep = (OCobject)data->template;
return ocerr;
}
/*!
Return the OCtype of the ddsnode that is the "template"
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->template != NULL);
if(typep == NULL) ocerr = OC_EINVAL;
else *typep = data->template->octype;
return 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* template;
size_t count, rank;
OCVERIFY(OC_Data,datanode);
OCDEREF(OCdata*,data,datanode);
if(start == NULL && edges == NULL) /* Assume it is a scalar read */
return oc_data_readn(link,datanode,start,0,memsize,memory);
if(edges == NULL)
return OCTHROW(OC_EINVALCOORDS);
/* Convert edges to a count */
template = data->template;
rank = template->array.rank;
count = octotaldimsize(rank,edges);
return 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 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,
size_t* start, size_t N,
size_t memsize, void* memory)
{
OCerror ocerr = OC_NOERR;
OCstate* state;
OCdata* data;
OCnode* template;
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 OC_EINVAL;
template = data->template;
rank = template->array.rank;
if(rank == 0) {
startpoint = 0;
N = 1;
} else if(start == NULL) {
return OCTHROW(OC_EINVALCOORDS);
} else {/* not scalar */
startpoint = ocarrayoffset(rank,template->array.sizes,start);
}
if(N > 0)
ocerr = ocdata_read(state,data,startpoint,N,memory,memsize);
if(ocerr == OC_EDATADDS)
ocdataddsmsg(state,template->tree);
return OCTHROW(ocerr);
}
/**@}*/
/**************************************************/
/* OCtype Management */
/*!\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 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);
}
/*!
Each OClink object maintains a table of
(name,value) pairs, called client parameters.
It is initialized from any such parameters
specified in the URL given as argument to
oc_open().
\param[in] link The link through which the server is accessed.
\param[in] param The name of the parameter whose value is desired.
\return The corresponding value, or NULL if parameter name is not in the table.
*/
const char*
oc_clientparam_get(OCobject link, const char* param)
{
OCstate* state;
OCVERIFYX(OC_State,link,NULL);
OCDEREF(OCstate*,state,link);
return ocparamlookup(state,param);
}
#ifdef OCIGNORE
/* Delete client parameter
return value:
OC_NOERR => defined; deletion performed
OC_EINVAL => not already defined
*/
OCerror
oc_clientparam_delete(OCobject link, const char* param)
{
OCstate* state;
OCVERIFY(OC_State,link);
OCDEREF(OCstate*,state,link);
return ocparamdelete(state->clientparams,param);
}
/* Insert client parameter
return value:
OC_NOERR => not already define; insertion performed
OC_EINVAL => already defined
*/
OCerror
oc_clientparam_insert(OCobject link, const char* param, const char* value)
{
OCstate* state;
OCVERIFY(OC_State,link);
OCDEREF(OCstate*,state,link);
state->clientparams = dapparaminsert(state->clientparams,param,value);
return OC_NOERR;
}
/* Replace client parameter
return value:
OC_NOERR => already define; replacement performed
OC_EINVAL => not already defined
*/
OCerror
oc_clientparam_replace(OCobject link, const char* param, const char* value)
{
OCstate* state;
OCVERIFY(OC_State,link);
OCDEREF(OCstate*,state,link);
return dapparamreplace(state->clientparams,param,value);
}
#endif
/**************************************************/
/*!
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 ocsvcerrordata(state,codep,msgp,httpp);
}
/**************************************************/
/* 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(OC_EINVAL);
if(xdrsizep) *xdrsizep = root->root->tree->data.datasize;
return 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 ocupdatelastmodifieddata(state);
}
long
oc_get_lastmodified_data(OCobject link)
{
OCstate* state;
OCVERIFY(OC_State,link);
OCDEREF(OCstate*,state,link);
return state->datalastmodified;
}
/*!
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 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 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 OC_NOERR;
}
OCerror
oc_dds_ddnode(OCobject link, OCobject ddsroot)
{
OCnode* root;
OCVERIFY(OC_Node,ddsroot);
OCDEREF(OCnode*,root,ddsroot);
ocdumpnode(root);
return OC_NOERR;
}
OCerror
oc_data_ddpath(OCobject link, OCobject datanode, char** resultp)
{
OCstate* state;
OCdata* data;
OCbytes* buffer;
OCVERIFY(OC_State,link);
OCDEREF(OCstate*,state,link);
OCVERIFY(OC_Data,datanode);
OCDEREF(OCdata*,data,datanode);
buffer = ocbytesnew();
ocdumpdatapath(state,data,buffer);
if(resultp) *resultp = ocbytesdup(buffer);
ocbytesfree(buffer);
return OC_NOERR;
}
OCerror
oc_data_ddtree(OCobject link, OCobject ddsroot)
{
OCstate* state;
OCdata* data;
OCbytes* buffer;
OCVERIFY(OC_State,link);
OCDEREF(OCstate*,state,link);
OCVERIFY(OC_Data,ddsroot);
OCDEREF(OCdata*,data,ddsroot);
buffer = ocbytesnew();
ocdumpdatatree(state,data,buffer,0);
fprintf(stderr,"%s\n",ocbytescontents(buffer));
ocbytesfree(buffer);
return OC_NOERR;
}
OCDT
oc_data_mode(OCobject link, OCobject datanode)
{
OCdata* data;
OCVERIFY(OC_Data,datanode);
OCDEREF(OCdata*,data,datanode);
return data->datamode;
}
/* Free up a datanode that is no longer being used;
Currently does nothing
*/
OCerror
oc_data_free(OCobject link, OCobject datanode)
{
return OC_NOERR;
}
/* Free up a ddsnode that is no longer being used;
Currently does nothing
*/
OCerror
oc_dds_free(OCobject link, OCobject dds0)
{
return OC_NOERR;
}