/******************************************************************************** * Copyright (C) 2014-2019 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH * * * * This software is distributed under the terms of the * * GNU Lesser General Public Licence (LGPL) version 3, * * copied verbatim in the file "LICENSE" * ********************************************************************************/ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include // raw mode console input #include #include #include using namespace std; using namespace dds::intercom_api; namespace bpo = boost::program_options; struct TerminalConfig { explicit TerminalConfig() { termios t; tcgetattr(STDIN_FILENO, &t); // get the current terminal I/O structure t.c_lflag &= ~ICANON; // disable canonical input // t.c_lflag &= ~ECHO; // do not echo input chars tcsetattr(STDIN_FILENO, TCSANOW, &t); // apply the new settings } ~TerminalConfig() { termios t; tcgetattr(STDIN_FILENO, &t); // get the current terminal I/O structure t.c_lflag |= ICANON; // re-enable canonical input // t.c_lflag |= ECHO; // echo input chars tcsetattr(STDIN_FILENO, TCSANOW, &t); // apply the new settings } }; struct StateSubscription { const string& fTopologyPath; CCustomCmd& fDdsCustomCmd; explicit StateSubscription(const string& topologyPath, CCustomCmd& ddsCustomCmd) : fTopologyPath(topologyPath) , fDdsCustomCmd(ddsCustomCmd) { fDdsCustomCmd.send("subscribe-to-state-changes", fTopologyPath); } ~StateSubscription() { fDdsCustomCmd.send("unsubscribe-from-state-changes", fTopologyPath); this_thread::sleep_for(chrono::milliseconds(100)); // give dds a chance to complete request } }; void printControlsHelp() { cout << "Use keys to control the devices:" << endl; cout << "[c] check states, [o] dump config, [h] help, [r] run, [s] stop, [t] reset task, [d] reset device, [q] end, [j] init task, [i] init device, [b] bind, [x] connect" << endl; cout << "To quit press Ctrl+C" << endl; } void commandMode(const string& commandIn, const string& topologyPath, CCustomCmd& ddsCustomCmd) { char c; string command(commandIn); TerminalConfig tconfig; if (command == "") { printControlsHelp(); cin >> c; command = c; } while (true) { if (command == "c") { cout << "\033[01;32m > checking state of the devices\033[0m" << endl; ddsCustomCmd.send("check-state", topologyPath); } else if (command == "o") { cout << "\033[01;32m > dumping config of the devices\033[0m" << endl; ddsCustomCmd.send("dump-config", topologyPath); } else if (command == "i") { cout << "\033[01;32m > init devices\033[0m" << endl; ddsCustomCmd.send("INIT DEVICE", topologyPath); } else if (command == "b") { cout << "\033[01;32m > bind devices\033[0m" << endl; ddsCustomCmd.send("BIND", topologyPath); } else if (command == "x") { cout << "\033[01;32m > connect devices\033[0m" << endl; ddsCustomCmd.send("CONNECT", topologyPath); } else if (command == "j") { cout << "\033[01;32m > init tasks\033[0m" << endl; ddsCustomCmd.send("INIT TASK", topologyPath); } else if (command == "p") { cout << "\033[01;32m > pause devices\033[0m" << endl; ddsCustomCmd.send("PAUSE", topologyPath); } else if (command == "r") { cout << "\033[01;32m > run tasks\033[0m" << endl; ddsCustomCmd.send("RUN", topologyPath); } else if (command == "s") { cout << "\033[01;32m > stop devices\033[0m" << endl; ddsCustomCmd.send("STOP", topologyPath); } else if (command == "t") { cout << "\033[01;32m > reset tasks\033[0m" << endl; ddsCustomCmd.send("RESET TASK", topologyPath); } else if (command == "d") { cout << "\033[01;32m > reset devices\033[0m" << endl; ddsCustomCmd.send("RESET DEVICE", topologyPath); } else if (command == "h") { cout << "\033[01;32m > help\033[0m" << endl; printControlsHelp(); } else if (command == "q") { cout << "\033[01;32m > end\033[0m" << endl; ddsCustomCmd.send("END", topologyPath); } else if (command == "q!") { ddsCustomCmd.send("SHUTDOWN", topologyPath); } else if (command == "r!") { ddsCustomCmd.send("STARTUP", topologyPath); } else { cout << "\033[01;32mInvalid input: [" << c << "]\033[0m" << endl; printControlsHelp(); } if (commandIn != "") { this_thread::sleep_for(chrono::milliseconds(100)); // give dds a chance to complete request break; } else { cin >> c; command = c; } } } struct WaitMode { explicit WaitMode(const string& targetState) : fTargetState(targetState) {} void Run(const chrono::milliseconds& timeout, const string& topologyPath, CCustomCmd& ddsCustomCmd) { StateSubscription stateSubscription(topologyPath, ddsCustomCmd); // TODO once DDS provides an API to retrieve actual number of tasks, use it here auto condition = [&] { return !fTargetStates.empty() && all_of(fTargetStates.cbegin(), fTargetStates.cend(), [&](unordered_map::value_type i) { return boost::algorithm::ends_with(i.second, fTargetState); }); }; unique_lock lock(fMtx); if (timeout > chrono::milliseconds(0)) { if (!fCV.wait_for(lock, timeout, condition)) { throw runtime_error("timeout"); } } else { fCV.wait(lock, condition); } } void AddNewStateEntry(uint64_t senderId, const string& state) { { unique_lock lock(fMtx); fTargetStates[senderId] = state; } fCV.notify_one(); } mutex fMtx; condition_variable fCV; unordered_map fTargetStates; string fTargetState; }; int main(int argc, char* argv[]) { try { string sessionID; string command; string topologyPath; string targetState; unsigned int timeout; bpo::options_description options("Common options"); auto envSessionId = getenv("DDS_SESSION_ID"); if (envSessionId) { options.add_options()("session,s", bpo::value(&sessionID)->default_value(envSessionId), "DDS Session ID (overrides any value in env var $DDS_SESSION_ID)"); } else { options.add_options()("session,s", bpo::value(&sessionID)->required(), "DDS Session ID (overrides any value in env var $DDS_SESSION_ID)"); } options.add_options() ("command,c", bpo::value (&command)->default_value(""), "Command character") ("path,p", bpo::value (&topologyPath)->default_value(""), "DDS Topology path to send command to (empty - send to all tasks)") ("wait-for-state,w", bpo::value (&targetState)->default_value(""), "Wait until targeted FairMQ devices reach the given state") ("timeout,t", bpo::value (&timeout)->default_value(0), "Timeout in milliseconds when waiting for a device state (0 - wait infinitely)") ("help,h", "Produce help message"); bpo::variables_map vm; bpo::store(bpo::command_line_parser(argc, argv).options(options).run(), vm); if (vm.count("help")) { cout << "FairMQ DDS Command UI" << endl << options << endl; cout << "Commands: [c] check state, [o] dump config, [h] help, [r] run, [s] stop, [t] reset task, [d] reset device, [q] end, [j] init task, [i] init device" << endl; return EXIT_SUCCESS; } bpo::notify(vm); WaitMode waitMode(targetState); CIntercomService service; CCustomCmd ddsCustomCmd(service); service.subscribeOnError([](const EErrorCode errorCode, const string& errorMsg) { cerr << "DDS error received: error code: " << errorCode << ", error message: " << errorMsg << endl; }); // subscribe to receive messages from DDS ddsCustomCmd.subscribe([&](const string& msg, const string& /*condition*/, uint64_t senderId) { cerr << "Received: " << msg << endl; vector parts; boost::algorithm::split(parts, msg, boost::algorithm::is_any_of(":,")); if (parts[0] == "state-change") { boost::trim(parts[2]); waitMode.AddNewStateEntry(senderId, parts[2]); } else if (parts[0] == "state-changes-subscription") { if (parts[2] != "OK") { cerr << "state-changes-subscription failed with return code: " << parts[2]; } } else if (parts[0] == "state-changes-unsubscription") { if (parts[2] != "OK") { cerr << "state-changes-unsubscription failed with return code: " << parts[2]; } } else { // cout << "Received: " << msg << endl; } }); service.start(sessionID); if (targetState == "") { commandMode(command, topologyPath, ddsCustomCmd); } else { PrintControlsHelp(); } while (cin >> c) { switch (c) { case 'c': cout << " > checking state of the devices" << endl; ddsCustomCmd.send("check-state", topologyPath); break; case 'o': cout << " > dumping config of the devices" << endl; ddsCustomCmd.send("dump-config", topologyPath); break; case 'i': cout << " > init devices" << endl; ddsCustomCmd.send("INIT DEVICE", topologyPath); break; case 'b': cout << " > bind" << endl; ddsCustomCmd.send("BIND", topologyPath); break; case 'x': cout << " > connect" << endl; ddsCustomCmd.send("CONNECT", topologyPath); break; case 'j': cout << " > init tasks" << endl; ddsCustomCmd.send("INIT TASK", topologyPath); break; case 'r': cout << " > run tasks" << endl; ddsCustomCmd.send("RUN", topologyPath); break; case 's': cout << " > stop devices" << endl; ddsCustomCmd.send("STOP", topologyPath); break; case 't': cout << " > reset tasks" << endl; ddsCustomCmd.send("RESET TASK", topologyPath); break; case 'd': cout << " > reset devices" << endl; ddsCustomCmd.send("RESET DEVICE", topologyPath); break; case 'h': cout << " > help" << endl; PrintControlsHelp(); break; case 'q': cout << " > end" << endl; ddsCustomCmd.send("END", topologyPath); break; default: cout << "Invalid input: [" << c << "]" << endl; PrintControlsHelp(); break; } if (command != "") { commandMode(command, topologyPath, ddsCustomCmd); } waitMode.Run(chrono::milliseconds(timeout), topologyPath, ddsCustomCmd); } } catch (exception& e) { cerr << "Error: " << e.what() << endl; return EXIT_FAILURE; } return EXIT_SUCCESS; }