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

32 lines
770 B
C++
Raw Normal View History

/** Path API Request.
*
* @file
* @author Steffen Vogel <post@steffenvogel.de>
2022-03-15 09:28:57 -04:00
* @copyright 2014-2022, Institute for Automation of Complex Power Systems, EONERC
2022-07-04 18:20:03 +02:00
* @license Apache 2.0
*********************************************************************************/
2022-03-25 17:27:16 +01:00
#include <villas/api/requests/path.hpp>
#include <villas/path.hpp>
using namespace villas::node::api;
void PathRequest::prepare()
{
int ret;
uuid_t uuid;
ret = uuid_parse(matches[1].c_str(), uuid);
if (ret)
throw BadRequest("Invalid UUID", "{ s: s }",
"uuid", matches[1].c_str()
);
auto paths = session->getSuperNode()->getPaths();
path = paths.lookup(uuid);
if (!path)
throw BadRequest("No path found with with matching UUID", "{ s: s }",
"uuid", matches[1].c_str()
);
}