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

SQL Server

开发平台:

Unix_Linux

  1. /*
  2.  *  crtfrm.c  - forming of 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: crtfrm.c,v 1.246 1997/03/31 11:04:50 kml Exp $ */
  29. #include "xmem.h"
  30. #include "destrn.h"
  31. #include "sctp.h"
  32. #include "strml.h"
  33. #include "fdcltrn.h"
  34. u2_t
  35. cortform (struct des_field *df, u2_t fdf, u2_t fields_n, char *fc,
  36.           char *fval, char *cort, char *buf, u2_t * mfn)
  37. {
  38.   u2_t k, fn, n, scsize, type;
  39.   i4_t t, sst;
  40.   char *arrpnt[BD_PAGESIZE];
  41.   u2_t arrsz[BD_PAGESIZE];
  42.   char *val, *newval, *endsc, *a, *sc;
  43.   i4_t size;
  44.   
  45.   tuple_break (cort, arrpnt, arrsz, df, fdf, fields_n);  
  46.   scsize = scscal (cort);
  47.   sst = 1;
  48.   for (endsc = buf, a = buf + scsize; endsc < a;)
  49.     *endsc++ = *cort++ & ~EOSC;
  50.   for (n = 0; (t = selsc1 (&fc, sst++)) != ENDSC; n++)
  51.     {
  52.       fn = mfn[n];
  53.       if (t == EQ)
  54. continue;
  55.       if (t == NEQ)
  56. {
  57.   type=(df + fn)->field_type;
  58.   if(type == T1B || type == T2B || type == T4B || type == TFLOAT)
  59.     fval += size2b;
  60.   newval = proval (fval, type);
  61.   arrpnt[fn] = fval;
  62.   arrsz[fn] = newval - fval;
  63.   fval = newval;
  64.         }
  65.       else
  66. arrpnt[fn] = NULL;
  67.       if (fn < fdf)
  68. continue;
  69.       k = fn - fdf;
  70.       sc = buf + 1;
  71.       if (k >= 7)
  72. {
  73.           sc += k / 7;
  74.   k = k % 7;
  75. }
  76.       while (endsc <= sc)
  77. *endsc++ = 0;
  78.       if (t == NEQ)
  79. *sc |= BITVL(k); /* write 1 in a new tuple scale */
  80.       else
  81. *sc &= ~BITVL(k);
  82.     }
  83.   while (*(--endsc) == 0);
  84.   *endsc++ |= EOSC;
  85.   val = endsc;
  86.   for (fn = 0; fn < fields_n; fn++)
  87.     if ((a = arrpnt[fn]) != NULL)
  88.       {
  89.         size = arrsz[fn];
  90.         bcopy (a, val, size);
  91.         val += size;
  92.       }
  93.   return (val - buf);
  94. }