linux-old/scripts/tkcond.c
<<
>>
Prefs
   1/* parser config.in
   2 *
   3 * Version 1.0
   4 * Eric Youngdale
   5 * 10/95
   6 *
   7 * The general idea here is that we want to parse a config.in file and 
   8 * from this, we generate a wish script which gives us effectively the
   9 * same functionality that the original config.in script provided.
  10 *
  11 * This task is split roughly into 3 parts.  The first parse is the parse
  12 * of the input file itself.  The second part is where we analyze the 
  13 * #ifdef clauses, and attach a linked list of tokens to each of the
  14 * menu items.  In this way, each menu item has a complete list of
  15 * dependencies that are used to enable/disable the options.
  16 * The third part is to take the configuration database we have build,
  17 * and build the actual wish script.
  18 *
  19 * This file contains the code to further process the conditions from
  20 * the "ifdef" clauses.
  21 *
  22 * The conditions are assumed to be one of the following formats
  23 *
  24 * simple_condition:= "$VARIABLE" == y/n/m
  25 * simple_condition:= "$VARIABLE != y/n/m
  26 *
  27 * simple_condition -a simple_condition
  28 *
  29 * If the input condition contains '(' or ')' it would screw us up, but for now
  30 * this is not a problem.
  31 */
  32#include <stdlib.h>
  33#include <stdio.h>
  34#include <string.h>
  35#include "tkparse.h"
  36
  37
  38/*
  39 * Walk a condition chain and invert it so that the logical result is
  40 * inverted.
  41 */
  42static void invert_condition(struct condition * cnd)
  43{
  44  /*
  45   * This is simple.  Just walk through the list, and invert
  46   * all of the operators.
  47   */
  48  for(;cnd; cnd = cnd->next)
  49    {
  50      switch(cnd->op)
  51        {
  52        case op_and:
  53          cnd->op = op_or;
  54          break;
  55        case op_or:
  56          /*
  57           * This is not turned into op_and - we need to keep track
  58           * of what operators were used here since we have an optimization
  59           * later on to remove duplicate conditions, and having
  60           * inverted ors in there would make it harder if we did not
  61           * distinguish an inverted or from an and we inserted because
  62           * of nested ifs.
  63           */
  64          cnd->op = op_and1;
  65          break;
  66        case op_neq:
  67          cnd->op = op_eq;
  68          break;
  69        case op_eq:
  70          cnd->op = op_neq;
  71          break;
  72        default:
  73          break;
  74        }
  75    }
  76}
  77
  78/*
  79 * Walk a condition chain, and free the memory associated with it.
  80 */
  81static void free_condition(struct condition * cnd)
  82{
  83  struct condition * next;
  84  for(;cnd; cnd = next)
  85    {
  86      next = cnd->next;
  87
  88      if( cnd->variable.str != NULL )
  89        free(cnd->variable.str);
  90
  91      free(cnd);
  92    }
  93}
  94
  95/*
  96 * Walk all of the conditions, and look for choice values.  Convert
  97 * the tokens into something more digestible.
  98 */
  99void fix_choice_cond()
 100{
 101  struct condition * cond;
 102  struct condition * cond2;
 103  struct kconfig * cfg;
 104  char tmpbuf[10];
 105
 106  for(cfg = config;cfg != NULL; cfg = cfg->next)
 107    {
 108      if( cfg->cond == NULL )
 109        {
 110          continue;
 111        }
 112
 113      for(cond = cfg->cond; cond != NULL; cond = cond->next)
 114        {
 115          if( cond->op != op_kvariable )
 116            continue;
 117
 118          if( cond->variable.cfg->tok != tok_choice )
 119            continue;
 120
 121          /*
 122           * Look ahead for what we are comparing this to.  There should
 123           * be one operator in between.
 124           */
 125          cond2 = cond->next->next;
 126          strcpy(tmpbuf, cond->variable.cfg->label);
 127
 128          if( strcmp(cond2->variable.str, "y") == 0 )
 129            {
 130              cond->variable.cfg = cond->variable.cfg->choice_label;
 131              cond2->variable.str = strdup(tmpbuf);
 132            }
 133          else
 134            {
 135              fprintf(stderr,"Ooops\n");
 136              exit(0);
 137            }
 138        }
 139
 140    }
 141}
 142
 143/*
 144 * Walk the stack of conditions, and clone all of them with "&&" operators
 145 * gluing them together.  The conditions from each level of the stack
 146 * are wrapped in parenthesis so as to guarantee that the results
 147 * are logically correct.
 148 */
 149struct condition * get_token_cond(struct condition ** cond, int depth)
 150{
 151  int i;
 152  struct condition * newcond;
 153  struct condition * tail;
 154  struct condition * new;
 155  struct condition * ocond;
 156  struct kconfig * cfg;
 157
 158  newcond = tail = NULL;
 159  for(i=0; i<depth; i++, cond++)
 160    {
 161      /*
 162       * First insert the left parenthesis
 163       */
 164      new = (struct condition *) malloc(sizeof(struct condition));
 165      memset(new, 0, sizeof(*new));
 166      new->op = op_lparen;
 167      if( tail == NULL )
 168        {
 169          newcond = tail = new;
 170        }
 171      else
 172        {
 173          tail->next = new;
 174          tail = new;
 175        }
 176
 177      /*
 178       * Now duplicate the chain.
 179       */
 180      ocond = *cond;
 181      for(;ocond != NULL; ocond = ocond->next)
 182        {
 183          new = (struct condition *) malloc(sizeof(struct condition));
 184          memset(new, 0, sizeof(*new));
 185          new->op = ocond->op;
 186          if( ocond->variable.str != NULL )
 187            {
 188              if( ocond->op == op_variable )
 189                {
 190                  /*
 191                   * Search for structure to insert here.
 192                   */
 193                  for(cfg = config;cfg != NULL; cfg = cfg->next)
 194                    {
 195                      if( cfg->tok != tok_bool
 196                         && cfg->tok != tok_int
 197                         && cfg->tok != tok_hex
 198                         && cfg->tok != tok_string
 199                         && cfg->tok != tok_tristate 
 200                         && cfg->tok != tok_choice
 201                         && cfg->tok != tok_dep_tristate)
 202                        {
 203                          continue;
 204                        }
 205                      if( strcmp(cfg->optionname, ocond->variable.str) == 0)
 206                        {
 207                          new->variable.cfg = cfg;
 208                          new->op = op_kvariable;
 209                          break;
 210                        }
 211                    }
 212                  if( cfg == NULL )
 213                    {
 214                      new->variable.str = strdup(ocond->variable.str);
 215                    }
 216                }
 217              else
 218                {
 219                  new->variable.str = strdup(ocond->variable.str);
 220                }
 221            }
 222          tail->next = new;
 223          tail = new;
 224        }
 225
 226      /*
 227       * Next insert the left parenthesis
 228       */
 229      new = (struct condition *) malloc(sizeof(struct condition));
 230      memset(new, 0, sizeof(*new));
 231      new->op = op_rparen;
 232      tail->next = new;
 233      tail = new;
 234
 235      /*
 236       * Insert an and operator, if we have another condition.
 237       */
 238      if( i < depth - 1 )
 239        {
 240          new = (struct condition *) malloc(sizeof(struct condition));
 241          memset(new, 0, sizeof(*new));
 242          new->op = op_and;
 243          tail->next = new;
 244          tail = new;
 245        }
 246
 247    }
 248
 249  return newcond;
 250}
 251
 252/*
 253 * Walk a single chain of conditions and clone it.  These are assumed
 254 * to be created/processed by  get_token_cond in a previous pass.
 255 */
 256struct condition * get_token_cond_frag(struct condition * cond, 
 257                                       struct condition ** last)
 258{
 259  struct condition * newcond;
 260  struct condition * tail;
 261  struct condition * new;
 262  struct condition * ocond;
 263
 264  newcond = tail = NULL;
 265
 266  /*
 267   * Now duplicate the chain.
 268   */
 269  for(ocond = cond;ocond != NULL; ocond = ocond->next)
 270    {
 271      new = (struct condition *) malloc(sizeof(struct condition));
 272      memset(new, 0, sizeof(*new));
 273      new->op = ocond->op;
 274      new->variable.cfg = ocond->variable.cfg;
 275      if( tail == NULL )
 276        {
 277          newcond = tail = new;
 278        }
 279      else
 280        {
 281          tail->next = new;
 282          tail = new;
 283        }
 284    }
 285
 286  new = (struct condition *) malloc(sizeof(struct condition));
 287  memset(new, 0, sizeof(*new));
 288  new->op = op_and;
 289  tail->next = new;
 290  tail = new;
 291  
 292  *last = tail;
 293  return newcond;
 294}
 295
 296/*
 297 * Walk through the if conditionals and maintain a chain.
 298 */
 299void fix_conditionals(struct kconfig * scfg)
 300{
 301  int depth = 0;
 302  int i;
 303  struct kconfig * cfg;
 304  struct kconfig * cfg1;
 305  struct condition * conditions[25];
 306  struct condition * cnd;
 307  struct condition * cnd1;
 308  struct condition * cnd2;
 309  struct condition * cnd3;
 310  struct condition * newcond;
 311  struct condition * last;
 312
 313  /*
 314   * Start by walking the chain.  Every time we see an ifdef, push
 315   * the condition chain on the stack.  When we see an "else", we invert
 316   * the condition at the top of the stack, and when we see an "endif"
 317   * we free all of the memory for the condition at the top of the stack
 318   * and remove the condition from the top of the stack.
 319   *
 320   * For any other type of token (i.e. a bool), we clone a new condition chain
 321   * by anding together all of the conditions that are currently stored on
 322   * the stack.  In this way, we have a correct representation of whatever
 323   * conditions govern the usage of each option.
 324   */
 325  memset(conditions, 0, sizeof(conditions));
 326  for(cfg=scfg;cfg != NULL; cfg = cfg->next)
 327    {
 328      switch(cfg->tok)
 329        {
 330        case tok_if:
 331          /*
 332           * Push this condition on the stack, and nuke the token
 333           * representing the ifdef, since we no longer need it.
 334           */
 335          conditions[depth] = cfg->cond;
 336          depth++;
 337          cfg->tok = tok_nop;
 338          cfg->cond =  NULL;
 339          break;
 340        case tok_else:
 341          /*
 342           * For an else, we just invert the condition at the top of
 343           * the stack.  This is done in place with no reallocation
 344           * of memory taking place.
 345           */
 346          invert_condition(conditions[depth-1]);
 347          cfg->tok = tok_nop;
 348          break;
 349        case tok_fi:
 350          depth--;
 351          free_condition(conditions[depth]);
 352          conditions[depth] = NULL;
 353          cfg->tok = tok_nop;
 354          break;
 355        case tok_comment:
 356        case tok_define:
 357        case tok_menuoption:
 358        case tok_bool:
 359        case tok_tristate:
 360        case tok_int:
 361        case tok_hex:
 362        case tok_string:
 363        case tok_choice:
 364        case tok_make:
 365          /*
 366           * We need to duplicate the chain of conditions and attach them to
 367           * this token.
 368           */
 369          cfg->cond = get_token_cond(&conditions[0], depth);
 370          break;
 371        case tok_dep_tristate:
 372          /*
 373           * Same as tok_tristate et al except we have a temporary
 374           * conditional. (Sort of a hybrid tok_if, tok_tristate, tok_fi
 375           * option)
 376           */
 377          conditions[depth] = cfg->cond;
 378          depth++;
 379          cfg->cond = get_token_cond(&conditions[0], depth);
 380          depth--;
 381          free_condition(conditions[depth]);
 382          conditions[depth] = NULL;
 383        default:
 384          break;
 385        }
 386    }
 387
 388  /*
 389   * Fix any conditions involving the "choice" operator.
 390   */
 391  fix_choice_cond();
 392
 393  /*
 394   * Walk through and see if there are multiple options that control the
 395   * same kvariable.  If there are we need to treat them a little bit
 396   * special.
 397   */
 398  for(cfg=scfg;cfg != NULL; cfg = cfg->next)
 399    {
 400      switch(cfg->tok)
 401        {
 402        case tok_bool:
 403        case tok_tristate:
 404        case tok_dep_tristate:
 405        case tok_int:
 406        case tok_hex:
 407        case tok_string:
 408          for(cfg1=cfg;cfg1 != NULL; cfg1 = cfg1->next)
 409            {
 410              switch(cfg1->tok)
 411                {
 412                case tok_define:
 413                case tok_bool:
 414                case tok_tristate:
 415                case tok_dep_tristate:
 416                case tok_int:
 417                case tok_hex:
 418                case tok_string:
 419                  if( strcmp(cfg->optionname, cfg1->optionname) == 0)
 420                    {
 421                      cfg->flags |= CFG_DUP;
 422                      cfg1->flags |= CFG_DUP;
 423                    }
 424                  break;
 425                default:
 426                  break;
 427                }
 428            }
 429          break;
 430        default:
 431          break;
 432        }
 433    }
 434
 435  /*
 436   * Now go through the list, and every time we see a kvariable, check
 437   * to see whether it also has some dependencies.  If so, then
 438   * append it to our list.  The reason we do this is that we might have
 439   * option CONFIG_FOO which is only used if CONFIG_BAR is set.  It may
 440   * turn out that in config.in that the default value for CONFIG_BAR is
 441   * set to "y", but that CONFIG_BAR is not enabled because CONFIG_XYZZY
 442   * is not set.  The current condition chain does not reflect this, but
 443   * we can fix this by searching for the tokens that this option depends
 444   * upon and cloning the conditions and merging them with the list.
 445   */
 446  for(cfg=scfg;cfg != NULL; cfg = cfg->next)
 447    {
 448      /*
 449       * Search for a token that has a condition list.
 450       */
 451      if(cfg->cond == NULL) continue;
 452      for(cnd = cfg->cond; cnd; cnd=cnd->next)
 453        {
 454          /*
 455           * Now search the condition list for a known configuration variable
 456           * that has conditions of its own.
 457           */
 458          if(cnd->op != op_kvariable) continue;
 459          if(cnd->variable.cfg->cond == NULL) continue;
 460
 461          if(cnd->variable.cfg->flags & CFG_DUP) continue; 
 462          /*
 463           * OK, we have some conditions to append to cfg.  Make  a clone
 464           * of the conditions,
 465           */
 466          newcond = get_token_cond_frag(cnd->variable.cfg->cond, &last);
 467
 468          /*
 469           * Finally, we splice it into our list.
 470           */
 471          last->next = cfg->cond;
 472          cfg->cond = newcond;
 473
 474        }
 475    }
 476
 477  /*
 478   * There is a strong possibility that we have duplicate conditions
 479   * in here.  It would make the script more efficient and readable to
 480   * remove these.  Here is where we assume here that there are no
 481   * parenthesis in the input script.
 482   */
 483  for(cfg=scfg;cfg != NULL; cfg = cfg->next)
 484    {
 485      /*
 486       * Search for configuration options that have conditions.
 487       */
 488      if(cfg->cond == NULL) continue;
 489      for(cnd = cfg->cond; cnd; cnd=cnd->next)
 490        {
 491          /*
 492           * Search for a left parenthesis.
 493           */
 494          if(cnd->op != op_lparen) continue;
 495          for(cnd1 = cnd->next; cnd1; cnd1=cnd1->next)
 496            {
 497              /*
 498               * Search after the previous left parenthesis, and try
 499               * and find a second left parenthesis.
 500               */
 501              if(cnd1->op != op_lparen) continue;
 502
 503              /*
 504               * Now compare the next 5 tokens to see if they are
 505               * identical.  We are looking for two chains that
 506               * are like: '(' $VARIABLE operator constant ')'.
 507               */
 508              cnd2 = cnd;
 509              cnd3 = cnd1;
 510              for(i=0; i<5; i++, cnd2=cnd2->next, cnd3=cnd3->next)
 511                {
 512                  if(!cnd2 || !cnd3) break;
 513                  if(cnd2->op != cnd3->op) break;
 514                  if(i == 1 && (cnd2->op != op_kvariable 
 515                     || cnd2->variable.cfg != cnd3->variable.cfg) ) break;
 516                  if(i==2 && cnd2->op != op_eq && cnd2->op != op_neq) break;
 517                  if(i == 3 && cnd2->op != op_constant &&
 518                     strcmp(cnd2->variable.str, cnd3->variable.str) != 0)
 519                    break;
 520                  if(i==4 && cnd2->op != op_rparen) break;
 521                }
 522              /*
 523               * If these match, and there is an and gluing these together,
 524               * then we can nuke the second one.
 525               */
 526              if(i==5 && ((cnd3 && cnd3->op == op_and)
 527                          ||(cnd2 && cnd2->op == op_and)))
 528                {
 529                  /*
 530                   * We have a duplicate.  Nuke 5 ops.
 531                   */
 532                  cnd3 = cnd1;
 533                  for(i=0; i<5; i++, cnd3=cnd3->next)
 534                    {
 535                      cnd3->op = op_nuked;
 536                    }
 537                  /*
 538                   * Nuke the and that glues the conditions together.
 539                   */
 540                  if(cnd3 && cnd3->op == op_and) cnd3->op = op_nuked;
 541                  else if(cnd2 && cnd2->op == op_and) cnd2->op = op_nuked;
 542                }
 543            }
 544        }
 545    }
 546}
 547
lxr.linux.no kindly hosted by Redpill Linpro AS, provider of Linux consulting and operations services since 1995.