Rev 547 | Go to most recent revision | Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
545 | palkovsky | 1 | #!/usr/bin/env python |
2 | """ |
||
3 | Kernel configuration script |
||
4 | """ |
||
5 | import sys |
||
6 | import os |
||
7 | import re |
||
8 | |||
9 | INPUT = 'kernel.config' |
||
10 | OUTPUT = 'Makefile.config' |
||
11 | TMPOUTPUT = 'Makefile.config.tmp' |
||
12 | |||
13 | class DefaultDialog: |
||
14 | "Wrapper dialog that tries to return default values" |
||
15 | def __init__(self, dlg): |
||
16 | self.dlg = dlg |
||
17 | |||
18 | def set_title(self,text): |
||
19 | self.dlg.set_title(text) |
||
20 | |||
21 | def yesno(self, text, default=None): |
||
22 | if default is not None: |
||
23 | return default |
||
24 | return self.dlg.yesno(text, default) |
||
25 | def noyes(self, text, default=None): |
||
26 | if default is not None: |
||
27 | return default |
||
28 | return self.dlg.noyes(text, default) |
||
29 | |||
30 | def choice(self, text, choices, defopt=None): |
||
31 | if defopt is not None: |
||
32 | return choices[defopt][0] |
||
33 | return self.dlg.choice(text, choices, defopt) |
||
34 | |||
35 | class NoDialog: |
||
36 | def __init__(self): |
||
37 | self.printed = None |
||
38 | self.title = 'HelenOS Configuration' |
||
39 | |||
40 | def print_title(self): |
||
41 | if not self.printed: |
||
42 | sys.stdout.write("*** %s ***\n" % self.title) |
||
43 | self.printed = True |
||
44 | |||
45 | def set_title(self, text): |
||
46 | self.title = text |
||
47 | self.printed = False |
||
48 | |||
49 | def noyes(self, text, default=None): |
||
50 | if not default: |
||
51 | default = 'n' |
||
52 | return self.yesno(text, default) |
||
53 | |||
54 | def yesno(self, text, default=None): |
||
55 | self.print_title() |
||
56 | |||
57 | if default != 'n': |
||
58 | default = 'y' |
||
59 | while 1: |
||
60 | sys.stdout.write("%s (y/n)[%s]: " % (text,default)) |
||
61 | inp = sys.stdin.readline() |
||
62 | if not inp: |
||
63 | raise EOFError |
||
64 | inp = inp.strip().lower() |
||
65 | if not inp: |
||
66 | return default |
||
67 | if inp == 'y': |
||
68 | return 'y' |
||
69 | elif inp == 'n': |
||
70 | return 'n' |
||
71 | |||
72 | def _print_choice(self, text, choices, defopt): |
||
73 | sys.stdout.write('%s:\n' % text) |
||
74 | for i,(text,descr) in enumerate(choices): |
||
75 | sys.stdout.write('\t%2d. %s\n' % (i, descr)) |
||
76 | if defopt is not None: |
||
77 | sys.stdout.write('Enter choice number[%d]: ' % defopt) |
||
78 | else: |
||
79 | sys.stdout.write('Enter choice number: ') |
||
80 | |||
81 | def choice(self, text, choices, defopt=None): |
||
82 | self.print_title() |
||
83 | while 1: |
||
84 | self._print_choice(text, choices, defopt) |
||
85 | inp = sys.stdin.readline() |
||
86 | if not inp: |
||
87 | raise EOFError |
||
88 | if not inp.strip(): |
||
89 | if defopt is not None: |
||
90 | return choices[defopt][0] |
||
91 | continue |
||
92 | try: |
||
93 | number = int(inp.strip()) |
||
94 | except ValueError: |
||
95 | continue |
||
96 | if number < 0 or number >= len(choices): |
||
97 | continue |
||
98 | return choices[number][0] |
||
99 | |||
100 | |||
101 | class Dialog(NoDialog): |
||
102 | def __init__(self): |
||
103 | NoDialog.__init__(self) |
||
104 | self.dlgcmd = os.environ.get('DIALOG','dialog') |
||
105 | self.title = 'HelenOS Configuration' |
||
106 | |||
107 | if os.system('%s --print-maxsize >/dev/null 2>&1' % self.dlgcmd) != 0: |
||
108 | raise NotImplementedError |
||
109 | |||
110 | def set_title(self,text): |
||
111 | self.title = text |
||
112 | |||
113 | def calldlg(self,*args,**kw): |
||
114 | indesc, outdesc = os.pipe() |
||
115 | pid = os.fork() |
||
116 | if not pid: |
||
117 | os.close(2) |
||
118 | os.dup(outdesc) |
||
119 | os.close(indesc) |
||
120 | |||
121 | dlgargs = [self.dlgcmd,'--title',self.title] |
||
122 | for key,val in kw.items(): |
||
123 | dlgargs.append('--'+key) |
||
124 | dlgargs.append(val) |
||
125 | dlgargs += args |
||
126 | os.execlp(self.dlgcmd,*dlgargs) |
||
127 | |||
128 | os.close(outdesc) |
||
129 | errout = os.fdopen(indesc,'r') |
||
130 | data = errout.read() |
||
131 | errout.close() |
||
132 | |||
133 | pid,status = os.wait() |
||
134 | if not os.WIFEXITED(status): |
||
135 | raise EOFError |
||
136 | status = os.WEXITSTATUS(status) |
||
137 | if status == 255: |
||
138 | raise EOFError |
||
139 | return status,data |
||
140 | |||
141 | def yesno(self, text, default=None): |
||
142 | text = text + ':' |
||
143 | width = '50' |
||
144 | height = '5' |
||
145 | if len(text) < 48: |
||
146 | text = ' '*int(((48-len(text))/2)) + text |
||
147 | else: |
||
148 | width = '0' |
||
149 | height = '0' |
||
150 | if default == 'n': |
||
151 | res,data = self.calldlg('--defaultno','--yesno',text,height,width) |
||
152 | else: |
||
153 | res,data = self.calldlg('--yesno',text,height,width) |
||
154 | |||
155 | if res == 0: |
||
156 | return 'y' |
||
157 | return 'n' |
||
158 | |||
159 | def choice(self, text, choices, defopt=None): |
||
160 | text = text + ':' |
||
161 | width = '50' |
||
162 | height = str(8 + len(choices)) |
||
163 | args = [] |
||
164 | for key,val in choices: |
||
165 | args.append(key) |
||
166 | args.append(val) |
||
167 | |||
168 | kw = {} |
||
169 | if defopt: |
||
170 | kw['default-item'] = choices[defopt][0] |
||
171 | res,data = self.calldlg('--nocancel','--menu',text,height,width, |
||
172 | str(len(choices)),*args, **kw) |
||
173 | if res: |
||
174 | print data |
||
175 | raise EOFError |
||
176 | return data |
||
177 | |||
178 | def read_defaults(fname): |
||
179 | defaults = {} |
||
180 | f = file(fname,'r') |
||
181 | for line in f: |
||
182 | res = re.match(r'^([^#]\w*)\s*=\s*(.*?)\s*$', line) |
||
183 | if res: |
||
184 | defaults[res.group(1)] = res.group(2) |
||
185 | f.close() |
||
186 | return defaults |
||
187 | |||
188 | def parse_config(input, output, dlg, defaults={}): |
||
189 | f = file(input, 'r') |
||
190 | outf = file(output, 'w') |
||
191 | |||
192 | outf.write('#########################################\n') |
||
193 | outf.write('## AUTO-GENERATED FILE, DO NOT EDIT!!! ##\n') |
||
194 | outf.write('#########################################\n\n') |
||
195 | |||
196 | comment = '' |
||
197 | default = None |
||
198 | choices = [] |
||
199 | for line in f: |
||
200 | if line.startswith('!'): |
||
201 | res = re.search(r'!\s*([^\s]+)\s*\((.*)\)\s*$', line) |
||
202 | if not res: |
||
203 | raise RuntimeError("Weird line: %s" % line) |
||
204 | varname = res.group(1) |
||
205 | vartype = res.group(2) |
||
206 | |||
207 | default = defaults.get(varname,None) |
||
208 | |||
209 | if vartype == 'y/n': |
||
210 | result = dlg.yesno(comment, default) |
||
211 | elif vartype == 'n/y': |
||
212 | result = dlg.noyes(comment, default) |
||
213 | elif vartype == 'choice': |
||
214 | defopt = None |
||
215 | if default is not None: |
||
216 | for i,(key,val) in enumerate(choices): |
||
217 | if key == default: |
||
218 | defopt = i |
||
219 | break |
||
220 | result = dlg.choice(comment, choices, defopt) |
||
221 | else: |
||
222 | raise RuntimeError("Bad method: %s" % vartype) |
||
223 | outf.write('%s = %s\n' % (varname, result)) |
||
224 | # Clear cumulated values |
||
225 | comment = '' |
||
226 | default = None |
||
227 | choices = [] |
||
228 | continue |
||
229 | |||
230 | if line.startswith('@'): |
||
231 | res = re.match(r'@\s*"(.*?)"\s*(.*)$', line) |
||
232 | if not res: |
||
233 | raise RuntimeError("Bad line: %s" % line) |
||
234 | choices.append((res.group(1), res.group(2))) |
||
235 | continue |
||
236 | |||
237 | outf.write(line) |
||
238 | if re.match(r'^#[^#]', line): |
||
239 | comment = line[1:].strip() |
||
240 | elif line.startswith('##'): |
||
241 | dlg.set_title(line[2:].strip()) |
||
242 | |||
243 | outf.close() |
||
244 | f.close() |
||
245 | |||
246 | def main(): |
||
247 | defaults = {} |
||
248 | try: |
||
249 | dlg = Dialog() |
||
250 | except NotImplementedError: |
||
251 | dlg = NoDialog() |
||
252 | |||
253 | # Default run will update the configuration file |
||
254 | # with newest options |
||
255 | if len(sys.argv) == 2 and sys.argv[1]=='default': |
||
256 | dlg = DefaultDialog(dlg) |
||
257 | |||
258 | if os.path.exists(OUTPUT): |
||
259 | defaults = read_defaults(OUTPUT) |
||
260 | |||
261 | parse_config(INPUT, TMPOUTPUT, dlg, defaults) |
||
262 | if os.path.exists(OUTPUT): |
||
263 | os.unlink(OUTPUT) |
||
264 | os.rename(TMPOUTPUT, OUTPUT) |
||
265 | |||
266 | |||
267 | if __name__ == '__main__': |
||
268 | main() |