diff --git a/simulators/c++2/src_simulator/sim/Simulator.cpp b/simulators/c++2/src_simulator/sim/Simulator.cpp index 47273f242faf6a51020c4aa079fda0fffc94482c..0dca597874ac70254ba92441e19c8d79d4c4bba0 100644 --- a/simulators/c++2/src_simulator/sim/Simulator.cpp +++ b/simulators/c++2/src_simulator/sim/Simulator.cpp @@ -2042,7 +2042,11 @@ void Simulator::decodeCommand(std::string iCmd, std::ostream& iXmlOutStream){ //aGlobMsg << TAG_MSGo << MSG_CMDNIMPL << TAG_MSGc << std::endl; //anErrorCode=1; aInpStream >> aStrParam; - TMLChannel* aChannel = _simComp->getChannelByName(aStrParam); + std::string channelName = aStrParam; + if (channelName[0]<'0' || channelName[0]>'9'){ + channelName =_simComp->getChannelList(aStrParam); + } + TMLChannel* aChannel = _simComp->getChannelByName(channelName); if (aChannel==0){ aGlobMsg << TAG_MSGo << MSG_CMPNFOUND << TAG_MSGc << std::endl; anErrorCode=2; @@ -2352,6 +2356,58 @@ void Simulator::decodeCommand(std::string iCmd, std::ostream& iXmlOutStream){ std::cout << "End Save time in file x." << std::endl; break; } + case 29: { //write x samples from channel y + std::cout << "write x samples from channel y." << std::endl; + aInpStream >> aStrParam; + std::string channelName = aStrParam; + if (channelName[0]<'0' || channelName[0]>'9'){ + channelName =_simComp->getChannelList(aStrParam); + } + TMLChannel* aChannel = _simComp->getChannelByName(channelName); + if (aChannel==0){ + aGlobMsg << TAG_MSGo << MSG_CMPNFOUND << TAG_MSGc << std::endl; + anErrorCode=2; + } else { + aInpStream >> aParam1; + TMLEventChannel* anEventChannel = dynamic_cast<TMLEventChannel*>(aChannel); + if (anEventChannel==0){ + aChannel->writeSamples(aParam1, 0); + } else { + Parameter* anInsertParam = anEventChannel->buildParameter(); + aInpStream >> anInsertParam; + aChannel->writeSamples(aParam1, anInsertParam); + } + aGlobMsg << TAG_MSGo << "Write data from channel." << TAG_MSGc << std::endl; + } + std::cout << "End Write x samples from channel y." << std::endl; + break; + } + case 30: { //Read x samples from channel y + std::cout << "Read x samples from channel y." << std::endl; + aInpStream >> aStrParam; + std::string channelName = aStrParam; + if (channelName[0]<'0' || channelName[0]>'9'){ + channelName =_simComp->getChannelList(aStrParam); + } + TMLChannel* aChannel = _simComp->getChannelByName(channelName); + if (aChannel==0){ + aGlobMsg << TAG_MSGo << MSG_CMPNFOUND << TAG_MSGc << std::endl; + anErrorCode=2; + } else { + aInpStream >> aParam1; + TMLEventChannel* anEventChannel = dynamic_cast<TMLEventChannel*>(aChannel); + if (anEventChannel==0){ + aChannel->readSamples(aParam1, 0); + } else { + Parameter* anInsertParam = anEventChannel->buildParameter(); + aInpStream >> anInsertParam; + aChannel->readSamples(aParam1, anInsertParam); + } + aGlobMsg << TAG_MSGo << "Read data from channel." << TAG_MSGc << std::endl; + } + std::cout << "End Read x samples from channel y." << std::endl; + break; + } default: anEntityMsg << TAG_MSGo << MSG_CMDNFOUND<< TAG_MSGc << std::endl; anErrorCode=3;