[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] | 33 | HelenOS configuration system
|
---|
[98376de] | 34 | """
|
---|
[3c80f2b] | 35 |
|
---|
[98376de] | 36 | import sys
|
---|
| 37 | import os
|
---|
| 38 | import re
|
---|
[5a8fbcb9] | 39 | import time
|
---|
| 40 | import subprocess
|
---|
[27fb3d6] | 41 | import xtui
|
---|
[98376de] | 42 |
|
---|
[62bb73e] | 43 | RULES_FILE = sys.argv[1]
|
---|
[84266669] | 44 | MAKEFILE = 'Makefile.config'
|
---|
| 45 | MACROS = 'config.h'
|
---|
[62bb73e] | 46 | PRESETS_DIR = 'defaults'
|
---|
[98376de] | 47 |
|
---|
[62bb73e] | 48 | def 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] | 60 | def 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] | 89 | def 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] | 131 | def 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] | 181 | def yes_no(default):
|
---|
| 182 | "Return '*' if yes, ' ' if no"
|
---|
| 183 |
|
---|
[ba8de9c3] | 184 | if default == 'y':
|
---|
[9a0367f] | 185 | return '*'
|
---|
| 186 |
|
---|
| 187 | return ' '
|
---|
[98376de] | 188 |
|
---|
[27fb3d6] | 189 | def 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] | 226 | def 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.
|
---|
| 253 | def 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 | #
|
---|
| 282 | def 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 | #
|
---|
| 314 | def 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] | 340 | def 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] | 410 | def sorted_dir(root):
|
---|
| 411 | list = os.listdir(root)
|
---|
| 412 | list.sort()
|
---|
| 413 | return list
|
---|
| 414 |
|
---|
[6ec0acd] | 415 | ## Ask user to choose a configuration profile.
|
---|
[62bb73e] | 416 | #
|
---|
[6ec0acd] | 417 | def profile_choose(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))
|
---|
[6ec0acd] | 438 | opt2path[cnt] = [name, subname]
|
---|
[31fb9a0] | 439 | cnt += 1
|
---|
| 440 |
|
---|
[ba8de9c3] | 441 | if not subprofile:
|
---|
[31fb9a0] | 442 | options.append(name)
|
---|
[6ec0acd] | 443 | opt2path[cnt] = [name]
|
---|
[31fb9a0] | 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 |
|
---|
[6ec0acd] | 451 | return opt2path[value]
|
---|
| 452 |
|
---|
| 453 | ## Read presets from a configuration profile.
|
---|
| 454 | #
|
---|
| 455 | # @param profile Profile to load from (a list of string components)
|
---|
| 456 | # @param config Output configuration
|
---|
| 457 | #
|
---|
| 458 | def presets_read(profile, config):
|
---|
| 459 | path = os.path.join(PRESETS_DIR, profile[0], MAKEFILE)
|
---|
| 460 | read_config(path, config)
|
---|
| 461 |
|
---|
| 462 | if len(profile) > 1:
|
---|
| 463 | path = os.path.join(PRESETS_DIR, profile[0], profile[1], MAKEFILE)
|
---|
| 464 | read_config(path, config)
|
---|
| 465 |
|
---|
| 466 | ## Parse profile name (relative OS path) into a list of components.
|
---|
| 467 | #
|
---|
| 468 | # @param profile_name Relative path (using OS separator)
|
---|
| 469 | # @return List of components
|
---|
| 470 | #
|
---|
| 471 | def parse_profile_name(profile_name):
|
---|
| 472 | profile = []
|
---|
| 473 |
|
---|
| 474 | head, tail = os.path.split(profile_name)
|
---|
| 475 | if head != '':
|
---|
| 476 | profile.append(head)
|
---|
| 477 |
|
---|
| 478 | profile.append(tail)
|
---|
| 479 | return profile
|
---|
[31fb9a0] | 480 |
|
---|
[98376de] | 481 | def main():
|
---|
[6ec0acd] | 482 | profile = None
|
---|
[62bb73e] | 483 | config = {}
|
---|
| 484 | rules = []
|
---|
[9a0367f] | 485 |
|
---|
[62bb73e] | 486 | # Parse rules file
|
---|
| 487 | parse_rules(RULES_FILE, rules)
|
---|
[9a0367f] | 488 |
|
---|
[421250e] | 489 | # Input configuration file can be specified on command line
|
---|
| 490 | # otherwise configuration from previous run is used.
|
---|
| 491 | if len(sys.argv) >= 4:
|
---|
[6ec0acd] | 492 | profile = parse_profile_name(sys.argv[3])
|
---|
| 493 | presets_read(profile, config)
|
---|
| 494 | elif os.path.exists(MAKEFILE):
|
---|
| 495 | read_config(MAKEFILE, config)
|
---|
[9a0367f] | 496 |
|
---|
[62bb73e] | 497 | # Default mode: only check values and regenerate configuration files
|
---|
[ba8de9c3] | 498 | if (len(sys.argv) >= 3) and (sys.argv[2] == 'default'):
|
---|
[62bb73e] | 499 | if (infer_verify_choices(config, rules)):
|
---|
| 500 | create_output(MAKEFILE, MACROS, config, rules)
|
---|
[9a0367f] | 501 | return 0
|
---|
| 502 |
|
---|
[62bb73e] | 503 | # Check mode: only check configuration
|
---|
[ba8de9c3] | 504 | if (len(sys.argv) >= 3) and (sys.argv[2] == 'check'):
|
---|
| 505 | if infer_verify_choices(config, rules):
|
---|
[48c3d50] | 506 | return 0
|
---|
| 507 | return 1
|
---|
| 508 |
|
---|
[27fb3d6] | 509 | screen = xtui.screen_init()
|
---|
[9a0367f] | 510 | try:
|
---|
| 511 | selname = None
|
---|
[31fb9a0] | 512 | position = None
|
---|
[9a0367f] | 513 | while True:
|
---|
| 514 |
|
---|
[62bb73e] | 515 | # Cancel out all values which have to be deduced
|
---|
| 516 | for varname, vartype, name, choices, cond in rules:
|
---|
[ba8de9c3] | 517 | if (vartype == 'y') and (varname in config) and (config[varname] == '*'):
|
---|
[62bb73e] | 518 | config[varname] = None
|
---|
[81c8d54] | 519 |
|
---|
[9a0367f] | 520 | options = []
|
---|
| 521 | opt2row = {}
|
---|
[31fb9a0] | 522 | cnt = 1
|
---|
| 523 |
|
---|
| 524 | options.append(" --- Load preconfigured defaults ... ")
|
---|
| 525 |
|
---|
[62bb73e] | 526 | for rule in rules:
|
---|
[e4d540b] | 527 | varname, vartype, name, choices, cond = rule
|
---|
[9a0367f] | 528 |
|
---|
[ba8de9c3] | 529 | if cond and (not check_condition(cond, config, rules)):
|
---|
[9a0367f] | 530 | continue
|
---|
| 531 |
|
---|
[ba8de9c3] | 532 | if varname == selname:
|
---|
[9a0367f] | 533 | position = cnt
|
---|
| 534 |
|
---|
[ba8de9c3] | 535 | if not varname in config:
|
---|
[4756634] | 536 | value = None
|
---|
[9a0367f] | 537 | else:
|
---|
[4756634] | 538 | value = config[varname]
|
---|
[9a0367f] | 539 |
|
---|
[4756634] | 540 | if not rule_value_is_valid(rule, value):
|
---|
| 541 | value = None
|
---|
[e4d540b] | 542 |
|
---|
[4756634] | 543 | default = rule_get_default(rule)
|
---|
| 544 | if default != None:
|
---|
[8fe3f832] | 545 | if value == None:
|
---|
| 546 | value = default
|
---|
| 547 | config[varname] = value
|
---|
[e4d540b] | 548 |
|
---|
[4756634] | 549 | option = rule_get_option(rule, value)
|
---|
[e4d540b] | 550 | if option != None:
|
---|
| 551 | options.append(option)
|
---|
[8fe3f832] | 552 | else:
|
---|
| 553 | continue
|
---|
[9a0367f] | 554 |
|
---|
[27fb3d6] | 555 | opt2row[cnt] = (varname, vartype, name, choices)
|
---|
[9a0367f] | 556 |
|
---|
| 557 | cnt += 1
|
---|
| 558 |
|
---|
[28f4adb] | 559 | if (position != None) and (position >= len(options)):
|
---|
[31fb9a0] | 560 | position = None
|
---|
| 561 |
|
---|
[27fb3d6] | 562 | (button, value) = xtui.choice_window(screen, 'HelenOS configuration', 'Choose configuration option', options, position)
|
---|
[9a0367f] | 563 |
|
---|
[ba8de9c3] | 564 | if button == 'cancel':
|
---|
[9a0367f] | 565 | return 'Configuration canceled'
|
---|
| 566 |
|
---|
[ba8de9c3] | 567 | if button == 'done':
|
---|
[62bb73e] | 568 | if (infer_verify_choices(config, rules)):
|
---|
[6346efd] | 569 | break
|
---|
| 570 | else:
|
---|
| 571 | xtui.error_dialog(screen, 'Error', 'Some options have still undefined values. These options are marked with the "?" sign.')
|
---|
| 572 | continue
|
---|
| 573 |
|
---|
[ba8de9c3] | 574 | if value == 0:
|
---|
[6ec0acd] | 575 | profile = profile_choose(PRESETS_DIR, MAKEFILE, screen, config)
|
---|
| 576 | if profile != None:
|
---|
| 577 | presets_read(profile, config)
|
---|
[31fb9a0] | 578 | position = 1
|
---|
| 579 | continue
|
---|
| 580 |
|
---|
| 581 | position = None
|
---|
[ba8de9c3] | 582 | if not value in opt2row:
|
---|
[27fb3d6] | 583 | raise RuntimeError("Error selecting value: %s" % value)
|
---|
| 584 |
|
---|
| 585 | (selname, seltype, name, choices) = opt2row[value]
|
---|
[9a0367f] | 586 |
|
---|
[ba8de9c3] | 587 | if not selname in config:
|
---|
[4756634] | 588 | value = None
|
---|
[27fb3d6] | 589 | else:
|
---|
[4756634] | 590 | value = config[selname]
|
---|
[9a0367f] | 591 |
|
---|
[ba8de9c3] | 592 | if seltype == 'choice':
|
---|
[4756634] | 593 | config[selname] = subchoice(screen, name, choices, value)
|
---|
[ba8de9c3] | 594 | elif (seltype == 'y/n') or (seltype == 'n/y'):
|
---|
| 595 | if config[selname] == 'y':
|
---|
[62bb73e] | 596 | config[selname] = 'n'
|
---|
[9a0367f] | 597 | else:
|
---|
[62bb73e] | 598 | config[selname] = 'y'
|
---|
[9a0367f] | 599 | finally:
|
---|
[27fb3d6] | 600 | xtui.screen_done(screen)
|
---|
[9a0367f] | 601 |
|
---|
[62bb73e] | 602 | create_output(MAKEFILE, MACROS, config, rules)
|
---|
[9a0367f] | 603 | return 0
|
---|
[98376de] | 604 |
|
---|
| 605 | if __name__ == '__main__':
|
---|
[43a10c4] | 606 | sys.exit(main())
|
---|