source: mainline/tools/config.py@ ba8de9c3

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since ba8de9c3 was ba8de9c3, checked in by Jiri Svoboda <jiri@…>, 15 years ago

Remove L.I.S.P. from configuration script.

  • Property mode set to 100755
File size: 13.7 KB
RevLine 
[98376de]1#!/usr/bin/env python
[44882c8]2#
[5a55ae6]3# Copyright (c) 2006 Ondrej Palkovsky
[9a0367f]4# Copyright (c) 2009 Martin Decky
[62bb73e]5# Copyright (c) 2010 Jiri Svoboda
[44882c8]6# All rights reserved.
7#
8# Redistribution and use in source and binary forms, with or without
9# modification, are permitted provided that the following conditions
10# are met:
11#
12# - Redistributions of source code must retain the above copyright
13# notice, this list of conditions and the following disclaimer.
14# - Redistributions in binary form must reproduce the above copyright
15# notice, this list of conditions and the following disclaimer in the
16# documentation and/or other materials provided with the distribution.
17# - The name of the author may not be used to endorse or promote products
18# derived from this software without specific prior written permission.
19#
20# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
22# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
29# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30#
[3c80f2b]31
[98376de]32"""
[9a0367f]33HelenOS configuration system
[98376de]34"""
[3c80f2b]35
[98376de]36import sys
37import os
38import re
[5a8fbcb9]39import time
40import subprocess
[27fb3d6]41import xtui
[98376de]42
[62bb73e]43RULES_FILE = sys.argv[1]
[84266669]44MAKEFILE = 'Makefile.config'
45MACROS = 'config.h'
[62bb73e]46PRESETS_DIR = 'defaults'
[98376de]47
[62bb73e]48def read_config(fname, config):
[9a0367f]49 "Read saved values from last configuration run"
50
[28f4adb]51 inf = open(fname, 'r')
[9a0367f]52
53 for line in inf:
54 res = re.match(r'^(?:#!# )?([^#]\w*)\s*=\s*(.*?)\s*$', line)
[ba8de9c3]55 if res:
[62bb73e]56 config[res.group(1)] = res.group(2)
[9a0367f]57
58 inf.close()
[98376de]59
[62bb73e]60def check_condition(text, config, rules):
[81c8d54]61 "Check that the condition specified on input line is True (only CNF and DNF is supported)"
[9a0367f]62
63 ctype = 'cnf'
64
[ba8de9c3]65 if (')|' in text) or ('|(' in text):
[9a0367f]66 ctype = 'dnf'
67
[ba8de9c3]68 if ctype == 'cnf':
[9a0367f]69 conds = text.split('&')
70 else:
71 conds = text.split('|')
72
73 for cond in conds:
[ba8de9c3]74 if cond.startswith('(') and cond.endswith(')'):
[9a0367f]75 cond = cond[1:-1]
76
[62bb73e]77 inside = check_inside(cond, config, ctype)
[9a0367f]78
79 if (ctype == 'cnf') and (not inside):
80 return False
81
[ba8de9c3]82 if (ctype == 'dnf') and inside:
[9a0367f]83 return True
84
[ba8de9c3]85 if ctype == 'cnf':
[9a0367f]86 return True
87 return False
[98376de]88
[62bb73e]89def check_inside(text, config, ctype):
[81c8d54]90 "Check for condition"
[9a0367f]91
[ba8de9c3]92 if ctype == 'cnf':
[9a0367f]93 conds = text.split('|')
94 else:
95 conds = text.split('&')
96
97 for cond in conds:
98 res = re.match(r'^(.*?)(!?=)(.*)$', cond)
[ba8de9c3]99 if not res:
[9a0367f]100 raise RuntimeError("Invalid condition: %s" % cond)
101
102 condname = res.group(1)
103 oper = res.group(2)
104 condval = res.group(3)
105
[ba8de9c3]106 if not condname in config:
[9a0367f]107 varval = ''
108 else:
[62bb73e]109 varval = config[condname]
[7aef7ee]110 if (varval == '*'):
111 varval = 'y'
[9a0367f]112
[ba8de9c3]113 if ctype == 'cnf':
[9a0367f]114 if (oper == '=') and (condval == varval):
115 return True
116
117 if (oper == '!=') and (condval != varval):
118 return True
119 else:
120 if (oper == '=') and (condval != varval):
121 return False
122
123 if (oper == '!=') and (condval == varval):
124 return False
125
[ba8de9c3]126 if ctype == 'cnf':
[9a0367f]127 return False
128
129 return True
[98376de]130
[62bb73e]131def parse_rules(fname, rules):
132 "Parse rules file"
[9a0367f]133
[28f4adb]134 inf = open(fname, 'r')
[9a0367f]135
136 name = ''
137 choices = []
138
139 for line in inf:
140
[ba8de9c3]141 if line.startswith('!'):
[9a0367f]142 # Ask a question
143 res = re.search(r'!\s*(?:\[(.*?)\])?\s*([^\s]+)\s*\((.*)\)\s*$', line)
144
[ba8de9c3]145 if not res:
[9a0367f]146 raise RuntimeError("Weird line: %s" % line)
147
148 cond = res.group(1)
149 varname = res.group(2)
150 vartype = res.group(3)
151
[62bb73e]152 rules.append((varname, vartype, name, choices, cond))
[9a0367f]153 name = ''
154 choices = []
155 continue
156
[ba8de9c3]157 if line.startswith('@'):
[9a0367f]158 # Add new line into the 'choices' array
159 res = re.match(r'@\s*(?:\[(.*?)\])?\s*"(.*?)"\s*(.*)$', line)
160
161 if not res:
162 raise RuntimeError("Bad line: %s" % line)
163
164 choices.append((res.group(2), res.group(3)))
165 continue
166
[ba8de9c3]167 if line.startswith('%'):
[9a0367f]168 # Name of the option
169 name = line[1:].strip()
170 continue
171
[ba8de9c3]172 if line.startswith('#') or (line == '\n'):
[9a0367f]173 # Comment or empty line
174 continue
175
176
177 raise RuntimeError("Unknown syntax: %s" % line)
178
179 inf.close()
[98376de]180
[9a0367f]181def yes_no(default):
182 "Return '*' if yes, ' ' if no"
183
[ba8de9c3]184 if default == 'y':
[9a0367f]185 return '*'
186
187 return ' '
[98376de]188
[27fb3d6]189def subchoice(screen, name, choices, default):
[9a0367f]190 "Return choice of choices"
191
[27fb3d6]192 maxkey = 0
193 for key, val in choices:
194 length = len(key)
195 if (length > maxkey):
196 maxkey = length
[9a0367f]197
198 options = []
[27fb3d6]199 position = None
200 cnt = 0
201 for key, val in choices:
[ba8de9c3]202 if (default) and (key == default):
[27fb3d6]203 position = cnt
204
205 options.append(" %-*s %s " % (maxkey, key, val))
206 cnt += 1
[9a0367f]207
[27fb3d6]208 (button, value) = xtui.choice_window(screen, name, 'Choose value', options, position)
[9a0367f]209
[ba8de9c3]210 if button == 'cancel':
[9a0367f]211 return None
212
[27fb3d6]213 return choices[value][0]
[98376de]214
[e4d540b]215## Infer and verify configuration values.
216#
[62bb73e]217# Augment @a config with values that can be inferred, purge invalid ones
[e4d540b]218# and verify that all variables have a value (previously specified or inferred).
219#
[62bb73e]220# @param config Configuration to work on
221# @param rules Rules
[e4d540b]222#
[62bb73e]223# @return True if configuration is complete and valid, False
224# otherwise.
[e4d540b]225#
[62bb73e]226def infer_verify_choices(config, rules):
[e4d540b]227 "Infer and verify configuration values."
[9a0367f]228
[ba8de9c3]229 for rule in rules:
230 varname, vartype, name, choices, cond = rule
231
232 if cond and (not check_condition(cond, config, rules)):
[9a0367f]233 continue
234
[ba8de9c3]235 if not varname in config:
[4756634]236 value = None
[e4d540b]237 else:
[4756634]238 value = config[varname]
[e4d540b]239
[ba8de9c3]240 if not rule_value_is_valid(rule, value):
[4756634]241 value = None
[e4d540b]242
[ba8de9c3]243 default = rule_get_default(rule)
[4756634]244 if default != None:
245 config[varname] = default
[e4d540b]246
[ba8de9c3]247 if not varname in config:
[9a0367f]248 return False
249
250 return True
[98376de]251
[e4d540b]252## Get default value from a rule.
253def rule_get_default(rule):
254 varname, vartype, name, choices, cond = rule
255
256 default = None
257
[ba8de9c3]258 if vartype == 'choice':
[e4d540b]259 # If there is just one option, use it
[ba8de9c3]260 if len(choices) == 1:
[e4d540b]261 default = choices[0][0]
[ba8de9c3]262 elif vartype == 'y':
[e4d540b]263 default = '*'
[ba8de9c3]264 elif vartype == 'n':
[e4d540b]265 default = 'n'
[ba8de9c3]266 elif vartype == 'y/n':
[e4d540b]267 default = 'y'
[ba8de9c3]268 elif vartype == 'n/y':
[e4d540b]269 default = 'n'
270 else:
271 raise RuntimeError("Unknown variable type: %s" % vartype)
272
273 return default
274
275## Get option from a rule.
276#
277# @param rule Rule for a variable
278# @param value Current value of the variable
279#
280# @return Option (string) to ask or None which means not to ask.
281#
282def rule_get_option(rule, value):
283 varname, vartype, name, choices, cond = rule
284
285 option = None
286
[ba8de9c3]287 if vartype == 'choice':
[e4d540b]288 # If there is just one option, don't ask
[ba8de9c3]289 if len(choices) != 1:
[e4d540b]290 if (value == None):
291 option = "? %s --> " % name
292 else:
293 option = " %s [%s] --> " % (name, value)
[ba8de9c3]294 elif vartype == 'y':
[e4d540b]295 pass
[ba8de9c3]296 elif vartype == 'n':
[e4d540b]297 pass
[ba8de9c3]298 elif vartype == 'y/n':
[e4d540b]299 option = " <%s> %s " % (yes_no(value), name)
[ba8de9c3]300 elif vartype == 'n/y':
[e4d540b]301 option =" <%s> %s " % (yes_no(value), name)
302 else:
303 raise RuntimeError("Unknown variable type: %s" % vartype)
304
305 return option
306
307## Check if variable value is valid.
308#
309# @param rule Rule for the variable
310# @param value Value of the variable
311#
312# @return True if valid, False if not valid.
313#
314def rule_value_is_valid(rule, value):
315 varname, vartype, name, choices, cond = rule
316
317 if value == None:
318 return True
319
[ba8de9c3]320 if vartype == 'choice':
321 if not value in [choice[0] for choice in choices]:
[e4d540b]322 return False
[ba8de9c3]323 elif vartype == 'y':
[e4d540b]324 if value != 'y':
325 return False
[ba8de9c3]326 elif vartype == 'n':
[e4d540b]327 if value != 'n':
328 return False
[ba8de9c3]329 elif vartype == 'y/n':
[e4d540b]330 if not value in ['y', 'n']:
331 return False
[ba8de9c3]332 elif vartype == 'n/y':
[e4d540b]333 if not value in ['y', 'n']:
334 return False
335 else:
336 raise RuntimeError("Unknown variable type: %s" % vartype)
337
338 return True
339
[62bb73e]340def create_output(mkname, mcname, config, rules):
[9a0367f]341 "Create output configuration"
342
[5a8fbcb9]343 timestamp = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
[fe12f9f4]344
345 sys.stderr.write("Fetching current revision identifier ... ")
[7b76744]346
347 try:
[28f4adb]348 version = subprocess.Popen(['bzr', 'version-info', '--custom', '--template={clean}:{revno}:{revision_id}'], stdout = subprocess.PIPE).communicate()[0].decode().split(':')
[7b76744]349 sys.stderr.write("ok\n")
350 except:
351 version = [1, "unknown", "unknown"]
352 sys.stderr.write("failed\n")
[5a8fbcb9]353
[ba8de9c3]354 if len(version) == 3:
[5a8fbcb9]355 revision = version[1]
[ba8de9c3]356 if version[0] != 1:
[5a8fbcb9]357 revision += 'M'
358 revision += ' (%s)' % version[2]
359 else:
360 revision = None
[84266669]361
[28f4adb]362 outmk = open(mkname, 'w')
363 outmc = open(mcname, 'w')
[84266669]364
365 outmk.write('#########################################\n')
366 outmk.write('## AUTO-GENERATED FILE, DO NOT EDIT!!! ##\n')
367 outmk.write('#########################################\n\n')
[9a0367f]368
[84266669]369 outmc.write('/***************************************\n')
370 outmc.write(' * AUTO-GENERATED FILE, DO NOT EDIT!!! *\n')
371 outmc.write(' ***************************************/\n\n')
372
[4e9aaf5]373 defs = 'CONFIG_DEFS ='
[9a0367f]374
[62bb73e]375 for varname, vartype, name, choices, cond in rules:
[ba8de9c3]376 if cond and (not check_condition(cond, config, rules)):
[9a0367f]377 continue
378
[ba8de9c3]379 if not varname in config:
[4756634]380 value = ''
[9a0367f]381 else:
[4756634]382 value = config[varname]
383 if (value == '*'):
384 value = 'y'
[9a0367f]385
[4756634]386 outmk.write('# %s\n%s = %s\n\n' % (name, varname, value))
[84266669]387
[ba8de9c3]388 if vartype in ["y", "n", "y/n", "n/y"]:
389 if value == "y":
[84266669]390 outmc.write('/* %s */\n#define %s\n\n' % (name, varname))
[4e9aaf5]391 defs += ' -D%s' % varname
[84266669]392 else:
[4756634]393 outmc.write('/* %s */\n#define %s %s\n#define %s_%s\n\n' % (name, varname, value, varname, value))
394 defs += ' -D%s=%s -D%s_%s' % (varname, value, varname, value)
[9a0367f]395
[ba8de9c3]396 if revision is not None:
[5a8fbcb9]397 outmk.write('REVISION = %s\n' % revision)
398 outmc.write('#define REVISION %s\n' % revision)
[4e9aaf5]399 defs += ' "-DREVISION=%s"' % revision
[84266669]400
[5a8fbcb9]401 outmk.write('TIMESTAMP = %s\n' % timestamp)
[84266669]402 outmc.write('#define TIMESTAMP %s\n' % timestamp)
[4e9aaf5]403 defs += ' "-DTIMESTAMP=%s"\n' % timestamp
404
405 outmk.write(defs)
[84266669]406
407 outmk.close()
408 outmc.close()
[98376de]409
[31fb9a0]410def sorted_dir(root):
411 list = os.listdir(root)
412 list.sort()
413 return list
414
[62bb73e]415## Choose a profile and load configuration presets.
416#
417def load_presets(root, fname, screen, config):
[31fb9a0]418 options = []
419 opt2path = {}
420 cnt = 0
421
422 # Look for profiles
423 for name in sorted_dir(root):
424 path = os.path.join(root, name)
425 canon = os.path.join(path, fname)
426
[ba8de9c3]427 if os.path.isdir(path) and os.path.exists(canon) and os.path.isfile(canon):
[31fb9a0]428 subprofile = False
429
430 # Look for subprofiles
431 for subname in sorted_dir(path):
432 subpath = os.path.join(path, subname)
433 subcanon = os.path.join(subpath, fname)
434
[ba8de9c3]435 if os.path.isdir(subpath) and os.path.exists(subcanon) and os.path.isfile(subcanon):
[31fb9a0]436 subprofile = True
437 options.append("%s (%s)" % (name, subname))
438 opt2path[cnt] = (canon, subcanon)
439 cnt += 1
440
[ba8de9c3]441 if not subprofile:
[31fb9a0]442 options.append(name)
443 opt2path[cnt] = (canon, None)
444 cnt += 1
445
446 (button, value) = xtui.choice_window(screen, 'Load preconfigured defaults', 'Choose configuration profile', options, None)
447
[ba8de9c3]448 if button == 'cancel':
[31fb9a0]449 return None
450
[62bb73e]451 read_config(opt2path[value][0], config)
[ba8de9c3]452 if opt2path[value][1] != None:
[62bb73e]453 read_config(opt2path[value][1], config)
[31fb9a0]454
[98376de]455def main():
[62bb73e]456 config = {}
457 rules = []
[9a0367f]458
[62bb73e]459 # Parse rules file
460 parse_rules(RULES_FILE, rules)
[9a0367f]461
[62bb73e]462 # Read configuration from previous run
[84266669]463 if os.path.exists(MAKEFILE):
[62bb73e]464 read_config(MAKEFILE, config)
[9a0367f]465
[62bb73e]466 # Default mode: only check values and regenerate configuration files
[ba8de9c3]467 if (len(sys.argv) >= 3) and (sys.argv[2] == 'default'):
[62bb73e]468 if (infer_verify_choices(config, rules)):
469 create_output(MAKEFILE, MACROS, config, rules)
[9a0367f]470 return 0
471
[62bb73e]472 # Check mode: only check configuration
[ba8de9c3]473 if (len(sys.argv) >= 3) and (sys.argv[2] == 'check'):
474 if infer_verify_choices(config, rules):
[48c3d50]475 return 0
476 return 1
477
[27fb3d6]478 screen = xtui.screen_init()
[9a0367f]479 try:
480 selname = None
[31fb9a0]481 position = None
[9a0367f]482 while True:
483
[62bb73e]484 # Cancel out all values which have to be deduced
485 for varname, vartype, name, choices, cond in rules:
[ba8de9c3]486 if (vartype == 'y') and (varname in config) and (config[varname] == '*'):
[62bb73e]487 config[varname] = None
[81c8d54]488
[9a0367f]489 options = []
490 opt2row = {}
[31fb9a0]491 cnt = 1
492
493 options.append(" --- Load preconfigured defaults ... ")
494
[62bb73e]495 for rule in rules:
[e4d540b]496 varname, vartype, name, choices, cond = rule
[9a0367f]497
[ba8de9c3]498 if cond and (not check_condition(cond, config, rules)):
[9a0367f]499 continue
500
[ba8de9c3]501 if varname == selname:
[9a0367f]502 position = cnt
503
[ba8de9c3]504 if not varname in config:
[4756634]505 value = None
[9a0367f]506 else:
[4756634]507 value = config[varname]
[9a0367f]508
[4756634]509 if not rule_value_is_valid(rule, value):
510 value = None
[e4d540b]511
[4756634]512 default = rule_get_default(rule)
513 if default != None:
514 value = default
515 config[varname] = default
[e4d540b]516
[4756634]517 option = rule_get_option(rule, value)
[e4d540b]518 if option != None:
519 options.append(option)
[9a0367f]520
[27fb3d6]521 opt2row[cnt] = (varname, vartype, name, choices)
[9a0367f]522
523 cnt += 1
524
[28f4adb]525 if (position != None) and (position >= len(options)):
[31fb9a0]526 position = None
527
[27fb3d6]528 (button, value) = xtui.choice_window(screen, 'HelenOS configuration', 'Choose configuration option', options, position)
[9a0367f]529
[ba8de9c3]530 if button == 'cancel':
[9a0367f]531 return 'Configuration canceled'
532
[ba8de9c3]533 if button == 'done':
[62bb73e]534 if (infer_verify_choices(config, rules)):
[6346efd]535 break
536 else:
537 xtui.error_dialog(screen, 'Error', 'Some options have still undefined values. These options are marked with the "?" sign.')
538 continue
539
[ba8de9c3]540 if value == 0:
[62bb73e]541 load_presets(PRESETS_DIR, MAKEFILE, screen, config)
[31fb9a0]542 position = 1
543 continue
544
545 position = None
[ba8de9c3]546 if not value in opt2row:
[27fb3d6]547 raise RuntimeError("Error selecting value: %s" % value)
548
549 (selname, seltype, name, choices) = opt2row[value]
[9a0367f]550
[ba8de9c3]551 if not selname in config:
[4756634]552 value = None
[27fb3d6]553 else:
[4756634]554 value = config[selname]
[9a0367f]555
[ba8de9c3]556 if seltype == 'choice':
[4756634]557 config[selname] = subchoice(screen, name, choices, value)
[ba8de9c3]558 elif (seltype == 'y/n') or (seltype == 'n/y'):
559 if config[selname] == 'y':
[62bb73e]560 config[selname] = 'n'
[9a0367f]561 else:
[62bb73e]562 config[selname] = 'y'
[9a0367f]563 finally:
[27fb3d6]564 xtui.screen_done(screen)
[9a0367f]565
[62bb73e]566 create_output(MAKEFILE, MACROS, config, rules)
[9a0367f]567 return 0
[98376de]568
569if __name__ == '__main__':
[43a10c4]570 sys.exit(main())
Note: See TracBrowser for help on using the repository browser.