source: sasview/guiframe/local_perspectives/data_loader/data_loader.py @ 87f4dcc

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 87f4dcc was 87f4dcc, checked in by Gervaise Alina <gervyh@…>, 14 years ago

make sur pugin extensions do not show on load file dialog

  • Property mode set to 100644
File size: 8.9 KB
Line 
1
2"""
3plugin DataLoader responsible of loading data
4"""
5import os
6import sys
7import wx
8import logging
9
10from DataLoader.loader import Loader
11import DataLoader.data_info as DataInfo
12from sans.guiframe.plugin_base import PluginBase
13from sans.guiframe.events import StatusEvent
14from sans.guiframe.events import NewPlotEvent
15from sans.guiframe.dataFitting import Data1D
16from sans.guiframe.dataFitting import Data2D
17from sans.guiframe.utils import parse_name
18from sans.guiframe.gui_style import GUIFRAME
19try:
20    # Try to find a local config
21    import imp
22    path = os.getcwd()
23    if(os.path.isfile("%s/%s.py" % (path, 'local_config'))) or \
24        (os.path.isfile("%s/%s.pyc" % (path, 'local_config'))):
25        fObj, path, descr = imp.find_module('local_config', [path])
26        config = imp.load_module('local_config', fObj, path, descr) 
27    else:
28        # Try simply importing local_config
29        import local_config as config
30except:
31    # Didn't find local config, load the default
32    import config
33 
34extension_list = []
35if config.APPLICATION_STATE_EXTENSION is not None:
36    extension_list.append(config.APPLICATION_STATE_EXTENSION)
37EXTENSIONS = config.PLUGIN_STATE_EXTENSIONS + extension_list   
38PLUGINS_WLIST = config.PLUGINS_WLIST
39APPLICATION_WLIST = config.APPLICATION_WLIST
40
41
42class Plugin(PluginBase):
43   
44    def __init__(self, standalone=False):
45        PluginBase.__init__(self, name="DataLoader", standalone=standalone)
46        #Default location
47        self._default_save_location = None 
48        self.loader = Loader() 
49        self._data_menu = None 
50       
51    def populate_file_menu(self):
52        """
53        get a menu item and append it under file menu of the application
54        add load file menu item and load folder item
55        """
56        #menu for data files
57        menu_list = []
58        data_file_hint = "load one or more data in the application"
59        menu_list = [('&Load Data File(s)', data_file_hint, self._load_data)]
60        gui_style = self.parent.get_style()
61        style = gui_style & GUIFRAME.MULTIPLE_APPLICATIONS
62        style1 = gui_style & GUIFRAME.DATALOADER_ON
63        if style == GUIFRAME.MULTIPLE_APPLICATIONS:
64            #menu for data from folder
65            data_folder_hint = "load multiple data in the application"
66            menu_list.append(('&Load Data Folder', data_folder_hint, 
67                              self._load_folder))
68        return menu_list
69   
70    def unused_populate_menu(self, parent):
71        """
72        """
73        # Add menu data
74        self._data_menu = wx.Menu()
75        #menu for data files
76        data_file_id = wx.NewId()
77        data_file_hint = "load one or more data in the application"
78        self._data_menu.Append(data_file_id, 
79                         '&Load Data File(s)', data_file_hint)
80        wx.EVT_MENU(self.parent, data_file_id, self._load_data)
81        gui_style = self.parent.get_style()
82        style = gui_style & GUIFRAME.MULTIPLE_APPLICATIONS
83        style1 = gui_style & GUIFRAME.DATALOADER_ON
84        if style == GUIFRAME.MULTIPLE_APPLICATIONS:
85            #menu for data from folder
86            data_folder_id = wx.NewId()
87            data_folder_hint = "load multiple data in the application"
88            self._data_menu.Append(data_folder_id, 
89                             '&Load Data Folder', data_folder_hint)
90            wx.EVT_MENU(self.parent, data_folder_id, self._load_folder)
91           
92        return [(self._data_menu, 'Data')]
93
94    def _load_data(self, event):
95        """
96        Load data
97        """
98        path = None
99        if self._default_save_location == None:
100            self._default_save_location = os.getcwd()
101       
102        cards = self.loader.get_wildcards()
103        temp = [APPLICATION_WLIST] + PLUGINS_WLIST
104        for item in temp:
105            if item in cards:
106                cards.remove(item)
107        wlist =  '|'.join(cards)
108        style = wx.OPEN|wx.FD_MULTIPLE
109        dlg = wx.FileDialog(self.parent, 
110                            "Choose a file", 
111                            self._default_save_location, "",
112                             wlist,
113                             style=style)
114        if dlg.ShowModal() == wx.ID_OK:
115            file_list = dlg.GetPaths()
116            if len(file_list) >= 0 and not(file_list[0]is None):
117                self._default_save_location = os.path.dirname(file_list[0])
118                path = self._default_save_location
119        dlg.Destroy()
120       
121        if path is None or not file_list or file_list[0] is None:
122            return
123        self.get_data(file_list)
124       
125       
126    def can_load_data(self):
127        """
128        if return True, then call handler to laod data
129        """
130        return True
131 
132       
133    def _load_folder(self, event):
134        """
135        Load entire folder
136        """
137        path = None
138        if self._default_save_location == None:
139            self._default_save_location = os.getcwd()
140        dlg = wx.DirDialog(self.parent, "Choose a directory", 
141                           self._default_save_location,
142                            style=wx.DD_DEFAULT_STYLE)
143        if dlg.ShowModal() == wx.ID_OK:
144            path = dlg.GetPath()
145            self._default_save_location = path
146        dlg.Destroy()
147        if path is not None:
148            self._default_save_location = os.path.dirname(path)
149        else:
150            return   
151        file_list = self.get_file_path(path)
152        self.get_data(file_list)
153       
154    def load_error(self, error=None):
155        """
156        Pop up an error message.
157       
158        :param error: details error message to be displayed
159        """
160        message = "The data file you selected could not be loaded.\n"
161        message += "Make sure the content of your file"
162        message += " is properly formatted.\n\n"
163       
164        if error is not None:
165            message += "When contacting the DANSE team, mention the"
166            message += " following:\n%s" % str(error)
167        dial = wx.MessageDialog(self.parent, message, 'Error Loading File',
168                                wx.OK | wx.ICON_EXCLAMATION)
169        dial.ShowModal() 
170       
171    def get_file_path(self, path):
172        """
173        Receive a list containing folder then return a list of file
174        """
175        if os.path.isdir(path):
176            return [os.path.join(os.path.abspath(path),
177                                  file) for file in os.listdir(path)]
178   
179    def get_data(self, path, format=None):
180        """
181        """
182        message = ""
183        log_msg = ''
184        output = {}
185        error_message = ""
186        for p_file in path:
187            basename  = os.path.basename(p_file)
188            root, extension = os.path.splitext(basename)
189            if extension.lower() in EXTENSIONS:
190                log_msg = "Data Loader cannot "
191                log_msg += "load: %s\n" % str(p_file)
192                log_msg += "Try File opening ...."
193                logging.info(log_msg)
194                continue
195       
196            try:
197                temp =  self.loader.load(p_file, format)
198                if temp.__class__.__name__ == "list":
199                    for item in temp:
200                        data = self.parent.create_gui_data(item, p_file)
201                        output[data.id] = data
202                else:
203                    data = self.parent.create_gui_data(temp, p_file)
204                    output[data.id] = data
205                message = "Loading Data..." + str(p_file) + "\n"
206                self.load_update(output=output, message=message)
207            except:
208                error_message = "Error while loading Data: %s\n" % str(p_file)
209                error_message += str(sys.exc_value) + "\n"
210                self.load_update(output=output, message=error_message)
211               
212        message = "Loading Data Complete! "
213        message += log_msg
214        self.load_complete(output=output, error_message=error_message,
215                       message=message, path=path)
216           
217    def load_update(self, output=None, message=""):
218        """
219        print update on the status bar
220        """
221        if message != "":
222            wx.PostEvent(self.parent, StatusEvent(status=message,
223                                                  type="progress",
224                                                   info="warning"))
225    def load_complete(self, output, message="", error_message="", path=None):
226        """
227         post message to  status bar and return list of data
228        """
229        wx.PostEvent(self.parent, StatusEvent(status=message,
230                                              info="warning",
231                                              type="stop"))
232        if error_message != "":
233            self.load_error(error_message)
234        self.parent.add_data(data_list=output)
235   
236   
237       
238   
Note: See TracBrowser for help on using the repository browser.