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

SQL Server

开发平台:

Unix_Linux

  1. /*
  2.  *  dltn.c  - Deletion of a row
  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: dltn.c,v 1.246 1997/04/10 06:57:28 vera Exp $ */
  29. #include <assert.h>
  30. #include "destrn.h"
  31. #include "strml.h"
  32. #include "fdcltrn.h"
  33. extern char **scptab;
  34. extern i2_t maxscan;
  35. extern char *pbuflj;
  36. extern i4_t ljmsize;
  37. extern struct ADBL adlj;
  38. extern CPNM curcpn;
  39. static int
  40. delcort (struct d_mesc *s, struct d_r_t *desrel, struct des_tid *tid)
  41. {
  42.   char *cort, *selc;
  43.   u2_t pn, corsize, ndc, fn, sn;
  44.   i4_t rn;
  45.   CPNM cpn;
  46.   struct id_rel idr;
  47.   struct des_tid ref_tid;
  48.   sn = desrel->segnr;
  49.   pn = tid->tpn;
  50.   if (pn == (u2_t) ~ 0)
  51.     return (NCR);
  52.   cort = pbuflj + ljmsize;
  53.   if (readcort (sn, tid, cort, &corsize, &ref_tid) == NCR)
  54.     {
  55.       s->prcrt = 0;
  56.       return (NCR);
  57.     }
  58.   rn = desrel->desrbd.relnum;
  59.   idr.urn.segnum = sn;
  60.   idr.urn.obnum = rn;
  61.   idr.pagenum = desrel->pn_r;
  62.   idr.index = desrel->ind_r;
  63.   ndc = s->ndc;
  64.   if (ndc < MAXCL)
  65.     {
  66.       if ((cpn = synlock (&idr, &desrel->desrbd, cort)) != 0)
  67.         return (cpn);
  68.       s->ndc++;
  69.     }
  70.   else if (ndc == MAXCL)
  71.     {
  72.       selc = s->pslc;
  73.       fn = desrel->desrbd.fieldnum;
  74.       if ((cpn = synlsc (s->modesc, &idr, selc + size2b, *(u2_t *) selc, fn, NULL)) != 0)
  75.         return (cpn);
  76.       s->ndc++;
  77.     }
  78.   modmes ();
  79.   wmlj (DELLJ, ljmsize + corsize, &adlj, &idr, tid, curcpn);
  80.   orddel (sn, rn, tid, &ref_tid, corsize);
  81.   proind (ordindd, desrel, desrel->desrbd.indnum, cort, tid);
  82.   s->prcrt = 0;
  83.   BUF_endop ();
  84.   return (OK);
  85. }
  86. int
  87. dltn (i4_t scnum)
  88. {
  89.   struct d_mesc *scpr;
  90.   struct ldesscan *desscan;
  91.   i4_t sctype;
  92.   scpr = (struct d_mesc *) * (scptab + scnum);
  93.   if (scnum >= maxscan || scpr == NULL)
  94.     return (NDSC);
  95.   if (scpr->modesc != WSC && scpr->modesc != DSC)
  96.     return (NMS);
  97.   if (scpr->prcrt == 0)
  98.     return (NCR);
  99.   if ((sctype = scpr->obsc) == SCR)
  100.     { /* relation scan */
  101.       desscan = &((struct d_sc_i *) scpr)->dessc;
  102.       return (delcort (scpr, (struct d_r_t *) scpr->pobsc, &desscan->ctidi));
  103.     }
  104.   else if (sctype == SCTR)
  105.     {
  106.       struct d_sc_r *screl;
  107.       struct des_trel *destrel;
  108.       u2_t pn, ind, *ai;
  109.       char *asp;
  110.       struct A pg;
  111.       
  112.       screl = (struct d_sc_r *) scpr;
  113.       destrel = (struct des_trel *) scpr->pobsc;
  114.       pn = screl->curtid.tpn;
  115.       ind = screl->curtid.tindex;
  116.       asp = getwl (&pg, NRSNUM, pn);
  117.       ai = (u2_t *) (asp + phtrsize) + ind;
  118.       if (*ai == 0)
  119.         {
  120.           putwul (&pg, 'n');
  121.           scpr->prcrt = 0;
  122.           return (NCR);
  123.         }
  124.       assert (*ai <= BD_PAGESIZE);
  125.       deltr (scpr, asp, ai, &(destrel->tobtr), pn);
  126.       putwul (&pg, 'm');
  127.       return (OK);
  128.     }
  129.   else if (sctype == SCI)
  130.     { /* index scan */
  131.       desscan = &((struct d_sc_i *) scpr)->dessc;
  132.       return (delcort (scpr, desscan->pdi->dri, &desscan->ctidi));
  133.     }
  134.   else
  135.     { /* filter scan */
  136.       struct d_sc_f *scfltr;
  137.       struct des_tid tid;
  138.       char *asp;
  139.       struct A pg;
  140.       
  141.       scfltr = (struct d_sc_f *) scpr;
  142.       asp = getwl (&pg, NRSNUM, scfltr->pnf);
  143.       tid = *(struct des_tid *) (asp + scfltr->offf);
  144.       putwul (&pg, 'n');
  145.       return (delcort (scpr, ((struct des_fltr *) scpr->pobsc)->pdrtf, &tid));
  146.     }
  147. }