gen.c
上传用户:dgyhgb
上传日期:2007-01-07
资源大小:676k
文件大小:3k
源码类别:

SQL Server

开发平台:

Unix_Linux

  1. /*
  2.  *  gen.c - contains function for tree building
  3.  *
  4.  * This file is a part of GNU SQL Server
  5.  *
  6.  *  Copyright (c) 1996, 1997, Free Software Foundation, Inc
  7.  *  Developed at the Institute of System Software
  8.  *  This file is written by Andrew Yahin.
  9.  *
  10.  *  This program is free software; you can redistribute it and/or modify
  11.  *  it under the terms of the GNU General Public License as published by
  12.  *  the Free Software Foundation; either version 2 of the License, or
  13.  *  (at your option) any later version.
  14.  *
  15.  *  This program is distributed in the hope that it will be useful,
  16.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  *  GNU General Public License for more details.
  19.  *
  20.  *  You should have received a copy of the GNU General Public License
  21.  *  along with this program; if not, write to the Free Software
  22.  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  23.  *
  24.  *  Contacts: gss@ispras.ru
  25.  *
  26.  */
  27. /* $Id: gen.c,v 1.245 1997/03/31 03:46:38 kml Exp $ */
  28. #include "global.h"
  29. #include <stdarg.h>
  30. #include "kitty.h"
  31. TXTREF 
  32. mk_vect(i4_t of_longs,i4_t len,...)
  33. {
  34.   va_list ap;
  35.   TXTREF  v;
  36.   register i4_t i;
  37.   
  38.   va_start(ap,len);
  39.   v = gen_vect(len);
  40.   for (i=0; i<len; i++)
  41.     if (of_longs)
  42.       VOP(v,i).l    = va_arg(ap,i4_t);
  43.     else
  44.       VOP(v,i).txtp = va_arg(ap,TXTREF);
  45.   va_end(ap);
  46.   return v;
  47. }
  48. TXTREF 
  49. mk_node(enum token root,...)
  50. {
  51.   va_list ap;
  52.   TXTREF return_trn;
  53.   register i4_t i;
  54.   enum token tmp_code;
  55.   i4_t right_ptr=0,down_ptr=0;
  56.   register char *format_ptr;
  57.   
  58.   va_start(ap,root);
  59.   
  60.   tmp_code = root;
  61.   
  62.   if (tmp_code == UNKNOWN)
  63.     return 0;
  64.   /* (NIL_CODE) stands for an expression that isn't there.  */
  65.   if (tmp_code == NIL_CODE)
  66.     return 0;
  67.   
  68.   format_ptr = FORMAT (tmp_code);
  69.   
  70.   return_trn = gen_node1(tmp_code,va_arg(ap,MASKTYPE));
  71.   
  72.   for (i = 0; i < LENGTH (tmp_code); i++,format_ptr++)
  73.     switch (*format_ptr)
  74.       {
  75. /* 0 means a field for internal use only.
  76.    Don't expect it to be present in the input.  */
  77.       case '0':break;
  78.       case 'r':
  79. right_ptr=1;
  80. break;
  81.       case 'a':
  82. break;
  83.       case 'd':
  84. down_ptr=1;
  85. break;
  86.       case 'V': /* special vocabulary reference (backward link) */
  87. break;
  88.       case 't':
  89.       case 'v':
  90.       case 'T':
  91.       case 'L':
  92.       case 'N':
  93. XTXT_TRN(return_trn, i) = va_arg(ap,TXTREF);
  94. break;
  95.       case 'S':
  96. /* 'S' is an optional string: if a closeparen follows,
  97.    just store NULL for this element.  */
  98.       case 's':
  99. XLTR_TRN(return_trn, i) = va_arg(ap,LTRLREF);
  100. break;
  101.       case 'p':
  102.       case 'y':
  103.       case 'i':
  104.       case 'x':
  105.       case 'l':
  106.       case 'R':
  107. XLNG_TRN(return_trn, i) = va_arg (ap,i4_t);
  108. break;
  109.       case 'f':
  110. XFLT_TRN(return_trn, i) = va_arg (ap,double);
  111. break;
  112.       default:
  113. fprintf (stderr,
  114.  "switch format wrong in mk_node(). format was: '%c'.n",
  115.  *format_ptr);
  116. yyfatal("Abort");
  117.       }
  118.   
  119.   if (TstF_TRN (return_trn, PATTERN_F))
  120.     for(;i<LENGTH(tmp_code)+PTRN_ELEM(tmp_code);i++)
  121.       XLNG_TRN(return_trn,i)=va_arg(ap,i4_t);
  122.   
  123.   if(down_ptr)
  124.     {
  125.       DOWN_TRN(return_trn)=va_arg(ap,TXTREF);
  126.       arity_trn(return_trn);
  127.     }
  128.   
  129.   return_trn = handle_types(return_trn,0);
  130.   
  131.   if(right_ptr)
  132.     RIGHT_TRN(return_trn)=va_arg(ap,TXTREF);
  133.   
  134.   va_end(ap);
  135.   return return_trn;
  136. }