diff --git a/MAC/APL/MainCU/src/MACScheduler/MACScheduler.cc b/MAC/APL/MainCU/src/MACScheduler/MACScheduler.cc index 274a76ee270cbefa743490160a088b7885cda9d5..ee01f42059eb8f8eb5fda3388fe097873c0f7986 100644 --- a/MAC/APL/MainCU/src/MACScheduler/MACScheduler.cc +++ b/MAC/APL/MainCU/src/MACScheduler/MACScheduler.cc @@ -406,16 +406,43 @@ GCFEvent::TResult MACScheduler::active_state(GCFEvent& event, GCFPortInterface& break; } - case CONTROL_FINISH: { + case CONTROL_QUITED: { // The observationController is going down. - CONTROLFinishEvent finishEvent(event); - LOG_DEBUG_STR("Received FINISH(" << finishEvent.cntlrName << ")"); - LOG_DEBUG_STR("Removing observation " << finishEvent.cntlrName << + CONTROLQuitedEvent quitedEvent(event); + LOG_DEBUG_STR("Received QUITED(" << quitedEvent.cntlrName << ")"); + + // update SAS database. + Observation* theObs(_findActiveObservation(quitedEvent.cntlrName)); + if (!theObs) { + LOG_WARN_STR("Cannot find controller " << quitedEvent.cntlrName << + ". Can't update the SAS database"); + break; + } + OTDB::TreeMaintenance tm(itsOTDBconnection); + TreeStateConv tsc(itsOTDBconnection); + tm.setTreeState(theObs->treeID, tsc.get("finished")); + + // update our administration + LOG_DEBUG_STR("Removing observation " << quitedEvent.cntlrName << " from activeList"); - _removeActiveObservation(finishEvent.cntlrName); + _removeActiveObservation(quitedEvent.cntlrName); break; } + case CONTROL_RESUMED: { + // update SAS database. + CONTROLResumedEvent msg(event); + Observation* theObs(_findActiveObservation(msg.cntlrName)); + if (!theObs) { + LOG_WARN_STR("Cannot find controller " << msg.cntlrName << + ". Can't update the SAS database"); + break; + } + OTDB::TreeMaintenance tm(itsOTDBconnection); + TreeStateConv tsc(itsOTDBconnection); + tm.setTreeState(theObs->treeID, tsc.get("active")); + } + // NOTE: ignore all other CONTROL events, we are not interested in the // states of the Observations. (not our job). default: @@ -573,6 +600,23 @@ void MACScheduler::_doOTDBcheck() } +// +// _findActiveObservation(name) +// +Observation* MACScheduler::_findActiveObservation(const string& name) +{ + vector<Observation>::iterator end = itsObservations.end(); + vector<Observation>::iterator iter = itsObservations.begin(); + while (iter != end) { + if (iter->name == name) { + return (&(*iter)); + } + iter++; + } + + return ((Observation*) 0); +} + // // _addActiveObservation(name) // diff --git a/MAC/APL/MainCU/src/MACScheduler/MACScheduler.h b/MAC/APL/MainCU/src/MACScheduler/MACScheduler.h index da7a322e8c53ea78b20fcb420b18bd50d0ce36d6..1bfe5f862eccfac6939c3761bb205fc806f55bdc 100644 --- a/MAC/APL/MainCU/src/MACScheduler/MACScheduler.h +++ b/MAC/APL/MainCU/src/MACScheduler/MACScheduler.h @@ -109,6 +109,7 @@ private: MACScheduler(const MACScheduler&); MACScheduler& operator=(const MACScheduler&); + Observation* _findActiveObservation(const string& name); void _addActiveObservation(const Observation& newObs); void _removeActiveObservation(const string& name); void _connectedHandler(GCFPortInterface& port); diff --git a/MAC/APL/MainCU/src/ObservationControl/ObservationControl.cc b/MAC/APL/MainCU/src/ObservationControl/ObservationControl.cc index 85527043cef35d3949ab70a0dc4c596fec52804d..ce19a8a36d2498eba5de64312a9d747c4ecc3ea5 100644 --- a/MAC/APL/MainCU/src/ObservationControl/ObservationControl.cc +++ b/MAC/APL/MainCU/src/ObservationControl/ObservationControl.cc @@ -172,6 +172,7 @@ void ObservationControl::setState(CTState::CTstateNr newState) GCFPVString(cts.name(newState))); } + itsParentControl->nowInState(getName(), newState); } // @@ -483,34 +484,34 @@ GCFEvent::TResult ObservationControl::active_state(GCFEvent& event, GCFPortInter } else if (timerEvent.id == itsClaimTimer) { setState(CTState::CLAIM); - itsChildResult = CT_RESULT_NO_ERROR; - itsClaimTimer = 0; + itsChildResult = CT_RESULT_NO_ERROR; + itsClaimTimer = 0; LOG_DEBUG("Requesting all childs to execute the CLAIM state"); itsChildControl->requestState(CTState::CLAIMED, ""); itsBusyControllers = itsChildControl->countChilds(0, CNTLRTYPE_NO_TYPE); } else if (timerEvent.id == itsPrepareTimer) { setState(CTState::PREPARE); - itsChildResult = CT_RESULT_NO_ERROR; - itsPrepareTimer = 0; + itsChildResult = CT_RESULT_NO_ERROR; + itsPrepareTimer = 0; LOG_DEBUG("Requesting all childs to execute the PREPARE state"); itsChildControl->requestState(CTState::PREPARED, ""); itsBusyControllers = itsChildControl->countChilds(0, CNTLRTYPE_NO_TYPE); } else if (timerEvent.id == itsStartTimer) { setState(CTState::RESUME); - itsChildResult = CT_RESULT_NO_ERROR; - itsStartTimer = 0; + itsChildResult = CT_RESULT_NO_ERROR; + itsStartTimer = 0; LOG_DEBUG("Requesting all childs to go operation state"); itsChildControl->requestState(CTState::RESUMED, ""); itsBusyControllers = itsChildControl->countChilds(0, CNTLRTYPE_NO_TYPE); } else if (timerEvent.id == itsStopTimer) { - setState(CTState::FINISH); - itsChildResult = CT_RESULT_NO_ERROR; - itsStopTimer = 0; + setState(CTState::QUIT); + itsChildResult = CT_RESULT_NO_ERROR; + itsStopTimer = 0; LOG_DEBUG("Requesting all childs to quit"); - itsChildControl->requestState(CTState::FINISHED, ""); + itsChildControl->requestState(CTState::QUITED, ""); itsBusyControllers = itsChildControl->countChilds(0, CNTLRTYPE_NO_TYPE); } // some other timer? @@ -597,9 +598,11 @@ GCFEvent::TResult ObservationControl::active_state(GCFEvent& event, GCFPortInter break; } - case CONTROL_FINISH: { // Note: request iso answer - CONTROLFinishEvent msg(event); - LOG_DEBUG_STR("Received FINISH(" << msg.cntlrName << ")"); + case CONTROL_QUITED: { + CONTROLQuitedEvent msg(event); + LOG_DEBUG_STR("Received QUITED(" << msg.cntlrName << ")"); + itsChildResult |= msg.result; + doHeartBeatTask(); break; } @@ -630,6 +633,12 @@ GCFEvent::TResult ObservationControl::finishing_state(GCFEvent& event, break; case F_ENTRY: { + // inform MACScheduler we are going down + CONTROLQuitedEvent msg; + msg.cntlrName = getName(); + msg.result = CT_RESULT_NO_ERROR; + itsParentPort->send(msg); + // update PVSS itsPropertySet->setValue(string(PVSSNAME_FSM_STATE),GCFPVString("finished")); itsPropertySet->setValue(string(PVSSNAME_FSM_ERROR),GCFPVString("")); @@ -761,7 +770,7 @@ void ObservationControl::doHeartBeatTask() // all controllers up to date? if (lateCntlrs.empty()) { LOG_DEBUG_STR("All (" << nrChilds << ") controllers are up to date"); - if (itsState == CTState::FINISH) { + if (itsState == CTState::QUIT) { LOG_DEBUG_STR("Time for me to shutdown"); TRAN(ObservationControl::finishing_state); return; @@ -771,6 +780,9 @@ void ObservationControl::doHeartBeatTask() CTState cts; setState(cts.stateAck(itsState)); itsBusyControllers = 0; + // inform Parent (ignore funtion-result) + sendControlResult(*itsParentPort, cts.signal(itsState), getName(), + itsChildResult); } return; }