1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00
VILLASnode/lib/api.cpp

113 lines
2.4 KiB
C++

/** REST-API-releated functions.
*
* @author Steffen Vogel <stvogel@eonerc.rwth-aachen.de>
* @copyright 2014-2020, 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 <http://www.gnu.org/licenses/>.
*********************************************************************************/
#include <villas/api.hpp>
#include <villas/api/session.hpp>
#include <villas/utils.hpp>
#include <villas/node/config.h>
#include <villas/memory.h>
#include <villas/compat.hpp>
using namespace villas;
using namespace villas::node;
using namespace villas::node::api;
Api::Api(SuperNode *sn) :
state(State::INITIALIZED),
super_node(sn),
server(this)
{
logger = logging.get("api");
}
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 < 2 && 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 */
while (!pending.empty()) {
Session *s = pending.pop();
if (s) {
/* Check that the session is still alive */
auto it = std::find(sessions.begin(), sessions.end(), s);
if (it == sessions.end())
return;
s->runPendingActions();
}
}
}
void Api::worker()
{
logger->info("Started worker");
while (running) {
run();
server.run();
}
logger->info("Stopped worker");
}