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 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318
|
/* Copyright (c) 2003-2005 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; version 2 of the License.
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */
#ifndef NODE_STATE_HPP
#define NODE_STATE_HPP
#include <NdbOut.hpp>
#include <NodeBitmask.hpp>
class NodeState {
public:
enum StartLevel {
/**
* SL_NOTHING
* Nothing is started
*/
SL_NOTHING = 0,
/**
* SL_CMVMI
* CMVMI is started
* Listening to management server
* Qmgr knows nothing...
*/
SL_CMVMI = 1,
/**
* SL_STARTING
* All blocks are starting
* Initial or restart
* During this phase is <b>startPhase</b> valid
*/
SL_STARTING = 2,
/**
* The database is started open for connections
*/
SL_STARTED = 3,
SL_SINGLEUSER = 4,
/**
* SL_STOPPING_1 - Inform API
* API is informed not to start transactions on node
* The database is about to close
*
* New TcSeize(s) are refused (TcSeizeRef)
*/
SL_STOPPING_1 = 5,
/**
* SL_STOPPING_2 - Close TC
* New transactions(TC) are refused
*/
SL_STOPPING_2 = 6,
/**
* SL_STOPPING_3 - Wait for reads in LQH
* No transactions are running in TC
* New scans(s) and read(s) are refused in LQH
* NS: The node is not Primary for any fragment
* NS: No node is allow to start
*/
SL_STOPPING_3 = 7,
/**
* SL_STOPPING_4 - Close LQH
* Node is out of DIGETNODES
* Insert/Update/Delete can still be running in LQH
* GCP is refused
* Node is not startable w.o Node Recovery
*/
SL_STOPPING_4 = 8
};
enum StartType {
ST_INITIAL_START = 0,
ST_SYSTEM_RESTART = 1,
ST_NODE_RESTART = 2,
ST_INITIAL_NODE_RESTART = 3,
ST_ILLEGAL_TYPE = 4
};
/**
* Length in 32-bit words
*/
STATIC_CONST( DataLength = 8 + NdbNodeBitmask::Size );
/**
* Constructor(s)
*/
NodeState();
NodeState(StartLevel);
NodeState(StartLevel, bool systemShutdown);
NodeState(StartLevel, Uint32 startPhase, StartType);
void init();
/**
* Current start level
*/
Uint32 startLevel;
/**
* Node group
*/
Uint32 nodeGroup; // valid when startLevel == SL_STARTING
/**
* Dynamic id
*/
union {
Uint32 dynamicId; // valid when startLevel == SL_STARTING to API
Uint32 masterNodeId; // When from cntr
};
/**
*
*/
union {
struct {
Uint32 startPhase; // valid when startLevel == SL_STARTING
Uint32 restartType; // valid when startLevel == SL_STARTING
} starting;
struct {
Uint32 systemShutdown; // valid when startLevel == SL_STOPPING_{X}
Uint32 timeout;
Uint32 alarmTime;
} stopping;
};
Uint32 singleUserMode;
Uint32 singleUserApi; //the single user node
BitmaskPOD<NdbNodeBitmask::Size> m_connected_nodes;
void setDynamicId(Uint32 dynamic);
void setNodeGroup(Uint32 group);
void setSingleUser(Uint32 s);
void setSingleUserApi(Uint32 n);
/**
* Is a node restart in progress (ordinary or initial)
*/
bool getNodeRestartInProgress() const;
/**
* Is a system restart ongoing
*/
bool getSystemRestartInProgress() const;
/**
* Is in single user mode?
*/
bool getSingleUserMode() const;
/**
* Is in single user mode
*/
Uint32 getSingleUserApi() const;
friend NdbOut & operator<<(NdbOut&, const NodeState&);
};
inline
NodeState::NodeState(){
init();
}
inline
void
NodeState::init(){
startLevel = SL_CMVMI;
nodeGroup = 0xFFFFFFFF;
dynamicId = 0xFFFFFFFF;
singleUserMode = 0;
singleUserApi = 0xFFFFFFFF;
m_connected_nodes.clear();
}
inline
NodeState::NodeState(StartLevel sl){
init();
startLevel = sl;
singleUserMode = 0;
singleUserApi = 0xFFFFFFFF;
}
inline
NodeState::NodeState(StartLevel sl, Uint32 sp, StartType typeOfStart){
init();
startLevel = sl;
starting.startPhase = sp;
starting.restartType = typeOfStart;
singleUserMode = 0;
singleUserApi = 0xFFFFFFFF;
}
inline
NodeState::NodeState(StartLevel sl, bool sys){
init();
startLevel = sl;
stopping.systemShutdown = sys;
singleUserMode = 0;
singleUserApi = 0xFFFFFFFF;
}
inline
void NodeState::setDynamicId(Uint32 dynamic){
dynamicId = dynamic;
}
inline
void NodeState::setNodeGroup(Uint32 group){
nodeGroup = group;
}
inline
void NodeState::setSingleUser(Uint32 s) {
singleUserMode = s;
}
inline
void NodeState::setSingleUserApi(Uint32 n) {
singleUserApi = n;
}
inline
bool NodeState::getNodeRestartInProgress() const {
return startLevel == SL_STARTING &&
(starting.restartType == ST_NODE_RESTART ||
starting.restartType == ST_INITIAL_NODE_RESTART);
}
inline
bool NodeState::getSingleUserMode() const {
return singleUserMode;
}
inline
Uint32 NodeState::getSingleUserApi() const {
return singleUserApi;
}
inline
bool NodeState::getSystemRestartInProgress() const {
return startLevel == SL_STARTING && starting.restartType == ST_SYSTEM_RESTART;
}
inline
NdbOut &
operator<<(NdbOut& ndbout, const NodeState & state){
ndbout << "[NodeState: startLevel: ";
switch(state.startLevel){
case NodeState::SL_NOTHING:
ndbout << "<NOTHING> ]";
break;
case NodeState::SL_CMVMI:
ndbout << "<CMVMI> ]";
break;
case NodeState::SL_STARTING:
ndbout << "<STARTING type: ";
switch(state.starting.restartType){
case NodeState::ST_INITIAL_START:
ndbout << " INITIAL START";
break;
case NodeState::ST_SYSTEM_RESTART:
ndbout << " SYSTEM RESTART ";
break;
case NodeState::ST_NODE_RESTART:
ndbout << " NODE RESTART ";
break;
case NodeState::ST_INITIAL_NODE_RESTART:
ndbout << " INITIAL NODE RESTART ";
break;
case NodeState::ST_ILLEGAL_TYPE:
default:
ndbout << " UNKNOWN " << state.starting.restartType;
}
ndbout << " phase: " << state.starting.startPhase << "> ]";
break;
case NodeState::SL_STARTED:
ndbout << "<STARTED> ]";
break;
case NodeState::SL_STOPPING_1:
ndbout << "<STOPPING 1 sys: " << state.stopping.systemShutdown << "> ]";
break;
case NodeState::SL_STOPPING_2:
ndbout << "<STOPPING 2 sys: " << state.stopping.systemShutdown << "> ]";
break;
case NodeState::SL_STOPPING_3:
ndbout << "<STOPPING 3 sys: " << state.stopping.systemShutdown << "> ]";
break;
case NodeState::SL_STOPPING_4:
ndbout << "<STOPPING 4 sys: " << state.stopping.systemShutdown << "> ]";
break;
default:
ndbout << "<UNKNOWN " << state.startLevel << "> ]";
}
return ndbout;
}
#endif
|