| 1 | #include "Dim.h" | 
|---|
| 2 | #include "Event.h" | 
|---|
| 3 | #include "Shell.h" | 
|---|
| 4 | #include "StateMachineDim.h" | 
|---|
| 5 | #include "Connection.h" | 
|---|
| 6 | #include "Configuration.h" | 
|---|
| 7 | #include "Console.h" | 
|---|
| 8 |  | 
|---|
| 9 | #include "tools.h" | 
|---|
| 10 |  | 
|---|
| 11 | #include "LocalControl.h" | 
|---|
| 12 |  | 
|---|
| 13 | #include "HeadersFTM.h" | 
|---|
| 14 | #include "HeadersFAD.h" | 
|---|
| 15 | #include "HeadersMCP.h" | 
|---|
| 16 | #include "HeadersRateControl.h" | 
|---|
| 17 |  | 
|---|
| 18 | namespace ba    = boost::asio; | 
|---|
| 19 | namespace bs    = boost::system; | 
|---|
| 20 | namespace dummy = ba::placeholders; | 
|---|
| 21 |  | 
|---|
| 22 | using namespace std; | 
|---|
| 23 |  | 
|---|
| 24 | // ------------------------------------------------------------------------ | 
|---|
| 25 |  | 
|---|
| 26 | #include "DimDescriptionService.h" | 
|---|
| 27 | #include "DimState.h" | 
|---|
| 28 |  | 
|---|
| 29 | // ------------------------------------------------------------------------ | 
|---|
| 30 |  | 
|---|
| 31 | class StateMachineMCP : public StateMachineDim | 
|---|
| 32 | { | 
|---|
| 33 | private: | 
|---|
| 34 | vector<bool> fFadConnected; | 
|---|
| 35 | vector<bool> fFadNeedsReset; | 
|---|
| 36 |  | 
|---|
| 37 | vector<bool> fFadCratesForReset; | 
|---|
| 38 | vector<bool> fFadBoardsForConnection; | 
|---|
| 39 |  | 
|---|
| 40 | uint16_t fNumConnectedFtu; | 
|---|
| 41 | uint16_t fNumConnectedFad; | 
|---|
| 42 |  | 
|---|
| 43 | uint16_t fNumReset; | 
|---|
| 44 |  | 
|---|
| 45 | DimVersion fDim; | 
|---|
| 46 | DimDescribedState fDimFTM; | 
|---|
| 47 | DimDescribedState fDimFAD; | 
|---|
| 48 | DimDescribedState fDimLog; | 
|---|
| 49 | DimDescribedState fDimRC; | 
|---|
| 50 |  | 
|---|
| 51 | DimDescribedService fService; | 
|---|
| 52 |  | 
|---|
| 53 | Time fFadTimeout; | 
|---|
| 54 |  | 
|---|
| 55 | int HandleFadConnections(const EventImp &d) | 
|---|
| 56 | { | 
|---|
| 57 | if (d.GetSize()!=41) | 
|---|
| 58 | return GetCurrentState(); | 
|---|
| 59 |  | 
|---|
| 60 | const uint8_t *ptr = d.Ptr<uint8_t>(); | 
|---|
| 61 |  | 
|---|
| 62 | fNumConnectedFad = 0; | 
|---|
| 63 | fFadConnected.assign(40, false); | 
|---|
| 64 |  | 
|---|
| 65 | vector<bool> reset(4); | 
|---|
| 66 |  | 
|---|
| 67 | for (int i=0; i<40; i++) | 
|---|
| 68 | { | 
|---|
| 69 | const uint8_t stat1 = ptr[i]&3; | 
|---|
| 70 | const uint8_t stat2 = ptr[i]>>3; | 
|---|
| 71 |  | 
|---|
| 72 | // disconnected: ignore | 
|---|
| 73 | if (stat1==0 && stat2==0) | 
|---|
| 74 | continue; | 
|---|
| 75 |  | 
|---|
| 76 | fFadConnected[i] = true; | 
|---|
| 77 |  | 
|---|
| 78 | if (stat1>=2 && stat2==8) | 
|---|
| 79 | fNumConnectedFad++; | 
|---|
| 80 |  | 
|---|
| 81 | // Does not need reset | 
|---|
| 82 | if (stat1>2 && stat2==8) | 
|---|
| 83 | continue; | 
|---|
| 84 |  | 
|---|
| 85 | // Not configured (stat1==2?kLedGreen:kLedGreenCheck) | 
|---|
| 86 | // Connection problem (stat1==1&&stat2==1?kLedRed:kLedOrange) | 
|---|
| 87 | reset[i/10] = true; | 
|---|
| 88 | } | 
|---|
| 89 | return GetCurrentState(); | 
|---|
| 90 | } | 
|---|
| 91 |  | 
|---|
| 92 | int HandleFtmStaticData(const EventImp &d) | 
|---|
| 93 | { | 
|---|
| 94 | if (d.GetSize()!=sizeof(FTM::DimStaticData)) | 
|---|
| 95 | return GetCurrentState(); | 
|---|
| 96 |  | 
|---|
| 97 | const FTM::DimStaticData &sdata = d.Ref<FTM::DimStaticData>(); | 
|---|
| 98 |  | 
|---|
| 99 | fNumConnectedFtu = 0; | 
|---|
| 100 | for (int i=0; i<40; i++) | 
|---|
| 101 | { | 
|---|
| 102 | if (sdata.IsActive(i)) | 
|---|
| 103 | fNumConnectedFtu++; | 
|---|
| 104 | } | 
|---|
| 105 | return GetCurrentState(); | 
|---|
| 106 | } | 
|---|
| 107 |  | 
|---|
| 108 | int Print() const | 
|---|
| 109 | { | 
|---|
| 110 | Out() << fDim    << endl; | 
|---|
| 111 | Out() << fDimFTM << endl; | 
|---|
| 112 | Out() << fDimFAD << endl; | 
|---|
| 113 | Out() << fDimLog << endl; | 
|---|
| 114 | Out() << fDimRC  << endl; | 
|---|
| 115 |  | 
|---|
| 116 | return GetCurrentState(); | 
|---|
| 117 | } | 
|---|
| 118 |  | 
|---|
| 119 | int GetReady() | 
|---|
| 120 | { | 
|---|
| 121 | return GetCurrentState(); | 
|---|
| 122 | } | 
|---|
| 123 |  | 
|---|
| 124 | int StopRun() | 
|---|
| 125 | { | 
|---|
| 126 | if (fDimFTM.state()==FTM::State::kTriggerOn) | 
|---|
| 127 | { | 
|---|
| 128 | Message("Stopping FTM"); | 
|---|
| 129 | Dim::SendCommandNB("FTM_CONTROL/STOP_TRIGGER"); | 
|---|
| 130 | } | 
|---|
| 131 |  | 
|---|
| 132 | // FIXME: Do step 2 only when FTM is stopped | 
|---|
| 133 | if (fDimFAD.state()==FAD::State::kConnected) | 
|---|
| 134 | { | 
|---|
| 135 | //Dim::SendCommand("FAD_CONTROL/ENABLE_TRIGGER_LINE",      bool(false)); | 
|---|
| 136 | Message("Stopping FAD"); | 
|---|
| 137 | Dim::SendCommandNB("FAD_CONTROL/ENABLE_CONTINOUS_TRIGGER", bool(false)); | 
|---|
| 138 | } | 
|---|
| 139 |  | 
|---|
| 140 | return GetCurrentState(); | 
|---|
| 141 | } | 
|---|
| 142 |  | 
|---|
| 143 | int Reset() | 
|---|
| 144 | { | 
|---|
| 145 | if (GetCurrentState()<MCP::State::kConfiguring1 || | 
|---|
| 146 | GetCurrentState()>MCP::State::kConfigured) | 
|---|
| 147 | return GetCurrentState(); | 
|---|
| 148 |  | 
|---|
| 149 | fRunType = ""; | 
|---|
| 150 | Message("Reseting configuration states of FAD and FTM"); | 
|---|
| 151 |  | 
|---|
| 152 | Dim::SendCommandNB("FTM_CONTROL/RESET_CONFIGURE"); | 
|---|
| 153 | Dim::SendCommandNB("FAD_CONTROL/RESET_CONFIGURE"); | 
|---|
| 154 |  | 
|---|
| 155 | Update(MCP::State::kIdle); | 
|---|
| 156 | return MCP::State::kIdle; | 
|---|
| 157 | /* | 
|---|
| 158 | // FIMXE: Handle error states! | 
|---|
| 159 | if (fDimLog.state()>=20)//kSM_NightlyOpen | 
|---|
| 160 | Dim::SendCommand("DATA_LOGGER/STOP"); | 
|---|
| 161 |  | 
|---|
| 162 | if (fDimLog.state()==0) | 
|---|
| 163 | Dim::SendCommand("DATA_LOGGER/WAIT_FOR_RUN_NUMBER"); | 
|---|
| 164 |  | 
|---|
| 165 | if (fDimFAD.state()==FAD::State::kConnected) | 
|---|
| 166 | { | 
|---|
| 167 | Dim::SendCommand("FAD_CONTROL/ENABLE_TRIGGER_LINE", bool(false)); | 
|---|
| 168 | Dim::SendCommand("FAD_CONTROL/ENABLE_CONTINOUS_TRIGGER", bool(false)); | 
|---|
| 169 | } | 
|---|
| 170 |  | 
|---|
| 171 | if (fDimFTM.state()==FTM::State::kTakingData) | 
|---|
| 172 | Dim::SendCommand("FTM_CONTROL/STOP"); | 
|---|
| 173 |  | 
|---|
| 174 | return GetCurrentState(); */ | 
|---|
| 175 | } | 
|---|
| 176 |  | 
|---|
| 177 | int64_t fMaxTime; | 
|---|
| 178 | int64_t fNumEvents; | 
|---|
| 179 | string  fRunType; | 
|---|
| 180 |  | 
|---|
| 181 | int StartRun(const EventImp &evt) | 
|---|
| 182 | { | 
|---|
| 183 | if (!fDimFTM.online()) | 
|---|
| 184 | { | 
|---|
| 185 | Error("No connection to ftmcontrol (see PRINT)."); | 
|---|
| 186 | return GetCurrentState(); | 
|---|
| 187 | } | 
|---|
| 188 | if (!fDimFAD.online()) | 
|---|
| 189 | { | 
|---|
| 190 | Warn("No connection to fadcontrol (see PRINT)."); | 
|---|
| 191 | return GetCurrentState(); | 
|---|
| 192 | } | 
|---|
| 193 | if (!fDimLog.online()) | 
|---|
| 194 | { | 
|---|
| 195 | Warn("No connection to datalogger (see PRINT)."); | 
|---|
| 196 | return GetCurrentState(); | 
|---|
| 197 | } | 
|---|
| 198 | if (!fDimRC.online()) | 
|---|
| 199 | { | 
|---|
| 200 | Warn("No connection to ratecontrol (see PRINT)."); | 
|---|
| 201 | return GetCurrentState(); | 
|---|
| 202 | } | 
|---|
| 203 |  | 
|---|
| 204 | fMaxTime   = evt.Get<int64_t>(); | 
|---|
| 205 | fNumEvents = evt.Get<int64_t>(8); | 
|---|
| 206 | fRunType   = evt.Ptr<char>(16); | 
|---|
| 207 |  | 
|---|
| 208 | fNumReset  = 0; | 
|---|
| 209 |  | 
|---|
| 210 | ostringstream str; | 
|---|
| 211 | str << "Starting configuration '" << fRunType << "' for new run"; | 
|---|
| 212 | if (fNumEvents>0 || fMaxTime>0) | 
|---|
| 213 | str << " ["; | 
|---|
| 214 | if (fNumEvents>0) | 
|---|
| 215 | str << fNumEvents << " events"; | 
|---|
| 216 | if (fNumEvents>0 && fMaxTime>0) | 
|---|
| 217 | str << " / "; | 
|---|
| 218 | if (fMaxTime>0) | 
|---|
| 219 | str << fMaxTime << "s"; | 
|---|
| 220 | if (fNumEvents>0 || fMaxTime>0) | 
|---|
| 221 | str << "]"; | 
|---|
| 222 | Message(str); | 
|---|
| 223 |  | 
|---|
| 224 | Update(MCP::State::kConfiguring1); | 
|---|
| 225 |  | 
|---|
| 226 | return MCP::State::kConfiguring1; | 
|---|
| 227 | } | 
|---|
| 228 |  | 
|---|
| 229 | struct Value | 
|---|
| 230 | { | 
|---|
| 231 | uint64_t time; | 
|---|
| 232 | uint64_t nevts; | 
|---|
| 233 | char type[]; | 
|---|
| 234 | }; | 
|---|
| 235 |  | 
|---|
| 236 | Value *GetBuffer() | 
|---|
| 237 | { | 
|---|
| 238 | const size_t len = sizeof(Value)+fRunType.length()+1; | 
|---|
| 239 |  | 
|---|
| 240 | char *buf = new char[len]; | 
|---|
| 241 |  | 
|---|
| 242 | Value *val = reinterpret_cast<Value*>(buf); | 
|---|
| 243 |  | 
|---|
| 244 | val->time  = fMaxTime; | 
|---|
| 245 | val->nevts = fNumEvents; | 
|---|
| 246 |  | 
|---|
| 247 | strcpy(val->type, fRunType.c_str()); | 
|---|
| 248 |  | 
|---|
| 249 | return val; | 
|---|
| 250 | } | 
|---|
| 251 |  | 
|---|
| 252 | void Update(int newstate) | 
|---|
| 253 | { | 
|---|
| 254 | Value *buf = GetBuffer(); | 
|---|
| 255 | fService.setQuality(newstate); | 
|---|
| 256 | fService.setData(buf, sizeof(Value)+fRunType.length()+1); | 
|---|
| 257 | fService.Update(); | 
|---|
| 258 | delete buf; | 
|---|
| 259 | } | 
|---|
| 260 |  | 
|---|
| 261 | void ConfigureFAD() | 
|---|
| 262 | { | 
|---|
| 263 | Value *buf = GetBuffer(); | 
|---|
| 264 |  | 
|---|
| 265 | Message("Configuring FAD"); | 
|---|
| 266 | Dim::SendCommandNB("FAD_CONTROL/CONFIGURE", buf, sizeof(Value)+fRunType.length()+1); | 
|---|
| 267 |  | 
|---|
| 268 | delete buf; | 
|---|
| 269 | } | 
|---|
| 270 |  | 
|---|
| 271 | int HandleStateChange() | 
|---|
| 272 | { | 
|---|
| 273 | if (!fDim.online()) | 
|---|
| 274 | return MCP::State::kDimNetworkNA; | 
|---|
| 275 |  | 
|---|
| 276 | if (fDimFTM.state() >= FTM::State::kConnected && | 
|---|
| 277 | fDimFAD.state() >= FAD::State::kConnected && | 
|---|
| 278 | fDimLog.state() >= kSM_Ready) | 
|---|
| 279 | return GetCurrentState()<=MCP::State::kIdle ? MCP::State::kIdle : GetCurrentState(); | 
|---|
| 280 |  | 
|---|
| 281 | if (fDimFTM.state() >-2 && | 
|---|
| 282 | fDimFAD.state() >-2 && | 
|---|
| 283 | fDimLog.state() >-2 && | 
|---|
| 284 | fDimRC.state()  >-2) | 
|---|
| 285 | return MCP::State::kConnected; | 
|---|
| 286 |  | 
|---|
| 287 | if (fDimFTM.state() >-2 || | 
|---|
| 288 | fDimFAD.state() >-2 || | 
|---|
| 289 | fDimLog.state() >-2 || | 
|---|
| 290 | fDimRC.state()  >-2) | 
|---|
| 291 | return MCP::State::kConnecting; | 
|---|
| 292 |  | 
|---|
| 293 | return MCP::State::kDisconnected; | 
|---|
| 294 | } | 
|---|
| 295 |  | 
|---|
| 296 | int Execute() | 
|---|
| 297 | { | 
|---|
| 298 | // ======================================================== | 
|---|
| 299 |  | 
|---|
| 300 | if (GetCurrentState()==MCP::State::kConfiguring1) | 
|---|
| 301 | { | 
|---|
| 302 | if (fDimLog.state()<30/*kSM_WaitForRun*/) | 
|---|
| 303 | { | 
|---|
| 304 | Message("Starting datalogger"); | 
|---|
| 305 | Dim::SendCommandNB("DATA_LOGGER/START_RUN_LOGGING"); | 
|---|
| 306 | } | 
|---|
| 307 |  | 
|---|
| 308 | Message("Configuring Trigger (FTM)"); | 
|---|
| 309 | Dim::SendCommandNB("FTM_CONTROL/CONFIGURE", fRunType); | 
|---|
| 310 |  | 
|---|
| 311 | Update(MCP::State::kConfiguring2); | 
|---|
| 312 | return MCP::State::kConfiguring2; | 
|---|
| 313 | } | 
|---|
| 314 |  | 
|---|
| 315 | // -------------------------------------------------------- | 
|---|
| 316 |  | 
|---|
| 317 | if (GetCurrentState()==MCP::State::kConfiguring2) | 
|---|
| 318 | { | 
|---|
| 319 | // FIMXE: Reset in case of error | 
|---|
| 320 | if ((/*fDimFTM.state() != FTM::State::kConfiguring2 &&*/ | 
|---|
| 321 | fDimFTM.state() != FTM::State::kConfigured) || | 
|---|
| 322 | fDimLog.state()<30 || fDimLog.state()>0xff) | 
|---|
| 323 | return MCP::State::kConfiguring2; | 
|---|
| 324 |  | 
|---|
| 325 | // FIMXE: This is to make sure that the rate control | 
|---|
| 326 | // has received the correct trigger setup already... | 
|---|
| 327 | //usleep(1000000); | 
|---|
| 328 |  | 
|---|
| 329 | Message("Starting Rate Control"); | 
|---|
| 330 | // State of RC is not reported back fast enough! | 
|---|
| 331 | Dim::SendCommandNB("RATE_CONTROL/CALIBRATE"); | 
|---|
| 332 |  | 
|---|
| 333 | ConfigureFAD(); | 
|---|
| 334 |  | 
|---|
| 335 | fFadTimeout = Time(); | 
|---|
| 336 |  | 
|---|
| 337 | Update(MCP::State::kConfiguring3); | 
|---|
| 338 | return MCP::State::kConfiguring3; | 
|---|
| 339 | } | 
|---|
| 340 |  | 
|---|
| 341 | // -------------------------------------------------------- | 
|---|
| 342 |  | 
|---|
| 343 | if (GetCurrentState()==MCP::State::kConfiguring3) | 
|---|
| 344 | { | 
|---|
| 345 | // If everything is configured but the FADs | 
|---|
| 346 | // we run into a timeout and some FAD need to be reset | 
|---|
| 347 | // then we start an automatic crate reset | 
|---|
| 348 | if (fDimFTM.state() == FTM::State::kConfigured && | 
|---|
| 349 | fDimFAD.state() != FAD::State::kConfigured && | 
|---|
| 350 | /*fDimRC.state()  >  RateControl::State::kSettingGlobalThreshold &&*/ | 
|---|
| 351 | fFadTimeout+boost::posix_time::seconds(15)<Time() && | 
|---|
| 352 | count(fFadNeedsReset.begin(), fFadNeedsReset.end(), true)>0) | 
|---|
| 353 | { | 
|---|
| 354 | Update(MCP::State::kCrateReset0); | 
|---|
| 355 | return MCP::State::kCrateReset0; | 
|---|
| 356 | } | 
|---|
| 357 |  | 
|---|
| 358 | // If something is not yet properly configured: keep state | 
|---|
| 359 | if (fDimFTM.state() != FTM::State::kConfigured || | 
|---|
| 360 | fDimFAD.state() != FAD::State::kConfigured || | 
|---|
| 361 | fDimRC.state()  <= RateControl::State::kSettingGlobalThreshold) | 
|---|
| 362 | return MCP::State::kConfiguring3; | 
|---|
| 363 |  | 
|---|
| 364 | Message("Starting Trigger (FTM)"); | 
|---|
| 365 | Dim::SendCommandNB("FTM_CONTROL/START_TRIGGER"); | 
|---|
| 366 |  | 
|---|
| 367 | Update(MCP::State::kConfigured); | 
|---|
| 368 | return MCP::State::kConfigured; | 
|---|
| 369 | } | 
|---|
| 370 |  | 
|---|
| 371 | // -------------------------------------------------------- | 
|---|
| 372 |  | 
|---|
| 373 | if (GetCurrentState()==MCP::State::kConfigured) | 
|---|
| 374 | { | 
|---|
| 375 | if (fDimFTM.state() != FTM::State::kTriggerOn) | 
|---|
| 376 | return MCP::State::kConfigured; | 
|---|
| 377 |  | 
|---|
| 378 | Update(MCP::State::kTriggerOn); | 
|---|
| 379 | return MCP::State::kTriggerOn; | 
|---|
| 380 | } | 
|---|
| 381 |  | 
|---|
| 382 | // -------------------------------------------------------- | 
|---|
| 383 |  | 
|---|
| 384 | if (GetCurrentState()==MCP::State::kTriggerOn) | 
|---|
| 385 | { | 
|---|
| 386 | if (fDimFAD.state() != FAD::State::kWritingData) | 
|---|
| 387 | return MCP::State::kTriggerOn; | 
|---|
| 388 |  | 
|---|
| 389 | Update(MCP::State::kTakingData); | 
|---|
| 390 | return MCP::State::kTakingData; | 
|---|
| 391 | } | 
|---|
| 392 |  | 
|---|
| 393 | // -------------------------------------------------------- | 
|---|
| 394 |  | 
|---|
| 395 | if (GetCurrentState()==MCP::State::kTakingData) | 
|---|
| 396 | { | 
|---|
| 397 | if (fDimFTM.state()==FTM::State::kTriggerOn && | 
|---|
| 398 | fDimFAD.state()==FAD::State::kWritingData) | 
|---|
| 399 | return MCP::State::kTakingData; | 
|---|
| 400 |  | 
|---|
| 401 | Update(MCP::State::kIdle); | 
|---|
| 402 | return MCP::State::kIdle; | 
|---|
| 403 | } | 
|---|
| 404 |  | 
|---|
| 405 | // ======================================================== | 
|---|
| 406 |  | 
|---|
| 407 | if (GetCurrentState()==MCP::State::kCrateReset0) | 
|---|
| 408 | { | 
|---|
| 409 | static const struct Data { int32_t id; char on; } __attribute__((__packed__)) d = { -1, 0 }; | 
|---|
| 410 |  | 
|---|
| 411 | Dim::SendCommandNB("FTM_CONTROL/ENABLE_FTU", &d, sizeof(Data)); | 
|---|
| 412 |  | 
|---|
| 413 | fFadCratesForReset      = fFadNeedsReset; | 
|---|
| 414 | fFadBoardsForConnection = fFadConnected; | 
|---|
| 415 |  | 
|---|
| 416 | for (int c=0; c<4; c++) | 
|---|
| 417 | if (fFadNeedsReset[c]) | 
|---|
| 418 | for (int b=0; b<10; b++) | 
|---|
| 419 | Dim::SendCommandNB("FAD_CONTROL/DISCONNECT", uint16_t(c*10+b)); | 
|---|
| 420 |  | 
|---|
| 421 | fNumReset++; | 
|---|
| 422 |  | 
|---|
| 423 | Update(MCP::State::kCrateReset1); | 
|---|
| 424 | return MCP::State::kCrateReset1; | 
|---|
| 425 | } | 
|---|
| 426 |  | 
|---|
| 427 | // -------------------------------------------------------- | 
|---|
| 428 |  | 
|---|
| 429 | if (GetCurrentState()==MCP::State::kCrateReset1) | 
|---|
| 430 | { | 
|---|
| 431 | if (fNumConnectedFtu>0 || count(fFadNeedsReset.begin(), fFadNeedsReset.end(), true)>0) | 
|---|
| 432 | return MCP::State::kCrateReset1; | 
|---|
| 433 |  | 
|---|
| 434 | for (int i=0; i<4; i++) | 
|---|
| 435 | if (fFadCratesForReset[i]) | 
|---|
| 436 | Dim::SendCommandNB("FAD_CONTROL/RESET_CRATE", uint16_t(i)); | 
|---|
| 437 |  | 
|---|
| 438 | fFadTimeout = Time(); | 
|---|
| 439 |  | 
|---|
| 440 | Update(MCP::State::kCrateReset2); | 
|---|
| 441 | return MCP::State::kCrateReset2; | 
|---|
| 442 | } | 
|---|
| 443 |  | 
|---|
| 444 | // -------------------------------------------------------- | 
|---|
| 445 |  | 
|---|
| 446 | if (GetCurrentState()==MCP::State::kCrateReset2) | 
|---|
| 447 | { | 
|---|
| 448 | if (fFadTimeout+boost::posix_time::seconds(45)>Time()) | 
|---|
| 449 | return MCP::State::kCrateReset2; | 
|---|
| 450 |  | 
|---|
| 451 | static const struct Data { int32_t id; char on; } __attribute__((__packed__)) d = { -1, 1 }; | 
|---|
| 452 |  | 
|---|
| 453 | Dim::SendCommandNB("FTM_CONTROL/ENABLE_FTU", &d, sizeof(Data)); | 
|---|
| 454 |  | 
|---|
| 455 | for (int c=0; c<4; c++) | 
|---|
| 456 | if (fFadCratesForReset[c]) | 
|---|
| 457 | for (int b=0; b<10; b++) | 
|---|
| 458 | if (fFadBoardsForConnection[c*10+b]) | 
|---|
| 459 | Dim::SendCommandNB("FAD_CONTROL/CONNECT", uint16_t(c*10+b)); | 
|---|
| 460 |  | 
|---|
| 461 | Update(MCP::State::kCrateReset3); | 
|---|
| 462 | return MCP::State::kCrateReset3; | 
|---|
| 463 | } | 
|---|
| 464 |  | 
|---|
| 465 | // -------------------------------------------------------- | 
|---|
| 466 |  | 
|---|
| 467 | if (GetCurrentState()==MCP::State::kCrateReset3) | 
|---|
| 468 | { | 
|---|
| 469 | if (fNumConnectedFtu<40 || fFadBoardsForConnection!=fFadConnected) | 
|---|
| 470 | return MCP::State::kCrateReset3; | 
|---|
| 471 |  | 
|---|
| 472 | if (count(fFadNeedsReset.begin(), fFadNeedsReset.end(), true)>0 && fNumReset<6) | 
|---|
| 473 | { | 
|---|
| 474 | Update(MCP::State::kCrateReset0); | 
|---|
| 475 | return MCP::State::kCrateReset0; | 
|---|
| 476 | } | 
|---|
| 477 |  | 
|---|
| 478 | // restart configuration | 
|---|
| 479 | Update(MCP::State::kConfiguring1); | 
|---|
| 480 | return MCP::State::kConfiguring1; | 
|---|
| 481 | } | 
|---|
| 482 |  | 
|---|
| 483 | // ======================================================== | 
|---|
| 484 |  | 
|---|
| 485 | return GetCurrentState(); | 
|---|
| 486 | } | 
|---|
| 487 |  | 
|---|
| 488 | public: | 
|---|
| 489 | StateMachineMCP(ostream &out=cout) : StateMachineDim(out, "MCP"), | 
|---|
| 490 | fFadNeedsReset(4), fNumConnectedFtu(40), | 
|---|
| 491 | fDimFTM("FTM_CONTROL"), | 
|---|
| 492 | fDimFAD("FAD_CONTROL"), | 
|---|
| 493 | fDimLog("DATA_LOGGER"), | 
|---|
| 494 | fDimRC("RATE_CONTROL"), | 
|---|
| 495 | fService("MCP/CONFIGURATION", "X:1;X:1;C", "Run configuration information" | 
|---|
| 496 | "|MaxTime[s]:Maximum time before the run gets stopped" | 
|---|
| 497 | "|MaxEvents[num]:Maximum number of events before the run gets stopped" | 
|---|
| 498 | "|Name[text]:Name of the chosen configuration") | 
|---|
| 499 | { | 
|---|
| 500 | // ba::io_service::work is a kind of keep_alive for the loop. | 
|---|
| 501 | // It prevents the io_service to go to stopped state, which | 
|---|
| 502 | // would prevent any consecutive calls to run() | 
|---|
| 503 | // or poll() to do nothing. reset() could also revoke to the | 
|---|
| 504 | // previous state but this might introduce some overhead of | 
|---|
| 505 | // deletion and creation of threads and more. | 
|---|
| 506 |  | 
|---|
| 507 | fDim.Subscribe(*this); | 
|---|
| 508 | fDimFTM.Subscribe(*this); | 
|---|
| 509 | fDimFAD.Subscribe(*this); | 
|---|
| 510 | fDimLog.Subscribe(*this); | 
|---|
| 511 | fDimRC.Subscribe(*this); | 
|---|
| 512 |  | 
|---|
| 513 | fDim.SetCallback(bind(&StateMachineMCP::HandleStateChange, this)); | 
|---|
| 514 | fDimFTM.SetCallback(bind(&StateMachineMCP::HandleStateChange, this)); | 
|---|
| 515 | fDimFAD.SetCallback(bind(&StateMachineMCP::HandleStateChange, this)); | 
|---|
| 516 | fDimLog.SetCallback(bind(&StateMachineMCP::HandleStateChange, this)); | 
|---|
| 517 | fDimRC.SetCallback(bind(&StateMachineMCP::HandleStateChange, this)); | 
|---|
| 518 |  | 
|---|
| 519 | Subscribe("FAD_CONTROL/CONNECTIONS") | 
|---|
| 520 | (bind(&StateMachineMCP::HandleFadConnections, this, placeholders::_1)); | 
|---|
| 521 | Subscribe("FTM_CONTROL/STATIC_DATA") | 
|---|
| 522 | (bind(&StateMachineMCP::HandleFtmStaticData, this, placeholders::_1)); | 
|---|
| 523 |  | 
|---|
| 524 | // State names | 
|---|
| 525 | AddStateName(MCP::State::kDimNetworkNA, "DimNetworkNotAvailable", | 
|---|
| 526 | "DIM dns server not available."); | 
|---|
| 527 | AddStateName(MCP::State::kDisconnected, "Disconnected", | 
|---|
| 528 | "Neither ftmctrl, fadctrl, datalogger nor rate control online."); | 
|---|
| 529 | AddStateName(MCP::State::kConnecting, "Connecting", | 
|---|
| 530 | "Either ftmctrl, fadctrl, datalogger or rate control not online."); | 
|---|
| 531 | AddStateName(MCP::State::kConnected, "Connected", | 
|---|
| 532 | "All needed subsystems online."); | 
|---|
| 533 | AddStateName(MCP::State::kIdle, "Idle", | 
|---|
| 534 | "Waiting for next configuration command"); | 
|---|
| 535 | AddStateName(MCP::State::kConfiguring1, "Configuring1", | 
|---|
| 536 | "Starting configuration procedure, checking Datalogger state"); | 
|---|
| 537 | AddStateName(MCP::State::kConfiguring2, "Configuring2", | 
|---|
| 538 | "Waiting for FTM and Datalogger to get ready"); | 
|---|
| 539 | AddStateName(MCP::State::kConfiguring3, "Configuring3", | 
|---|
| 540 | "Waiting for FADs and rate control to get ready"); | 
|---|
| 541 |  | 
|---|
| 542 | AddStateName(MCP::State::kCrateReset0, "CrateReset0", | 
|---|
| 543 | "Disabling FTUs, disconnecting FADs"); | 
|---|
| 544 | AddStateName(MCP::State::kCrateReset1, "CrateReset1", | 
|---|
| 545 | "Waiting for FTUs to be disabled and for FADs to be disconnected"); | 
|---|
| 546 | AddStateName(MCP::State::kCrateReset2, "CrateReset2", | 
|---|
| 547 | "Waiting 45s"); | 
|---|
| 548 | AddStateName(MCP::State::kCrateReset3, "CrateReset3", | 
|---|
| 549 | "Waiting for FTUs to be enabled and for FADs to be re-connected"); | 
|---|
| 550 |  | 
|---|
| 551 | AddStateName(MCP::State::kConfigured, "Configured", | 
|---|
| 552 | "Everything is configured, trigger will be switched on now"); | 
|---|
| 553 | AddStateName(MCP::State::kTriggerOn, "TriggerOn", | 
|---|
| 554 | "The trigger is switched on, waiting for FAD to receive data"); | 
|---|
| 555 | AddStateName(MCP::State::kTakingData, "TakingData", | 
|---|
| 556 | "The trigger is switched on, FADs are sending data"); | 
|---|
| 557 |  | 
|---|
| 558 |  | 
|---|
| 559 | AddEvent("START", "X:2;C")//, MCP::State::kIdle) | 
|---|
| 560 | (bind(&StateMachineMCP::StartRun, this, placeholders::_1)) | 
|---|
| 561 | ("Start the configuration and data taking for a run-type of a pre-defined setup" | 
|---|
| 562 | "|TimeMax[s]:Maximum number of seconds before the run will be closed automatically" | 
|---|
| 563 | "|NumMax[count]:Maximum number events before the run will be closed automatically" | 
|---|
| 564 | "|Name[text]:Name of the configuration to be used for taking data"); | 
|---|
| 565 |  | 
|---|
| 566 | AddEvent("STOP") | 
|---|
| 567 | (bind(&StateMachineMCP::StopRun, this)) | 
|---|
| 568 | ("Stops the trigger (either disables the FTM trigger or the internal DRS trigger)"); | 
|---|
| 569 |  | 
|---|
| 570 | AddEvent("RESET") | 
|---|
| 571 | (bind(&StateMachineMCP::Reset, this)) | 
|---|
| 572 | ("If a configuration blockes because a system cannot configure itself properly, " | 
|---|
| 573 | "this command can be called to leave the configuration procedure. The command " | 
|---|
| 574 | "is also propagated to FTM and FAD"); | 
|---|
| 575 |  | 
|---|
| 576 | AddEvent("PRINT") | 
|---|
| 577 | (bind(&StateMachineMCP::Print, this)) | 
|---|
| 578 | ("Print the states and connection status of all systems connected to the MCP."); | 
|---|
| 579 | } | 
|---|
| 580 |  | 
|---|
| 581 | int EvalOptions(Configuration &) | 
|---|
| 582 | { | 
|---|
| 583 | return -1; | 
|---|
| 584 | } | 
|---|
| 585 | }; | 
|---|
| 586 |  | 
|---|
| 587 | // ------------------------------------------------------------------------ | 
|---|
| 588 |  | 
|---|
| 589 | #include "Main.h" | 
|---|
| 590 |  | 
|---|
| 591 | template<class T> | 
|---|
| 592 | int RunShell(Configuration &conf) | 
|---|
| 593 | { | 
|---|
| 594 | return Main::execute<T, StateMachineMCP>(conf); | 
|---|
| 595 | } | 
|---|
| 596 |  | 
|---|
| 597 | /* | 
|---|
| 598 | Extract usage clause(s) [if any] for SYNOPSIS. | 
|---|
| 599 | Translators: "Usage" and "or" here are patterns (regular expressions) which | 
|---|
| 600 | are used to match the usage synopsis in program output.  An example from cp | 
|---|
| 601 | (GNU coreutils) which contains both strings: | 
|---|
| 602 | Usage: cp [OPTION]... [-T] SOURCE DEST | 
|---|
| 603 | or:  cp [OPTION]... SOURCE... DIRECTORY | 
|---|
| 604 | or:  cp [OPTION]... -t DIRECTORY SOURCE... | 
|---|
| 605 | */ | 
|---|
| 606 | void PrintUsage() | 
|---|
| 607 | { | 
|---|
| 608 | cout << | 
|---|
| 609 | "The ftmctrl controls the FSC (FACT Slow Control) board.\n" | 
|---|
| 610 | "\n" | 
|---|
| 611 | "The default is that the program is started without user intercation. " | 
|---|
| 612 | "All actions are supposed to arrive as DimCommands. Using the -c " | 
|---|
| 613 | "option, a local shell can be initialized. With h or help a short " | 
|---|
| 614 | "help message about the usuage can be brought to the screen.\n" | 
|---|
| 615 | "\n" | 
|---|
| 616 | "Usage: fscctrl [-c type] [OPTIONS]\n" | 
|---|
| 617 | "  or:  fscctrl [OPTIONS]\n"; | 
|---|
| 618 | cout << endl; | 
|---|
| 619 | } | 
|---|
| 620 |  | 
|---|
| 621 | void PrintHelp() | 
|---|
| 622 | { | 
|---|
| 623 | Main::PrintHelp<StateMachineMCP>(); | 
|---|
| 624 |  | 
|---|
| 625 | /* Additional help text which is printed after the configuration | 
|---|
| 626 | options goes here */ | 
|---|
| 627 |  | 
|---|
| 628 | /* | 
|---|
| 629 | cout << "bla bla bla" << endl << endl; | 
|---|
| 630 | cout << endl; | 
|---|
| 631 | cout << "Environment:" << endl; | 
|---|
| 632 | cout << "environment" << endl; | 
|---|
| 633 | cout << endl; | 
|---|
| 634 | cout << "Examples:" << endl; | 
|---|
| 635 | cout << "test exam" << endl; | 
|---|
| 636 | cout << endl; | 
|---|
| 637 | cout << "Files:" << endl; | 
|---|
| 638 | cout << "files" << endl; | 
|---|
| 639 | cout << endl; | 
|---|
| 640 | */ | 
|---|
| 641 | } | 
|---|
| 642 |  | 
|---|
| 643 | int main(int argc, const char* argv[]) | 
|---|
| 644 | { | 
|---|
| 645 | Configuration conf(argv[0]); | 
|---|
| 646 | conf.SetPrintUsage(PrintUsage); | 
|---|
| 647 | Main::SetupConfiguration(conf); | 
|---|
| 648 |  | 
|---|
| 649 | if (!conf.DoParse(argc, argv, PrintHelp)) | 
|---|
| 650 | return 127; | 
|---|
| 651 |  | 
|---|
| 652 | //try | 
|---|
| 653 | { | 
|---|
| 654 | // No console access at all | 
|---|
| 655 | if (!conf.Has("console")) | 
|---|
| 656 | { | 
|---|
| 657 | //            if (conf.Get<bool>("no-dim")) | 
|---|
| 658 | //                return RunShell<LocalStream, StateMachine, ConnectionFSC>(conf); | 
|---|
| 659 | //            else | 
|---|
| 660 | return RunShell<LocalStream>(conf); | 
|---|
| 661 | } | 
|---|
| 662 | // Cosole access w/ and w/o Dim | 
|---|
| 663 | /*        if (conf.Get<bool>("no-dim")) | 
|---|
| 664 | { | 
|---|
| 665 | if (conf.Get<int>("console")==0) | 
|---|
| 666 | return RunShell<LocalShell, StateMachine, ConnectionFSC>(conf); | 
|---|
| 667 | else | 
|---|
| 668 | return RunShell<LocalConsole, StateMachine, ConnectionFSC>(conf); | 
|---|
| 669 | } | 
|---|
| 670 | else | 
|---|
| 671 | */        { | 
|---|
| 672 | if (conf.Get<int>("console")==0) | 
|---|
| 673 | return RunShell<LocalShell>(conf); | 
|---|
| 674 | else | 
|---|
| 675 | return RunShell<LocalConsole>(conf); | 
|---|
| 676 | } | 
|---|
| 677 | } | 
|---|
| 678 | /*catch (std::exception& e) | 
|---|
| 679 | { | 
|---|
| 680 | cerr << "Exception: " << e.what() << endl; | 
|---|
| 681 | return -1; | 
|---|
| 682 | }*/ | 
|---|
| 683 |  | 
|---|
| 684 | return 0; | 
|---|
| 685 | } | 
|---|