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

SQL Server

开发平台:

Unix_Linux

  1. /* synpr.c -  Synchronizator
  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: synpr.c,v 1.245 1997/03/31 03:46:38 kml Exp $ */
  28. #include "xmem.h"
  29. #include <sys/types.h>
  30. #include "dessnch.h"
  31. #include "fdclsyn.h"
  32. #define SEG_SYN_SIZE  11 /* segment degree size */
  33. struct des_tran artran[TRNUM];
  34. i4_t reg_tran_size;
  35. int
  36. synstart (u2_t trnum)
  37. {
  38.   struct des_tran *tr;
  39.   struct des_cp *cp;
  40.   register i4_t i;
  41.   /* find a free row in transaction descriptors table */
  42.   for (i = 0; i < TRNUM && artran[i].ptlb != NULL; i++);
  43.   if (i == (TRNUM + 1) && artran[i].ptlb != NULL)
  44.     error ("SYN: excess max transations number in DBMSn");
  45.   tr = artran + i;
  46.   reg_tran_size = 1 << LBSIZE;
  47.   tr->ptlb = (char *) xmalloc ((i4_t) reg_tran_size);
  48.   tr->idtr = trnum;
  49.   tr->plcp = (struct des_cp *) tr->ptlb;
  50.   tr->pwlock = NULL;
  51.   tr->freelb = reg_tran_size - cpsize;
  52.   tr->firstfree = tr->ptlb + cpsize;
  53.   tr->trcost = 0;
  54.   cp = (struct des_cp *) tr->ptlb;
  55.   cp->dls = cpsize;
  56.   cp->pdcp = NULL;
  57.   cp->cpnum = 1;
  58.   cp->cpcost = 0;
  59.   return (0);
  60. }
  61. CPNM 
  62. svpnt (u2_t trnum)
  63. {
  64.   struct des_tran *tr;
  65.   struct des_cp *cp;
  66.   i4_t i;
  67.   for (i = 0; i < TRNUM && artran[i].idtr != trnum; i++);
  68.   tr = artran + i;
  69.   if (cpsize > tr->freelb)
  70.     increase (tr);
  71.   cp = (struct des_cp *) tr->firstfree;
  72.   tr->firstfree += cpsize;
  73.   tr->freelb -= cpsize;
  74.   cp->dls = cpsize;
  75.   cp->pdcp = tr->plcp;
  76.   cp->cpnum = tr->plcp->cpnum + 1;
  77.   cp->cpcost = tr->trcost;
  78.   tr->plcp = cp;
  79.   return (cp->cpnum);
  80. }
  81. int
  82. unltsp (u2_t trnum, CPNM cpnum)
  83. {
  84.   struct des_tran *tr;
  85.   struct des_lock *a;
  86.   struct des_cp *cpd;
  87.   i4_t i;
  88.   for (i = 0; i < TRNUM && artran[i].idtr != trnum; i++);
  89.   tr = artran + i;
  90.   cpd = tr->plcp;
  91.   if (cpnum == 0)
  92.     cpnum = 1;
  93.   if (cpd->cpnum < cpnum)
  94.     cpnum = 1;
  95.   while (cpd->cpnum != cpnum)
  96.     cpd = cpd->pdcp;
  97.   unlock (tr, a = (struct des_lock *) ((char *) cpd + cpsize));
  98.   i = tr->firstfree - (char *) a;
  99.   tr->plcp = cpd;
  100.   tr->pwlock = NULL;
  101.   tr->pbltr = NULL;
  102.   tr->freelb += i;
  103.   tr->firstfree -= i;
  104.   tr->trcost = cpd->cpcost;
  105.   return (0);
  106. }
  107. int
  108. commit (u2_t trnum)
  109. {
  110.   struct des_tran *tr;
  111.   i4_t i;
  112.   for (i = 0; i < TRNUM && artran[i].idtr != trnum; i++);
  113.   tr = artran + i;
  114.   unlock (tr, (struct des_lock *) (tr->ptlb + cpsize));
  115.   xfree ((void *) tr->ptlb);
  116.   tr->ptlb = NULL;
  117.   tr->idtr = (u2_t) ~ 0;
  118.   return (0);
  119. }
  120. void
  121. error (char *s)
  122. {
  123.   printf ("error: %sn", s);
  124.   exit (0);
  125. }