source: sasview/sansdataloader/src/sans/dataloader/readers/associations.py @ 496c5bb

ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalccostrafo411magnetic_scattrelease-4.1.1release-4.1.2release-4.2.2release_4.0.1ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since 496c5bb was 496c5bb, checked in by Mathieu Doucet <doucetm@…>, 12 years ago

Re #5 Fix setup.py

  • Property mode set to 100644
File size: 4.6 KB
Line 
1
2
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
14
15"""
16Module to associate default readers to file extensions.
17The module reads an xml file to get the readers for each file extension.
18The readers are tried in order they appear when reading a file.
19"""
20
21import os
22import sys
23import logging
24from lxml import etree
25# Py2exe compatibility: import _elementpath to ensure that py2exe finds it
26from lxml import _elementpath 
27
28## Format version for the XML settings file
29VERSION = 'sansloader/1.0'
30
31def read_associations(loader, settings='defaults.xml'):
32    """
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]
38    """
39    reader_dir = os.path.dirname(__file__)
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)
46    if not os.path.isfile(path):
47        path = os.path.join(sys.path[0], settings)
48    if os.path.isfile(path):
49        tree = etree.parse(path, parser=etree.ETCompatXMLParser())
50       
51        # Check the format version number
52        # Specifying the namespace will take care of the file format version
53        root = tree.getroot()
54       
55        # Read in the file extension associations
56        entry_list = root.xpath('/ns:SansLoader/ns:FileType',
57                                 namespaces={'ns': VERSION})
58
59        # For each FileType entry, get the associated reader and extension
60        for entry in entry_list:
61            reader = entry.get('reader')
62            ext    = entry.get('extension')
63           
64            if reader is not None and ext is not None:
65                # Associate the extension with a particular reader
66                # TODO: Modify the Register code to be case-insensitive
67                # and remove the extra line below.
68                try:
69                    exec "import %s" % reader
70                    exec "loader.associate_file_type('%s', %s)" % (ext.lower(),
71                                                                    reader)
72                    exec "loader.associate_file_type('%s', %s)" % (ext.upper(),
73                                                                    reader)
74                except:
75                    msg = "read_associations: skipping association"
76                    msg += " for %s\n  %s" % (attr['extension'], sys.exc_value)
77                    logging.error(msg)
78    else:
79        print "Could not find reader association settings\n  %s [%s]" % (__file__, os.getcwd())
80         
81         
82def register_readers(registry_function):
83    """
84    Function called by the registry/loader object to register
85    all default readers using a call back function.
86   
87    :WARNING: this method is now obsolete
88
89    :param registry_function: function to be called to register each reader
90    """
91    logging.info("register_readers is now obsolete: use read_associations()")
92    import abs_reader
93    import cansas_reader
94    import ascii_reader
95    import cansas_reader
96    import danse_reader
97    import hfir1d_reader
98    import IgorReader
99    import red2d_reader
100    import tiff_reader
101
102    registry_function(abs_reader)
103    registry_function(cansas_reader)
104    registry_function(ascii_reader)
105    registry_function(cansas_reader)
106    registry_function(danse_reader)
107    registry_function(hfir1d_reader)
108    registry_function(IgorReader)
109    registry_function(red2d_reader)
110    registry_function(tiff_reader)
111   
112    return True           
113
114
115if __name__ == "__main__": 
116    logging.basicConfig(level=logging.INFO,
117                        format='%(asctime)s %(levelname)s %(message)s',
118                        filename='logger.log',
119                        filemode='w')
120    from sans.dataloader.loader import Loader
121    l = Loader()
122    read_associations(l)
123   
124   
125    print l.get_wildcards()
126   
127   
Note: See TracBrowser for help on using the repository browser.