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

SQL Server

开发平台:

Unix_Linux

  1. /*
  2.  *  copy.c  -  engine interaction support
  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.  *  This file is written by Olga Dmitrieva, 1994
  9.  *  Fixed by Kostya Dyshlevoy, 1995
  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: copy.c,v 1.245 1997/03/31 03:46:38 kml Exp $ */
  29. #define   MAIN
  30. #include "global.h"
  31. #include "engine/pupsi.h"
  32. #include "engine/tptrn.h"
  33. #include "engine/expop.h"
  34. #include "exti.h"
  35. #include "funall.h"
  36. #include "xmem.h"
  37. #include "const.h"
  38. #include "errno.h"
  39. #ifdef HAVE_UNISTD_H
  40. #include <unistd.h>
  41. #endif
  42. #include <sys/types.h>
  43. #include <assert.h>
  44. i4_t killtran __P((void));
  45. /*--------------------------------------------*/
  46. char buffer[SOC_BUF_SIZE];
  47. char res_buf[SOC_BUF_SIZE];
  48. char *pointbuf = buffer;
  49. i4_t initializing_base = 0;
  50. i4_t commit_done = 0;
  51. /*------------------------------------------------*/
  52. i4_t 
  53. Copy (void *v_to, void *v_from, i4_t len)
  54. {
  55.   i4_t curbufsize = pointbuf - buffer;
  56.   
  57.   if (v_to == pointbuf)
  58.     {
  59.       if (curbufsize + len > SOC_BUF_SIZE)
  60. return (-ER_BUF);
  61.       pointbuf += len;
  62.     }
  63.   bcopy (v_from, v_to, len);
  64.   return (len);
  65. }
  66. /* 
  67.  * Committing the current transaction and storing
  68.  * all chenges made by it
  69.  */
  70. int
  71. rollback (i4_t cpn)
  72. {
  73.   if (cpn==0)
  74.     drop_statistic();
  75.   return roll_back(cpn);
  76. }
  77. void 
  78. commit (void)
  79. {
  80.   i4_t answer;
  81.   
  82.   if (commit_done)
  83.     return;
  84.   if (cl_debug)
  85.     fprintf (STDOUT, "BASE:commitn");
  86.   
  87.   answer = killtran ();
  88.   commit_done = 1;
  89. }
  90. static void 
  91. compiler_disconnect (void)
  92. {
  93.   if (!commit_done)
  94.     {
  95.       rollback(0);
  96.       commit();
  97.     }
  98. }
  99. /*----------------------------------------------------------*/
  100. #define   FWR(tabid)    fwrite(&tabid,sizeof(Tabid),1,fb)
  101. #define   FWRID(indid)  fwrite(&indid,sizeof(Indid),1,fb)
  102. #define   FRD(tabid)    fread (&tabid,sizeof(Tabid),1,fb)
  103. #define   FRDID(indid)  fread (&indid,sizeof(Indid),1,fb)
  104. /*----------------------------------------------------------*/
  105. i4_t 
  106. initbas (void)
  107. {
  108.   static i4_t done = 0;
  109.   static i4_t done1 = 0;
  110.   FILE *fb;
  111.   if (done || initializing_base)
  112.     return 0;
  113.   if (cl_debug)
  114.     fprintf (STDOUT, "BASE: begin of initbas n");
  115.   if(!done1)
  116.     {
  117. #if HAVE_ATEXIT
  118.       atexit(compiler_disconnect);
  119. #elif HAVE_ON_EXIT
  120.       on_exit(compiler_disconnect);
  121. #endif  
  122.       done1=1;
  123.     }
  124.   db_func_init ();
  125.   
  126.   fb = fopen (BASE_DAT, "r");
  127.   if (fb == NULL)
  128.     return (initializing_base) ? 0 : -1;
  129.   fseek (fb, 0, SEEK_SET);
  130.   FRD (systabtabid);
  131.   FRD (syscoltabid);
  132.   FRD (sysindtabid);
  133.   FRD (viewstabid);
  134.   FRD (tabauthtabid);
  135.   FRD (colauthtabid);
  136.   FRD (refconstrtabid);
  137.   FRD (chconstrtabid);
  138.   FRD (chcontwotabid);
  139.   FRDID (indid1);
  140.   FRDID (indid2);
  141.   FRDID (indidcol);
  142.   FRDID (indidcol2);
  143.   FRDID (sysindexind);
  144.   FRDID (sysauthindid);
  145.   FRDID (syscolauthindid);
  146.   FRDID (sysrefindid);
  147.   FRDID (sysrefindid1);
  148.   FRDID (chconstrindid);
  149.   FRDID (chconstrtwoind);
  150.   FRDID (viewsind);
  151.   fclose (fb);
  152.   
  153.   if (cl_debug)
  154.     fprintf (STDOUT, "BASE: end of initbasn");
  155.   done = 1;
  156.   return 0;
  157. }