1 | """ |
---|
2 | File handler to support different file extensions. |
---|
3 | Uses reflectometry's registry utility. |
---|
4 | """ |
---|
5 | |
---|
6 | """ |
---|
7 | This software was developed by the University of Tennessee as part of the |
---|
8 | Distributed Data Analysis of Neutron Scattering Experiments (DANSE) |
---|
9 | project funded by the US National Science Foundation. |
---|
10 | |
---|
11 | See the license text in license.txt |
---|
12 | |
---|
13 | copyright 2008, University of Tennessee |
---|
14 | """ |
---|
15 | |
---|
16 | from data_util.registry import ExtensionRegistry |
---|
17 | import os |
---|
18 | import sys |
---|
19 | import logging |
---|
20 | import time |
---|
21 | from zipfile import ZipFile |
---|
22 | |
---|
23 | class Registry(ExtensionRegistry): |
---|
24 | """ |
---|
25 | Registry class for file format extensions. |
---|
26 | Readers and writers are supported. |
---|
27 | """ |
---|
28 | |
---|
29 | def __init__(self): |
---|
30 | super(Registry, self).__init__() |
---|
31 | |
---|
32 | ## Writers |
---|
33 | self.writers = {} |
---|
34 | |
---|
35 | ## List of wildcards |
---|
36 | self.wildcards = ['All (*.*)|*.*'] |
---|
37 | |
---|
38 | ## Creation time, for testing |
---|
39 | self._created = time.time() |
---|
40 | |
---|
41 | # Find internal readers |
---|
42 | try: |
---|
43 | cwd = os.path.split(__file__)[0] |
---|
44 | except: |
---|
45 | cwd = os.getcwd() |
---|
46 | logging.error("Registry: could not find the installed reader's directory\n %s" % sys.exc_value) |
---|
47 | |
---|
48 | dir = os.path.join(cwd, 'readers') |
---|
49 | n = self.find_plugins(dir) |
---|
50 | logging.info("Loader found %i readers" % n) |
---|
51 | |
---|
52 | def find_plugins(self, dir): |
---|
53 | """ |
---|
54 | Find readers in a given directory |
---|
55 | |
---|
56 | @param dir: directory to search into |
---|
57 | @return: number of readers found |
---|
58 | """ |
---|
59 | readers_found = 0 |
---|
60 | for item in os.listdir(dir): |
---|
61 | full_path = os.path.join(dir, item) |
---|
62 | if os.path.isfile(full_path): |
---|
63 | |
---|
64 | # Process python files |
---|
65 | if item.endswith('.py'): |
---|
66 | toks = os.path.splitext(os.path.basename(item)) |
---|
67 | try: |
---|
68 | sys.path.insert(0, os.path.abspath(dir)) |
---|
69 | module = __import__(toks[0], globals(), locals()) |
---|
70 | if self._identify_plugin(module): |
---|
71 | readers_found += 1 |
---|
72 | except : |
---|
73 | logging.error("Loader: Error importing %s\n %s" % (item, sys.exc_value)) |
---|
74 | |
---|
75 | # Process zip files |
---|
76 | elif item.endswith('.zip'): |
---|
77 | try: |
---|
78 | # Find the modules in the zip file |
---|
79 | zfile = ZipFile(item) |
---|
80 | nlist = zfile.namelist() |
---|
81 | |
---|
82 | sys.path.insert(0, item) |
---|
83 | for mfile in nlist: |
---|
84 | try: |
---|
85 | # Change OS path to python path |
---|
86 | fullname = mfile.replace('/', '.') |
---|
87 | fullname = os.path.splitext(fullname)[0] |
---|
88 | module = __import__(fullname, globals(), locals(), [""]) |
---|
89 | if self._identify_plugin(module): |
---|
90 | readers_found += 1 |
---|
91 | except: |
---|
92 | logging.error("Loader: Error importing %s\n %s" % (mfile, sys.exc_value)) |
---|
93 | |
---|
94 | except: |
---|
95 | logging.error("Loader: Error importing %s\n %s" % (item, sys.exc_value)) |
---|
96 | |
---|
97 | return readers_found |
---|
98 | |
---|
99 | def _identify_plugin(self, module): |
---|
100 | """ |
---|
101 | Look into a module to find whether it contains a |
---|
102 | Reader class. If so, add it to readers and (potentially) |
---|
103 | to the list of writers. |
---|
104 | @param module: module object |
---|
105 | """ |
---|
106 | reader_found = False |
---|
107 | |
---|
108 | if hasattr(module, "Reader"): |
---|
109 | try: |
---|
110 | # Find supported extensions |
---|
111 | loader = module.Reader() |
---|
112 | for ext in loader.ext: |
---|
113 | if ext not in self.loaders: |
---|
114 | self.loaders[ext] = [] |
---|
115 | self.loaders[ext].insert(0,loader.read) |
---|
116 | reader_found = True |
---|
117 | |
---|
118 | # Keep track of wildcards |
---|
119 | for wcard in loader.type: |
---|
120 | if wcard not in self.wildcards: |
---|
121 | self.wildcards.append(wcard) |
---|
122 | |
---|
123 | # Check whether writing is supported |
---|
124 | if hasattr(loader, 'write'): |
---|
125 | for ext in loader.ext: |
---|
126 | if ext not in self.writers: |
---|
127 | self.writers[ext] = [] |
---|
128 | self.writers[ext].insert(0,loader.write) |
---|
129 | except: |
---|
130 | logging.error("Loader: Error accessing Reader in %s\n %s" % (name, sys.exc_value)) |
---|
131 | return reader_found |
---|
132 | |
---|
133 | def lookup_writers(self, path): |
---|
134 | """ |
---|
135 | Return the loader associated with the file type of path. |
---|
136 | |
---|
137 | Raises ValueError if file type is not known. |
---|
138 | """ |
---|
139 | # Find matching extensions |
---|
140 | extlist = [ext for ext in self.extensions() if path.endswith(ext)] |
---|
141 | # Sort matching extensions by decreasing order of length |
---|
142 | extlist.sort(lambda a,b: len(a)<len(b)) |
---|
143 | # Combine loaders for matching extensions into one big list |
---|
144 | writers = [] |
---|
145 | for L in [self.writers[ext] for ext in extlist]: |
---|
146 | writers.extend(L) |
---|
147 | # Remove duplicates if they exist |
---|
148 | if len(writers) != len(set(writers)): |
---|
149 | result = [] |
---|
150 | for L in writers: |
---|
151 | if L not in result: result.append(L) |
---|
152 | writers = L |
---|
153 | # Raise an error if there are no matching extensions |
---|
154 | if len(writers) == 0: |
---|
155 | raise ValueError, "Unknown file type for "+path |
---|
156 | # All done |
---|
157 | return writers |
---|
158 | |
---|
159 | def save(self, path, data, format=None): |
---|
160 | """ |
---|
161 | Call the writer for the file type of path. |
---|
162 | |
---|
163 | Raises ValueError if no writer is available. |
---|
164 | Raises KeyError if format is not available. |
---|
165 | May raise a writer-defined exception if writer fails. |
---|
166 | """ |
---|
167 | if format is None: |
---|
168 | writers = self.lookup_writers(path) |
---|
169 | else: |
---|
170 | writers = self.writers[format] |
---|
171 | for fn in writers: |
---|
172 | try: |
---|
173 | return fn(path, data) |
---|
174 | except: |
---|
175 | pass # give other loaders a chance to succeed |
---|
176 | # If we get here it is because all loaders failed |
---|
177 | raise # reraises last exception |
---|
178 | |
---|
179 | |
---|
180 | class Loader(object): |
---|
181 | """ |
---|
182 | Utility class to use the Registry as a singleton. |
---|
183 | """ |
---|
184 | ## Registry instance |
---|
185 | __registry = Registry() |
---|
186 | |
---|
187 | def load(self, file, format=None): |
---|
188 | """ |
---|
189 | Load a file |
---|
190 | |
---|
191 | @param file: file name (path) |
---|
192 | @param format: specified format to use (optional) |
---|
193 | @return: DataInfo object |
---|
194 | """ |
---|
195 | return self.__registry.load(file, format) |
---|
196 | |
---|
197 | def save(self, file, data, format): |
---|
198 | """ |
---|
199 | Save a DataInfo object to file |
---|
200 | @param file: file name (path) |
---|
201 | @param data: DataInfo object |
---|
202 | @param format: format to write the data in |
---|
203 | """ |
---|
204 | return self.__registry.save(file, data, format) |
---|
205 | |
---|
206 | def _get_registry_creation_time(self): |
---|
207 | """ |
---|
208 | Internal method used to test the uniqueness |
---|
209 | of the registry object |
---|
210 | """ |
---|
211 | return self.__registry._created |
---|
212 | |
---|
213 | def find_plugins(self, dir): |
---|
214 | """ |
---|
215 | Find plugins in a given directory |
---|
216 | @param dir: directory to look into to find new readers/writers |
---|
217 | """ |
---|
218 | return self.__registry.find_plugins(dir) |
---|
219 | |
---|
220 | def get_wildcards(self): |
---|
221 | return self.__registry.wildcards |
---|
222 | |
---|
223 | if __name__ == "__main__": |
---|
224 | logging.basicConfig(level=logging.INFO, |
---|
225 | format='%(asctime)s %(levelname)s %(message)s', |
---|
226 | filename='loader.log', |
---|
227 | filemode='w') |
---|
228 | l = Loader() |
---|
229 | data = l.load('test/cansas1d.xml') |
---|
230 | l.save('test_file.xml', data, '.xml') |
---|
231 | |
---|
232 | print l.get_wildcards() |
---|
233 | |
---|
234 | |
---|
235 | |
---|