[4749514] | 1 | """ |
---|
| 2 | File handler to support different file extensions. |
---|
| 3 | Uses reflectometry's registry utility. |
---|
[f06d7fc] | 4 | |
---|
[4749514] | 5 | The default readers are found in the 'readers' sub-module |
---|
| 6 | and registered by default at initialization time. |
---|
[f06d7fc] | 7 | |
---|
[4749514] | 8 | To add a new default reader, one must register it in |
---|
| 9 | the register_readers method found in readers/__init__.py. |
---|
[f06d7fc] | 10 | |
---|
[4749514] | 11 | A utility method (find_plugins) is available to inspect |
---|
| 12 | a directory (for instance, a user plug-in directory) and |
---|
| 13 | look for new readers/writers. |
---|
| 14 | """ |
---|
| 15 | ##################################################################### |
---|
| 16 | #This software was developed by the University of Tennessee as part of the |
---|
| 17 | #Distributed Data Analysis of Neutron Scattering Experiments (DANSE) |
---|
| 18 | #project funded by the US National Science Foundation. |
---|
| 19 | #See the license text in license.txt |
---|
| 20 | #copyright 2008, University of Tennessee |
---|
| 21 | ###################################################################### |
---|
| 22 | |
---|
| 23 | import os |
---|
| 24 | import sys |
---|
| 25 | import logging |
---|
| 26 | import time |
---|
| 27 | from zipfile import ZipFile |
---|
| 28 | from sas.data_util.registry import ExtensionRegistry |
---|
| 29 | # Default readers are defined in the readers sub-module |
---|
| 30 | import readers |
---|
| 31 | from readers import ascii_reader |
---|
| 32 | from readers import cansas_reader |
---|
| 33 | |
---|
| 34 | class Registry(ExtensionRegistry): |
---|
| 35 | """ |
---|
| 36 | Registry class for file format extensions. |
---|
| 37 | Readers and writers are supported. |
---|
| 38 | """ |
---|
[f06d7fc] | 39 | |
---|
[4749514] | 40 | def __init__(self): |
---|
| 41 | super(Registry, self).__init__() |
---|
[f06d7fc] | 42 | |
---|
[4749514] | 43 | ## Writers |
---|
| 44 | self.writers = {} |
---|
[f06d7fc] | 45 | |
---|
[4749514] | 46 | ## List of wildcards |
---|
| 47 | self.wildcards = ['All (*.*)|*.*'] |
---|
[f06d7fc] | 48 | |
---|
[4749514] | 49 | ## Creation time, for testing |
---|
| 50 | self._created = time.time() |
---|
[f06d7fc] | 51 | |
---|
[4749514] | 52 | # Register default readers |
---|
| 53 | readers.read_associations(self) |
---|
| 54 | |
---|
| 55 | def load(self, path, format=None): |
---|
| 56 | """ |
---|
| 57 | Call the loader for the file type of path. |
---|
| 58 | |
---|
| 59 | :param path: file path |
---|
| 60 | :param format: explicit extension, to force the use |
---|
| 61 | of a particular reader |
---|
| 62 | |
---|
| 63 | Defaults to the ascii (multi-column) reader |
---|
| 64 | if no reader was registered for the file's |
---|
| 65 | extension. |
---|
| 66 | """ |
---|
| 67 | try: |
---|
| 68 | return super(Registry, self).load(path, format=format) |
---|
| 69 | except: |
---|
| 70 | try: |
---|
| 71 | # No reader was found. Default to the ascii reader. |
---|
| 72 | ascii_loader = ascii_reader.Reader() |
---|
| 73 | return ascii_loader.read(path) |
---|
| 74 | except: |
---|
| 75 | cansas_loader = cansas_reader.Reader() |
---|
| 76 | return cansas_loader.read(path) |
---|
[f06d7fc] | 77 | |
---|
[4749514] | 78 | def find_plugins(self, dir): |
---|
| 79 | """ |
---|
| 80 | Find readers in a given directory. This method |
---|
| 81 | can be used to inspect user plug-in directories to |
---|
| 82 | find new readers/writers. |
---|
[f06d7fc] | 83 | |
---|
[4749514] | 84 | :param dir: directory to search into |
---|
| 85 | :return: number of readers found |
---|
| 86 | """ |
---|
| 87 | readers_found = 0 |
---|
| 88 | temp_path = os.path.abspath(dir) |
---|
| 89 | if not os.path.isdir(temp_path): |
---|
| 90 | temp_path = os.path.join(os.getcwd(), dir) |
---|
| 91 | if not os.path.isdir(temp_path): |
---|
| 92 | temp_path = os.path.join(os.path.dirname(__file__), dir) |
---|
| 93 | if not os.path.isdir(temp_path): |
---|
| 94 | temp_path = os.path.join(os.path.dirname(sys.path[0]), dir) |
---|
[f06d7fc] | 95 | |
---|
[4749514] | 96 | dir = temp_path |
---|
| 97 | # Check whether the directory exists |
---|
| 98 | if not os.path.isdir(dir): |
---|
| 99 | msg = "DataLoader couldn't locate DataLoader plugin folder." |
---|
| 100 | msg += """ "%s" does not exist""" % dir |
---|
| 101 | logging.warning(msg) |
---|
| 102 | return readers_found |
---|
[f06d7fc] | 103 | |
---|
[4749514] | 104 | for item in os.listdir(dir): |
---|
| 105 | full_path = os.path.join(dir, item) |
---|
| 106 | if os.path.isfile(full_path): |
---|
[f06d7fc] | 107 | |
---|
[4749514] | 108 | # Process python files |
---|
| 109 | if item.endswith('.py'): |
---|
| 110 | toks = os.path.splitext(os.path.basename(item)) |
---|
| 111 | try: |
---|
| 112 | sys.path.insert(0, os.path.abspath(dir)) |
---|
| 113 | module = __import__(toks[0], globals(), locals()) |
---|
| 114 | if self._identify_plugin(module): |
---|
| 115 | readers_found += 1 |
---|
| 116 | except: |
---|
| 117 | msg = "Loader: Error importing " |
---|
| 118 | msg += "%s\n %s" % (item, sys.exc_value) |
---|
| 119 | logging.error(msg) |
---|
[f06d7fc] | 120 | |
---|
[4749514] | 121 | # Process zip files |
---|
| 122 | elif item.endswith('.zip'): |
---|
| 123 | try: |
---|
| 124 | # Find the modules in the zip file |
---|
| 125 | zfile = ZipFile(item) |
---|
| 126 | nlist = zfile.namelist() |
---|
[f06d7fc] | 127 | |
---|
[4749514] | 128 | sys.path.insert(0, item) |
---|
| 129 | for mfile in nlist: |
---|
| 130 | try: |
---|
| 131 | # Change OS path to python path |
---|
| 132 | fullname = mfile.replace('/', '.') |
---|
| 133 | fullname = os.path.splitext(fullname)[0] |
---|
| 134 | module = __import__(fullname, globals(), |
---|
[f06d7fc] | 135 | locals(), [""]) |
---|
[4749514] | 136 | if self._identify_plugin(module): |
---|
| 137 | readers_found += 1 |
---|
| 138 | except: |
---|
| 139 | msg = "Loader: Error importing" |
---|
| 140 | msg += " %s\n %s" % (mfile, sys.exc_value) |
---|
| 141 | logging.error(msg) |
---|
[f06d7fc] | 142 | |
---|
[4749514] | 143 | except: |
---|
| 144 | msg = "Loader: Error importing " |
---|
| 145 | msg += " %s\n %s" % (item, sys.exc_value) |
---|
| 146 | logging.error(msg) |
---|
[f06d7fc] | 147 | |
---|
[4749514] | 148 | return readers_found |
---|
[f06d7fc] | 149 | |
---|
[4749514] | 150 | def associate_file_type(self, ext, module): |
---|
| 151 | """ |
---|
| 152 | Look into a module to find whether it contains a |
---|
| 153 | Reader class. If so, APPEND it to readers and (potentially) |
---|
| 154 | to the list of writers for the given extension |
---|
[f06d7fc] | 155 | |
---|
[4749514] | 156 | :param ext: file extension [string] |
---|
| 157 | :param module: module object |
---|
| 158 | """ |
---|
| 159 | reader_found = False |
---|
[f06d7fc] | 160 | |
---|
[4749514] | 161 | if hasattr(module, "Reader"): |
---|
| 162 | try: |
---|
| 163 | # Find supported extensions |
---|
| 164 | loader = module.Reader() |
---|
| 165 | if ext not in self.loaders: |
---|
| 166 | self.loaders[ext] = [] |
---|
| 167 | # Append the new reader to the list |
---|
| 168 | self.loaders[ext].append(loader.read) |
---|
| 169 | |
---|
| 170 | reader_found = True |
---|
[f06d7fc] | 171 | |
---|
[4749514] | 172 | # Keep track of wildcards |
---|
| 173 | type_name = module.__name__ |
---|
| 174 | if hasattr(loader, 'type_name'): |
---|
| 175 | type_name = loader.type_name |
---|
[f06d7fc] | 176 | |
---|
[4749514] | 177 | wcard = "%s files (*%s)|*%s" % (type_name, ext.lower(), |
---|
[f06d7fc] | 178 | ext.lower()) |
---|
[4749514] | 179 | if wcard not in self.wildcards: |
---|
| 180 | self.wildcards.append(wcard) |
---|
[f06d7fc] | 181 | |
---|
[4749514] | 182 | # Check whether writing is supported |
---|
| 183 | if hasattr(loader, 'write'): |
---|
| 184 | if ext not in self.writers: |
---|
| 185 | self.writers[ext] = [] |
---|
| 186 | # Append the new writer to the list |
---|
| 187 | self.writers[ext].append(loader.write) |
---|
[f06d7fc] | 188 | |
---|
[4749514] | 189 | except: |
---|
| 190 | msg = "Loader: Error accessing" |
---|
| 191 | msg += " Reader in %s\n %s" % (module.__name__, sys.exc_value) |
---|
| 192 | logging.error(msg) |
---|
| 193 | return reader_found |
---|
| 194 | |
---|
| 195 | def associate_file_reader(self, ext, loader): |
---|
| 196 | """ |
---|
| 197 | Append a reader object to readers |
---|
[f06d7fc] | 198 | |
---|
[4749514] | 199 | :param ext: file extension [string] |
---|
| 200 | :param module: reader object |
---|
| 201 | """ |
---|
| 202 | reader_found = False |
---|
[f06d7fc] | 203 | |
---|
[4749514] | 204 | try: |
---|
| 205 | # Find supported extensions |
---|
| 206 | if ext not in self.loaders: |
---|
| 207 | self.loaders[ext] = [] |
---|
| 208 | # Append the new reader to the list |
---|
| 209 | self.loaders[ext].append(loader.read) |
---|
| 210 | |
---|
| 211 | reader_found = True |
---|
[f06d7fc] | 212 | |
---|
[4749514] | 213 | # Keep track of wildcards |
---|
| 214 | if hasattr(loader, 'type_name'): |
---|
| 215 | type_name = loader.type_name |
---|
[f06d7fc] | 216 | |
---|
[4749514] | 217 | wcard = "%s files (*%s)|*%s" % (type_name, ext.lower(), |
---|
| 218 | ext.lower()) |
---|
| 219 | if wcard not in self.wildcards: |
---|
| 220 | self.wildcards.append(wcard) |
---|
[f06d7fc] | 221 | |
---|
[4749514] | 222 | except: |
---|
| 223 | msg = "Loader: Error accessing Reader " |
---|
| 224 | msg += "in %s\n %s" % (loader.__name__, sys.exc_value) |
---|
| 225 | logging.error(msg) |
---|
| 226 | return reader_found |
---|
| 227 | |
---|
| 228 | def _identify_plugin(self, module): |
---|
| 229 | """ |
---|
[f06d7fc] | 230 | Look into a module to find whether it contains a |
---|
[4749514] | 231 | Reader class. If so, add it to readers and (potentially) |
---|
| 232 | to the list of writers. |
---|
| 233 | :param module: module object |
---|
[f06d7fc] | 234 | |
---|
[4749514] | 235 | """ |
---|
| 236 | reader_found = False |
---|
[f06d7fc] | 237 | |
---|
[4749514] | 238 | if hasattr(module, "Reader"): |
---|
| 239 | try: |
---|
| 240 | # Find supported extensions |
---|
| 241 | loader = module.Reader() |
---|
| 242 | for ext in loader.ext: |
---|
| 243 | if ext not in self.loaders: |
---|
| 244 | self.loaders[ext] = [] |
---|
| 245 | # When finding a reader at run time, |
---|
| 246 | # treat this reader as the new default |
---|
| 247 | self.loaders[ext].insert(0, loader.read) |
---|
| 248 | |
---|
| 249 | reader_found = True |
---|
[f06d7fc] | 250 | |
---|
[4749514] | 251 | # Keep track of wildcards |
---|
| 252 | type_name = module.__name__ |
---|
| 253 | if hasattr(loader, 'type_name'): |
---|
| 254 | type_name = loader.type_name |
---|
| 255 | wcard = "%s files (*%s)|*%s" % (type_name, ext.lower(), |
---|
[f06d7fc] | 256 | ext.lower()) |
---|
[4749514] | 257 | if wcard not in self.wildcards: |
---|
| 258 | self.wildcards.append(wcard) |
---|
[f06d7fc] | 259 | |
---|
[4749514] | 260 | # Check whether writing is supported |
---|
| 261 | if hasattr(loader, 'write'): |
---|
| 262 | for ext in loader.ext: |
---|
| 263 | if ext not in self.writers: |
---|
| 264 | self.writers[ext] = [] |
---|
| 265 | self.writers[ext].insert(0, loader.write) |
---|
[f06d7fc] | 266 | |
---|
[4749514] | 267 | except: |
---|
| 268 | msg = "Loader: Error accessing Reader" |
---|
| 269 | msg += " in %s\n %s" % (module.__name__, sys.exc_value) |
---|
| 270 | logging.error(msg) |
---|
| 271 | return reader_found |
---|
| 272 | |
---|
| 273 | def lookup_writers(self, path): |
---|
| 274 | """ |
---|
| 275 | :return: the loader associated with the file type of path. |
---|
| 276 | :Raises ValueError: if file type is not known. |
---|
| 277 | """ |
---|
| 278 | # Find matching extensions |
---|
| 279 | extlist = [ext for ext in self.extensions() if path.endswith(ext)] |
---|
| 280 | # Sort matching extensions by decreasing order of length |
---|
| 281 | extlist.sort(lambda a, b: len(a) < len(b)) |
---|
| 282 | # Combine loaders for matching extensions into one big list |
---|
| 283 | writers = [] |
---|
| 284 | for L in [self.writers[ext] for ext in extlist]: |
---|
| 285 | writers.extend(L) |
---|
| 286 | # Remove duplicates if they exist |
---|
| 287 | if len(writers) != len(set(writers)): |
---|
| 288 | result = [] |
---|
| 289 | for L in writers: |
---|
| 290 | if L not in result: |
---|
| 291 | result.append(L) |
---|
| 292 | writers = L |
---|
| 293 | # Raise an error if there are no matching extensions |
---|
| 294 | if len(writers) == 0: |
---|
| 295 | raise ValueError, "Unknown file type for " + path |
---|
| 296 | # All done |
---|
| 297 | return writers |
---|
| 298 | |
---|
| 299 | def save(self, path, data, format=None): |
---|
| 300 | """ |
---|
| 301 | Call the writer for the file type of path. |
---|
| 302 | |
---|
| 303 | Raises ValueError if no writer is available. |
---|
| 304 | Raises KeyError if format is not available. |
---|
| 305 | May raise a writer-defined exception if writer fails. |
---|
| 306 | """ |
---|
| 307 | if format is None: |
---|
| 308 | writers = self.lookup_writers(path) |
---|
| 309 | else: |
---|
| 310 | writers = self.writers[format] |
---|
| 311 | for fn in writers: |
---|
| 312 | try: |
---|
| 313 | return fn(path, data) |
---|
| 314 | except: |
---|
| 315 | pass # give other loaders a chance to succeed |
---|
| 316 | # If we get here it is because all loaders failed |
---|
| 317 | raise # reraises last exception |
---|
| 318 | |
---|
[f06d7fc] | 319 | |
---|
[4749514] | 320 | class Loader(object): |
---|
| 321 | """ |
---|
| 322 | Utility class to use the Registry as a singleton. |
---|
| 323 | """ |
---|
| 324 | ## Registry instance |
---|
| 325 | __registry = Registry() |
---|
[f06d7fc] | 326 | |
---|
[4749514] | 327 | def associate_file_type(self, ext, module): |
---|
| 328 | """ |
---|
| 329 | Look into a module to find whether it contains a |
---|
| 330 | Reader class. If so, append it to readers and (potentially) |
---|
| 331 | to the list of writers for the given extension |
---|
[f06d7fc] | 332 | |
---|
[4749514] | 333 | :param ext: file extension [string] |
---|
| 334 | :param module: module object |
---|
| 335 | """ |
---|
| 336 | return self.__registry.associate_file_type(ext, module) |
---|
| 337 | |
---|
| 338 | def associate_file_reader(self, ext, loader): |
---|
| 339 | """ |
---|
| 340 | Append a reader object to readers |
---|
[f06d7fc] | 341 | |
---|
[4749514] | 342 | :param ext: file extension [string] |
---|
| 343 | :param module: reader object |
---|
| 344 | """ |
---|
| 345 | return self.__registry.associate_file_reader(ext, loader) |
---|
| 346 | |
---|
| 347 | def load(self, file, format=None): |
---|
| 348 | """ |
---|
| 349 | Load a file |
---|
[f06d7fc] | 350 | |
---|
[4749514] | 351 | :param file: file name (path) |
---|
| 352 | :param format: specified format to use (optional) |
---|
| 353 | :return: DataInfo object |
---|
| 354 | """ |
---|
| 355 | return self.__registry.load(file, format) |
---|
[f06d7fc] | 356 | |
---|
[4749514] | 357 | def save(self, file, data, format): |
---|
| 358 | """ |
---|
| 359 | Save a DataInfo object to file |
---|
| 360 | :param file: file name (path) |
---|
| 361 | :param data: DataInfo object |
---|
[f06d7fc] | 362 | :param format: format to write the data in |
---|
[4749514] | 363 | """ |
---|
| 364 | return self.__registry.save(file, data, format) |
---|
[f06d7fc] | 365 | |
---|
[4749514] | 366 | def _get_registry_creation_time(self): |
---|
| 367 | """ |
---|
| 368 | Internal method used to test the uniqueness |
---|
| 369 | of the registry object |
---|
| 370 | """ |
---|
| 371 | return self.__registry._created |
---|
[f06d7fc] | 372 | |
---|
| 373 | def find_plugins(self, directory): |
---|
[4749514] | 374 | """ |
---|
| 375 | Find plugins in a given directory |
---|
[f06d7fc] | 376 | |
---|
[4749514] | 377 | :param dir: directory to look into to find new readers/writers |
---|
| 378 | """ |
---|
[f06d7fc] | 379 | return self.__registry.find_plugins(directory) |
---|
| 380 | |
---|
[4749514] | 381 | def get_wildcards(self): |
---|
[f06d7fc] | 382 | """ |
---|
| 383 | Return the list of wildcards |
---|
| 384 | """ |
---|
[4749514] | 385 | return self.__registry.wildcards |
---|