summaryrefslogtreecommitdiff
path: root/storage/ndb/src/old_files/rep/storage/GCIContainerPS.cpp
blob: 5adb53f965c195ab472682855cc9a01c5729572a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/* Copyright (C) 2003 MySQL AB

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */

#include "GCIContainerPS.hpp"
#include <NdbOut.hpp>
#include <NdbMem.h>
#include <new>

GCIContainerPS::GCIContainerPS(Uint32 maxNoOfNodeGrps) 
{
  m_container = new GCIContainer(maxNoOfNodeGrps);
  if (!m_container) REPABORT("Could not allocate new GCIContainer");
}

GCIContainerPS::~GCIContainerPS() 
{
  delete m_container;
}

void
GCIContainerPS::setNodeGroupInfo(NodeGroupInfo * info) 
{
  m_nodeGroupInfo=info;
};

void 
GCIContainerPS::createGCIBuffer(Uint32 gci, Uint32 id) 
{
  m_container->createGCIBuffer(gci, id);
}

void 
GCIContainerPS::getAvailableGCIBuffers(Uint32 id /*nodegrp */, 
				       Uint32 * first, Uint32 * last) {

  Uint32 nodeId = m_nodeGroupInfo->getPrimaryNode(id);
  if(!nodeId) {
    *first = 1;
    *last  = 0;
    return;
  }

  /** 
   *@todo do smart stuff with this!
   */
  m_container->getAvailableGCIBuffers(nodeId, first, last);
	   
}
  
void 
GCIContainerPS::destroyGCIBuffersBeforeGCI(Uint32 gci) 
{
  //for each node in every nodeGrp do:
  NodeGroupInfo::iterator * it;  
  for(Uint32 i=0; i<m_nodeGroupInfo->getNoOfNodeGroups(); i++) {
    it = new NodeGroupInfo::iterator(i, m_nodeGroupInfo);
    for(NodeConnectInfo * nci=it->first(); it->exists();nci=it->next()) {
      m_container->destroyGCIBuffersBeforeGCI(gci, nci->nodeId);
    }
    delete it;
  }
}

void
GCIContainerPS::insertLogRecord(Uint32 id, Uint32 tableId, Uint32 operation,
				class LinearSectionPtr ptr[3], Uint32 gci) 
{
  m_container->insertLogRecord(id, tableId, operation, ptr, gci);
}

void
GCIContainerPS::insertMetaRecord(Uint32 id, Uint32 tableId, 
				 class LinearSectionPtr ptr[3], Uint32 gci) 
{
  m_container->insertMetaRecord(id, tableId, ptr, gci);
}

void
GCIContainerPS::setCompleted(Uint32 gci, Uint32 id) 
{
  m_container->setCompleted(gci, id);
}

GCIBuffer *
GCIContainerPS::getGCIBuffer(Uint32 gci, Uint32 id) 
{
  return m_container->getGCIBuffer(gci, id);
}

/**
 * @todo: fix return value
 */
bool
GCIContainerPS::destroyGCIBuffer(Uint32 gci, Uint32 id) 
{
  //for each node in  nodeGrp id  do:
  NodeGroupInfo::iterator * it;  
  it = new NodeGroupInfo::iterator(id, m_nodeGroupInfo);
  for(NodeConnectInfo * nci=it->first(); it->exists();nci=it->next()) 
  {
    if(!m_container->destroyGCIBuffer(gci, nci->nodeId)) 
    {
      delete it;
      return false;
    }
  }
  delete it;
  return true;
}

bool
GCIContainerPS::reset() 
{
  return m_container->reset();
}