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

SQL Server

开发平台:

Unix_Linux

  1. /*
  2.  *  rdcort.c  -  Read  a tuple 
  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: rdcort.c,v 1.248 1997/04/15 11:45:41 vera Exp $ */
  29. #include "destrn.h"
  30. #include "strml.h"
  31. #include "fdcltrn.h"
  32. #include "xmem.h"
  33. int
  34. readcort (u2_t sn, struct des_tid *tid, char *cort,
  35.           u2_t * corsize, struct des_tid *ref_tid)
  36. {
  37.   char *asp = NULL, *a;
  38.   u2_t *afi, *ai;
  39.   struct A pg;
  40.   unsigned char t;
  41.   while ((asp = getpg (&pg, sn, tid->tpn, 's')) == NULL);
  42.   afi = (u2_t *) (asp + phsize);
  43.   ai = afi + tid->tindex;
  44.   if (*ai == 0)
  45.     {
  46.       putpg (&pg, 'n');
  47.       return (NCR);
  48.     }
  49.   a = asp + *ai;
  50.   t = *a & MSKCORT;
  51.   if (t == IND)
  52.     { /* indirect reference */
  53.       u2_t pn2, ind2;
  54.       ref_tid->tindex = ind2 = t2bunpack (a + 1);
  55.       ref_tid->tpn = pn2 = t2bunpack (a + 1 + size2b);
  56.       putpg (&pg, 'n');
  57.       while ((asp = getpg (&pg, sn, pn2, 's')) == NULL);
  58.       afi = (u2_t *) (asp + phsize);
  59.       ai = afi + ind2;
  60.       a = asp + *ai;
  61.       assert ((*a & CREM) != 0 && *ai != 0);
  62.     }
  63.   else
  64.     ref_tid->tpn = (u2_t) ~ 0;
  65.   *corsize = calsc (afi, ai);
  66.   bcopy (a, cort, *corsize);
  67.   putpg (&pg, 'n');
  68.   return (OK);
  69. }
  70. u2_t
  71. calsc (u2_t *afi, u2_t *ai)
  72. {
  73.   u2_t *aci;
  74.   
  75.   for (aci = ai - 1; aci >= afi && *aci == 0; aci--);
  76.   if (aci < afi)
  77.     return (BD_PAGESIZE - *ai);
  78.   else
  79.     return (*aci - *ai);
  80. }