/********************************************************************* * Copyright 2018, UCAR/Unidata * See netcdf/COPYRIGHT file for copying and redistribution conditions. *********************************************************************/ #include "d4includes.h" #include #include #include "d4includes.h" #include "d4util.h" /* The primary purpose of this code is to recursively traverse the incoming data to get the endianness correct. */ /* Forward */ static int walkAtomicVar(NCD4response*, NCD4node*, NCD4node*, NCD4offset* offset,int doswap); static int walkOpaqueVar(NCD4response*,NCD4node*, NCD4node*, NCD4offset* offset,int doswap); static int walkStructArray(NCD4response*,NCD4node*, NCD4node*, NCD4offset* offset,int doswap); static int walkStruct(NCD4response*, NCD4node*, NCD4node*, NCD4offset* offset,int doswap); static int walkSeqArray(NCD4response*, NCD4node*, NCD4node*, NCD4offset* offset,int doswap); static int walkSeq(NCD4response*,NCD4node*, NCD4node*, NCD4offset* offset,int doswap); /**************************************************/ /* Assumes that compiler->swap is true; does necessary byte swapping. */ int NCD4_swapdata(NCD4response* resp, NCD4node* var, int doswap) { int ret = NC_NOERR; NCD4offset* offset = NULL; offset = BUILDOFFSET(resp->serial.dap,resp->serial.dapsize); OFFSET2BLOB(var->data.dap4data,offset); switch (var->subsort) { default: if((ret=walkAtomicVar(resp,var,var,offset,doswap))) goto done; break; case NC_OPAQUE: /* The only thing we need to do is swap the counts */ if((ret=walkOpaqueVar(resp,var,var,offset,doswap))) goto done; break; case NC_STRUCT: if((ret=walkStructArray(resp,var,var,offset,doswap))) goto done; break; case NC_SEQ: if((ret=walkSeqArray(resp,var,var,offset,doswap))) goto done; break; } var->data.dap4data.size = (d4size_t)DELTA(offset,var->data.dap4data.memory); /* skip checksum, if there is one */ if(resp->inferredchecksumming) INCR(offset,CHECKSUMSIZE); done: if(offset) free(offset); return THROW(ret); } static int walkAtomicVar(NCD4response* resp, NCD4node* topvar, NCD4node* var, NCD4offset* offset, int doswap) { int ret = NC_NOERR; d4size_t i; nc_type subsort; d4size_t dimproduct; NCD4node* basetype; basetype = (var->sort == NCD4_TYPE ? var : var->basetype); subsort = basetype->subsort; dimproduct = (var->sort == NCD4_TYPE ? 1 : NCD4_dimproduct(var)); if(subsort == NC_ENUM) subsort = var->basetype->basetype->subsort; /* Only need to swap multi-byte integers and floats */ if(subsort != NC_STRING) { size_t typesize = NCD4_typesize(subsort); d4size_t totalsize = typesize*dimproduct; if(typesize == 1) { INCR(offset,totalsize); } else { /*(typesize > 1)*/ for(i=0;ioffset; if(doswap) { switch (typesize) { case 2: swapinline16(sp); break; case 4: swapinline32(sp); break; case 8: swapinline64(sp); break; default: break; } } INCR(offset,typesize); } } } else if(subsort == NC_STRING) { /* remaining case; just convert the counts */ COUNTERTYPE count; for(i=0;isort == NCD4_TYPE ? 1 : NCD4_dimproduct(var)); for(i=0;ibasetype; for(i=0;ivars);i++) { NCD4node* field = (NCD4node*)nclistget(structtype->vars,i); NCD4node* fieldbase = field->basetype; switch (fieldbase->subsort) { default: if((ret=walkAtomicVar(resp,topvar,field,offset,doswap))) goto done; break; case NC_OPAQUE: /* The only thing we need to do is swap the counts */ if((ret=walkOpaqueVar(resp,topvar,field,offset,doswap))) goto done; break; case NC_STRUCT: if((ret=walkStructArray(resp,topvar,field,offset,doswap))) goto done; break; case NC_SEQ: if((ret=walkSeqArray(resp,topvar,field,offset,doswap))) goto done; break; } } done: return THROW(ret); } static int walkSeqArray(NCD4response* resp, NCD4node* topvar, NCD4node* var, NCD4offset* offset, int doswap) { int ret = NC_NOERR; d4size_t i; d4size_t dimproduct; NCD4node* seqtype; assert(var->sort == NCD4_VAR); dimproduct = NCD4_dimproduct(var); seqtype = var->basetype; for(i=0;ibasetype; /* This may be of any type potentially */ assert(basetype->sort == NCD4_TYPE); for(i=0;isubsort) { default: /* atomic basetype */ if((ret=walkAtomicVar(resp,topvar,basetype,offset,doswap))) goto done; break; case NC_OPAQUE: if((ret=walkOpaqueVar(resp,topvar,basetype,offset,doswap))) goto done; break; case NC_STRUCT: /* We can treat each record like a structure instance */ if((ret=walkStruct(resp,topvar,basetype,offset,doswap))) goto done; break; case NC_SEQ: if((ret=walkSeq(resp,topvar,basetype,offset,doswap))) goto done; break; } } done: return THROW(ret); }