]> rtime.felk.cvut.cz Git - linux-conf-perf.git/blob - scripts/configurations.py
Change hash calculating function
[linux-conf-perf.git] / scripts / configurations.py
1 import os
2 import sys
3 import tempfile
4 import shutil
5 import subprocess
6 import time
7 import hashlib
8
9 import utils
10 from conf import conf
11 from conf import sf
12 import exceptions
13 import database
14
15 def __buildtempcnf__(variable_count, files, strlines):
16         """ Builds temporally file for cnf formulas
17           variable_count - number of variables in formulas
18           files          - list of files with formulas
19           strlines       - list of string lines with formulas"""
20         lines = set()
21         # Copy strlines
22         for ln in strlines:
23                 lines.add(ln)
24         # Files
25         for file in files:
26                 with open(file, 'r') as f:
27                         for ln in f:
28                                 lines.add(ln.rstrip())
29
30         first_line = "p cnf " + str(variable_count) + " " + str(len(lines))
31
32         wfile = tempfile.NamedTemporaryFile(delete=False)
33         wfile.write(bytes(first_line + '\n', 'UTF-8'))
34         for ln in lines:
35                 wfile.write(bytes(ln + ' 0\n', 'UTF-8'))
36         wfile.close()
37         return wfile.name
38
39 def __exec_sat__(file, args):
40         """Executes SAT solver and returns configuration."""
41         picosat_cmd = [sf(conf.picosat), file]
42         picosat_cmd += conf.picosat_args
43         stdout = utils.callsubprocess('picosat', picosat_cmd, conf.picosat_output,
44                         True, allow_all_exit_codes = True)
45
46         rtn = []
47         solut = []
48         for line in stdout:
49                 if line[0] == 's':
50                         try:
51                                 solut.remove(0)
52                                 rtn.append(solut)
53                         except ValueError:
54                                 pass
55                         solut = []
56                         if not line.rstrip() == 's SATISFIABLE':
57                                 raise exceptions.NoSolution()
58                 elif line[0] == 'v':
59                         for sl in line[2:].split():
60                                 solut.append(int(sl))
61         try:
62                 solut.remove(0)
63                 rtn.append(solut)
64         except ValueError:
65                 pass
66         return rtn
67
68 def __write_temp_config_file__(con, conf_num):
69         # Ensure smap existence
70         utils.build_symbol_map()
71         # Write temporally file
72         wfile = tempfile.NamedTemporaryFile(delete=False)
73         for s in con:
74                 if s < 0:
75                         nt = True
76                         s *= -1
77                 else:
78                         nt = False
79                 if s > conf_num:
80                         break;
81                 if 'NONAMEGEN' in utils.smap[s]: # ignore generated names
82                         continue
83                 wfile.write(bytes('CONFIG_' + utils.smap[s] + '=',
84                         sys.getdefaultencoding()))
85                 if not nt:
86                         wfile.write(bytes('y', sys.getdefaultencoding()))
87                 else:
88                         wfile.write(bytes('n', sys.getdefaultencoding()))
89                 wfile.write(bytes('\n', sys.getdefaultencoding()))
90         wfile.close()
91         return wfile.name
92
93 def __load_config_file__(file):
94         rtn = dict()
95         with open(file, 'r') as f:
96                 for ln in f:
97                         if ln[0] == '#' or not '=' in ln:
98                                 continue
99                         indx = ln.index('=')
100                         if (ln[indx + 1] == 'y'):
101                                 rtn[ln[7:indx]] = True
102                         else:
103                                 rtn[ln[7:indx]] = True
104         return rtn
105
106 def __calchash__(file):
107         """Calculates hash from configuration file"""
108         # Build hashconfigsort
109         csort = []
110         try:
111                 with open(conf.hashconfigsort, 'r') as f:
112                         for ln in f:
113                                 csort.append(ln.rstrip())
114         except FileNotFoundError:
115                 pass
116
117         con = __load_config_file__(file)
118         cstr = ""
119         for c in csort:
120                 try:
121                         if con[c]:
122                                 cstr += c
123                 except ValueError:
124                         pass
125
126         # Add missing
127         csortfile = open(sf(conf.hashconfigsort), 'a');
128         for key, val in con.items():
129                 try:
130                         csort.index(key)
131                 except ValueError:
132                         indx = len(csort)
133                         csort.append(key)
134                         csortfile.write(key + '\n')
135                         if val:
136                                 cstr += key
137         csortfile.close()
138
139         hsh = hashlib.md5(bytes(cstr, 'UTF-8'))
140         return hsh.hexdigest()
141
142 def __register_conf__(con, conf_num, generator):
143         dtb = database.database()
144         # Solution to configuration
145         wfile = __write_temp_config_file__(con, conf_num)
146         hsh = __calchash__(wfile)
147         filen = os.path.join(sf(conf.configurations_folder), hsh)
148         hshf = hsh
149         if os.path.isfile(filen):
150                 if compare(filen, wfile):
151                         print("I: Generated existing configuration.")
152                 else:
153                         print("W: Generated configuration with collision hash.")
154                         # TODO this might have to be tweaked
155                         raise Exception()
156         shutil.move(wfile, filen)
157         dtb.add_configuration(hsh, hshf, generator)
158
159 def __generate_single__(var_num, conf_num):
160         measure_list = set()
161         if not os.path.isfile(sf(conf.single_generated_file)):
162                 with open(sf(conf.measure_file), 'r') as fi:
163                         for ln in fi:
164                                 measure_list.add(int(ln))
165         else:
166                 with open(sf(conf.single_generated_file), 'r') as f:
167                         for ln in f:
168                                 measure_list.append(int(ln))
169         if measure_list:
170                 return False
171         tfile = __buildtempcnf__(var_num, (sf(conf.rules_file),
172                 sf(conf.fixed_file)), (str(measure_list.pop())))
173         try:
174                 confs = __exec_sat__(tfile, ['-i', '0'])
175                 for con in confs:
176                         __register_conf__(con, conf_num, 'single-sat')
177         except exceptions.NoSolution:
178                 pass
179         finally:
180                 os.remove(tfile)
181         with open(sf(conf.single_generated_file), 'w') as fo:
182                 fo.writelines(measure_list)
183         return True
184
185 def __generate_random__(var_num, conf_num):
186         # TODO
187         #tfile = __buildtempcnf__(var_num, (sf(conf.rules_file), sf(conf.fixed_file)), ())
188         #try:
189                 #confs = __exec_sat__(tfile, [])
190                 #for con in confs:
191                         #__register_conf__(con, conf_num)
192         #finally:
193                 #os.remove(tfile)
194         return False
195
196 def generate():
197         """Collect boolean equations from files rules and required
198         And get solution with picosat
199         """
200         # Check if rules_file exist. If it was generated.
201         if not os.path.isfile(sf(conf.rules_file)):
202                 raise exceptions.MissingFile(conf.rules_file,"Run parse_kconfig.")
203         if not os.path.isfile(sf(conf.fixed_file)):
204                 raise exceptions.MissingFile(conf.required_file,"Run allconfig and initialization process.")
205
206         # Load variable count
207         with open(sf(conf.variable_count_file)) as f:
208                 var_num = f.readline()
209                 conf_num = f.readline()
210
211         if __generate_single__(var_num, conf_num):
212                 return
213         elif __generate_random__(var_num, conf_num):
214                 return
215
216         raise exceptions.NoNewConfiguration()
217
218 def compare(file1, file2):
219         """Compared two configuration"""
220         conf1 = __load_config_file__(file1)
221         conf2 = __load_config_file__(file2)
222
223         # This is not exactly best comparison method
224         for key, val in conf1.items():
225                 try:
226                         if conf2[key] != val:
227                                 return False
228                 except ValueError:
229                         return False
230         for key, val in conf2.items():
231                 try:
232                         if conf1[key] != val:
233                                 return False
234                 except ValueError:
235                         return False
236         return True