| 1 | /* ======================================================================== *\
|
|---|
| 2 | !
|
|---|
| 3 | ! *
|
|---|
| 4 | ! * This file is part of Stesy, the MAGIC Steering System
|
|---|
| 5 | ! * Software. It is distributed to you in the hope that it can be a useful
|
|---|
| 6 | ! * and timesaving tool in analysing Data of imaging Cerenkov telescopes.
|
|---|
| 7 | ! * It is distributed WITHOUT ANY WARRANTY.
|
|---|
| 8 | ! *
|
|---|
| 9 | ! * Permission to use, copy, modify and distribute this software and its
|
|---|
| 10 | ! * documentation for any purpose is hereby granted without fee,
|
|---|
| 11 | ! * provided that the above copyright notice appear in all copies and
|
|---|
| 12 | ! * that both that copyright notice and this permission notice appear
|
|---|
| 13 | ! * in supporting documentation. It is provided "as is" without express
|
|---|
| 14 | ! * or implied warranty.
|
|---|
| 15 | ! *
|
|---|
| 16 | !
|
|---|
| 17 | !
|
|---|
| 18 | ! Author(s): Thomas Bretz <mailto:tbretz@uni-sw.gwdg.de>, 2001
|
|---|
| 19 | !
|
|---|
| 20 | ! Copyright: MAGIC Software Development, 2000-2001
|
|---|
| 21 | !
|
|---|
| 22 | !
|
|---|
| 23 | \* ======================================================================== */
|
|---|
| 24 |
|
|---|
| 25 | ///////////////////////////////////////////////////////////////////////
|
|---|
| 26 | //
|
|---|
| 27 | // Network
|
|---|
| 28 | //
|
|---|
| 29 | // is a collection of nodes which coordinates the network
|
|---|
| 30 | //
|
|---|
| 31 | ///////////////////////////////////////////////////////////////////////
|
|---|
| 32 | #include "network.h"
|
|---|
| 33 |
|
|---|
| 34 | #include <iostream.h> // cout
|
|---|
| 35 | #include <iomanip.h> // setw, setfill
|
|---|
| 36 |
|
|---|
| 37 | ClassImp(Network);
|
|---|
| 38 |
|
|---|
| 39 | // --------------------------------------------------------------------------
|
|---|
| 40 | //
|
|---|
| 41 | // Start the canopen module
|
|---|
| 42 | // Initialize all nodes (calling NodeDrv::Init()
|
|---|
| 43 | //
|
|---|
| 44 | void Network::Start()
|
|---|
| 45 | {
|
|---|
| 46 | lout << "- Starting network." << endl;
|
|---|
| 47 |
|
|---|
| 48 | VmodIcan::Start();
|
|---|
| 49 | InitNodes();
|
|---|
| 50 |
|
|---|
| 51 | lout << "- Network started." << endl;
|
|---|
| 52 | }
|
|---|
| 53 |
|
|---|
| 54 | // --------------------------------------------------------------------------
|
|---|
| 55 | //
|
|---|
| 56 | // Stop all nodes, stop the can module
|
|---|
| 57 | //
|
|---|
| 58 | void Network::Stop()
|
|---|
| 59 | {
|
|---|
| 60 | lout << "- Stopping network." << endl;
|
|---|
| 61 |
|
|---|
| 62 | StopNodes();
|
|---|
| 63 | VmodIcan::Stop();
|
|---|
| 64 |
|
|---|
| 65 | lout << "- Network stopped." << endl;
|
|---|
| 66 | }
|
|---|
| 67 |
|
|---|
| 68 | // --------------------------------------------------------------------------
|
|---|
| 69 | //
|
|---|
| 70 | // Initialize the network, set all nodes to NULL (n/a)
|
|---|
| 71 | //
|
|---|
| 72 | Network::Network(const char *dev, const int baud, MLog &out) : CanOpen(dev, baud, out)
|
|---|
| 73 | {
|
|---|
| 74 | for (int i=0; i<32; i++)
|
|---|
| 75 | fNodes[i] = NULL;
|
|---|
| 76 |
|
|---|
| 77 | lout << "- Network initialized." << endl;
|
|---|
| 78 | }
|
|---|
| 79 |
|
|---|
| 80 | // --------------------------------------------------------------------------
|
|---|
| 81 | //
|
|---|
| 82 | // Distributes the received SDO messages to the addressed nodes.
|
|---|
| 83 | // Depending on the received command either HandleSDO, HandleSDOOK or
|
|---|
| 84 | // HandleSDOError called.
|
|---|
| 85 | // HandleSDO: Handles a received value
|
|---|
| 86 | // HandleSDOOK: Handles the acknoledgment of a trasmitted SDO
|
|---|
| 87 | // HandleSDOError: Handles error occursion (see CanOpen standard)
|
|---|
| 88 | //
|
|---|
| 89 | void Network::HandleSDO(BYTE_t node, BYTE_t cmd, WORD_t idx, BYTE_t subidx, LWORD_t data, timeval_t *tv)
|
|---|
| 90 | {
|
|---|
| 91 | if (fNodes[node])
|
|---|
| 92 | switch (cmd)
|
|---|
| 93 | {
|
|---|
| 94 | case kSDO_TX4: // answer to 0x40 with 4 bytes of data
|
|---|
| 95 | fNodes[node]->HandleSDO(idx, subidx, data, tv);
|
|---|
| 96 | return;
|
|---|
| 97 |
|
|---|
| 98 | case kSDO_TX3: // answer to 0x40 with 2 bytes of data
|
|---|
| 99 | fNodes[node]->HandleSDO(idx, subidx, data&0xffff, tv);
|
|---|
| 100 | return;
|
|---|
| 101 |
|
|---|
| 102 | case kSDO_TX1: // answer to 0x40 with 1 byte of data
|
|---|
| 103 | fNodes[node]->HandleSDO(idx, subidx, data&0xff, tv);
|
|---|
| 104 | return;
|
|---|
| 105 |
|
|---|
| 106 | case kSDO_TX_OK: // answer to a SDO_TX message
|
|---|
| 107 | fNodes[node]->HandleSDOOK(idx, subidx, data, tv);
|
|---|
| 108 | return;
|
|---|
| 109 |
|
|---|
| 110 | case kSDO_TX_ERROR: // error message (instead of 0x60)
|
|---|
| 111 | fNodes[node]->HandleSDOError(data);
|
|---|
| 112 | return;
|
|---|
| 113 | }
|
|---|
| 114 |
|
|---|
| 115 | cout << dec << setfill('0');
|
|---|
| 116 | cout << "Network::HandleSDO: Node=" << (int)node << " Cmd=0x" << hex << (int)cmd << ": ";
|
|---|
| 117 | cout << "Sdo=" << idx << "/" << (int)subidx << ": 0x" << setw(8) << data;
|
|---|
| 118 | cout << endl;
|
|---|
| 119 | }
|
|---|
| 120 |
|
|---|
| 121 | // --------------------------------------------------------------------------
|
|---|
| 122 | //
|
|---|
| 123 | // Distributes PDO1 messages to the correspoding node calling HandlePDO1
|
|---|
| 124 | //
|
|---|
| 125 | void Network::HandlePDO1(BYTE_t node, BYTE_t *data, timeval_t *tv)
|
|---|
| 126 | {
|
|---|
| 127 | if (!fNodes[node])
|
|---|
| 128 | {
|
|---|
| 129 | cout << "Network::HandlePDO1: Node #" << dec << (int)node << " not found - PDO1: " << hex;
|
|---|
| 130 | for (int i=0; i<8; i++)
|
|---|
| 131 | cout << " 0x" << (int)data[i];
|
|---|
| 132 | cout << endl;
|
|---|
| 133 | return;
|
|---|
| 134 | }
|
|---|
| 135 |
|
|---|
| 136 | fNodes[node]->HandlePDO1(data, tv);
|
|---|
| 137 | }
|
|---|
| 138 |
|
|---|
| 139 | // --------------------------------------------------------------------------
|
|---|
| 140 | //
|
|---|
| 141 | // Distributes PDO2 messages to the correspoding node calling HandlePDO2
|
|---|
| 142 | //
|
|---|
| 143 | void Network::HandlePDO2(BYTE_t node, BYTE_t *data, timeval_t *tv)
|
|---|
| 144 | {
|
|---|
| 145 | if (!fNodes[node])
|
|---|
| 146 | {
|
|---|
| 147 | cout << "Network::HandlePDO2: Node #" << dec << (int)node << " not found - PDO2: " << hex;
|
|---|
| 148 | for (int i=0; i<8; i++)
|
|---|
| 149 | cout << " 0x" << (int)data[i];
|
|---|
| 150 | cout << endl;
|
|---|
| 151 | return;
|
|---|
| 152 | }
|
|---|
| 153 |
|
|---|
| 154 | fNodes[node]->HandlePDO2(data, tv);
|
|---|
| 155 | }
|
|---|
| 156 |
|
|---|
| 157 | // --------------------------------------------------------------------------
|
|---|
| 158 | //
|
|---|
| 159 | // Distributes PDO3 messages to the correspoding node calling HandlePDO3
|
|---|
| 160 | //
|
|---|
| 161 | void Network::HandlePDO3(BYTE_t node, BYTE_t *data, timeval_t *tv)
|
|---|
| 162 | {
|
|---|
| 163 | if (!fNodes[node])
|
|---|
| 164 | {
|
|---|
| 165 | cout << "Network::HandlePDO3: Node #" << dec << (int)node << " not found - PDO3: " << hex;
|
|---|
| 166 | for (int i=0; i<8; i++)
|
|---|
| 167 | cout << " 0x" << (int)data[i];
|
|---|
| 168 | cout << endl;
|
|---|
| 169 | return;
|
|---|
| 170 | }
|
|---|
| 171 |
|
|---|
| 172 | fNodes[node]->HandlePDO3(data, tv);
|
|---|
| 173 | }
|
|---|
| 174 |
|
|---|
| 175 | // --------------------------------------------------------------------------
|
|---|
| 176 | //
|
|---|
| 177 | // Distributes PDO4 messages to the correspoding node calling HandlePDO4
|
|---|
| 178 | //
|
|---|
| 179 | void Network::HandlePDO4(BYTE_t node, BYTE_t *data, timeval_t *tv)
|
|---|
| 180 | {
|
|---|
| 181 | if (!fNodes[node])
|
|---|
| 182 | {
|
|---|
| 183 | cout << "Network::HandlePDO4: Node #" << dec << (int)node << " not found - PDO4: " << hex;
|
|---|
| 184 | for (int i=0; i<8; i++)
|
|---|
| 185 | cout << " 0x" << (int)data[i];
|
|---|
| 186 | cout << endl;
|
|---|
| 187 | return;
|
|---|
| 188 | }
|
|---|
| 189 |
|
|---|
| 190 | fNodes[node]->HandlePDO4(data, tv);
|
|---|
| 191 | }
|
|---|
| 192 |
|
|---|
| 193 | // --------------------------------------------------------------------------
|
|---|
| 194 | //
|
|---|
| 195 | // Distributes Nodeguard messages to the correspoding node calling
|
|---|
| 196 | // HandleNodeguard
|
|---|
| 197 | //
|
|---|
| 198 | void Network::HandleNodeguard(BYTE_t node, timeval_t *tv)
|
|---|
| 199 | {
|
|---|
| 200 | if (!fNodes[node])
|
|---|
| 201 | {
|
|---|
| 202 | cout << "Network::HandleNodeguard: Node #" << dec << (int)node << " not found: Nodeguard." << endl;
|
|---|
| 203 | return;
|
|---|
| 204 | }
|
|---|
| 205 |
|
|---|
| 206 | fNodes[node]->HandleNodeguard(tv);
|
|---|
| 207 | }
|
|---|
| 208 |
|
|---|
| 209 | // --------------------------------------------------------------------------
|
|---|
| 210 | //
|
|---|
| 211 | // Distributes Emergency messages to the correspoding node calling
|
|---|
| 212 | // HandleEmergency
|
|---|
| 213 | //
|
|---|
| 214 | void Network::HandleEmergency(BYTE_t node, timeval_t *tv)
|
|---|
| 215 | {
|
|---|
| 216 | if (!fNodes[node])
|
|---|
| 217 | {
|
|---|
| 218 | cout << "Network::HandleEmergency: Node #" << dec << (int)node << " not found: Emergency." << endl;
|
|---|
| 219 | return;
|
|---|
| 220 | }
|
|---|
| 221 |
|
|---|
| 222 | fNodes[node]->HandleEmergency(tv);
|
|---|
| 223 | }
|
|---|
| 224 |
|
|---|
| 225 |
|
|---|
| 226 | // --------------------------------------------------------------------------
|
|---|
| 227 | //
|
|---|
| 228 | // Sets a node to a given nodedrv. The id is requested from the drv object.
|
|---|
| 229 | //
|
|---|
| 230 | void Network::SetNode(NodeDrv *drv)
|
|---|
| 231 | {
|
|---|
| 232 | const BYTE_t nodeid = drv->GetId();
|
|---|
| 233 |
|
|---|
| 234 | if (nodeid>31)
|
|---|
| 235 | {
|
|---|
| 236 | cout << "SetNode - Error: Only node Numbers < 32 are allowed"<< endl;
|
|---|
| 237 | return;
|
|---|
| 238 | }
|
|---|
| 239 |
|
|---|
| 240 | fNodes[nodeid] = drv;
|
|---|
| 241 | }
|
|---|
| 242 |
|
|---|
| 243 | // --------------------------------------------------------------------------
|
|---|
| 244 | //
|
|---|
| 245 | // Initializes all nodes calling InitDevice
|
|---|
| 246 | //
|
|---|
| 247 | void Network::InitNodes()
|
|---|
| 248 | {
|
|---|
| 249 | for (int i=0; i<32; i++)
|
|---|
| 250 | if (fNodes[i])
|
|---|
| 251 | {
|
|---|
| 252 | lout << "- Setting up Node #" << dec << i << " (";
|
|---|
| 253 | lout << fNodes[i]->GetNodeName() << ")" << endl;
|
|---|
| 254 | if (fNodes[i]->InitDevice(this))
|
|---|
| 255 | fNodeInitialized[i] = TRUE;
|
|---|
| 256 | else
|
|---|
| 257 | lout << "- " << fNodes[i]->GetNodeName() << ": InitDevice failed." << endl;
|
|---|
| 258 | }
|
|---|
| 259 | lout << "- All Nodes setup." << endl;
|
|---|
| 260 | }
|
|---|
| 261 |
|
|---|
| 262 | // --------------------------------------------------------------------------
|
|---|
| 263 | //
|
|---|
| 264 | // Stop all nodes calling StopDevice
|
|---|
| 265 | //
|
|---|
| 266 | void Network::StopNodes()
|
|---|
| 267 | {
|
|---|
| 268 | for (int i=0; i<32; i++)
|
|---|
| 269 | if (fNodes[i] && fNodeInitialized[i])
|
|---|
| 270 | {
|
|---|
| 271 | lout << "- Stopping Node #" << dec << i;
|
|---|
| 272 | lout << " (" << fNodes[i]->GetNodeName() << ")" << endl;
|
|---|
| 273 | fNodes[i]->StopDevice();
|
|---|
| 274 | }
|
|---|
| 275 | lout << "- All Nodes stopped." << endl;
|
|---|
| 276 | }
|
|---|
| 277 |
|
|---|
| 278 | // --------------------------------------------------------------------------
|
|---|
| 279 | //
|
|---|
| 280 | // Print all errors which are currently set
|
|---|
| 281 | //
|
|---|
| 282 | void Network::PrintError() const
|
|---|
| 283 | {
|
|---|
| 284 | for (int i=0; i<32; i++)
|
|---|
| 285 | {
|
|---|
| 286 | if (!fNodes[i])
|
|---|
| 287 | continue;
|
|---|
| 288 |
|
|---|
| 289 | if (!fNodes[i]->HasError())
|
|---|
| 290 | continue;
|
|---|
| 291 |
|
|---|
| 292 | lout << "- Node #" << dec << i << " '" << fNodes[i]->GetNodeName() << "' ";
|
|---|
| 293 |
|
|---|
| 294 | if (fNodes[i]->GetError() <= 0)
|
|---|
| 295 | lout << "Error occured." << endl;
|
|---|
| 296 | else
|
|---|
| 297 | lout << "has error #" << fNodes[i]->GetError() << endl;
|
|---|
| 298 | }
|
|---|
| 299 | }
|
|---|
| 300 |
|
|---|
| 301 | // --------------------------------------------------------------------------
|
|---|
| 302 | //
|
|---|
| 303 | // returns true if one of the nodes has the error-flag set (HasError).
|
|---|
| 304 | //
|
|---|
| 305 | bool Network::HasError() const
|
|---|
| 306 | {
|
|---|
| 307 | bool rc = false;
|
|---|
| 308 |
|
|---|
| 309 | for (int i=0; i<32; i++)
|
|---|
| 310 | {
|
|---|
| 311 | if (!fNodes[i])
|
|---|
| 312 | continue;
|
|---|
| 313 |
|
|---|
| 314 | if (!fNodes[i]->HasError())
|
|---|
| 315 | continue;
|
|---|
| 316 |
|
|---|
| 317 | rc = true;
|
|---|
| 318 |
|
|---|
| 319 | if (fNodes[i]->GetError() <= 0)
|
|---|
| 320 | continue;
|
|---|
| 321 |
|
|---|
| 322 | //lout << "- Node #" << dec << i << " '" << fNodes[i]->GetNodeName();
|
|---|
| 323 | //lout << "' has error #" << fNodes[i]->GetError() << endl;
|
|---|
| 324 | }
|
|---|
| 325 |
|
|---|
| 326 | return rc;
|
|---|
| 327 | }
|
|---|
| 328 |
|
|---|
| 329 | // --------------------------------------------------------------------------
|
|---|
| 330 | //
|
|---|
| 331 | // returns true if one of the nodes is a zombie node
|
|---|
| 332 | //
|
|---|
| 333 | bool Network::HasZombie() const
|
|---|
| 334 | {
|
|---|
| 335 | for (int i=0; i<32; i++)
|
|---|
| 336 | if (fNodes[i])
|
|---|
| 337 | if (fNodes[i]->IsZombieNode())
|
|---|
| 338 | return true;
|
|---|
| 339 |
|
|---|
| 340 | return false;
|
|---|
| 341 | }
|
|---|
| 342 |
|
|---|
| 343 | // --------------------------------------------------------------------------
|
|---|
| 344 | //
|
|---|
| 345 | // try to reboot all zombie nodes to get them working again. all other
|
|---|
| 346 | // nodes are left untouched.
|
|---|
| 347 | //
|
|---|
| 348 | bool Network::RebootZombies()
|
|---|
| 349 | {
|
|---|
| 350 | bool rc = true;
|
|---|
| 351 |
|
|---|
| 352 | lout << "- Trying to reboot all Zombies..." << endl;
|
|---|
| 353 | for (int i=0; i<32; i++)
|
|---|
| 354 | if (fNodes[i])
|
|---|
| 355 | if (fNodes[i]->IsZombieNode())
|
|---|
| 356 | if (!fNodes[i]->Reboot())
|
|---|
| 357 | {
|
|---|
| 358 | lout << "- Failed to reboot " << fNodes[i]->GetNodeName() << "." << endl;
|
|---|
| 359 | rc = false;
|
|---|
| 360 | }
|
|---|
| 361 |
|
|---|
| 362 | if (rc)
|
|---|
| 363 | lout << "- All Zombies rebooted." << endl;
|
|---|
| 364 |
|
|---|
| 365 | return rc;
|
|---|
| 366 | }
|
|---|
| 367 |
|
|---|
| 368 | // --------------------------------------------------------------------------
|
|---|
| 369 | //
|
|---|
| 370 | // Check the connections to all nodes. (This can also mean: Validate
|
|---|
| 371 | // the correct setup, etc)
|
|---|
| 372 | //
|
|---|
| 373 | void Network::CheckConnections()
|
|---|
| 374 | {
|
|---|
| 375 | for (int i=0; i<32; i++)
|
|---|
| 376 | if (fNodes[i])
|
|---|
| 377 | fNodes[i]->CheckConnection();
|
|---|
| 378 | }
|
|---|