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

SQL Server

开发平台:

Unix_Linux

  1. /*
  2.  *  delind.c  - deletion of specific DB table index
  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: delind.c,v 1.246 1997/04/10 06:57:28 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 ADBL adlj;
  35. extern char *pbuflj;
  36. CPNM
  37. delind (struct id_ind *pidind)
  38. {
  39.   u2_t size, rcorsize, scsize, newsize, n, fn;
  40.   char *cort, *c, *d, *nc;
  41.   struct d_r_t *desrel;
  42.   struct d_r_bd *drbd;
  43.   struct ldesind *desind, *prevdi;
  44.   struct des_index *di;
  45.   struct des_tid tid, ref_tid;
  46.   struct id_rel *pidrel;
  47.   i4_t rn, unind;
  48.   u2_t corsize, sn;
  49.   CPNM cpn;
  50.   pidrel = &pidind->irii;
  51.   sn = pidrel->urn.segnum;
  52.   if (sn == NRSNUM)
  53.     return (NDR);
  54.   if ((cpn = cont_fir (pidrel, &desrel)) != OK)
  55.     return (cpn);
  56.   rn = pidrel->urn.obnum;
  57.   if ((cpn = synind (sn, rn)) != OK)
  58.     return (cpn);
  59.   cort = pbuflj + ljmsize;
  60.   tid.tpn = pidrel->pagenum;
  61.   tid.tindex = pidrel->index;
  62.   if ((readcort (sn, &tid, cort, &corsize, &ref_tid)) != OK)
  63.     return (NDR);
  64.   drbd = &desrel->desrbd;
  65.   unind = pidind->inii;
  66.   fn = drbd->fieldnum;
  67.   n = fn * rfsize;
  68.   prevdi = NULL;
  69.   for (desind = desrel->pid; desind != NULL; prevdi = desind, desind = desind->listind)
  70.     {
  71.       di = &desind->ldi;
  72.       size = dinsize + (di->kifn & ~UNIQ & MSK21B) * size2b;
  73.       if (di->unindex == unind)
  74. {
  75.   rcorsize = getrc (drbd, cort);
  76.   nc = cort + corsize;
  77.   --drbd->indnum;
  78.           scsize = scscal (cort);
  79.           bcopy (cort, nc, scsize);
  80.           c = nc + scsize;
  81.           bcopy ((char *) drbd, c, drbdsize);
  82.           c += drbdsize;
  83.           d = cort + scsize + drbdsize;
  84.           bcopy (d, c, n);
  85.           c += n;
  86.           d += n + size;
  87.           size = cort + rcorsize - d;
  88.           bcopy (d, c, size);
  89.           c += size;
  90.   if (rcorsize < corsize)
  91.     newsize = corsize;
  92.   else
  93.     newsize = c - nc;
  94.   modmes ();
  95.           pidrel->urn.obnum = RDRNUM;
  96.   wmlj (DLILJ, ljmsize + corsize + newsize, &adlj, pidrel, &tid, cpn);
  97.   ordmod (sn, RDRNUM, &tid, &ref_tid, corsize, nc, newsize);
  98.   killind (desind);
  99.   if (prevdi == NULL)
  100.     desrel->pid = NULL;
  101.   else
  102.     prevdi->listind = desind->listind;
  103.   delscd (desind->oscni, (char *) desind);
  104.   xfree ((void *) desind);
  105.   BUF_endop ();
  106.   return (OK);
  107. }
  108.       else
  109. n += size;
  110.     }
  111.   return (NDI);
  112. }