[28caa03] | 1 | |
---|
| 2 | |
---|
[0997158f] | 3 | ############################################################################ |
---|
| 4 | #This software was developed by the University of Tennessee as part of the |
---|
| 5 | #Distributed Data Analysis of Neutron Scattering Experiments (DANSE) |
---|
| 6 | #project funded by the US National Science Foundation. |
---|
| 7 | #If you use DANSE applications to do scientific research that leads to |
---|
| 8 | #publication, we ask that you acknowledge the use of the software with the |
---|
| 9 | #following sentence: |
---|
| 10 | #This work benefited from DANSE software developed under NSF award DMR-0520547. |
---|
| 11 | #copyright 2009, University of Tennessee |
---|
| 12 | ############################################################################# |
---|
| 13 | |
---|
[28caa03] | 14 | |
---|
| 15 | """ |
---|
[0997158f] | 16 | Module to associate default readers to file extensions. |
---|
| 17 | The module reads an xml file to get the readers for each file extension. |
---|
| 18 | The readers are tried in order they appear when reading a file. |
---|
[28caa03] | 19 | """ |
---|
| 20 | |
---|
[a7a5886] | 21 | import os |
---|
| 22 | import sys |
---|
[28caa03] | 23 | import logging |
---|
[fe11a3fa] | 24 | from lxml import etree |
---|
| 25 | # Py2exe compatibility: import _elementpath to ensure that py2exe finds it |
---|
| 26 | from lxml import _elementpath |
---|
[28caa03] | 27 | |
---|
| 28 | ## Format version for the XML settings file |
---|
[379e15b] | 29 | VERSION = 'sansloader/1.0' |
---|
[28caa03] | 30 | |
---|
[bffc2ad] | 31 | def read_associations(loader, settings='defaults.xml'): |
---|
[28caa03] | 32 | """ |
---|
[0997158f] | 33 | Read the specified settings file to associate |
---|
| 34 | default readers to file extension. |
---|
| 35 | |
---|
| 36 | :param loader: Loader object |
---|
| 37 | :param settings: path to the XML settings file [string] |
---|
[28caa03] | 38 | """ |
---|
| 39 | reader_dir = os.path.dirname(__file__) |
---|
[bffc2ad] | 40 | path = os.path.join(reader_dir, settings) |
---|
| 41 | |
---|
| 42 | # If we can't find the file in the installation |
---|
| 43 | # directory, look into the execution directory. |
---|
| 44 | if not os.path.isfile(path): |
---|
| 45 | path = os.path.join(os.getcwd(), settings) |
---|
[28caa03] | 46 | |
---|
| 47 | if os.path.isfile(path): |
---|
[379e15b] | 48 | tree = etree.parse(path, parser=etree.ETCompatXMLParser()) |
---|
[28caa03] | 49 | |
---|
| 50 | # Check the format version number |
---|
[379e15b] | 51 | # Specifying the namespace will take care of the file format version |
---|
| 52 | root = tree.getroot() |
---|
[28caa03] | 53 | |
---|
| 54 | # Read in the file extension associations |
---|
[a7a5886] | 55 | entry_list = root.xpath('/ns:SansLoader/ns:FileType', |
---|
| 56 | namespaces={'ns': VERSION}) |
---|
[379e15b] | 57 | |
---|
| 58 | # For each FileType entry, get the associated reader and extension |
---|
[28caa03] | 59 | for entry in entry_list: |
---|
[379e15b] | 60 | reader = entry.get('reader') |
---|
| 61 | ext = entry.get('extension') |
---|
| 62 | |
---|
| 63 | if reader is not None and ext is not None: |
---|
[28caa03] | 64 | # Associate the extension with a particular reader |
---|
[a7a5886] | 65 | # TODO: Modify the Register code to be case-insensitive |
---|
| 66 | # and remove the extra line below. |
---|
[28caa03] | 67 | try: |
---|
[379e15b] | 68 | exec "import %s" % reader |
---|
[a7a5886] | 69 | exec "loader.associate_file_type('%s', %s)" % (ext.lower(), |
---|
| 70 | reader) |
---|
| 71 | exec "loader.associate_file_type('%s', %s)" % (ext.upper(), |
---|
| 72 | reader) |
---|
[28caa03] | 73 | except: |
---|
[a7a5886] | 74 | msg = "read_associations: skipping association" |
---|
| 75 | msg += " for %s\n %s" % (attr['extension'], sys.exc_value) |
---|
| 76 | logging.error(msg) |
---|
[28caa03] | 77 | |
---|
| 78 | |
---|
| 79 | def register_readers(registry_function): |
---|
| 80 | """ |
---|
[0997158f] | 81 | Function called by the registry/loader object to register |
---|
| 82 | all default readers using a call back function. |
---|
[28caa03] | 83 | |
---|
[0997158f] | 84 | :WARNING: this method is now obsolete |
---|
| 85 | |
---|
| 86 | :param registry_function: function to be called to register each reader |
---|
[28caa03] | 87 | """ |
---|
[379e15b] | 88 | logging.info("register_readers is now obsolete: use read_associations()") |
---|
[28caa03] | 89 | import abs_reader |
---|
| 90 | import cansas_reader |
---|
| 91 | import ascii_reader |
---|
| 92 | import cansas_reader |
---|
| 93 | import danse_reader |
---|
| 94 | import hfir1d_reader |
---|
| 95 | import IgorReader |
---|
[ded62ce] | 96 | import red2d_reader |
---|
[28caa03] | 97 | import tiff_reader |
---|
| 98 | |
---|
| 99 | registry_function(abs_reader) |
---|
| 100 | registry_function(cansas_reader) |
---|
| 101 | registry_function(ascii_reader) |
---|
| 102 | registry_function(cansas_reader) |
---|
| 103 | registry_function(danse_reader) |
---|
| 104 | registry_function(hfir1d_reader) |
---|
| 105 | registry_function(IgorReader) |
---|
[ded62ce] | 106 | registry_function(red2d_reader) |
---|
[28caa03] | 107 | registry_function(tiff_reader) |
---|
| 108 | |
---|
| 109 | return True |
---|
| 110 | |
---|
| 111 | |
---|
| 112 | if __name__ == "__main__": |
---|
| 113 | logging.basicConfig(level=logging.INFO, |
---|
| 114 | format='%(asctime)s %(levelname)s %(message)s', |
---|
| 115 | filename='logger.log', |
---|
| 116 | filemode='w') |
---|
| 117 | from DataLoader.loader import Loader |
---|
| 118 | l = Loader() |
---|
| 119 | read_associations(l) |
---|
| 120 | |
---|
| 121 | |
---|
| 122 | print l.get_wildcards() |
---|
| 123 | |
---|
| 124 | |
---|