/** REST-API-releated functions. * * @author Steffen Vogel * @copyright 2017-2018, Institute for Automation of Complex Power Systems, EONERC * @license GNU General Public License (version 3) * * VILLASnode * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . *********************************************************************************/ #include #include #include #include #include #include #include using namespace villas; using namespace villas::node; using namespace villas::node::api; Logger Api::logger = logging.get("api"); Api::Api(SuperNode *sn) : state(STATE_INITIALIZED), super_node(sn), server(this) { } Api::~Api() { assert(state != STATE_STARTED); } void Api::start() { assert(state != STATE_STARTED); logger->info("Starting sub-system"); server.start(); running = true; thread = std::thread(&Api::worker, this); state = STATE_STARTED; } void Api::stop() { assert(state == STATE_STARTED); logger->info("Stopping sub-system"); for (Session *s : sessions) s->shutdown(); for (int i = 0; i < 10 && sessions.size() > 0; i++) { logger->info("Waiting for {} sessions to terminate", sessions.size()); usleep(1 * 1e6); } running = false; pending.push(nullptr); /* unblock thread */ thread.join(); server.stop(); state = STATE_STOPPED; } void Api::run() { if (pending.empty()) return; /* Process pending actions */ Session *s = pending.pop(); if (s) s->runPendingActions(); } void Api::worker() { while (running) { run(); server.run(); } logger->info("Stopping worker"); }