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

SQL Server

开发平台:

Unix_Linux

  1. /*   seman.h - common semantic interface for pass 2 of SQL compiler 
  2.  *             GNU SQL server
  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 Programming
  8.  *
  9.  *  This program is free software; you can redistribute it and/or modify
  10.  *  it under the terms of the GNU General Public License as published by
  11.  *  the Free Software Foundation; either version 2 of the License, or
  12.  *  (at your option) any later version.
  13.  *
  14.  *  This program is distributed in the hope that it will be useful,
  15.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  *  GNU General Public License for more details.
  18.  *
  19.  *  You should have received a copy of the GNU General Public License
  20.  *  along with this program; if not, write to the Free Software
  21.  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  22.  *
  23.  *  Contacts:  gss@ispras.ru
  24.  *
  25.  */
  26. /* $Id: seman.h,v 1.245 1997/03/31 03:46:38 kml Exp $ */
  27. #ifndef __SEMAN_H__
  28. #define __SEMAN_H__
  29. #include "sql_decl.h"
  30. #define SEM_PRINT       fprintf
  31. #define SEM_OUTFILE     STDERR
  32. /* abnormally terminates compiling */
  33. #define SEM_EXIT(code)  exit (code);
  34. /********************************************************************/
  35. #define SWARNING      {s_w_error++;SEM_PRINT (SEM_OUTFILE,"nWarning: ");}
  36. #define SERROR        {s_e_error++;SEM_PRINT (SEM_OUTFILE,"nError: ");}
  37. #define SFERROR_MSG(msg) {progname=__FILE__; file_pos=__LINE__; yyfatal(msg);}
  38. #define SERROR_MSG(ef,l,msg) 
  39. { if (ef) s_e_error++; else s_w_error++; file_pos=l; yyerror(msg); }
  40. #define SFATAL_ERROR  SFERROR_MSG("Fatal error: invalid structure of SQL-program")
  41. #define SINT_ERROR    SFERROR_MSG("Internal error: error of SQL-compilern")
  42. #define SMEM_ERROR    SFERROR_MSG("Not enough memory")
  43. /********************************************************************/
  44. extern i2_t s_w_error;
  45. extern i2_t s_e_error;
  46. /********************************************************************/
  47. CODERT access_main (TXTREF);
  48. i4_t    binding (void);
  49. CODERT subq_main (TXTREF);
  50. #endif