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

SQL Server

开发平台:

Unix_Linux

  1. /*
  2.  *  keyfrm.c  - Key forming for some 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: keyfrm.c,v 1.245 1997/03/31 03:46:38 kml Exp $ */
  29. #include "xmem.h"
  30. #include "destrn.h"
  31. #include "strml.h"
  32. #include "fdcltrn.h"
  33. void
  34. keyform (struct ldesind *desind, u2_t fdf, char *mas, char *cort)
  35. { /* mas - to, cort - from */
  36.   u2_t kn, k, num_bit, fnk, sz, fn;
  37.   struct des_field *df;
  38.   u2_t *afn;
  39.   char *b;
  40.   char *arrpnt[BD_PAGESIZE];
  41.   u2_t arrsz[BD_PAGESIZE];  
  42.   kn = desind->ldi.kifn & ~UNIQ & MSK21B;
  43.   df = desind->pdf;
  44.   afn = (u2_t *) (desind + 1);
  45.   fn = desind->dri->desrbd.fieldnum;
  46.   tuple_break (cort, arrpnt, arrsz, df, fdf, fn);
  47.   
  48.   *mas = 0;  
  49.   for (num_bit = k = 0; k < kn; k++, num_bit++)
  50.     {
  51.       if (num_bit == 7)
  52. {
  53.   num_bit = 0;
  54.   *(++mas) = 0;
  55. }
  56.       if (arrpnt[afn[k]] != NULL)
  57. *mas |= BITVL(num_bit); /* read 1 in key scale */
  58.     }
  59.   
  60.   if ( *mas == 0)
  61.     mas--;
  62.   *mas |= EOSC;  
  63.   mas++;
  64.   for ( k = 0; k < kn; k++)
  65.     {
  66.       fnk = afn[k];
  67.       if ( (b = arrpnt[fnk]) != NULL)
  68. {
  69.   if ( (sz = arrsz[fnk]) != 0 )
  70.             {
  71.               bcopy (b, mas, sz);
  72.               mas += sz;
  73.             }
  74. }
  75.     }
  76. }
  77. char *
  78. remval (char *aval, char **a, u2_t type)
  79. /* a - to, aval - from */
  80. {
  81.   u2_t size = 0;
  82.   switch (type)
  83.     {
  84.     case T1B:
  85.       size = size1b;
  86.       break;
  87.     case T2B:
  88.       size = size2b;
  89.       break;
  90.     case TFLOAT:
  91.     case T4B:
  92.       size = size4b;
  93.       break;
  94.     case TFL:
  95.     case TCH:
  96.       size = t2bunpack (aval);
  97.       aval += size2b;
  98.       t2bpack (size, *a);
  99.       *a += size2b;
  100.       break;
  101.     default:
  102.       printf ("TR.remval:That data type is false");
  103.       break;
  104.     }
  105.   bcopy (aval, *a, size);
  106.   *a += size;
  107.   aval += size;
  108.   return (aval);
  109. }