X-Git-Url: http://sraa.de/git/?a=blobdiff_plain;f=dol%2Fsrc%2Fdol%2Fvisitor%2Fhdsd%2Fscd%2Ffsm%2Fscd_stm_init.cpp;fp=dol%2Fsrc%2Fdol%2Fvisitor%2Fhdsd%2Fscd%2Ffsm%2Fscd_stm_init.cpp;h=3027ad80a350b11a9ab392813691d11335342065;hb=8c411cf24ed0eb889191aaeafd8fa1e69081df42;hp=0000000000000000000000000000000000000000;hpb=dea7a4fb1ed110d3ce6e6d9255103d724bd66c0e;p=jump.git diff --git a/dol/src/dol/visitor/hdsd/scd/fsm/scd_stm_init.cpp b/dol/src/dol/visitor/hdsd/scd/fsm/scd_stm_init.cpp new file mode 100644 index 0000000..3027ad8 --- /dev/null +++ b/dol/src/dol/visitor/hdsd/scd/fsm/scd_stm_init.cpp @@ -0,0 +1,58 @@ +#include "fsm/scd_stm_init.h" + +#include "scd_logging.h" +#include "scd_exception.h" +#include "scd_cont_man_master.h" + + +void scd_stm_init::set_idle(const sc_core::sc_time& time) +{ + scd_error("init: illegal call to set_idle()"); + throw scd_exception("illegal call"); +} + + +void scd_stm_init::set_busy() +{ + scd_error("init: illegal call to set_busy()"); + throw scd_exception("illegal call"); +} + + +void scd_stm_init::set_done() +{ + scd_error("init: illegal call to set_done()"); + throw scd_exception("illegal call"); +} + + +void scd_stm_init::process() +{ + // check for failed slaves and react + if (!_check_slaves()) + return; + + std::list::iterator iter; + + for (iter = _slaves.begin(); iter != _slaves.end(); iter++) + { + // if this is still in init state we terminate + if ( !(*iter)->active() ) + return; + } + + // all slaves are active + scd_info("all slaves connected"); + _fsm.set_state(_st_busy); + +} // process() + + +bool scd_stm_init::active() const { return false; } + + +bool scd_stm_init::advance_time() const +{ + scd_error("illegal call to advance_time()"); + throw scd_exception("illegal call"); +}