summaryrefslogtreecommitdiff
path: root/ndb/src/old_files/rep/storage/NodeGroup.cpp
blob: 33451efb1045f08cc55b75f864b063fda66ac676 (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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/* 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 "NodeGroup.hpp"
#include <NdbOut.hpp>

//#define NODE_GROUP_DEBUG

NodeGroup::NodeGroup(Uint32 nodeGrp) {
  m_nodeGrp = nodeGrp;
  m_primaryNode = 0;
}

NodeGroup::~NodeGroup() {
  for(Uint32 i=0; i<m_nodeConnectList.size(); i++) {
    delete m_nodeConnectList[i];
    m_nodeConnectList.erase(i);
  }
}

void 
NodeGroup::addNode(Uint32 nodeId, bool connected) {
#ifdef NODE_GROUP_DEBUG
  ndbout_c("NodeGroup: addNode(nodeId=%d, connected=%d), nodegrp=%d",
	   nodeId, connected, m_nodeGrp);
#endif

  /**
   *  If node already in node group, then do nothing except
   *  setting the connect statusflag for the node (in case it
   *  has changed).
   */
  for(Uint32 i=0; i < m_nodeConnectList.size(); i++) 
    if(m_nodeConnectList[i]->nodeId == nodeId) {
      m_nodeConnectList[i]->connected = connected;
      return;
    }

  /**
   *  If node not already in node group, then add node
   */
  m_nodeConnectList.push_back(new NodeConnectInfo(nodeId, connected));
  sort();

#ifdef NODE_GROUP_DEBUG
  for(Uint32 i=0; i < m_nodeConnectList.size(); i++) 
    ndbout_c("NodeGroup: NodeId=%d", m_nodeConnectList[i]->nodeId);
#endif
}

/**
 * crappy sort
 */
void NodeGroup::sort() {
  NodeConnectInfo * tmp;
  if(m_nodeConnectList.size()<2)
    return;
  for(Uint32 i=0; i < m_nodeConnectList.size()-1; i++) {
    for(Uint32 j=m_nodeConnectList.size()-1;j>i+1; j--) {
      if(m_nodeConnectList[j]->nodeId < m_nodeConnectList[j-1]->nodeId) {
	tmp=m_nodeConnectList[j];
	m_nodeConnectList[j]=m_nodeConnectList[j-1];
	m_nodeConnectList[j-1]=tmp;
      }
    }
  }
}

Uint32	
NodeGroup::getFirstConnectedNode() {
  for(Uint32 i=0; i<m_nodeConnectList.size(); i++){
    if(m_nodeConnectList[i]->connected) 
      return m_nodeConnectList[i]->nodeId;
  }
  return 0;
}

Uint32 
NodeGroup::getNodeGrp() {
  return m_nodeGrp;
}

Vector <NodeConnectInfo *> *
NodeGroup::getNodeConnectList(){
  return &m_nodeConnectList;
}

void
NodeGroup::setNodeConnectStatus(Uint32 nodeId, bool connected) {
  for(Uint32 i=0; i<m_nodeConnectList.size(); i++){
    if(m_nodeConnectList[i]->nodeId==nodeId) {
      m_nodeConnectList[i]->connected=connected;
      break;
    }
  }
} 

bool
NodeGroup::isConnected(Uint32 nodeId) {
  for(Uint32 i=0; i<m_nodeConnectList.size(); i++){
    if(m_nodeConnectList[i]->nodeId == nodeId) {
      return m_nodeConnectList[i]->connected;
    }
  }
  REPABORT1("Check for non-existing node to be connected", nodeId);
}


bool
NodeGroup::fullyConnected() {
  for(Uint32 i=0; i<m_nodeConnectList.size(); i++){
    if(!(m_nodeConnectList[i]->connected)) 
      return false;
  }
  return true;
}

bool	
NodeGroup::connectedNodeGrp() {
  for(Uint32 i=0; i<m_nodeConnectList.size(); i++){
    if(m_nodeConnectList[i]->connected) {
      return true;
    }
  }
  return false;
}


bool
NodeGroup::exists(Uint32 nodeId) {
  for(Uint32 i=0;i<m_nodeConnectList.size();i++) {
    if(m_nodeConnectList[i]->nodeId==nodeId)
      return true;
  }  
  return false;
}