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

SQL Server

开发平台:

Unix_Linux

  1. /*  dessench.h  - internal structures of synchronizer
  2.  *                Kernel of GNU SQL-server. Synchronizer    
  3.  *
  4.  * This file is a part of GNU SQL Server
  5.  *
  6.  *  Copyright (c) 1996, 1997, Free Software Foundation, Inc
  7.  *  Developed at the Institute of System Programming
  8.  *  This file is written by  Vera Ponomarenko
  9.  *
  10.  *  This program is free software; you can redistribute it and/or modify
  11.  *  it under the terms of the GNU General Public License as published by
  12.  *  the Free Software Foundation; either version 2 of the License, or
  13.  *  (at your option) any later version.
  14.  *
  15.  *  This program is distributed in the hope that it will be useful,
  16.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  *  GNU General Public License for more details.
  19.  *
  20.  *  You should have received a copy of the GNU General Public License
  21.  *  along with this program; if not, write to the Free Software
  22.  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  23.  *
  24.  *  Contacts:   gss@ispras.ru
  25.  *
  26.  */
  27. /* $Id: dessnch.h,v 1.245 1997/03/31 03:46:38 kml Exp $ */
  28.         /* Internal structures of synchronizer */
  29. #include "destrn.h"
  30. #include <stdio.h>
  31. #define TRNUM   100     /* the number of transactions*/
  32. #define LBSIZE   13     /* initial size of locks area*/
  33. struct des_tran {               /* transaction descriptor */
  34.         char    *ptlb;              /* locks area pointer */
  35.         u2_t   idtr;               /* transaction identifier */
  36.         struct  des_cp *plcp;       /* the last checkpoint pointer */
  37.         struct  des_tran *pbltr;    /* blocking transaction identifier pointer */
  38.         struct  des_lock *pwlock;   /* the first waiting lock pointer */
  39.         char    *firstfree;         /* the first free byte pointer of locks area */
  40.         i4_t    freelb;             /* free bytes quantity of locks area */
  41.         COST    trcost;             /* current transaction cost */
  42. };
  43. struct des_rel {                /* relation descriptor */
  44.         struct  id_ob     idrel;     /* relation identifier */
  45.         struct  des_rel   *frellist; /* forward reference on relations list */
  46.         struct  des_rel   *brellist; /* back reference on relations list */
  47.         struct  des_lock  *rof;      /* pointer to beginning of locks list to a relation */
  48.         struct  des_lock  *rob;      /* pointer to end of locks list to a relation */
  49.         u2_t   rfn;                 /* the number of relation fields */
  50. };
  51. struct des_cp {                 /* checkpoint descriptor */
  52.         u2_t   dls;                 /* checkpoint descriptor size */
  53.         CPNM    cpnum;               /* a checkpoint number */
  54.         struct  des_cp    *pdcp;     /* previous checkpoint descriptor pointer */
  55.         COST    cpcost;              /* transaction cost up to this checkpoint */
  56. };
  57. struct des_lock {               /* lock descriptor */
  58.         u2_t   dls;                 /* lock descriptor size */
  59.         char    lockin;              /* lock type */
  60.         struct  des_tran *tran;      /* transaction descriptor pointer */
  61.         struct  des_rel  *rel;       /* relation descriptor pointer */
  62.         struct  des_lock  *of;       /* forward reference on locks list to a relation */
  63.         struct  des_lock  *ob;       /* back reference on locks list to a relation */
  64.         struct  des_wlock *Ddown;    /* down reference on blocking tree */
  65. };
  66. struct des_wlock {              /* the first waiting lock descriptor */
  67.         struct  des_lock  l;
  68.         struct  des_lock  *Dup;      /* up reference on blocking tree */
  69.         struct  des_wlock *Dqueue;   /* reference on blocker queue */
  70.         COST    newcost;             /* new arrival cost */
  71. };
  72. #define  bhsize sizeof(struct block_head)
  73. #define  rfsize sizeof(struct des_field)
  74. #define  relsize sizeof(struct des_rel)
  75. #define  cpsize sizeof(struct des_cp)
  76. #define  locksize sizeof(struct des_lock)
  77. #define  wlocksize sizeof(struct des_wlock)
  78. #define  size1b sizeof(i1_t)
  79. #define  size2b sizeof(i2_t)
  80. #define  size4b sizeof(i4_t)
  81. #define  wlsize wlocksize-locksize