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

SQL Server

开发平台:

Unix_Linux

  1. /* 
  2.  * tree_gen.h  - set of tree constructors (especially usefull during 
  3.  *               parsing) of GNU SQL compiler               
  4.  *
  5.  *  This file is a part of GNU SQL Server
  6.  *
  7.  *  Copyright (c) 1996, 1997, Free Software Foundation, Inc
  8.  *  Developed at the Institute of System Programming
  9.  *  This file is written by Michael Kimelman, 1992 
  10.  * 
  11.  *  This program is free software; you can redistribute it and/or modify
  12.  *  it under the terms of the GNU General Public License as published by
  13.  *  the Free Software Foundation; either version 2 of the License, or
  14.  *  (at your option) any later version.
  15.  *
  16.  *  This program is distributed in the hope that it will be useful,
  17.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  *  GNU General Public License for more details.
  20.  *
  21.  *  You should have received a copy of the GNU General Public License
  22.  *  along with this program; if not, write to the Free Software
  23.  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  24.  *
  25.  *  Contacts: gss@ispras.ru
  26.  *
  27.  */
  28. /* $Id: tree_gen.h,v 1.245 1997/03/31 03:46:38 kml Exp $ */
  29. #ifndef __TREE_GEN_H__
  30. #define __TREE_GEN_H__
  31. #define __USE_PARSER__
  32. #include "global.h"
  33. typedef struct tblname{
  34.   LTRLREF          a,n;
  35.   YYLTYPE          p;
  36. } TN;
  37. void    set_location __P((TXTREF n,YYLTYPE p));
  38. TXTREF  join_list __P((TXTREF lst,TXTREF e));
  39. TXTREF  get_param __P((LTRLREF l,i4_t enableadd,YYLTYPE p));
  40. TXTREF  get_parm_node __P((LTRLREF l,YYLTYPE p,i4_t enableadd));
  41. TXTREF  get_ind __P((TXTREF n,TXTREF n1,YYLTYPE p));
  42. TXTREF  gen_column __P((TN *t,LTRLREF l,YYLTYPE p));
  43. TXTREF  gen_colptr __P((VCBREF col));
  44. TXTREF  gen_func __P((enum token code,YYLTYPE p,TXTREF obj,i4_t set_dist));
  45. TXTREF  gen_oper __P((enum token code,TXTREF l,TXTREF r,YYLTYPE p));
  46. TXTREF  gen_parent __P((enum token code,TXTREF list));
  47. TXTREF  gen_up_node __P((enum token code,TXTREF child,YYLTYPE p));
  48. TXTREF  gen_object __P((enum token code,YYLTYPE p));
  49. TXTREF  gen_scanptr __P((TXTREF tbl,LTRLREF nm,YYLTYPE p));
  50. TXTREF  coltar_column __P((TXTREF cc));
  51. char   *get_param_list __P((TXTREF vcb,i4_t usetype));
  52. TXTREF  last_parameter __P((TXTREF parent));
  53. void    add_child __P((TXTREF parent,TXTREF child));
  54. #endif