[e9b4cc4] | 1 | |
---|
[66ff250] | 2 | import sys |
---|
[e54d2c32] | 3 | from data_util.calcthread import CalcThread |
---|
[e9b4cc4] | 4 | |
---|
[cc31608] | 5 | def map_getattr(classInstance, classFunc, *args): |
---|
| 6 | """ |
---|
| 7 | Take an instance of a class and a function name as a string. |
---|
| 8 | Execute class.function and return result |
---|
| 9 | """ |
---|
| 10 | return getattr(classInstance,classFunc)(*args) |
---|
| 11 | |
---|
| 12 | def map_apply(arguments): |
---|
| 13 | return apply(arguments[0], arguments[1:]) |
---|
[66ff250] | 14 | |
---|
[e9b4cc4] | 15 | class FitThread(CalcThread): |
---|
[ed2ea6a] | 16 | """Thread performing the fit """ |
---|
[e9b4cc4] | 17 | |
---|
[58e0c83] | 18 | def __init__(self, |
---|
[e54d2c32] | 19 | fn, |
---|
[66ff250] | 20 | page_id, |
---|
[e54d2c32] | 21 | handler, |
---|
[33dd2e5] | 22 | batch_outputs, |
---|
| 23 | batch_inputs=None, |
---|
[e54d2c32] | 24 | pars=None, |
---|
[e9b4cc4] | 25 | completefn = None, |
---|
| 26 | updatefn = None, |
---|
| 27 | yieldtime = 0.01, |
---|
[2296316] | 28 | worktime = 0.01, |
---|
| 29 | ftol = None): |
---|
[e9b4cc4] | 30 | CalcThread.__init__(self,completefn, |
---|
| 31 | updatefn, |
---|
| 32 | yieldtime, |
---|
| 33 | worktime) |
---|
[e54d2c32] | 34 | self.handler = handler |
---|
| 35 | self.fitter = fn |
---|
[e9b4cc4] | 36 | self.pars = pars |
---|
[33dd2e5] | 37 | self.batch_inputs = batch_inputs |
---|
| 38 | self.batch_outputs = batch_outputs |
---|
[66ff250] | 39 | self.page_id = page_id |
---|
[e9b4cc4] | 40 | self.starttime = 0 |
---|
[e54d2c32] | 41 | self.updatefn = updatefn |
---|
[2296316] | 42 | #Relative error desired in the sum of squares. |
---|
| 43 | self.ftol = ftol |
---|
[e54d2c32] | 44 | |
---|
[e9b4cc4] | 45 | def isquit(self): |
---|
[ed2ea6a] | 46 | """ |
---|
[5062bbf] | 47 | :raise KeyboardInterrupt: when the thread is interrupted |
---|
| 48 | |
---|
[ed2ea6a] | 49 | """ |
---|
[e9b4cc4] | 50 | try: |
---|
| 51 | CalcThread.isquit(self) |
---|
| 52 | except KeyboardInterrupt: |
---|
| 53 | raise KeyboardInterrupt |
---|
[66ff250] | 54 | |
---|
[e9b4cc4] | 55 | def compute(self): |
---|
[ed2ea6a] | 56 | """ |
---|
[5062bbf] | 57 | Perform a fit |
---|
[ed2ea6a] | 58 | """ |
---|
[40953a9] | 59 | msg = "" |
---|
[cc31608] | 60 | try: |
---|
[33dd2e5] | 61 | import copy |
---|
[cc31608] | 62 | list_handler = [] |
---|
| 63 | list_curr_thread = [] |
---|
| 64 | list_ftol = [] |
---|
| 65 | list_map_get_attr = [] |
---|
| 66 | list_fit_function = [] |
---|
| 67 | list_q = [] |
---|
| 68 | for i in range(len(self.fitter)): |
---|
| 69 | list_handler.append(None) |
---|
| 70 | list_q.append(None) |
---|
| 71 | list_curr_thread.append(None) |
---|
| 72 | list_ftol.append(self.ftol) |
---|
| 73 | list_fit_function.append('fit') |
---|
| 74 | list_map_get_attr.append(map_getattr) |
---|
[8d57bdb] | 75 | #from multiprocessing import Pool |
---|
[67ae937] | 76 | inputs = zip(list_map_get_attr,self.fitter, list_fit_function, |
---|
[8d57bdb] | 77 | list_handler, list_q, list_curr_thread,list_ftol) |
---|
| 78 | result = map(map_apply, inputs) |
---|
[33dd2e5] | 79 | self.complete(result=result, |
---|
| 80 | batch_inputs=self.batch_inputs, |
---|
| 81 | batch_outputs=self.batch_outputs, |
---|
[66ff250] | 82 | page_id=self.page_id, |
---|
[6bbeacd4] | 83 | pars = self.pars) |
---|
[785c8233] | 84 | |
---|
[e54d2c32] | 85 | except KeyboardInterrupt, msg: |
---|
[e9b4cc4] | 86 | # Thread was interrupted, just proceed and re-raise. |
---|
| 87 | # Real code should not print, but this is an example... |
---|
[ad6dd4c] | 88 | #print "keyboard exception" |
---|
[67ae937] | 89 | #Stop on exception during fitting. Todo: need to put |
---|
| 90 | #some mssg and reset progress bar. |
---|
[66ff250] | 91 | raise |
---|
| 92 | #if self.handler is not None: |
---|
| 93 | # self.handler.error(msg=msg) |
---|
| 94 | except: |
---|
[f7f6886] | 95 | if self.handler is not None: |
---|
| 96 | self.handler.error(msg=str(sys.exc_value)) |
---|
[66ff250] | 97 | |
---|
| 98 | |
---|
| 99 | |
---|