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

SQL Server

开发平台:

Unix_Linux

  1. /*
  2.  *  delrel.c  - deletion of specific DB table
  3.  *              Kernel of GNU SQL-server 
  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  Vera Ponomarenko
  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: delrel.c,v 1.248 1997/04/17 11:03:20 vera Exp $ */
  29. #include "xmem.h"
  30. #include "destrn.h"
  31. #include "strml.h"
  32. #include "fdcltrn.h"
  33. extern i4_t ljmsize;
  34. extern struct d_r_t *firstrel;
  35. extern struct ADBL adlj;
  36. extern char *pbuflj;
  37. CPNM
  38. delrel (struct id_rel *pidrel)
  39. {
  40.   char *cort;
  41.   u2_t rcorsize, scsize, sn, corsize;
  42.   struct ldesind *desind;
  43.   struct d_r_t *desrel, *dr, *prevdr;
  44.   CPNM cpn;
  45.   char array[BD_PAGESIZE];
  46.   struct des_tid tid, ref_tid;
  47.   sn = pidrel->urn.segnum;
  48.   if (sn == NRSNUM)
  49.     return (NDR);
  50.   cort = array;
  51.   if ((desrel = getrd (pidrel, &ref_tid, cort, &corsize)) == NULL)
  52.     return (NDR);
  53.   rcorsize = getrc (&desrel->desrbd, cort);
  54.   scsize = scscal (cort);
  55.   if ((cpn = synrd (sn, cort + scsize, rcorsize - scsize)) != OK)
  56.     return (cpn);
  57.   delcrl (pidrel, 0, NULL);
  58.   for (desind = desrel->pid; desind != NULL; desind = desind->listind)
  59.     {
  60.       delscd (desind->oscni, (char *) desind);
  61.       killind (desind);
  62.       xfree ((void *) desind);
  63.     }
  64.   tid.tpn = pidrel->pagenum;
  65.   tid.tindex = pidrel->index;
  66.   modmes ();
  67.   bcopy (cort, pbuflj + ljmsize, corsize);
  68.   pidrel->urn.obnum = RDRNUM;
  69.   wmlj (DELLJ, ljmsize + corsize, &adlj, pidrel, &tid, 0);
  70.   orddel (sn, RDRNUM, &tid, &ref_tid, corsize);
  71.   delscd (desrel->oscnum, (char *) desrel);
  72.   if (desrel == firstrel)
  73.     firstrel = desrel->drlist;
  74.   else
  75.     {
  76.       for (prevdr = dr = firstrel; dr != desrel; dr = dr->drlist)
  77. prevdr = dr;
  78.       prevdr->drlist = desrel->drlist;
  79.     }
  80.   xfree ((void *) desrel);
  81.   BUF_endop ();
  82.   return (OK);
  83. }
  84. struct d_r_t *
  85. getrd (struct id_rel *pidrel, struct des_tid *ref_tid, char *a, u2_t * corsize)
  86. {
  87.   struct d_r_t *desrel;
  88.   i4_t rn;
  89.   struct des_tid tid;
  90.   rn = pidrel->urn.obnum;
  91.   for (desrel = firstrel; desrel != NULL; desrel = desrel->drlist)
  92.     if (desrel->desrbd.relnum == rn)
  93.       break;
  94.   tid.tpn = pidrel->pagenum;
  95.   tid.tindex = pidrel->index;
  96.   if (readcort (pidrel->urn.segnum, &tid, a, corsize, ref_tid) != OK)
  97.     return (NULL);
  98.   if (desrel == NULL)
  99.     desrel = crtfrd (pidrel, a);
  100.   return (desrel);
  101. }
  102. u2_t
  103. getrc (struct d_r_bd *drbd, char *cort)
  104. {
  105.   char *a;
  106.   u2_t size = 0, k, kn = 0, indn, size1, size2;
  107.   struct des_index cdi;
  108.   indn = drbd->indnum;
  109.   size1 = scscal (cort) + drbdsize + drbd->fieldnum * rfsize;
  110.   a = cort + size1;
  111.   for (; kn < indn; kn++)
  112.     {
  113.       bcopy (a, (char *) &cdi, dinsize);
  114.       a += dinsize;
  115.       k = cdi.kifn & ~UNIQ & MSK21B;
  116.       size2 = k * size2b;
  117.       size += dinsize + size2;
  118.       a += size2;
  119.     }
  120.   return (size1 + size);
  121. }