[b3644f3] | 1 | |
---|
[6d920cd] | 2 | import os, sys,numpy |
---|
[de9483d] | 3 | import wx |
---|
[a618972] | 4 | import re |
---|
[b3644f3] | 5 | |
---|
[ff3f900b] | 6 | from dataFitting import Data1D |
---|
| 7 | from dataFitting import Data2D |
---|
[c7bc3e7] | 8 | from DataLoader.loader import Loader |
---|
[b3644f3] | 9 | from load_thread import DataReader |
---|
| 10 | |
---|
| 11 | from sans.guicomm.events import NewPlotEvent, StatusEvent |
---|
| 12 | |
---|
[d792e813] | 13 | def enable_add_data(existing_panel, new_plot): |
---|
| 14 | """ |
---|
[d955bf19] | 15 | Enable append data on a plot panel |
---|
[d792e813] | 16 | """ |
---|
| 17 | is_theory = len(existing_panel.plots)<= 1 and \ |
---|
| 18 | existing_panel.plots.values()[0].__class__.__name__=="Theory1D" |
---|
| 19 | |
---|
| 20 | is_data2d = hasattr(new_plot, 'data') |
---|
| 21 | is_data1d = existing_panel.__class__.__name__ == "ModelPanel1D"\ |
---|
| 22 | and existing_panel.group_id is not None |
---|
| 23 | |
---|
| 24 | return is_data1d and not is_data2d and not is_theory |
---|
[58eac5d] | 25 | |
---|
[a618972] | 26 | def parse_name(name, expression): |
---|
| 27 | """ |
---|
[d955bf19] | 28 | remove "_" in front of a name |
---|
[a618972] | 29 | """ |
---|
| 30 | if re.match(expression, name) is not None: |
---|
| 31 | word = re.split(expression, name, 1) |
---|
| 32 | for item in word: |
---|
| 33 | if item.lstrip().rstrip() != '': |
---|
| 34 | return item |
---|
| 35 | else: |
---|
| 36 | return name |
---|
| 37 | |
---|
[de9483d] | 38 | def choose_data_file(parent, location=None): |
---|
[d955bf19] | 39 | """ |
---|
| 40 | """ |
---|
[de9483d] | 41 | path = None |
---|
[196608d] | 42 | if location == None: |
---|
[de9483d] | 43 | location = os.getcwd() |
---|
[c7bc3e7] | 44 | |
---|
| 45 | l = Loader() |
---|
| 46 | cards = l.get_wildcards() |
---|
| 47 | wlist = '|'.join(cards) |
---|
| 48 | |
---|
| 49 | dlg = wx.FileDialog(parent, "Choose a file", location, "", wlist, wx.OPEN) |
---|
[de9483d] | 50 | if dlg.ShowModal() == wx.ID_OK: |
---|
| 51 | path = dlg.GetPath() |
---|
| 52 | mypath = os.path.basename(path) |
---|
| 53 | dlg.Destroy() |
---|
| 54 | |
---|
| 55 | return path |
---|
| 56 | |
---|
[d792e813] | 57 | def open_dialog_append_data(panel_name, data_name): |
---|
[b91c736] | 58 | """ |
---|
[d955bf19] | 59 | Pop up an error message. |
---|
| 60 | |
---|
| 61 | :param panel_name: the name of the current panel |
---|
| 62 | :param data_name: the name of the current data |
---|
| 63 | |
---|
[b91c736] | 64 | """ |
---|
| 65 | message = " Do you want to append %s data\n in "%(str(data_name)) |
---|
| 66 | message += " %s panel?\n\n"%(str(panel_name)) |
---|
| 67 | dial = wx.MessageDialog(None, message, 'Question', |
---|
| 68 | wx.YES_NO|wx.NO_DEFAULT|wx.ICON_QUESTION) |
---|
| 69 | if dial.ShowModal() == wx.ID_YES: |
---|
| 70 | return True |
---|
| 71 | else: |
---|
| 72 | return False |
---|
| 73 | |
---|
[de9483d] | 74 | |
---|
| 75 | def load_ascii_1D(path): |
---|
| 76 | """ |
---|
[d955bf19] | 77 | Load a 1D ascii file, with errors |
---|
[de9483d] | 78 | """ |
---|
| 79 | if path and os.path.isfile(path): |
---|
| 80 | |
---|
[fc2b91a] | 81 | file_x = numpy.zeros(0) |
---|
| 82 | file_y = numpy.zeros(0) |
---|
| 83 | file_dy = numpy.zeros(0) |
---|
[bc3dd65d] | 84 | file_dx = numpy.zeros(0) |
---|
[de9483d] | 85 | |
---|
| 86 | input_f = open(path,'r') |
---|
| 87 | buff = input_f.read() |
---|
| 88 | lines = buff.split('\n') |
---|
[fc2b91a] | 89 | |
---|
| 90 | has_dy = False |
---|
[bc3dd65d] | 91 | has_dx = False |
---|
[fc2b91a] | 92 | |
---|
[de9483d] | 93 | for line in lines: |
---|
| 94 | try: |
---|
| 95 | toks = line.split() |
---|
| 96 | x = float(toks[0]) |
---|
| 97 | y = float(toks[1]) |
---|
| 98 | if len(toks)==3: |
---|
[fc2b91a] | 99 | has_dy = True |
---|
[bc3dd65d] | 100 | errdy = float(toks[2]) |
---|
[de9483d] | 101 | else: |
---|
[bc3dd65d] | 102 | errdy = 0.0 |
---|
[196608d] | 103 | if len(toks) == 4: |
---|
[bc3dd65d] | 104 | has_dx = True |
---|
| 105 | errdx = float(toks[3]) |
---|
| 106 | else: |
---|
| 107 | errdx = 0.0 |
---|
[fc2b91a] | 108 | file_x = numpy.append(file_x, x) |
---|
| 109 | file_y = numpy.append(file_y, y) |
---|
[bc3dd65d] | 110 | file_dy = numpy.append(file_dy, dyerr) |
---|
| 111 | file_dx = numpy.append(file_dx, dxerr) |
---|
[de9483d] | 112 | except: |
---|
| 113 | print "READ ERROR", line |
---|
| 114 | |
---|
[196608d] | 115 | if has_dy == False: |
---|
[fc2b91a] | 116 | file_dy = None |
---|
[196608d] | 117 | if has_dx == False: |
---|
[bc3dd65d] | 118 | file_dx = None |
---|
[fc2b91a] | 119 | |
---|
[bc3dd65d] | 120 | return file_x, file_y, file_dy, file_dx |
---|
[e5bfd57] | 121 | return None, None, None, None |
---|
[fc2b91a] | 122 | |
---|
[cb0d17c] | 123 | def load_error(error=None): |
---|
| 124 | """ |
---|
[d955bf19] | 125 | Pop up an error message. |
---|
| 126 | |
---|
| 127 | :param error: details error message to be displayed |
---|
[cb0d17c] | 128 | """ |
---|
| 129 | message = "You had to try this, didn't you?\n\n" |
---|
| 130 | message += "The data file you selected could not be loaded.\n" |
---|
| 131 | message += "Make sure the content of your file is properly formatted.\n\n" |
---|
| 132 | |
---|
| 133 | if error is not None: |
---|
| 134 | message += "When contacting the DANSE team, mention the following:\n%s" % str(error) |
---|
| 135 | |
---|
| 136 | dial = wx.MessageDialog(None, message, 'Error Loading File', wx.OK | wx.ICON_EXCLAMATION) |
---|
| 137 | dial.ShowModal() |
---|
| 138 | |
---|
[b3644f3] | 139 | def on_load_error(parent): |
---|
| 140 | """ |
---|
| 141 | """ |
---|
| 142 | wx.PostEvent(parent, StatusEvent(status="Load cancel..", info="warning", |
---|
| 143 | type="stop")) |
---|
[cc1ead1] | 144 | |
---|
[6d920cd] | 145 | def plot_data(parent, path): |
---|
| 146 | """ |
---|
[d955bf19] | 147 | Use the DataLoader loader to created data to plot. |
---|
| 148 | |
---|
| 149 | :param path: the path of the data to load |
---|
| 150 | |
---|
[6d920cd] | 151 | """ |
---|
[cc1ead1] | 152 | from sans.guicomm.events import NewPlotEvent, StatusEvent |
---|
| 153 | from DataLoader.loader import Loader |
---|
[f2776f6] | 154 | |
---|
[cc1ead1] | 155 | # Instantiate a loader |
---|
| 156 | L = Loader() |
---|
| 157 | |
---|
| 158 | # Load data |
---|
| 159 | try: |
---|
| 160 | output = L.load(path) |
---|
| 161 | except: |
---|
| 162 | load_error(sys.exc_value) |
---|
| 163 | return |
---|
| 164 | |
---|
[cb0d17c] | 165 | # Notify user if the loader completed the load but no data came out |
---|
| 166 | if output == None: |
---|
[cc1ead1] | 167 | load_error("The data file appears to be empty.") |
---|
[cb0d17c] | 168 | return |
---|
[cc1ead1] | 169 | |
---|
| 170 | |
---|
[acb1ad1] | 171 | filename = os.path.basename(path) |
---|
[cd84dca] | 172 | |
---|
[196608d] | 173 | if not output.__class__.__name__ == "list": |
---|
[12aa9b5] | 174 | ## Creating a Data2D with output |
---|
[81812d9] | 175 | if hasattr(output,'data'): |
---|
[04349fe] | 176 | msg = "Loading 2D data: %s"%output.filename |
---|
| 177 | wx.PostEvent(parent, StatusEvent(status=msg, info="info", type="stop")) |
---|
[196608d] | 178 | new_plot = Data2D(image=None, err_image=None) |
---|
[ff3f900b] | 179 | |
---|
[81812d9] | 180 | else: |
---|
[b3644f3] | 181 | msg = "Loading 1D data: %s"%output.filename |
---|
| 182 | wx.PostEvent(parent, StatusEvent(status=msg, info="info", type="stop")) |
---|
[196608d] | 183 | new_plot = Data1D(x=[], y=[], dx=None, dy=None) |
---|
[ff3f900b] | 184 | |
---|
| 185 | new_plot.copy_from_datainfo(output) |
---|
| 186 | output.clone_without_data(clone=new_plot) |
---|
| 187 | |
---|
[25ccf33] | 188 | ## data 's name |
---|
[196608d] | 189 | if output.filename is None or output.filename == "": |
---|
[ff3f900b] | 190 | output.filename = str(filename) |
---|
[12aa9b5] | 191 | ## name of the data allow to differentiate data when plotted |
---|
[a618972] | 192 | name = parse_name(name=output.filename, expression="_") |
---|
[25ccf33] | 193 | if not name in parent.indice_load_data.keys(): |
---|
[196608d] | 194 | parent.indice_load_data[name] = 0 |
---|
[25ccf33] | 195 | else: |
---|
| 196 | ## create a copy of the loaded data |
---|
[196608d] | 197 | parent.indice_load_data[name] += 1 |
---|
[ff3f900b] | 198 | name = name +"[%i]"%parent.indice_load_data[name] |
---|
| 199 | |
---|
[35eeea8] | 200 | new_plot.name = name |
---|
[12aa9b5] | 201 | ## allow to highlight data when plotted |
---|
[81812d9] | 202 | new_plot.interactive = True |
---|
[12aa9b5] | 203 | ## when 2 data have the same id override the 1 st plotted |
---|
[35eeea8] | 204 | new_plot.id = name |
---|
[12aa9b5] | 205 | ##group_id specify on which panel to plot this data |
---|
[35eeea8] | 206 | new_plot.group_id = name |
---|
[196608d] | 207 | new_plot.is_data = True |
---|
[12aa9b5] | 208 | ##post data to plot |
---|
[b91c736] | 209 | title = output.filename |
---|
[ff3f900b] | 210 | if hasattr(new_plot,"title"): |
---|
[b91c736] | 211 | title = str(new_plot.title.lstrip().rstrip()) |
---|
[196608d] | 212 | if title == "": |
---|
| 213 | title = str(name) |
---|
[ff3f900b] | 214 | else: |
---|
| 215 | title = str(name) |
---|
[b91c736] | 216 | if hasattr(parent, "panel_on_focus") and not(parent.panel_on_focus is None): |
---|
| 217 | existing_panel = parent.panel_on_focus |
---|
| 218 | panel_name = existing_panel.window_caption |
---|
| 219 | data_name = new_plot.name |
---|
[d792e813] | 220 | if enable_add_data(existing_panel, new_plot): |
---|
| 221 | if open_dialog_append_data(panel_name, data_name): |
---|
[b91c736] | 222 | #add this plot the an existing panel |
---|
| 223 | new_plot.group_id = existing_panel.group_id |
---|
| 224 | wx.PostEvent(parent, NewPlotEvent(plot=new_plot, title=title)) |
---|
[8bd764d] | 225 | |
---|
[12aa9b5] | 226 | ## the output of the loader is a list , some xml files contain more than one data |
---|
[81812d9] | 227 | else: |
---|
[768656e] | 228 | i=1 |
---|
[81812d9] | 229 | for item in output: |
---|
[b3644f3] | 230 | msg = "Loading 1D data: %s"%str(item.run[0]) |
---|
| 231 | wx.PostEvent(parent, StatusEvent(status=msg, info="info", type="stop")) |
---|
[81812d9] | 232 | try: |
---|
[196608d] | 233 | dx = item.dx |
---|
| 234 | dxl = item.dxl |
---|
| 235 | dxw = item.dxw |
---|
[81812d9] | 236 | except: |
---|
[196608d] | 237 | dx = None |
---|
| 238 | dxl = None |
---|
| 239 | dxw = None |
---|
[ff3f900b] | 240 | |
---|
| 241 | new_plot = Data1D(x=item.x,y=item.y,dx=dx,dy=item.dy) |
---|
| 242 | new_plot.copy_from_datainfo(item) |
---|
[1abcb04] | 243 | item.clone_without_data(clone=new_plot) |
---|
[ff3f900b] | 244 | new_plot.dxl = dxl |
---|
| 245 | new_plot.dxw = dxw |
---|
| 246 | |
---|
[a618972] | 247 | name = parse_name(name=str(item.run[0]), expression="_") |
---|
[25ccf33] | 248 | if not name in parent.indice_load_data.keys(): |
---|
[196608d] | 249 | parent.indice_load_data[name] = 0 |
---|
[25ccf33] | 250 | else: |
---|
| 251 | ## create a copy of the loaded data |
---|
[675e0ab] | 252 | |
---|
| 253 | #TODO: this is a very annoying feature. We should make this |
---|
| 254 | # an option. Excel doesn't do this. Why should we? |
---|
| 255 | # What is the requirement for this feature, and are the |
---|
| 256 | # counter arguments stronger? Is this feature developed |
---|
| 257 | # to please at least 80% of the users or a special few? |
---|
[196608d] | 258 | parent.indice_load_data[name] += 1 |
---|
| 259 | name = name + "(copy %i)"%parent.indice_load_data[name] |
---|
[25ccf33] | 260 | |
---|
[35eeea8] | 261 | new_plot.name = name |
---|
[81812d9] | 262 | new_plot.interactive = True |
---|
[35eeea8] | 263 | new_plot.group_id = name |
---|
| 264 | new_plot.id = name |
---|
[b91c736] | 265 | new_plot.is_data = True |
---|
| 266 | |
---|
[18eba35] | 267 | if hasattr(item,"title"): |
---|
[b91c736] | 268 | title = item.title.lstrip().rstrip() |
---|
[196608d] | 269 | if title == "": |
---|
| 270 | title = str(name) |
---|
[18eba35] | 271 | else: |
---|
[196608d] | 272 | title = name |
---|
[b91c736] | 273 | if hasattr(parent, "panel_on_focus") and not(parent.panel_on_focus is None): |
---|
| 274 | existing_panel = parent.panel_on_focus |
---|
| 275 | panel_name = existing_panel.window_caption |
---|
| 276 | data_name = new_plot.name |
---|
[d792e813] | 277 | if enable_add_data(existing_panel, new_plot): |
---|
| 278 | if open_dialog_append_data(panel_name, data_name): |
---|
[b91c736] | 279 | #add this plot the an existing panel |
---|
| 280 | new_plot.group_id = existing_panel.group_id |
---|
[18eba35] | 281 | wx.PostEvent(parent, NewPlotEvent(plot=new_plot, title=str(title))) |
---|
[768656e] | 282 | i+=1 |
---|
[cc1ead1] | 283 | |
---|