1 | """ |
---|
2 | Class for making sure all category stuff is installed |
---|
3 | and works fine. |
---|
4 | |
---|
5 | Copyright (c) Institut Laue-Langevin 2012 |
---|
6 | |
---|
7 | @author kieranrcampbell@gmail.com |
---|
8 | @modified by NIST/MD sasview team |
---|
9 | """ |
---|
10 | |
---|
11 | import os |
---|
12 | import sys |
---|
13 | import shutil |
---|
14 | import cPickle as pickle |
---|
15 | from collections import defaultdict |
---|
16 | |
---|
17 | USER_FILE = 'serialized_cat.p' |
---|
18 | |
---|
19 | class CategoryInstaller: |
---|
20 | """ |
---|
21 | Class for making sure all category stuff is installed |
---|
22 | |
---|
23 | Note - class is entirely static! |
---|
24 | """ |
---|
25 | |
---|
26 | |
---|
27 | def __init__(self): |
---|
28 | """ initialization """ |
---|
29 | |
---|
30 | @staticmethod |
---|
31 | def _get_installed_model_dir(): |
---|
32 | """ |
---|
33 | returns the dir where installed_models.txt should be |
---|
34 | """ |
---|
35 | import sans.dataloader.readers |
---|
36 | return sans.dataloader.readers.get_data_path() |
---|
37 | |
---|
38 | @staticmethod |
---|
39 | def _get_models_py_dir(): |
---|
40 | """ |
---|
41 | returns the dir where models.py should be |
---|
42 | """ |
---|
43 | import sans.perspectives.fitting.models |
---|
44 | return sans.perspectives.fitting.models.get_model_python_path() |
---|
45 | |
---|
46 | @staticmethod |
---|
47 | def _get_default_cat_p_dir(): |
---|
48 | """ |
---|
49 | returns the dir where default_cat.p should be |
---|
50 | """ |
---|
51 | cat_file = "default_categories.p" |
---|
52 | app_dir = sys.path[0] |
---|
53 | if os.path.isfile(app_dir): |
---|
54 | app_dir = os.path.dirname(app_dir) |
---|
55 | n_dir = 12 |
---|
56 | for i in range(n_dir): |
---|
57 | path = os.path.join(app_dir, cat_file) |
---|
58 | if os.path.isfile(path): |
---|
59 | path = os.path.dirname(path) |
---|
60 | return path |
---|
61 | else: |
---|
62 | app_dir, _ = os.path.split(app_dir) |
---|
63 | |
---|
64 | raise RuntimeError('Could not find the App folder') |
---|
65 | |
---|
66 | @staticmethod |
---|
67 | def _get_home_dir(): |
---|
68 | """ |
---|
69 | returns the users sansview config dir |
---|
70 | """ |
---|
71 | return os.path.join(os.path.expanduser("~"), ".sasview") |
---|
72 | |
---|
73 | @staticmethod |
---|
74 | def _regenerate_model_dict(master_category_dict): |
---|
75 | """ |
---|
76 | regenerates self.by_model_dict which has each model name as the key |
---|
77 | and the list of categories belonging to that model |
---|
78 | along with the enabled mapping |
---|
79 | returns tuplet (by_model_dict, model_enabled_dict) |
---|
80 | """ |
---|
81 | by_model_dict = defaultdict(list) |
---|
82 | model_enabled_dict = defaultdict(bool) |
---|
83 | |
---|
84 | for category in master_category_dict: |
---|
85 | for (model, enabled) in master_category_dict[category]: |
---|
86 | by_model_dict[model].append(category) |
---|
87 | model_enabled_dict[model] = enabled |
---|
88 | |
---|
89 | return (by_model_dict, model_enabled_dict) |
---|
90 | |
---|
91 | |
---|
92 | @staticmethod |
---|
93 | def _regenerate_master_dict(by_model_dict, model_enabled_dict): |
---|
94 | """ |
---|
95 | regenerates master_category_dict from by_model_dict |
---|
96 | and model_enabled_dict |
---|
97 | returns the master category dictionary |
---|
98 | """ |
---|
99 | master_category_dict = defaultdict(list) |
---|
100 | for model in by_model_dict: |
---|
101 | for category in by_model_dict[model]: |
---|
102 | master_category_dict[category].append(\ |
---|
103 | (model, model_enabled_dict[model])) |
---|
104 | |
---|
105 | return master_category_dict |
---|
106 | |
---|
107 | @staticmethod |
---|
108 | def get_user_file(): |
---|
109 | """ |
---|
110 | returns the user data file, eg .sasview/serialized_cat.p |
---|
111 | """ |
---|
112 | return os.path.join(CategoryInstaller._get_home_dir(), |
---|
113 | USER_FILE) |
---|
114 | |
---|
115 | @staticmethod |
---|
116 | def get_default_file(): |
---|
117 | """ |
---|
118 | returns the path of the default file |
---|
119 | e.g. blahblah/default_categories.p |
---|
120 | """ |
---|
121 | return os.path.join(\ |
---|
122 | CategoryInstaller._get_default_cat_p_dir(), "default_categories.p") |
---|
123 | |
---|
124 | @staticmethod |
---|
125 | def check_install(homedir = None, model_list=None): |
---|
126 | """ |
---|
127 | the main method of this class |
---|
128 | makes sure serialized_cat.p exists and if not |
---|
129 | compile it and install |
---|
130 | :param homefile: Override the default home directory |
---|
131 | :param model_list: List of model names except customized models |
---|
132 | """ |
---|
133 | #model_list = [] |
---|
134 | default_file = CategoryInstaller.get_default_file() |
---|
135 | serialized_file = None |
---|
136 | master_category_dict = defaultdict(list) |
---|
137 | if homedir == None: |
---|
138 | serialized_file = CategoryInstaller.get_user_file() |
---|
139 | else: |
---|
140 | serialized_file = os.path.join(homedir, USER_FILE) |
---|
141 | if os.path.isfile(serialized_file): |
---|
142 | cat_file = open(serialized_file, 'rb') |
---|
143 | else: |
---|
144 | cat_file = open(default_file, 'rb') |
---|
145 | master_category_dict = pickle.Unpickler(cat_file).load() |
---|
146 | (by_model_dict, model_enabled_dict) = \ |
---|
147 | CategoryInstaller._regenerate_model_dict(master_category_dict) |
---|
148 | cat_file.close() |
---|
149 | add_list = model_list |
---|
150 | del_name = False |
---|
151 | for cat in master_category_dict.keys(): |
---|
152 | for ind in range(len(master_category_dict[cat])): |
---|
153 | model_name, enabled = master_category_dict[cat][ind] |
---|
154 | if model_name not in model_list: |
---|
155 | del_name = True |
---|
156 | try: |
---|
157 | by_model_dict.pop(model_name) |
---|
158 | model_enabled_dict.pop(model_name) |
---|
159 | except: |
---|
160 | pass |
---|
161 | else: |
---|
162 | add_list.remove(model_name) |
---|
163 | if del_name or (len(add_list) > 0): |
---|
164 | for model in add_list: |
---|
165 | model_enabled_dict[model]= True |
---|
166 | by_model_dict[model].append('Uncategorized') |
---|
167 | |
---|
168 | master_category_dict = \ |
---|
169 | CategoryInstaller._regenerate_master_dict(by_model_dict, |
---|
170 | model_enabled_dict) |
---|
171 | |
---|
172 | pickle.dump( master_category_dict, |
---|
173 | open(serialized_file, 'wb') ) |
---|
174 | |
---|
175 | try: |
---|
176 | #It happens only in source environment |
---|
177 | shutil.copyfile(serialized_file, default_file) |
---|
178 | except: |
---|
179 | pass |
---|
180 | |
---|