#include "StateMachineDimControl.h" #include "Dim.h" #include "Event.h" #include "RemoteControl.h" #include "Configuration.h" #include "Converter.h" using namespace std; // ------------------------------------------------------------------------ bool StateMachineDimControl::fIsServer = false; string StateMachineDimControl::Line(const string &txt, char fill) { const int n = (55-txt.length())/2; ostringstream out; out << setfill(fill); out << setw(n) << fill << ' '; out << txt; out << ' ' << setw(n) << fill; if (2*n+txt.length()+2 != 57) out << fill; return out.str(); } int StateMachineDimControl::ChangeState(int qos, const Time &, int scriptdepth, string scriptfile, string user) { string msg; /* switch (qos) { case -3: msg = "End"; break; case -2: msg = "Load"; break; case -1: msg = "Start"; break; default: { ostringstream out; out << "Label " << qos; msg = out.str(); } } */ //if (qos<0) msg += to_string(scriptdepth); msg += ":"+scriptfile+"["+user+":"+to_string(getpid())+"]"; //if (fDebug) //Write(time, Line(msg, qos<-1 ? '=' :'-'), MessageImp::kInternal); if (qos==-3) fScriptUser = fUser; SetCurrentState(qos+3, msg.c_str()); //SetCurrentState(qos+3, Line(msg, qos<-1 ? '=' :'-').c_str()); return GetCurrentState(); //return qos+3; } int StateMachineDimControl::Write(const Time &time, const std::string &txt, int qos) { if (txt=="") { return ChangeState(qos, time, Readline::GetScriptDepth(), Readline::GetScript(), fScriptUser); /* === This might be necessary for thread safety, === but it break that the signal for the start of a new === script arrives synchronously before the first output === from the script // Post an anonymous event to the event loop Event evt(""); evt.AssignFunction(bind(&StateMachineDimControl::ChangeState, this, qos, time, Readline::GetScriptDepth(), Readline::GetScript(), fScriptUser)); return PostEvent(evt); */ } // if (qos data = Tools::Split(opt, true); if (imp.GetSize()==0 || opt.size()==0 || opt[0]==0) { Error("File name missing in DIM_CONTROL/START"); return GetCurrentState(); } if (fDebug) Debug("Start '"+opt+"' received."); if (fDebug) Debug("Received data: "+imp.GetString()); const auto user = data.find("user"); fScriptUser = user==data.end() ? fUser : user->second; if (fDebug) { for (auto it=data.begin(); it!=data.end(); it++) Debug(" Arg: "+it->first+" = "+it->second); } Readline::SetExternalInput(cmd+imp.GetString()); return 1; } int StateMachineDimControl::StopScript() { Readline::StopScript(); InterpreterV8::JsStop(); return GetCurrentState(); } void StateMachineDimControl::SendDimCommand(const string &server, string str, ostream &lout) { const lock_guard guard(fMutex); if (fServerList.find(server)==fServerList.end()) throw runtime_error("Server '"+server+"' not online."); str = Tools::Trim(str); // Find the delimiter between the command name and the data size_t p0 = str.find_first_of(' '); if (p0==string::npos) p0 = str.length(); // Get just the command name separated from the data const string name = str.substr(0, p0); // Compile the command which will be sent to the state-machine for (auto is=fServiceList.begin(); is!=fServiceList.end(); is++) { if (is->server!=server || is->service!=name) continue; if (!is->iscmd) throw runtime_error("'"+server+"/"+name+" not a command."); // Avoid compiler warning of unused parameter lout << flush; // Convert the user entered data according to the format string // into a data block which will be attached to the event #ifndef DEBUG ostringstream sout; const Converter conv(sout, is->format, false); #else const Converter conv(lout, is->format, false); #endif if (!conv) throw runtime_error("Couldn't properly parse the format... ignored."); #ifdef DEBUG lout << kBlue << server << '/' << name; #endif const vector v = conv.GetVector(str.substr(p0)); #ifdef DEBUG lout << kBlue << " [" << v.size() << "]" << endl; #endif const string cmd = server + '/' + name; const int rc = DimClient::sendCommand(cmd.c_str(), (void*)v.data(), v.size()); if (!rc) throw runtime_error("ERROR - Sending command "+cmd+" failed."); return; } throw runtime_error("Unkown server '"+server+"'"); } int StateMachineDimControl::PrintStates(std::ostream &out, const std::string &serv) { const lock_guard guard(fMutex); int rc = 0; for (auto it=fServerList.begin(); it!=fServerList.end(); it++) { if (!serv.empty() && *it!=serv) continue; out << kRed << "----- " << *it << " -----" << endl; int cnt = 0; for (auto is=fStateDescriptionList.begin(); is!=fStateDescriptionList.end(); is++) { const string &server = is->first.first; if (server!=*it) continue; const int32_t &state = is->first.second; const string &name = is->second.first; const string &comment = is->second.second; out << kBold << setw(5) << state << kReset << ": "; out << kYellow << name; if (!comment.empty()) out << kBlue << " (" << comment << ")"; out << endl; cnt++; } if (cnt==0) out << " " << endl; else rc++; out << endl; } return rc; } int StateMachineDimControl::PrintDescription(std::ostream &out, bool iscmd, const std::string &serv, const std::string &service) { const lock_guard guard(fMutex); int rc = 0; for (auto it=fServerList.begin(); it!=fServerList.end(); it++) { if (!serv.empty() && *it!=serv) continue; out << kRed << "----- " << *it << " -----" << endl << endl; for (auto is=fServiceList.begin(); is!=fServiceList.end(); is++) { if (is->server!=*it) continue; if (!service.empty() && is->service!=service) continue; if (is->iscmd!=iscmd) continue; rc++; out << " " << is->service; if (!is->format.empty()) out << '[' << is->format << ']'; const auto id = fServiceDescriptionList.find(*it+"/"+is->service); if (id!=fServiceDescriptionList.end()) { const vector &v = id->second; for (auto j=v.begin()+1; j!=v.end(); j++) out << " <" << j->name << ">"; out << endl; if (!v[0].comment.empty()) out << " " << v[0].comment << endl; for (auto j=v.begin()+1; j!=v.end(); j++) { out << " " << kGreen << j->name; if (!j->comment.empty()) out << kReset << ": " << kBlue << j->comment; if (!j->unit.empty()) out << kYellow << " [" << j->unit << "]"; out << endl; } } out << endl; } out << endl; } return rc; } int StateMachineDimControl::HandleStateChange(const string &server, DimDescriptions *dim) { fMutex.lock(); const State state = dim->description(); fCurrentStateList[server] = make_pair(dim->state(), state.index==DimState::kNotAvailable?"":state.name); fMutex.unlock(); return GetCurrentState(); } pair StateMachineDimControl::GetServerState(const std::string &server) { const lock_guard guard(fMutex); const auto it = fCurrentStateList.find(server); return it==fCurrentStateList.end() ? make_pair(-256, string()) : it->second; } int StateMachineDimControl::HandleStates(const string &server, DimDescriptions *dim) { fMutex.lock(); for (auto it=dim->states.begin(); it!=dim->states.end(); it++) fStateDescriptionList[make_pair(server, it->index)] = make_pair(it->name, it->comment); fMutex.unlock(); return GetCurrentState(); } int StateMachineDimControl::HandleDescriptions(DimDescriptions *dim) { fMutex.lock(); for (auto it=dim->descriptions.begin(); it!=dim->descriptions.end(); it++) fServiceDescriptionList[it->front().name].assign(it->begin(), it->end()); fMutex.unlock(); return GetCurrentState(); } std::vector StateMachineDimControl::GetDescription(const std::string &service) { const lock_guard guard(fMutex); const auto it = fServiceDescriptionList.find(service); return it==fServiceDescriptionList.end() ? vector() : it->second; } int StateMachineDimControl::HandleServerAdd(const string &server) { if (server!="DIS_DNS") { DimDescriptions *d = new DimDescriptions(server); fDimDescriptionsList.push_back(d); d->SetCallback(bind(&StateMachineDimControl::HandleStateChange, this, server, d)); d->SetCallbackStates(bind(&StateMachineDimControl::HandleStates, this, server, d)); d->SetCallbackDescriptions(bind(&StateMachineDimControl::HandleDescriptions, this, d)); d->Subscribe(*this); } // Make a copy of the list to be able to // lock the access to the list fMutex.lock(); fServerList.insert(server); fMutex.unlock(); return GetCurrentState(); } int StateMachineDimControl::HandleServerRemove(const string &server) { fMutex.lock(); fServerList.erase(server); fMutex.unlock(); return GetCurrentState(); } vector StateMachineDimControl::GetServerList() { vector rc; fMutex.lock(); rc.reserve(fServerList.size()); for (auto it=fServerList.begin(); it!=fServerList.end(); it++) rc.push_back(*it); fMutex.unlock(); return rc; } vector StateMachineDimControl::GetCommandList(const string &server) { const lock_guard guard(fMutex); const string s = server.substr(0, server.length()-1); if (fServerList.find(s)==fServerList.end()) return vector(); vector rc; for (auto it=fServiceList.begin(); it!=fServiceList.end(); it++) if (it->iscmd && it->server==s) rc.push_back(server+it->service); return rc; } vector StateMachineDimControl::GetCommandList() { vector rc; fMutex.lock(); for (auto it=fServiceList.begin(); it!=fServiceList.end(); it++) if (it->iscmd) rc.push_back(it->server+"/"+it->service); fMutex.unlock(); return rc; } int StateMachineDimControl::HandleAddService(const Service &svc) { // Make a copy of the list to be able to // lock the access to the list fMutex.lock(); fServiceList.insert(svc); fMutex.unlock(); return GetCurrentState(); } bool StateMachineDimControl::HasServer(const std::string &server) { fMutex.lock(); const bool rc = fServerList.find(server)!=fServerList.end(); fMutex.unlock(); return rc; } StateMachineDimControl::StateMachineDimControl(ostream &out) : StateMachineDim(out, fIsServer?"DIM_CONTROL":"") { fDim.Subscribe(*this); fDimList.Subscribe(*this); fDimList.SetCallbackServerAdd (bind(&StateMachineDimControl::HandleServerAdd, this, placeholders::_1)); fDimList.SetCallbackServerRemove(bind(&StateMachineDimControl::HandleServerRemove, this, placeholders::_1)); fDimList.SetCallbackServiceAdd (bind(&StateMachineDimControl::HandleAddService, this, placeholders::_1)); // State names AddStateName(0, "Idle", "No script currently in processing."); AddStateName(1, "Load", "Script being loaded."); AddStateName(2, "Started", "Script execution started."); AddEvent("START", "C", 0) (bind(&StateMachineDimControl::StartScript, this, placeholders::_1, ".js ")) ("Start a JavaScript"); AddEvent("EXECUTE", "C", 0) (bind(&StateMachineDimControl::StartScript, this, placeholders::_1, ".x ")) ("Execute a batch script"); AddEvent("STOP", "C") (bind(&StateMachineDimControl::StopScript, this)) ("Stop a runnning batch script or JavaScript"); } StateMachineDimControl::~StateMachineDimControl() { for (auto it=fDimDescriptionsList.begin(); it!=fDimDescriptionsList.end(); it++) delete *it; } int StateMachineDimControl::EvalOptions(Configuration &conf) { fDebug = conf.Get("debug"); fUser = conf.Get("user"); fScriptUser = fUser; // fVerbosity = 40; // if (conf.Has("verbosity")) // fVerbosity = conf.Get("verbosity"); // if (conf.Get("quiet")) // fVerbosity = 90; const int cnt = conf.Get("stop")+conf.Has("start")+conf.Has("batch"); if (fIsServer) { if (cnt>0) { Error("--start, --batch, --stop are mutually exclusive to --server."); return 3; } return -1; } if (cnt>1) { Error("--start, --batch and --stop are all mutually exclusive."); return 4; } if (conf.Get("stop")) return Dim::SendCommand("DIM_CONTROL/STOP", fUser) + 1; if (conf.Has("start")) return Dim::SendCommand("DIM_CONTROL/START", conf.Get("start")+" user="+fUser) + 1; if (conf.Has("batch")) return Dim::SendCommand("DIM_CONTROL/EXECUTE", conf.Get("batch")+" user="+fUser) + 1; if (conf.Has("msg")) return Dim::SendCommand("CHAT/MSG", fUser+": "+conf.Get("msg")) + 1; return -1; }