-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnxstest.py
412 lines (361 loc) · 12.8 KB
/
nxstest.py
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
# This program is public domain
# Author: Paul Kienzle
"""
NeXus tests converted to python.
"""
import os,sys
import numpy
import nexus as nxs
def memfootprint():
import gc
objs = gc.get_objects()
classes = set( c.__class__ for c in gc.get_objects() if hasattr(c,'__class__') )
# print "\n".join([c.__name__ for c in classes])
print "#objects=",len(objs)
print "#classes=",len(classes)
def leak_test1(n = 1000, mode='w5'):
# import gc
# gc.enable()
# gc.set_debug(gc.DEBUG_LEAK)
filename = "leak_test1.nxs"
try: os.unlink(filename)
except OSError: pass
file = nxs.open(filename,mode)
file.close()
print "File should exist now"
for i in range(n):
if i%100 == 0:
print "loop count %d"%i
memfootprint()
file.open()
file.close()
# gc.collect()
os.unlink(filename)
def _show(file, indent=0):
prefix = ' '*indent
link = file.link()
if link:
print "%(prefix)s-> %(link)s" % locals()
return
for attr,value in file.attrs():
print "%(prefix)s@%(attr)s: %(value)s" % locals()
for name,nxclass in file.entries():
if nxclass == "SDS":
shape,dtype = file.getinfo()
dims = "x".join([str(x) for x in shape])
print "%(prefix)s%(name)s %(dtype)s %(dims)s" % locals()
link = file.link()
if link:
print " %(prefix)s-> %(link)s" % locals()
else:
for attr,value in file.attrs():
print " %(prefix)s@%(attr)s: %(value)s" % locals()
if numpy.prod(shape) < 8:
value = file.getdata()
print " %s%s"%(prefix,str(value))
else:
print "%(prefix)s%(name)s %(nxclass)s" % locals()
_show(file, indent+2)
def show_structure(filename):
file = nxs.open(filename)
print "=== File",file.inquirefile()
_show(file)
def populate(filename,mode):
i1 = numpy.arange(4,dtype='uint8')
i2 = numpy.arange(4,dtype='int16')*1000
i4 = numpy.arange(4,dtype='int32')*1000000
i8 = numpy.arange(4,dtype='int64')*1000000000000
r4 = numpy.arange(20,dtype='float32').reshape((5,4))
r8 = numpy.arange(20,dtype='float64').reshape((5,4))
comp_array=numpy.ones((100,20),dtype='int32')
for i in range(100): comp_array[i,:] *= i
file = nxs.open(filename,mode)
file.setnumberformat('float32','%9.3g')
file.makegroup("entry","NXentry")
file.opengroup("entry","NXentry")
file.putattr("hugo","namenlos")
file.putattr("cucumber","passion")
#file.putattr("embedded_null","embedded\000null")
# Write character data
file.makedata("ch_data",'char',[10])
file.opendata("ch_data")
file.putdata("NeXus data")
file.closedata()
# Write numeric data
for var in ['i1','i2','i4','i8','r4']:
if mode == 'w4' and var == 'i8': continue
name = var+'_data'
val = locals()[var]
file.makedata(name,val.dtype,val.shape)
file.opendata(name)
file.putdata(val)
file.closedata()
# Write r8_data
file.makedata('r8_data','float64',[5,4])
file.opendata('r8_data')
file.putslab(r8[4,:],[4,0],[1,4])
file.putslab(r8[0:4,:],[0,0],[4,4])
file.putattr("ch_attribute","NeXus")
file.putattr("i4_attribute",42,dtype='int32')
file.putattr("r4_attribute",3.14159265,dtype='float32')
## Oops... NAPI doesn't support array attributes
#file.putattr("i4_array",[3,2],dtype='int32')
#file.putattr("r4_array",[3.14159265,2.718281828],dtype='float32')
dataID = file.getdataID()
file.closedata()
# Create the NXdata group
file.makegroup("data","NXdata")
file.opengroup("data","NXdata")
# .. demonstrate linking
file.makelink(dataID)
# .. demonstrate compressed data
file.compmakedata("comp_data",'int32',[100,20],'lzw',[20,20])
file.opendata('comp_data')
file.putdata(comp_array)
file.closedata()
file.flush()
# .. demonstrate extensible data
file.makedata('flush_data','int32',[nxs.UNLIMITED])
file.opendata('flush_data')
for i in range(7):
file.putslab(i,[i],[1])
file.closedata()
file.flush()
file.closegroup()
# Create NXsample group
file.makegroup('sample','NXsample')
file.opengroup('sample','NXsample')
file.makedata('ch_data','char',[20])
file.opendata('ch_data')
file.putdata('NeXus sample')
file.closedata()
sampleID = file.getgroupID()
file.closegroup()
file.closegroup()
# Demonstrate named links
file.makegroup('link','NXentry')
file.opengroup('link','NXentry')
file.makelink(sampleID)
file.makenamedlink('renLinkGroup',sampleID)
file.makenamedlink('renLinkData',dataID)
file.closegroup()
file.close()
return filename
failures = 0
def fail(msg):
global failures
print "FAIL:",msg
failures += 1
def dicteq(a,b):
"""
Compare two dictionaries printing how they differ.
"""
for k,v in a.iteritems():
if k not in b:
print k,"not in",b
return False
if v != b[k]:
print v,"not equal",b[k]
return False
for k,v in b.iteritems():
if k not in a:
print k,"not in",a
return False
return True
def check(filename, mode):
global failures
failures = 0
file = nxs.open(filename,'rw')
if filename != file.inquirefile(): fail("Files don't match")
# check headers
num_attrs = file.getattrinfo()
wxattrs = ['xmlns','xmlns:xsi','xsi:schemaLocation', 'XML_version']
w4attrs = ['HDF_version']
w5attrs = ['HDF5_Version']
extras = dict(wx=wxattrs,w4=w4attrs,w5=w5attrs)
expected_attrs = ['NeXus_version','file_name','file_time']+extras[mode]
for i in range(num_attrs):
name,dims,type = file.getnextattr()
if name not in expected_attrs:
fail("attribute %s unexpected"%(name))
if num_attrs != len(expected_attrs):
fail("Expected %d root attributes but got %d"
% (len(expected_attrs),num_attrs))
file.opengroup('entry','NXentry')
expect = dict(hugo='namenlos',cucumber='passion')
#expect['embedded_null'] = "embedded\000null"
get = dict((k,v) for k,v in file.attrs())
same = dicteq(get,expect)
if not same: fail("/entry attributes are %s"%(get))
# Check that the numbers are written correctly
for name,dtype,shape,scale in \
[('i1','int8',(4),1),
('i2','int16',(4),1000),
('i4','int32',(4),1000000),
('i8','int64',(4),1000000000000),
('r4','float32',(5,4),1),
('r8','float64',(5,4),1)
]:
if mode == 'w4' and name == 'i8': continue
n = numpy.prod(shape)
expected = numpy.arange(n,dtype=dtype).reshape(shape)*scale
file.opendata(name+'_data')
get = file.getdata()
file.closedata()
if not (get == expected).all():
fail("%s retrieved %s"%(dtype,get))
# Check attribute types
file.opendata('r8_data')
get = file.getattr("ch_attribute",5,'char')
if not get == "NeXus": fail("ch_attribute retrieved %s"%(get))
get = file.getattr("i4_attribute",1,'int32')
if not get == numpy.int32(42): fail("i4_attribute retrieved %s"%(get))
get = file.getattr("r4_attribute",1,'float32')
if ((mode=='wx' and not abs(get-3.14159265) < 1e-6) or
(mode!='wx' and not get == numpy.float32(3.14159265))):
fail("r4_attribute retrieved %s"%(get))
## Oops... NAPI doesn't support array attributes
#expect = numpy.array([3,2],dtype='int32')
#get = file.getattr("i4_array",2,'int32')
#if not (get==expect).all(): fail('i4_array retrieved %s'%(get))
#expect = numpy.array([3.14159265,2.718281828],dtype='float32')
#get = file.getattr("r4_array",2,dtype='float32')
#if not (get==expect).all(): fail("r4_array retrieved %s"%(get))
file.closedata()
# Check reading from compressed datasets
comp_array=numpy.ones((100,20),dtype='int32')
for i in range(100): comp_array[i,:] *= i
expected = comp_array
file.opengroup('data','NXdata') #/entry/data
file.opendata('comp_data') #/entry/data/comp_data
get = file.getdata()
file.closedata() #/entry/data/comp_data
file.closegroup() #/entry/data
if not (get == expected).all():
fail("compressed data differs")
print get
# Check strings
file.opengroup('sample','NXsample') #/entry/sample
file.opendata('ch_data') #/entry/sample/ch_data
rawshape,rawdtype = file.getrawinfo()
shape,dtype = file.getinfo()
get = file.getdata()
file.closedata() #/entry/sample/ch_data
file.closegroup() #/entry/sample
if not (shape[0]==12 and dtype=='char'):
fail("returned string info is incorrect")
print shape,dtype
if not (rawshape[0]==20 and rawdtype=='char'):
fail("returned string storage info is incorrect")
print shape,dtype
if not (get == "NeXus sample"):
fail("returned string is incorrect")
print shape,dtype
file.closegroup() #/entry
# Check read slab (e.g., from extensible)
# Check links
file.opengroup('entry','NXentry')
file.opengroup('sample','NXsample')
sampleid = file.getgroupID()
file.closegroup() #/entry/sample
file.opengroup('data','NXdata') #/entry/data
file.opendata('r8_data') #/entry/data/r8_data
dataid = file.getdataID()
file.closedata() #/entry/data/r8_data
file.closegroup() #/entry/data
file.opendata('r8_data')
data2id = file.getdataID()
file.closedata()
file.closegroup() #/entry
if not (file.sameID(dataid,data2id)):
fail("/entry/data/r8_data not linked to /entry/r8_data")
# Check openpath and getslab
file.openpath('/entry/data/comp_data')
get = file.getslab([4,4],[5,3])
expected = comp_array[4:(4+5),4:(4+3)]
if not (get == expected).all():
fail("retrieved compressed slabs differ")
print get
file.openpath('/entry/data/comp_data')
get = file.getslab([4,4],[5,3])
expected = comp_array[4:(4+5),4:(4+3)]
if not (get == expected).all():
fail("after reopen: retrieved compressed slabs differ")
print get
file.openpath('../r8_data')
for k,v in file.attrs():
if k == 'target' and v != '/entry/r8_data':
fail("relative openpath was not successful")
return failures == 0
def populate_external(filename,mode):
ext = dict(w5='.h5',w4='.hdf',wx='.xml')[mode]
file = nxs.open(filename,mode)
file.makegroup('entry1','NXentry')
file.linkexternal('entry1','NXentry','nxfile://data/dmc01'+ext)
file.makegroup('entry2','NXentry')
file.linkexternal('entry2','NXentry','nxfile://data/dmc02'+ext)
file.makegroup('entry3','NXentry')
file.close()
def check_external(filename,mode):
ext = dict(w5='.h5',w4='.hdf',wx='.xml')[mode]
file = nxs.open(filename,'rw')
file.openpath('/entry1/start_time')
time = file.getdata()
get = file.inquirefile()
expected = 'nxfile://data/dmc01'+ext
if expected != get: fail("first external file returned %s"%(get))
file.openpath('/entry2/sample/sample_name')
sample = file.getdata()
get = file.inquirefile()
expected = 'nxfile://data/dmc02'+ext
if expected != get: fail("second external file returned %s"%(get))
file.openpath('/')
remote = file.isexternalgroup('entry1','NXentry')
if remote is None:
fail("failed to identify /entry1 as external")
remote = file.isexternalgroup('entry3','NXentry')
if remote is not None:
fail('incorrectly identified /entry3 as external')
file.close()
def test_external(mode,quiet=True):
ext = dict(w5='.h5',w4='.hdf',wx='.xml')[mode]
filename = 'nxext'+ext
populate_external(external,mode)
if not quiet:
show_structure(external)
failures = check_external(filename,mode)
return failures
def test_mode(mode,quiet=True,external=False):
ext = dict(w5='.h5',w4='.hdf',wx='.xml')[mode]
filename = 'NXtest'+ext
populate(filename,mode=mode)
if not quiet and 'NX_LOAD_PATH' in os.environ:
show_structure('dmc01'+ext)
if not quiet:
show_structure(filename)
failures = check(filename,mode)
if external: failures += test_external(mode,quiet)
return failures
def test():
tests = 0
if '-q' in sys.argv:
quiet = True
else:
quiet = False
if '-x' in sys.argv:
external = True
else:
external = False
if 'hdf4' in sys.argv:
test_mode('w4',quiet,external)
tests += 1
if 'xml' in sys.argv:
test_mode('wx',quiet,external)
tests += 1
if 'hdf5' in sys.argv:
test_mode('w5',quiet,external)
tests += 1
if tests == 0: test_mode('w5',quiet,external)
if __name__ == "__main__":
test()
#leak_test1(n=10000)