source: main/waeup.sirp/trunk/src/waeup/sirp/utils/importexport.txt @ 6600

Last change on this file since 6600 was 5140, checked in by uli, 14 years ago

Update all unit tests that use the ZCA to run inside the new unit test layer.

File size: 3.6 KB
Line 
1Importing and Exporting Things
2******************************
3
4The waeup package tries to support all special object types to be
5exportable and importable.
6
7.. :doctest:
8.. :layer: waeup.sirp.testing.WAeUPSIRPUnitTestLayer
9
10As imports and exports of data are a cruical point when doing updates
11or to enable data backups, this support must be considered a serious
12topic for the base functionality of the whole software.
13
14Exports and imports are implemented using the Zope component framework
15capabilities. This means we need some adapters and utilities, which we
16register, by grokking the whole package. This is done on startup
17automatically, but in doctests (like this one) it is done by the
18testlayer.
19
20Furthermore we need something to import/export. As only pickable
21classes are importable/exportable and these have to be defined in some
22globally reachable module, we first define some silly object in
23filesystem and adjust the path to lookup modules:
24
25    >>> import os
26    >>> import sys
27    >>> os.mkdir('stoneage')
28    >>> old_sys_path = sys.path
29    >>> open(os.path.join('stoneage', '__init__.py'), 'wb').write(
30    ... """
31    ... class Cave(object):
32    ...   name = 'Unnamed cave'
33    ...   dinoports = 2
34    ... """)
35    >>> sys.path.append(os.getcwd())
36
37Now we can import stoneage.Cave objects.
38
39
40Exporting XML
41=============
42
43One of the major formats we support for data export is XML.
44
45When we want to export an object, we can choose the destination
46file. If we do not give a file to write to, we get a StringIO object,
47i.e. an in-memory file.
48
49We can export caves. First we create a cave:
50
51    >>> from stoneage import Cave
52    >>> mycave = Cave()
53    >>> mycave.name = 'Freds Cave'
54    >>> mycave.dinoports = 1
55
56Exporting plain XML
57-------------------
58
59Now let's export it to XML. To do this we first ask the framework for
60an exporter::
61
62    >>> from waeup.sirp.interfaces import IWAeUPXMLExporter
63    >>> exporter = IWAeUPXMLExporter(mycave)
64    >>> exporter
65    <waeup.sirp.utils.importexport.XMLExporter object at 0x...>
66
67All exporters provide an ``export(<obj>)`` method::
68
69    >>> result = exporter.export()
70
71The result is an object of type StringIO. We therefore use its
72`read()` method to get the actual XML data::
73
74    >>> print result.read()
75    <?xml version="1.0" encoding="utf-8" ?>...
76
77
78Generating XML files
79--------------------
80
81We can also let the results be written to a file::
82
83    >>> result = exporter.export('myexport.xml')
84    >>> print open('myexport.xml', 'rb').read()
85    <?xml version="1.0" encoding="utf-8" ?>
86    <pickle>
87      <object>
88    ...
89    </pickle>
90
91
92Importing XML
93=============
94
95We can generate objects from XML.
96
97We change the name of the cave:
98
99    >>> mycave.name = 'Another name'
100
101Now we create an importer for that object:
102
103    >>> from waeup.sirp.interfaces import IWAeUPXMLImporter
104    >>> importer = IWAeUPXMLImporter(mycave)
105
106Importing from filenames
107------------------------
108
109We can use a filepath to import from the denoted file::
110
111    >>> new_obj = importer.doImport('myexport.xml')
112
113The object created is indeed a cave::
114
115    >>> new_obj
116    <stoneage.Cave object at 0x...>
117
118    >>> new_obj.name
119    'Freds Cave'
120
121The new object is really a new object::
122
123    >>> new_obj is mycave
124    False
125
126Importing from filelike objects
127-------------------------------
128
129We can also pass a file-like object instead of a filepath::
130
131    >>> filelike_obj = open('myexport.xml', 'rb')
132    >>> new_obj = importer.doImport(filelike_obj)
133
134The object created is indeed a faculty::
135
136    >>> new_obj
137    <stoneage.Cave object at 0x...>
138
139Clean up::
140
141    >>> import os
142    >>> import shutil
143    >>> sys.path = old_sys_path
144    >>> os.unlink('myexport.xml')
145    >>> shutil.rmtree('stoneage')
Note: See TracBrowser for help on using the repository browser.