[3feed3e] | 1 | ################################################################################ |
---|
| 2 | #This software was developed by the University of Tennessee as part of the |
---|
| 3 | #Distributed Data Analysis of Neutron Scattering Experiments (DANSE) |
---|
| 4 | #project funded by the US National Science Foundation. |
---|
| 5 | # |
---|
| 6 | #See the license text in license.txt |
---|
| 7 | # |
---|
| 8 | #copyright 2010, University of Tennessee |
---|
| 9 | ################################################################################ |
---|
| 10 | """ |
---|
| 11 | """ |
---|
[c70eb7c] | 12 | import copy |
---|
| 13 | |
---|
[3feed3e] | 14 | |
---|
| 15 | class DataState(object): |
---|
| 16 | """ |
---|
| 17 | Store information about data |
---|
| 18 | """ |
---|
| 19 | def __init__(self, data, parent=None): |
---|
| 20 | """ |
---|
| 21 | |
---|
| 22 | """ |
---|
| 23 | self.parent = parent |
---|
[584c4c4] | 24 | self.data = data |
---|
| 25 | self.name = "" |
---|
| 26 | self.path = None |
---|
[5c4b674] | 27 | self.theory_list = {} |
---|
[584c4c4] | 28 | self.message = "" |
---|
[c70eb7c] | 29 | self.id = None |
---|
| 30 | |
---|
| 31 | def __str__(self): |
---|
| 32 | _str = "" |
---|
| 33 | _str += "State with ID : %s \n" % str(self.id) |
---|
| 34 | if self.data is not None: |
---|
| 35 | _str += "Data name : %s \n" % str(self.data.name) |
---|
| 36 | _str += "Data ID : %s \n" % str(self.data.id) |
---|
| 37 | else: |
---|
| 38 | _str += "Data: %s \n" % str(self.data) |
---|
| 39 | |
---|
[df22224] | 40 | _str += "Theories available: %s \n" % len(self.theory_list) |
---|
[c70eb7c] | 41 | if self.theory_list: |
---|
| 42 | for id, item in self.theory_list.iteritems(): |
---|
| 43 | theory_data, theory_state = item |
---|
| 44 | _str += "Theory name : %s \n" % str(theory_data.name) |
---|
| 45 | _str += "Theory ID : %s \n" % str(id) |
---|
[df22224] | 46 | _str += "Theory info: \n" |
---|
[c70eb7c] | 47 | _str += str(theory_data) |
---|
[df22224] | 48 | #_str += "Theory info: \n" |
---|
| 49 | #_str += str(theory_state) |
---|
[c70eb7c] | 50 | return _str |
---|
| 51 | |
---|
| 52 | def clone(self): |
---|
| 53 | obj = DataState(copy.deepcopy(self.data)) |
---|
| 54 | obj.parent = self.parent |
---|
| 55 | obj.name = self.name |
---|
| 56 | obj.path = self.path |
---|
| 57 | obj.message = self.message |
---|
| 58 | obj.id = self.id |
---|
| 59 | for id, item in self.theory_list.iteritems(): |
---|
| 60 | theory_data, theory_state = item |
---|
| 61 | state = None |
---|
| 62 | if theory_state is not None: |
---|
| 63 | state = theory_state.clone() |
---|
| 64 | obj.theory_list[id] = [copy.deepcopy(theory_data), |
---|
| 65 | state] |
---|
| 66 | return obj |
---|
[3feed3e] | 67 | |
---|
| 68 | def set_name(self, name): |
---|
[584c4c4] | 69 | self.name = name |
---|
[c70eb7c] | 70 | |
---|
[3feed3e] | 71 | def get_name(self): |
---|
[584c4c4] | 72 | return self.name |
---|
[c70eb7c] | 73 | |
---|
[3feed3e] | 74 | def set_data(self, data): |
---|
[584c4c4] | 75 | self.data = data |
---|
[3feed3e] | 76 | |
---|
| 77 | def get_data(self): |
---|
[584c4c4] | 78 | return self.data |
---|
[3feed3e] | 79 | |
---|
| 80 | def set_path(self, path): |
---|
| 81 | """ |
---|
| 82 | Set the path of the loaded data |
---|
| 83 | """ |
---|
[584c4c4] | 84 | self.path = path |
---|
[3feed3e] | 85 | |
---|
| 86 | def get_path(self): |
---|
| 87 | """ |
---|
| 88 | return the path of the loaded data |
---|
| 89 | """ |
---|
[584c4c4] | 90 | return self.path |
---|
[3feed3e] | 91 | |
---|
[c70eb7c] | 92 | def set_theory(self, theory_data, theory_state=None): |
---|
[3feed3e] | 93 | """ |
---|
| 94 | """ |
---|
[c70eb7c] | 95 | self.theory_list[theory_data.id] = [theory_data, theory_state] |
---|
[df22224] | 96 | data, state = self.theory_list.values()[0] |
---|
[552b3d5] | 97 | |
---|
[3feed3e] | 98 | def get_theory(self): |
---|
[584c4c4] | 99 | return self.theory_list |
---|
[3feed3e] | 100 | |
---|
| 101 | def get_message(self): |
---|
| 102 | """ |
---|
| 103 | return message |
---|
| 104 | """ |
---|
[584c4c4] | 105 | return self.message |
---|
[3feed3e] | 106 | |
---|
| 107 | |
---|