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

SQL Server

开发平台:

Unix_Linux

  1. /*
  2.  *  insfltr.c  - Insertion into a filter 
  3.  *               Kernel of GNU SQL-server 
  4.  *
  5.  *  $Id: insfltr.c,v 1.245 1997/03/31 03:46:38 kml Exp $
  6.  *
  7.  *  This file is a part of GNU SQL Server
  8.  *
  9.  *  Copyright (c) 1996, 1997, Free Software Foundation, Inc
  10.  *  Developed at the Institute of System Programming
  11.  *  This file is written by  Vera Ponomarenko
  12.  *
  13.  *  This program is free software; you can redistribute it and/or modify
  14.  *  it under the terms of the GNU General Public License as published by
  15.  *  the Free Software Foundation; either version 2 of the License, or
  16.  *  (at your option) any later version.
  17.  *
  18.  *  This program is distributed in the hope that it will be useful,
  19.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  20.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  21.  *  GNU General Public License for more details.
  22.  *
  23.  *  You should have received a copy of the GNU General Public License
  24.  *  along with this program; if not, write to the Free Software
  25.  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  26.  *
  27.  *  Contacts:   gss@ispras.ru
  28.  *
  29.  */
  30. #include "destrn.h"
  31. #include "strml.h"
  32. #include "fdcltrn.h"
  33. extern char **scptab;
  34. extern i2_t maxscan;
  35. extern struct des_nseg desnseg;
  36. int
  37. insfltr (i4_t scnum, i4_t idfl)
  38. {
  39.   struct d_mesc *scpr;
  40.   struct des_tob *destob;
  41.   char sctype, *asp;
  42.   struct p_h_f *ph;
  43.   struct d_r_t *desrel, *fdesrel;
  44.   struct des_fltr *desfltr;
  45.   struct des_tid tid;
  46.   struct  A pg;
  47.   scpr = (struct d_mesc *) * (scptab + scnum);
  48.   if (scnum >= maxscan || scpr == NULL)
  49.     return (NDSC);
  50.   if (scpr->prcrt == 0)
  51.     return (NCR);
  52.   if ((u2_t) idfl > desnseg.mtobnum)
  53.     return (NIOB);  
  54.   desfltr = (struct des_fltr *) * (desnseg.tobtab + idfl);
  55.   if (desfltr == NULL)
  56.     return (NIOB);
  57.   destob = &desfltr->tobfl;
  58.   if (destob->prdt.prob != FLTR)
  59.     return (NIOB);
  60.   fdesrel = desfltr->pdrtf;
  61.   if ((sctype = scpr->obsc) == SCR)
  62.     { /* relation scan */
  63.       struct d_sc_r *screl;
  64.       screl = (struct d_sc_r *) scpr;
  65.       desrel = (struct d_r_t *) scpr->pobsc;
  66.       tid = screl->curtid;
  67.     }
  68.   else if (sctype == SCI)
  69.     { /* index scan */
  70.       struct d_sc_i *scind;
  71.       scind = (struct d_sc_i *) scpr;
  72.       desrel = (&scind->dessc)->pdi->dri;
  73.       tid = scind->dessc.ctidi;
  74.     }
  75.   else
  76.     return (NIOB);
  77.   if (fdesrel != desrel)
  78.     return (NCF);
  79.   asp = getwl (&pg, NRSNUM, destob->lastpn);
  80.   ph = (struct p_h_f *) asp;
  81.   if ((ph->freeoff + tidsize) > BD_PAGESIZE)
  82.     {
  83.       asp = getptob (&pg, destob);
  84.       ph = (struct p_h_f *) asp;
  85.       ph->freeoff = phfsize;
  86.     }
  87.   ph->freeoff += tidsize;
  88.   *(struct des_tid *) (asp + ph->freeoff) = tid;
  89.   putwul (&pg, 'm');
  90.   destob->prdt.prsort = NSORT;
  91.   return (OK);
  92. }