Persistency
ostap.io.zipshelve
Ostap offers very nice&efficient way to store the objects in persistent dbase.
This persistency is build around shelve
module and differs in two way
- the conntent of payload is compressed, using
zlib
module making the data base very compact- (optionally) the whole database can ve further
gzip
'ed usinggzip
module, if the extension.gz
is provided. It makes data banse even more compact.
- (optionally) the whole database can ve further
- in addition to the native
dict
interface fromshelve
, more extensiveinterface with more methods is supported.
Create database and write objects to it:
a = ...
import ostap.io.zipshelve as DBASE
with DBASE.open ( 'my_dbase.db' ) as db : ## create DBASE
db.ls()
db['a'] = a
db['histo'] = ROOT.TH1D('h1','',10,0,1)
Reading objects from database
with DBASE.open ( 'my_dbase.db' , 'read') as db : ## read DBASE
db.ls()
b = db['a']
h2 = db['histo']
One can store in database all pickable objects, that means all python objects, all (serializeable) ROOT
objects. All C++
objects with LCG/Reflex/Cint
-dictionaries are also could be stored database. In practice, everything is storable, including complex combination of python&C++ objects, like dictionary of historgams and python classed, inherited from C++
-base classes.
Plain ROOT.TFile
Ostap adds some decorations even for the plain ROOT.TFile
, making its interface more pythonic:
rfile = ...
obj = rfile['A/B/C/myobj'] ## READ object form the file/directory
rfile['A/B/C/myobj2'] = object2 ## WRITE object to the file/directory
obj = rfile.A.B.C.myobj ## another way to access to the object
obj = rfile.get ( 'A/B/C/q' , None ) ## one more way to get object
for obj in rfile : print obj ## loop over all objects in file
for key,obj in rfile.iteritems() : print key, obj ## another loop
for key,obj in rfile.iteritems( ROOT.TH1 ) : print key, obj ## advanced loop, get only histograms
for k in rfile.keys() : print k ## get all keys and loop over them
for k in rfile.iterkeys() : print k ## loop over all keys in the file
del rfile['A/B'] ## delete the object from the file
rfile.rm ( 'A/B' ) ## delete the object from the file
if 'A/MyHisto' in rfile : print 'OK!' ## check presence of the key
if rfile.has_key ( 'A/MyHisto' ) : print 'OK!' ## check presence of the key
with ROOT.TFile('aa.root') as rfile : rfile.ls() ## context manager protocol
RootOnlyShelve
The module ostap.io.rootshelve
offers the thin wrapper over ROOT.TFile
that implement shelve
-interface. As a resutl one gets a ligth database build a top of underlying ROOT.TFile
, where ROOT
-objects could be stored:
from ostap.io.rootshelve import RooOnlyShelf
db = RooOnlyShelf('mydb.root','c')
h1 = ...
db ['histogram'] = h1
db.ls()
RootShelve
The module ostap.io.rootshelve
offers also more sophisticated wrapper over ROOT.TFile
that also implements shelve
-interface and able to store ROOT and any other pickable objects
from ostap.io.rootshelve import RootShelf
db = RootShelf('mydb.root','c')
h1 = ...
db ['histogram'] = h1
db ['histogramlist'] = h1,h2,h3
db.ls()