2012-08-01 04:34:13 +08:00
|
|
|
/* Copyright 2009, UCAR/Unidata and OPeNDAP, Inc.
|
|
|
|
See the COPYRIGHT file for more information. */
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
2012-12-19 05:08:23 +08:00
|
|
|
#ifdef HAVE_FCNTL_H
|
2012-08-01 04:34:13 +08:00
|
|
|
#include <fcntl.h>
|
2012-12-19 05:08:23 +08:00
|
|
|
#endif
|
2013-11-15 06:13:20 +08:00
|
|
|
#ifdef HAVE_SYS_STAT_H
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#endif
|
|
|
|
#include <errno.h>
|
|
|
|
|
2013-11-16 06:41:17 +08:00
|
|
|
#if defined(_WIN32) || defined(_WIN64)
|
|
|
|
#define mode_t int
|
|
|
|
#endif
|
|
|
|
|
2012-08-01 04:34:13 +08:00
|
|
|
#include "ocinternal.h"
|
|
|
|
#include "ocdebug.h"
|
|
|
|
|
|
|
|
/* Order is important: longest first */
|
|
|
|
static char* DDSdatamarks[3] = {"Data:\r\n","Data:\n",(char*)NULL};
|
|
|
|
|
|
|
|
/* Not all systems have strndup, so provide one*/
|
|
|
|
char*
|
|
|
|
ocstrndup(const char* s, size_t len)
|
|
|
|
{
|
|
|
|
char* dup;
|
|
|
|
if(s == NULL) return NULL;
|
|
|
|
dup = (char*)ocmalloc(len+1);
|
|
|
|
MEMCHECK(dup,NULL);
|
|
|
|
memcpy((void*)dup,s,len);
|
|
|
|
dup[len] = '\0';
|
|
|
|
return dup;
|
|
|
|
}
|
|
|
|
|
2013-02-08 06:14:57 +08:00
|
|
|
/* Do not trust strncmp semantics; this one
|
|
|
|
compares upto len chars or to null terminators */
|
2012-08-01 04:34:13 +08:00
|
|
|
int
|
|
|
|
ocstrncmp(const char* s1, const char* s2, size_t len)
|
|
|
|
{
|
|
|
|
const char *p,*q;
|
|
|
|
if(s1 == s2) return 0;
|
|
|
|
if(s1 == NULL) return -1;
|
|
|
|
if(s2 == NULL) return +1;
|
|
|
|
for(p=s1,q=s2;len > 0;p++,q++,len--) {
|
|
|
|
if(*p == 0 && *q == 0) return 0; /* *p == *q == 0 */
|
|
|
|
if(*p != *q)
|
|
|
|
return (*p - *q);
|
|
|
|
}
|
|
|
|
/* 1st len chars are same */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-03-26 01:12:50 +08:00
|
|
|
#ifdef EXTERN_UNUSEd
|
|
|
|
void
|
2012-08-01 04:34:13 +08:00
|
|
|
makedimlist(OClist* path, OClist* dims)
|
|
|
|
{
|
|
|
|
unsigned int i,j;
|
|
|
|
for(i=0;i<oclistlength(path);i++) {
|
|
|
|
OCnode* node = (OCnode*)oclistget(path,i);
|
|
|
|
unsigned int rank = node->array.rank;
|
|
|
|
for(j=0;j<rank;j++) {
|
|
|
|
OCnode* dim = (OCnode*)oclistget(node->array.dimensions,j);
|
2012-08-20 05:12:35 +08:00
|
|
|
oclistpush(dims,(void*)dim);
|
2012-08-01 04:34:13 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-03-26 01:12:50 +08:00
|
|
|
#endif
|
2012-08-01 04:34:13 +08:00
|
|
|
|
|
|
|
void
|
|
|
|
ocfreeprojectionclause(OCprojectionclause* clause)
|
|
|
|
{
|
|
|
|
if(clause->target != NULL) free(clause->target);
|
|
|
|
while(oclistlength(clause->indexsets) > 0) {
|
|
|
|
OClist* slices = (OClist*)oclistpop(clause->indexsets);
|
|
|
|
while(oclistlength(slices) > 0) {
|
|
|
|
OCslice* slice = (OCslice*)oclistpop(slices);
|
|
|
|
if(slice != NULL) free(slice);
|
|
|
|
}
|
|
|
|
oclistfree(slices);
|
|
|
|
}
|
|
|
|
oclistfree(clause->indexsets);
|
|
|
|
free(clause);
|
|
|
|
}
|
|
|
|
|
2013-03-26 01:12:50 +08:00
|
|
|
#ifdef EXTERN_UNUSED
|
|
|
|
void
|
2012-08-01 04:34:13 +08:00
|
|
|
freeAttributes(OClist* attset)
|
|
|
|
{
|
|
|
|
unsigned int i,j;
|
|
|
|
for(i=0;i<oclistlength(attset);i++) {
|
|
|
|
OCattribute* att = (OCattribute*)oclistget(attset,i);
|
|
|
|
if(att->name != NULL) free(att->name);
|
|
|
|
if(att->etype == OC_String || att->etype == OC_URL) {
|
|
|
|
for(j=0;j<att->nvalues;j++) {
|
|
|
|
char* s = ((char**)att->values)[j];
|
|
|
|
if(s != NULL) free(s);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
free(att->values);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-03-26 01:12:50 +08:00
|
|
|
#endif
|
2012-08-01 04:34:13 +08:00
|
|
|
|
2013-03-26 01:12:50 +08:00
|
|
|
#ifdef EXTERN_UNUSED
|
|
|
|
void
|
2012-08-01 04:34:13 +08:00
|
|
|
freeOCnode(OCnode* cdf, int deep)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
if(cdf == NULL) return;
|
|
|
|
if(cdf->name != NULL) free(cdf->name);
|
|
|
|
if(cdf->fullname != NULL) free(cdf->fullname);
|
|
|
|
if(cdf->attributes != NULL) freeAttributes(cdf->attributes);
|
|
|
|
if(cdf->subnodes != NULL) {
|
|
|
|
if(deep) {
|
|
|
|
for(i=0;i<oclistlength(cdf->subnodes);i++) {
|
|
|
|
OCnode* node = (OCnode*)oclistget(cdf->subnodes,i);
|
|
|
|
freeOCnode(node,deep);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
oclistfree(cdf->subnodes);
|
|
|
|
}
|
|
|
|
free(cdf);
|
|
|
|
}
|
2013-03-26 01:12:50 +08:00
|
|
|
#endif
|
2012-08-01 04:34:13 +08:00
|
|
|
|
|
|
|
int
|
|
|
|
ocfindbod(OCbytes* buffer, size_t* bodp, size_t* ddslenp)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
char* content;
|
|
|
|
size_t len = ocbyteslength(buffer);
|
|
|
|
char** marks;
|
|
|
|
|
|
|
|
content = ocbytescontents(buffer);
|
|
|
|
|
|
|
|
for(marks = DDSdatamarks;*marks;marks++) {
|
|
|
|
char* mark = *marks;
|
|
|
|
int tlen = strlen(mark);
|
|
|
|
for(i=0;i<len;i++) {
|
|
|
|
if((i+tlen) <= len
|
|
|
|
&& (ocstrncmp(content+i,mark,tlen)==0)) {
|
|
|
|
*ddslenp = i;
|
|
|
|
i += tlen;
|
|
|
|
*bodp = i;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*ddslenp = 0;
|
|
|
|
*bodp = 0;
|
|
|
|
return 0; /* tag not found; not necessarily an error*/
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Compute total # of elements if dimensioned*/
|
|
|
|
size_t
|
|
|
|
octotaldimsize(size_t rank, size_t* sizes)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
size_t count = 1;
|
|
|
|
for(i=0;i<rank;i++) {
|
|
|
|
count *= sizes[i];
|
|
|
|
}
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t
|
|
|
|
octypesize(OCtype etype)
|
|
|
|
{
|
|
|
|
switch (etype) {
|
|
|
|
case OC_Char: return sizeof(char);
|
|
|
|
case OC_Byte: return sizeof(signed char);
|
|
|
|
case OC_UByte: return sizeof(unsigned char);
|
|
|
|
case OC_Int16: return sizeof(short);
|
|
|
|
case OC_UInt16: return sizeof(unsigned short);
|
|
|
|
case OC_Int32: return sizeof(int);
|
|
|
|
case OC_UInt32: return sizeof(unsigned int);
|
|
|
|
case OC_Float32: return sizeof(float);
|
|
|
|
case OC_Float64: return sizeof(double);
|
|
|
|
#ifdef HAVE_LONG_LONG_INT
|
|
|
|
case OC_Int64: return sizeof(long long);
|
|
|
|
case OC_UInt64: return sizeof(unsigned long long);
|
|
|
|
#endif
|
|
|
|
case OC_String: return sizeof(char*);
|
|
|
|
case OC_URL: return sizeof(char*);
|
|
|
|
default: break; /* Ignore all others */
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
char*
|
|
|
|
octypetostring(OCtype octype)
|
|
|
|
{
|
|
|
|
switch (octype) {
|
|
|
|
case OC_NAT: return "OC_NAT";
|
|
|
|
case OC_Char: return "OC_Char";
|
|
|
|
case OC_Byte: return "OC_Byte";
|
|
|
|
case OC_UByte: return "OC_UByte";
|
|
|
|
case OC_Int16: return "OC_Int16";
|
|
|
|
case OC_UInt16: return "OC_UInt16";
|
|
|
|
case OC_Int32: return "OC_Int32";
|
|
|
|
case OC_UInt32: return "OC_UInt32";
|
|
|
|
case OC_Int64: return "OC_Int64";
|
|
|
|
case OC_UInt64: return "OC_UInt64";
|
|
|
|
case OC_Float32: return "OC_Float32";
|
|
|
|
case OC_Float64: return "OC_Float64";
|
|
|
|
case OC_String: return "OC_String";
|
|
|
|
case OC_URL: return "OC_URL";
|
|
|
|
/* Non-primitives*/
|
|
|
|
case OC_Dataset: return "OC_Dataset";
|
|
|
|
case OC_Sequence: return "OC_Sequence";
|
|
|
|
case OC_Grid: return "OC_Grid";
|
|
|
|
case OC_Structure: return "OC_Structure";
|
|
|
|
case OC_Dimension: return "OC_Dimension";
|
|
|
|
case OC_Attribute: return "OC_Attribute";
|
|
|
|
case OC_Attributeset: return "OC_Attributeset";
|
|
|
|
case OC_Atomic: return "OC_Atomic";
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
char*
|
|
|
|
octypetoddsstring(OCtype octype)
|
|
|
|
{
|
|
|
|
switch (octype) {
|
|
|
|
case OC_Byte: return "Byte";
|
|
|
|
case OC_Int16: return "Int16";
|
|
|
|
case OC_UInt16: return "UInt16";
|
|
|
|
case OC_Int32: return "Int32";
|
|
|
|
case OC_UInt32: return "UInt32";
|
|
|
|
case OC_Float32: return "Float32";
|
|
|
|
case OC_Float64: return "Float64";
|
|
|
|
case OC_String: return "String";
|
|
|
|
case OC_URL: return "Url";
|
|
|
|
/* Non-atomics*/
|
|
|
|
case OC_Dataset: return "Dataset";
|
|
|
|
case OC_Sequence: return "Sequence";
|
|
|
|
case OC_Grid: return "Grid";
|
|
|
|
case OC_Structure: return "Structure";
|
|
|
|
case OC_Dimension: return "Dimension";
|
|
|
|
case OC_Attribute: return "Attribute";
|
|
|
|
case OC_Attributeset: return "Attributeset";
|
|
|
|
case OC_Atomic: return "Atomic";
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
return "<unknown>";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
OCerror
|
|
|
|
octypeprint(OCtype etype, void* value, size_t bufsize, char* buf)
|
|
|
|
{
|
|
|
|
if(buf == NULL || bufsize == 0 || value == NULL) return OC_EINVAL;
|
|
|
|
buf[0] = '\0';
|
|
|
|
switch (etype) {
|
|
|
|
case OC_Char:
|
|
|
|
snprintf(buf,bufsize,"'%c'",*(char*)value);
|
|
|
|
break;
|
|
|
|
case OC_Byte:
|
|
|
|
snprintf(buf,bufsize,"%d",*(signed char*)value);
|
|
|
|
break;
|
|
|
|
case OC_UByte:
|
|
|
|
snprintf(buf,bufsize,"%u",*(unsigned char*)value);
|
|
|
|
break;
|
|
|
|
case OC_Int16:
|
|
|
|
snprintf(buf,bufsize,"%d",*(short*)value);
|
|
|
|
break;
|
|
|
|
case OC_UInt16:
|
|
|
|
snprintf(buf,bufsize,"%u",*(unsigned short*)value);
|
|
|
|
break;
|
|
|
|
case OC_Int32:
|
|
|
|
snprintf(buf,bufsize,"%d",*(int*)value);
|
|
|
|
break;
|
|
|
|
case OC_UInt32:
|
|
|
|
snprintf(buf,bufsize,"%u",*(unsigned int*)value);
|
|
|
|
break;
|
|
|
|
case OC_Float32:
|
|
|
|
snprintf(buf,bufsize,"%g",*(float*)value);
|
|
|
|
break;
|
|
|
|
case OC_Float64:
|
|
|
|
snprintf(buf,bufsize,"%g",*(double*)value);
|
|
|
|
break;
|
|
|
|
#ifdef HAVE_LONG_LONG_INT
|
|
|
|
case OC_Int64:
|
|
|
|
snprintf(buf,bufsize,"%lld",*(long long*)value);
|
|
|
|
break;
|
|
|
|
case OC_UInt64:
|
|
|
|
snprintf(buf,bufsize,"%llu",*(unsigned long long*)value);
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
case OC_String:
|
|
|
|
case OC_URL: {
|
|
|
|
char* s = *(char**)value;
|
|
|
|
snprintf(buf,bufsize,"\"%s\"",s);
|
|
|
|
} break;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
return OC_NOERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t
|
|
|
|
xxdrsize(OCtype etype)
|
|
|
|
{
|
|
|
|
switch (etype) {
|
|
|
|
case OC_Char:
|
|
|
|
case OC_Byte:
|
|
|
|
case OC_UByte:
|
|
|
|
case OC_Int16:
|
|
|
|
case OC_UInt16:
|
|
|
|
case OC_Int32:
|
|
|
|
case OC_UInt32:
|
|
|
|
return XDRUNIT;
|
|
|
|
case OC_Int64:
|
|
|
|
case OC_UInt64:
|
|
|
|
return (2*XDRUNIT);
|
|
|
|
case OC_Float32:
|
|
|
|
return XDRUNIT;
|
|
|
|
case OC_Float64:
|
|
|
|
return (2*XDRUNIT);
|
|
|
|
case OC_String:
|
|
|
|
case OC_URL:
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************/
|
|
|
|
|
|
|
|
char*
|
|
|
|
ocerrstring(int err)
|
|
|
|
{
|
|
|
|
if(err == 0) return "no error";
|
|
|
|
if(err > 0) return strerror(err);
|
|
|
|
switch (err) {
|
|
|
|
case OC_EBADID:
|
|
|
|
return "OC_EBADID: Not a valid ID";
|
|
|
|
case OC_EINVAL:
|
|
|
|
return "OC_EINVAL: Invalid argument";
|
|
|
|
case OC_EPERM:
|
|
|
|
return "OC_EPERM: Write to read only";
|
|
|
|
case OC_EINVALCOORDS:
|
|
|
|
return "OC_EINVALCOORDS: Index exceeds dimension bound";
|
|
|
|
case OC_ENOTVAR:
|
|
|
|
return "OC_ENOTVAR: Variable not found";
|
|
|
|
case OC_ECHAR:
|
|
|
|
return "OC_ECHAR: Attempt to convert between text & numbers";
|
|
|
|
case OC_EEDGE:
|
|
|
|
return "OC_EEDGE: Start+count exceeds dimension bound";
|
|
|
|
case OC_ESTRIDE:
|
|
|
|
return "OC_ESTRIDE: Illegal stride";
|
|
|
|
case OC_ENOMEM:
|
|
|
|
return "OC_ENOMEM: Memory allocation (malloc) failure";
|
|
|
|
case OC_EDIMSIZE:
|
|
|
|
return "OC_EDIMSIZE: Invalid dimension size";
|
|
|
|
case OC_EDAP:
|
|
|
|
return "OC_EDAP: DAP failure";
|
|
|
|
case OC_EXDR:
|
|
|
|
return "OC_EXDR: XDR failure";
|
|
|
|
case OC_ECURL:
|
|
|
|
return "OC_ECURL: libcurl failure";
|
|
|
|
case OC_EBADURL:
|
|
|
|
return "OC_EBADURL: malformed url";
|
|
|
|
case OC_EBADVAR:
|
|
|
|
return "OC_EBADVAR: no such variable";
|
|
|
|
case OC_EOPEN:
|
|
|
|
return "OC_EOPEN: temporary file open failed";
|
|
|
|
case OC_EIO:
|
|
|
|
return "OC_EIO: I/O failure";
|
|
|
|
case OC_ENODATA:
|
|
|
|
return "OC_ENODATA: Variable has no data in DAP request";
|
|
|
|
case OC_EDAPSVC:
|
|
|
|
return "OC_EDAPSVC: DAP Server error";
|
|
|
|
case OC_ENAMEINUSE:
|
|
|
|
return "OC_ENAMEINUSE: Duplicate name in DDS";
|
|
|
|
case OC_EDAS:
|
|
|
|
return "OC_EDAS: Malformed or unreadable DAS";
|
|
|
|
case OC_EDDS:
|
|
|
|
return "OC_EDDS: Malformed or unreadable DDS";
|
|
|
|
case OC_EDATADDS:
|
|
|
|
return "OC_EDATADDS: Malformed or unreadable DATADDS";
|
|
|
|
case OC_ERCFILE:
|
|
|
|
return "OC_ERCFILE: Malformed or unreadable run-time configuration file";
|
|
|
|
case OC_ENOFILE:
|
|
|
|
return "OC_ENOFILE: cannot read content of URL";
|
|
|
|
|
|
|
|
/* oc_data related errors */
|
|
|
|
case OC_EINDEX:
|
|
|
|
return "OC_EINDEX: index argument too large";
|
|
|
|
case OC_EBADTYPE:
|
|
|
|
return "OC_EBADTYPE: argument of wrong OCtype";
|
2012-12-19 05:08:23 +08:00
|
|
|
|
|
|
|
/* String concatenation overrun */
|
|
|
|
case OC_EOVERRUN:
|
|
|
|
return "OC_EOVERRUN: internal concatenation failed";
|
2012-08-01 04:34:13 +08:00
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
return "<unknown error code>";
|
|
|
|
}
|
|
|
|
|
|
|
|
OCerror
|
|
|
|
ocsvcerrordata(OCstate* state, char** codep, char** msgp, long* httpp)
|
|
|
|
{
|
|
|
|
if(codep) *codep = state->error.code;
|
|
|
|
if(msgp) *msgp = state->error.message;
|
|
|
|
if(httpp) *httpp = state->error.httpcode;
|
|
|
|
return OC_NOERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* if we get OC_EDATADDS error, then try to capture any
|
|
|
|
error message and log it; assumes that in this case,
|
|
|
|
the datadds is not big.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
ocdataddsmsg(OCstate* state, OCtree* tree)
|
|
|
|
{
|
|
|
|
#define ERRCHUNK 1024
|
|
|
|
#define ERRFILL ' '
|
|
|
|
#define ERRTAG "Error {"
|
|
|
|
unsigned int i,j,len;
|
|
|
|
XXDR* xdrs;
|
|
|
|
char* contents;
|
|
|
|
off_t ckp;
|
|
|
|
|
|
|
|
if(tree == NULL) return;
|
|
|
|
/* get available space */
|
|
|
|
xdrs = tree->data.xdrs;
|
|
|
|
len = xxdr_length(xdrs);
|
|
|
|
if(len < strlen(ERRTAG))
|
|
|
|
return; /* no room */
|
|
|
|
ckp = xxdr_getpos(xdrs);
|
|
|
|
xxdr_setpos(xdrs,0);
|
|
|
|
/* read the whole thing */
|
|
|
|
contents = (char*)malloc(len+1);
|
2012-08-03 02:43:21 +08:00
|
|
|
(void)xxdr_getbytes(xdrs,contents,len);
|
2012-08-01 04:34:13 +08:00
|
|
|
contents[len] = '\0';
|
|
|
|
/* Look for error tag */
|
|
|
|
for(i=0;i<len;i++) {
|
|
|
|
if(ocstrncmp(contents+i,ERRTAG,strlen(ERRTAG))==0) {
|
|
|
|
/* log the error message */
|
|
|
|
/* Do a quick and dirty escape */
|
|
|
|
for(j=i;j<len;j++) {
|
|
|
|
int c = contents[i+j];
|
|
|
|
if(c > 0 && (c < ' ' || c >= '\177'))
|
|
|
|
contents[i+j] = ERRFILL;
|
|
|
|
}
|
2012-08-09 07:15:18 +08:00
|
|
|
oclog(OCLOGERR,"DATADDS failure, possible message: '%s'\n",
|
2012-08-01 04:34:13 +08:00
|
|
|
contents+i);
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
xxdr_setpos(xdrs,ckp);
|
|
|
|
done:
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Given some set of indices [i0][i1]...[in] (where n == rank-1)
|
|
|
|
and the maximum sizes, compute the linear offset
|
|
|
|
for set of dimension indices.
|
|
|
|
*/
|
|
|
|
size_t
|
|
|
|
ocarrayoffset(size_t rank, size_t* sizes, size_t* indices)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
size_t count = 0;
|
|
|
|
for(i=0;i<rank;i++) {
|
|
|
|
count *= sizes[i];
|
|
|
|
count += indices[i];
|
|
|
|
}
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Inverse of ocarrayoffset: convert linear index to a set of indices */
|
|
|
|
void
|
|
|
|
ocarrayindices(size_t index, int rank, size_t* sizes, size_t* indices)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for(i=rank-1;i>=0;i--) {
|
|
|
|
indices[i] = index % sizes[i];
|
|
|
|
index = (index - indices[i]) / sizes[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Given some set of edge counts [i0][i1]...[in] (where n == rank-1)
|
|
|
|
and the maximum sizes, compute the linear offset
|
|
|
|
for the last edge position
|
|
|
|
*/
|
|
|
|
size_t
|
|
|
|
ocedgeoffset(size_t rank, size_t* sizes, size_t* edges)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
size_t count = 0;
|
|
|
|
for(i=0;i<rank;i++) {
|
|
|
|
count *= sizes[i];
|
|
|
|
count += (edges[i]-1);
|
|
|
|
}
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ocvalidateindices(size_t rank, size_t* sizes, size_t* indices)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for(i=0;i<rank;i++) {
|
|
|
|
if(indices[i] >= sizes[i]) return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
oc_ispacked(OCnode* node)
|
|
|
|
{
|
|
|
|
OCtype octype = node->octype;
|
|
|
|
OCtype etype = node->etype;
|
|
|
|
int isscalar = (node->array.rank == 0);
|
|
|
|
int packed;
|
|
|
|
|
|
|
|
if(isscalar || octype != OC_Atomic)
|
|
|
|
return 0; /* is not packed */
|
|
|
|
packed = (etype == OC_Byte
|
|
|
|
|| etype == OC_UByte
|
|
|
|
|| etype == OC_Char) ? 1 : 0;
|
|
|
|
return packed;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Must be consistent with ocx.h.OCDT */
|
|
|
|
#define NMODES 6
|
|
|
|
#define MAXMODENAME 8 /*max (strlen(modestrings[i])) */
|
2013-03-25 01:33:17 +08:00
|
|
|
static char* modestrings[NMODES+1] = {
|
2012-08-01 04:34:13 +08:00
|
|
|
"FIELD", /* ((OCDT)(1<<0)) field of a container */
|
|
|
|
"ELEMENT", /* ((OCDT)(1<<1)) element of a structure array */
|
|
|
|
"RECORD", /* ((OCDT)(1<<2)) record of a sequence */
|
|
|
|
"ARRAY", /* ((OCDT)(1<<3)) is structure array */
|
|
|
|
"SEQUENCE", /* ((OCDT)(1<<4)) is sequence */
|
|
|
|
"ATOMIC", /* ((OCDT)(1<<5)) is atomic leaf */
|
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
|
|
|
const char*
|
|
|
|
ocdtmodestring(OCDT mode,int compact)
|
|
|
|
{
|
2012-12-04 11:32:41 +08:00
|
|
|
static char result[1+(NMODES*(MAXMODENAME+1))]; /* hack to avoid malloc */
|
2012-08-01 04:34:13 +08:00
|
|
|
int i;
|
|
|
|
char* p = result;
|
|
|
|
result[0] = '\0';
|
|
|
|
if(mode == 0) {
|
|
|
|
if(compact) *p++ = '-';
|
2012-12-19 05:08:23 +08:00
|
|
|
else if(!occoncat(result,sizeof(result),1,"NONE"))
|
|
|
|
return NULL;
|
2012-08-01 04:34:13 +08:00
|
|
|
} else for(i=0;;i++) {
|
|
|
|
char* ms = modestrings[i];
|
|
|
|
if(ms == NULL) break;
|
2012-12-19 05:08:23 +08:00
|
|
|
if(!compact && i > 0)
|
|
|
|
if(!occoncat(result,sizeof(result),1,","))
|
|
|
|
return NULL;
|
2012-08-01 04:34:13 +08:00
|
|
|
if(fisset(mode,(1<<i))) {
|
|
|
|
if(compact) *p++ = ms[0];
|
2012-12-19 05:08:23 +08:00
|
|
|
else if(!occoncat(result,sizeof(result),1,ms))
|
|
|
|
return NULL;
|
2012-08-01 04:34:13 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/* pad compact list out to NMODES in length (+1 for null terminator) */
|
|
|
|
if(compact) {
|
|
|
|
while((p-result) < NMODES) *p++ = ' ';
|
|
|
|
*p = '\0';
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
2012-12-07 05:17:36 +08:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
Instead of using snprintf to concatenate
|
|
|
|
multiple strings into a given target,
|
|
|
|
provide a direct concatenator.
|
2012-12-19 05:08:23 +08:00
|
|
|
So, this function concats the n argument strings
|
|
|
|
and overwrites the contents of dst.
|
|
|
|
Care is taken to never overrun the available
|
|
|
|
space (the size parameter).
|
2012-12-07 05:17:36 +08:00
|
|
|
Note that size is assumed to include the null
|
|
|
|
terminator and that in the event of overrun,
|
|
|
|
the string will have a null at dst[size-1].
|
2012-12-19 05:08:23 +08:00
|
|
|
Return 0 if overrun, 1 otherwise.
|
2012-12-07 05:17:36 +08:00
|
|
|
*/
|
|
|
|
int
|
2012-12-19 05:08:23 +08:00
|
|
|
occopycat(char* dst, size_t size, size_t n, ...)
|
2012-12-07 05:17:36 +08:00
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
size_t avail = size - 1;
|
|
|
|
int i;
|
2012-12-19 05:08:23 +08:00
|
|
|
int status = 1; // assume ok
|
2012-12-07 05:17:36 +08:00
|
|
|
char* p = dst;
|
|
|
|
|
|
|
|
if(n == 0) {
|
|
|
|
if(size > 0)
|
|
|
|
dst[0] = '\0';
|
2012-12-19 05:08:23 +08:00
|
|
|
return (size > 0 ? 1: 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
va_start(args,n);
|
|
|
|
for(i=0;i<n;i++) {
|
|
|
|
char* q = va_arg(args, char*);
|
|
|
|
for(;;) {
|
|
|
|
int c = *q++;
|
|
|
|
if(c == '\0') break;
|
|
|
|
if(avail == 0) {status = 0; goto done;}
|
|
|
|
*p++ = c;
|
|
|
|
avail--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* make sure we null terminate;
|
|
|
|
note that since avail was size-1, there
|
|
|
|
will always be room
|
|
|
|
*/
|
|
|
|
*p = '\0';
|
|
|
|
|
|
|
|
done:
|
|
|
|
va_end(args);
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Similar to occopycat, but
|
|
|
|
the n strings are, in effect,
|
|
|
|
concatenated and appended to the
|
|
|
|
current contents of dst.
|
|
|
|
The size parameter is the total size of dst,
|
|
|
|
including room for null terminator.
|
|
|
|
Return 0 if overrun, 1 otherwise.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
occoncat(char* dst, size_t size, size_t n, ...)
|
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
int status = 1; // assume ok
|
|
|
|
size_t avail;
|
|
|
|
int i;
|
|
|
|
char* p;
|
|
|
|
size_t dstused;
|
|
|
|
dstused = strlen(dst);
|
|
|
|
if(dstused >= size)
|
|
|
|
return 0; /* There is no room to append */
|
|
|
|
/* move to the end of the current contents of dst
|
|
|
|
and act like we are doing copycat
|
|
|
|
*/
|
|
|
|
p = dst + dstused;
|
|
|
|
size -= dstused;
|
|
|
|
avail = size - 1;
|
|
|
|
if(n == 0) {
|
|
|
|
if(size > 0)
|
|
|
|
p[0] = '\0';
|
|
|
|
return (size > 0 ? 1: 0);
|
2012-12-07 05:17:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
va_start(args,n);
|
|
|
|
for(i=0;i<n;i++) {
|
|
|
|
char* q = va_arg(args, char*);
|
|
|
|
for(;;) {
|
|
|
|
int c = *q++;
|
|
|
|
if(c == '\0') break;
|
2012-12-19 05:08:23 +08:00
|
|
|
if(avail == 0) {status = 0; goto done;}
|
2012-12-07 05:17:36 +08:00
|
|
|
*p++ = c;
|
|
|
|
avail--;
|
|
|
|
}
|
|
|
|
}
|
2012-12-19 05:08:23 +08:00
|
|
|
/* make sure we null terminate;
|
|
|
|
note that since avail was size-1, there
|
|
|
|
will always be room
|
|
|
|
*/
|
|
|
|
*p = '\0';
|
2012-12-07 05:17:36 +08:00
|
|
|
|
|
|
|
done:
|
|
|
|
va_end(args);
|
|
|
|
return status;
|
|
|
|
}
|
2013-11-15 06:13:20 +08:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Wrap mktmp
|
|
|
|
*/
|
|
|
|
|
|
|
|
int
|
|
|
|
ocmktmp(const char* base, char** tmpnamep, int* fdp)
|
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
char* tmpname = NULL;
|
|
|
|
mode_t oldmask;
|
|
|
|
size_t tmpsize = strlen(base)+strlen("XXXXXX") + 1;
|
|
|
|
|
|
|
|
tmpname = (char*)malloc(tmpsize);
|
|
|
|
if(tmpname == NULL) return OC_ENOMEM;
|
2013-12-05 07:02:43 +08:00
|
|
|
if(!occopycat(tmpname,tmpsize,1,base)) {
|
2014-01-22 03:50:15 +08:00
|
|
|
free(tmpname);
|
|
|
|
return OC_EOVERRUN;
|
2013-12-05 07:02:43 +08:00
|
|
|
}
|
2013-11-15 06:13:20 +08:00
|
|
|
#ifdef HAVE_MKSTEMP
|
Corrected "BAIL" macros to avoid infinite loop when logging is disabled and an
error occurs after an "exit:" label.
Corrected a dozen Coverity errors (mainly allocation issues, along with a few
other things):
711711, 711802, 711803, 711905, 970825, 996123, 996124, 1025787,
1047274, 1130013, 1130014, 1139538
Refactored internal fill-value code to correctly handle string types, and
especially to allow NULL pointers and null strings (ie. "") to be
distinguished. The code now avoids partially aliasing the two together
(which only happened on the 'write' side of things and wasn't reflected on
the 'read' side, adding to the previous confusion).
Probably still weak on handling fill-values of variable-length and compound
datatypes.
Refactored the recursive metadata reads a bit more, to process HDF5 named
datatypes and datasets immediately, avoiding chewing up memory for those
types of objects, etc.
Finished uncommenting and updating the nc_test4/tst_fills2.c code (as I'm
proceeding alphabetically through the nc_test4 code files).
2013-12-29 15:12:43 +08:00
|
|
|
if(!occoncat(tmpname,tmpsize,1,"XXXXXX")) {
|
|
|
|
free(tmpname);
|
2013-11-15 06:13:20 +08:00
|
|
|
return OC_EOVERRUN;
|
Corrected "BAIL" macros to avoid infinite loop when logging is disabled and an
error occurs after an "exit:" label.
Corrected a dozen Coverity errors (mainly allocation issues, along with a few
other things):
711711, 711802, 711803, 711905, 970825, 996123, 996124, 1025787,
1047274, 1130013, 1130014, 1139538
Refactored internal fill-value code to correctly handle string types, and
especially to allow NULL pointers and null strings (ie. "") to be
distinguished. The code now avoids partially aliasing the two together
(which only happened on the 'write' side of things and wasn't reflected on
the 'read' side, adding to the previous confusion).
Probably still weak on handling fill-values of variable-length and compound
datatypes.
Refactored the recursive metadata reads a bit more, to process HDF5 named
datatypes and datasets immediately, avoiding chewing up memory for those
types of objects, etc.
Finished uncommenting and updating the nc_test4/tst_fills2.c code (as I'm
proceeding alphabetically through the nc_test4 code files).
2013-12-29 15:12:43 +08:00
|
|
|
}
|
2013-11-15 06:13:20 +08:00
|
|
|
/* Note Potential problem: old versions of this function
|
|
|
|
leave the file in mode 0666 instead of 0600 */
|
|
|
|
oldmask= umask(S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
|
|
|
|
fd = mkstemp(tmpname);
|
|
|
|
umask(oldmask); /* restore */
|
|
|
|
#else /* !HAVE_MKSTEMP */
|
|
|
|
/* Need to simulate by using some kind of pseudo-random number */
|
|
|
|
{
|
|
|
|
int rno = rand();
|
|
|
|
char spid[7];
|
|
|
|
if(rno < 0) rno = -rno;
|
|
|
|
snprintf(spid,sizeof(spid),"%06d",rno);
|
Corrected "BAIL" macros to avoid infinite loop when logging is disabled and an
error occurs after an "exit:" label.
Corrected a dozen Coverity errors (mainly allocation issues, along with a few
other things):
711711, 711802, 711803, 711905, 970825, 996123, 996124, 1025787,
1047274, 1130013, 1130014, 1139538
Refactored internal fill-value code to correctly handle string types, and
especially to allow NULL pointers and null strings (ie. "") to be
distinguished. The code now avoids partially aliasing the two together
(which only happened on the 'write' side of things and wasn't reflected on
the 'read' side, adding to the previous confusion).
Probably still weak on handling fill-values of variable-length and compound
datatypes.
Refactored the recursive metadata reads a bit more, to process HDF5 named
datatypes and datasets immediately, avoiding chewing up memory for those
types of objects, etc.
Finished uncommenting and updating the nc_test4/tst_fills2.c code (as I'm
proceeding alphabetically through the nc_test4 code files).
2013-12-29 15:12:43 +08:00
|
|
|
if(!occoncat(tmpname,tmpsize,1,spid)) {
|
|
|
|
free(tmpname);
|
2013-11-15 06:13:20 +08:00
|
|
|
return OC_EOVERRUN;
|
Corrected "BAIL" macros to avoid infinite loop when logging is disabled and an
error occurs after an "exit:" label.
Corrected a dozen Coverity errors (mainly allocation issues, along with a few
other things):
711711, 711802, 711803, 711905, 970825, 996123, 996124, 1025787,
1047274, 1130013, 1130014, 1139538
Refactored internal fill-value code to correctly handle string types, and
especially to allow NULL pointers and null strings (ie. "") to be
distinguished. The code now avoids partially aliasing the two together
(which only happened on the 'write' side of things and wasn't reflected on
the 'read' side, adding to the previous confusion).
Probably still weak on handling fill-values of variable-length and compound
datatypes.
Refactored the recursive metadata reads a bit more, to process HDF5 named
datatypes and datasets immediately, avoiding chewing up memory for those
types of objects, etc.
Finished uncommenting and updating the nc_test4/tst_fills2.c code (as I'm
proceeding alphabetically through the nc_test4 code files).
2013-12-29 15:12:43 +08:00
|
|
|
}
|
2013-11-16 06:41:17 +08:00
|
|
|
#if defined(_WIN32) || defined(_WIN64)
|
2013-11-15 06:13:20 +08:00
|
|
|
fd=open(tmpname,O_RDWR|O_BINARY|O_CREAT|O_EXCL|FILE_ATTRIBUTE_TEMPORARY, _S_IREAD|_S_IWRITE);
|
|
|
|
# else
|
|
|
|
fd=open(tmpname,O_RDWR|O_CREAT|O_EXCL, S_IRWXU);
|
|
|
|
# endif
|
|
|
|
}
|
|
|
|
#endif /* !HAVE_MKSTEMP */
|
2014-02-20 22:24:55 +08:00
|
|
|
if(fd < 0) {
|
2014-03-04 04:43:47 +08:00
|
|
|
if(tmpname != NULL) free(tmpname);
|
2014-02-20 22:24:55 +08:00
|
|
|
return OC_EOPEN;
|
|
|
|
}
|
2013-11-15 06:13:20 +08:00
|
|
|
if(tmpnamep) *tmpnamep = tmpname;
|
2014-03-04 04:43:47 +08:00
|
|
|
else if(tmpname != null) {free(tmpname);}
|
2013-11-15 06:13:20 +08:00
|
|
|
if(fdp) *fdp = fd;
|
2014-03-04 04:43:47 +08:00
|
|
|
else if(fd >= 0) close(fd);
|
2013-11-15 06:13:20 +08:00
|
|
|
return OC_NOERR;
|
|
|
|
}
|