1 | """ |
---|
2 | Module to associate default readers to file extensions. |
---|
3 | The module reads an xml file to get the readers for each file extension. |
---|
4 | The readers are tried in order they appear when reading a file. |
---|
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 | #If you use DANSE applications to do scientific research that leads to |
---|
11 | #publication, we ask that you acknowledge the use of the software with the |
---|
12 | #following sentence: |
---|
13 | #This work benefited from DANSE software developed under NSF award DMR-0520547. |
---|
14 | #copyright 2009, University of Tennessee |
---|
15 | ############################################################################# |
---|
16 | import sys |
---|
17 | import logging |
---|
18 | |
---|
19 | logger = logging.getLogger(__name__) |
---|
20 | |
---|
21 | FILE_ASSOCIATIONS = { |
---|
22 | ".xml": "cansas_reader", |
---|
23 | ".ses": "sesans_reader", |
---|
24 | ".h5": "cansas_reader_HDF5", |
---|
25 | ".txt": "ascii_reader", |
---|
26 | ".dat": "red2d_reader", |
---|
27 | ".abs": "abs_reader", |
---|
28 | ".sans": "danse_reader", |
---|
29 | ".pdh": "anton_paar_saxs_reader" |
---|
30 | } |
---|
31 | |
---|
32 | |
---|
33 | def read_associations(loader, settings=FILE_ASSOCIATIONS): |
---|
34 | """ |
---|
35 | Read the specified settings file to associate |
---|
36 | default readers to file extension. |
---|
37 | |
---|
38 | :param loader: Loader object |
---|
39 | :param settings: path to the json settings file [string] |
---|
40 | """ |
---|
41 | # For each FileType entry, get the associated reader and extension |
---|
42 | for ext, reader in settings.items(): |
---|
43 | if reader is not None and ext is not None: |
---|
44 | # Associate the extension with a particular reader |
---|
45 | # TODO: Modify the Register code to be case-insensitive |
---|
46 | # FIXME: Remove exec statements |
---|
47 | # and remove the extra line below. |
---|
48 | try: |
---|
49 | exec("from . import %s" % reader) |
---|
50 | exec("loader.associate_file_type('%s', %s)" |
---|
51 | % (ext.lower(), reader)) |
---|
52 | exec("loader.associate_file_type('%s', %s)" |
---|
53 | % (ext.upper(), reader)) |
---|
54 | except: |
---|
55 | msg = "read_associations: skipping association" |
---|
56 | msg += " for %s\n %s" % (ext.lower(), sys.exc_value) |
---|
57 | logger.error(msg) |
---|