[3c44c66] | 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 | This module manages all data loaded into the application. Data_manager makes |
---|
| 12 | available all data loaded for the current perspective. |
---|
| 13 | |
---|
| 14 | All modules creating |
---|
| 15 | fake Data posts their data to data_manager . Data_manager make these new data |
---|
| 16 | available for all other perspectives. |
---|
| 17 | """ |
---|
| 18 | |
---|
| 19 | class DataManager(object): |
---|
| 20 | """ |
---|
| 21 | Manage a list of data |
---|
| 22 | """ |
---|
| 23 | def __init__(self, parent): |
---|
| 24 | """ |
---|
[aebc4cc] | 25 | Store opened path and data object created at the loading time |
---|
[4e9583c] | 26 | """ |
---|
[aebc4cc] | 27 | self.loaded_data_list = [] |
---|
| 28 | self.created_data_list = [] |
---|
| 29 | self.list_of_data = [] |
---|
| 30 | self.message = "" |
---|
[3c44c66] | 31 | |
---|
[aebc4cc] | 32 | def get_message(self): |
---|
[3c44c66] | 33 | """ |
---|
[aebc4cc] | 34 | return message |
---|
[3c44c66] | 35 | """ |
---|
[aebc4cc] | 36 | return self.message |
---|
[3c44c66] | 37 | |
---|
[aebc4cc] | 38 | def set_loaded_data(self, data_list=[]): |
---|
[3c44c66] | 39 | """ |
---|
[aebc4cc] | 40 | save data and path |
---|
[3c44c66] | 41 | """ |
---|
[aebc4cc] | 42 | if not data_list: |
---|
| 43 | return |
---|
| 44 | else: |
---|
| 45 | for data, path in data_list: |
---|
| 46 | if data.name not in self.list_of_data: |
---|
| 47 | self.loaded_data_list.append((data, path)) |
---|
| 48 | self.list_of_data.append(data.name) |
---|
| 49 | else: |
---|
| 50 | self.message += " %s already loaded"%str(data.name) |
---|
[3c44c66] | 51 | |
---|
[aebc4cc] | 52 | def set_created_data(self, data_list=[]): |
---|
[3c44c66] | 53 | """ |
---|
[aebc4cc] | 54 | return |
---|
[3c44c66] | 55 | """ |
---|
[aebc4cc] | 56 | for data, path in data_list: |
---|
| 57 | for created_data, created_path in self.created_data_list: |
---|
| 58 | if data.name == created_data.name: |
---|
| 59 | self.message += " %s already created"%str(data.name) |
---|
| 60 | else: |
---|
| 61 | self.created_data_list.append((data, path)) |
---|
| 62 | |
---|
| 63 | def get_data(self): |
---|
[3c44c66] | 64 | """ |
---|
[aebc4cc] | 65 | Send list of available data |
---|
[3c44c66] | 66 | """ |
---|
[aebc4cc] | 67 | return self.loaded_data_list + self.created_data_list |
---|
[3c44c66] | 68 | |
---|