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
|
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdlib.h>
#ifdef HAVE_CONFIG_H
#include <stdio.h>
#endif
#include <string.h>
#include <netcdf.h>
#include <ncpathmgr.h>
#include <nclist.h>
#ifdef HAVE_HDF5_H
#include <hdf5.h>
#include <H5DSpublic.h>
#endif
#ifdef ENABLE_NCZARR
#include "zincludes.h"
#endif
#include "tst_utils.h"
static unsigned chunkprod;
static unsigned dimprod;
static int* data = NULL;
static size_t datasize = 0;
static int setupwholechunk(void);
static int reportwholechunk(void);
static void zutest_print(int sort, ...);
static int
writedata(void)
{
int ret = NC_NOERR;
int i;
for(i=0;i<dimprod;i++) data[i] = i;
if(options->wholechunk)
setupwholechunk();
if(options->debug >= 1) {
fprintf(stderr,"write: dimlens=%s chunklens=%s\n",
printvector(options->rank,options->dimlens),printvector(options->rank,options->chunks));
}
if(options->wholechunk) {
fprintf(stderr,"write var: wholechunk\n");
if((ret = nc_put_vars(meta->ncid,meta->varid,options->start,options->count,(ptrdiff_t*)options->stride,data)))
ERR(ret);
} else {
fprintf(stderr,"write vars: start=%s count=%s stride=%s\n",
printvector(options->rank,options->start),printvector(options->rank,options->count),printvector(options->rank,options->stride));
if((ret = nc_put_vars(meta->ncid,meta->varid,options->start,options->count,(ptrdiff_t*)options->stride,data)))
ERR(ret);
}
if(options->wholechunk) {
if((ret=reportwholechunk()))
ERR(ret);
}
return 0;
}
static int
readdata(void)
{
int ret = NC_NOERR;
int i;
memset(data,0,datasize);
if(options->wholechunk) {
setupwholechunk();
}
if(options->debug >= 1)
fprintf(stderr,"read: dimlens=%s chunklens=%s\n",
printvector(options->rank,options->dimlens),printvector(options->rank,options->chunks));
fprintf(stderr,"read vars: start=%s count=%s stride=%s",
printvector(options->rank,options->start),
printvector(options->rank,options->count),
printvector(options->rank,options->stride));
if(options->wholechunk)
fprintf(stderr," wholechunk");
fprintf(stderr,"\n");
if((ret = nc_get_vars(meta->ncid,meta->varid,options->start,options->count,(ptrdiff_t*)options->stride,data)))
ERR(ret);
for(i=0;i<dimprod;i++) {
printf("[%d] %d\n",i,data[i]);
}
if(options->wholechunk)
reportwholechunk();
return 0;
}
static int
genodom(void)
{
int i,ret = NC_NOERR;
Odometer* odom = odom_new(options->rank, options->start, options->stop, options->stride, options->max);
if(odom == NULL) {ret = NC_ENOMEM; goto done;}
if(options->debug > 1)
fprintf(stderr,"genodom: odom = %s\n",odom_print(odom));
/* Iterate the odometer */
for(i=0;odom_more(odom);odom_next(odom),i++) {
printf("[%02d] %s\n",i,(i==0?odom_print(odom):odom_printshort(odom)));
}
done:
odom_free(odom);
return ret;
}
static int wholechunkcalls = 0;
static struct ZUTEST zutester;
static int
setupwholechunk(void)
{
int ret = NC_NOERR;
wholechunkcalls = 0;
#ifdef ENABLE_NCZARR
/* Set the printer */
zutester.tests = UTEST_WHOLECHUNK;
zutester.print = zutest_print;
zutest = &zutester; /* See zdebug.h */
#endif
return ret;
}
static void
zutest_print(int sort, ...)
{
va_list ap;
struct Common* common = NULL;
size64_t* chunkindices;
NC_UNUSED(common);
va_start(ap,sort);
switch (sort) {
default: break; /* ignore */
case UTEST_WHOLECHUNK:
common = va_arg(ap,struct Common*);
chunkindices = va_arg(ap,size64_t*);
if(options->debug >= 1)
fprintf(stderr,"wholechunk: indices=%s\n",printvector64(common->rank,chunkindices));
wholechunkcalls++;
break;
}
va_end(ap);
}
static int
reportwholechunk(void)
{
int ret = NC_NOERR;
#ifdef ENABLE_NCZARR
if(options->debug > 0)
fprintf(stderr,"wholechunkcalls=%d\n",wholechunkcalls);
if(wholechunkcalls != 1)
return NC_EINVAL;
#endif
return ret;
}
int
main(int argc, char** argv)
{
int stat = NC_NOERR;
int i;
if((stat=getoptions(&argc,&argv))) goto done;
if(options->formatx != NC_FORMATX_NCZARR && options->wholechunk) {
fprintf(stderr,"Format is not NCZarr; -OW_ ignored\n");
options->wholechunk = 0;
}
switch (options->op) {
case Read:
if((stat = getmetadata(0)))
ERR(stat);
if (argc == 0) {fprintf(stderr, "no input file specified\n");exit(1);}
break;
case Write:
if((stat = getmetadata(1)))
ERR(stat);
if (argc == 0) {fprintf(stderr, "no output file specified\n");exit(1);}
break;
default:
break; /* do not need a file */
}
dimprod = 1;
chunkprod = 1;
for(i=0;i<options->rank;i++) {dimprod *= options->dimlens[i]; chunkprod *= options->chunks[i];}
datasize = dimprod*sizeof(int);
if((data = calloc(1,datasize)) == NULL)
{fprintf(stderr,"out of memory\n"); exit(1);}
switch (options->op) {
case Read: readdata(); break;
case Write: writedata(); break;
case Odom: genodom(); break;
default:
fprintf(stderr,"Unknown operation\n");
exit(1);
}
done:
if(data) free(data);
cleanup();
return 0;
}
|