oxen-pyoxenmq/pylokimq/lokimq.cpp

91 lines
3.2 KiB
C++
Raw Normal View History

2020-07-20 14:19:09 +02:00
#include "common.hpp"
#include <lokimq/lokimq.h>
#include <lokimq/address.h>
#include <future>
#include <memory>
namespace lokimq
{
void
LokiMQ_Init(py::module & mod)
{
py::class_<ConnectionID>(mod, "ConnectionID");
py::class_<address>(mod, "Address")
.def(py::init<std::string>());
2020-07-22 19:41:46 +02:00
py::class_<TaggedThreadID>(mod, "TaggedThreadID");
2020-07-20 14:19:09 +02:00
py::class_<LokiMQ>(mod, "LokiMQ")
.def(py::init<>())
.def("start", &LokiMQ::start)
.def("listen_plain",
[](LokiMQ & self, std::string path) {
self.listen_plain(path);
})
.def("listen_curve", &LokiMQ::listen_curve)
2020-07-22 19:41:46 +02:00
.def("add_tagged_thread",
[](LokiMQ & self, const std::string & name) {
return self.add_tagged_thread(name);
})
.def("add_timer",
[](LokiMQ & self, std::chrono::milliseconds interval, std::function<void(void)> callback) {
self.add_timer(callback, interval);
})
.def("call_soon",
[](LokiMQ & self, std::function<void(void)> job, std::optional<TaggedThreadID> thread)
{
self.job(std::move(job), std::move(thread));
})
2020-07-20 14:19:09 +02:00
.def("add_anonymous_category",
[](LokiMQ & self, std::string name)
{
self.add_category(std::move(name), AuthLevel::none);
})
.def("add_request_command",
[](LokiMQ &self,
const std::string & category,
const std::string & name,
2020-07-22 19:41:46 +02:00
std::function<std::string(std::vector<std::string_view>)> handler)
2020-07-20 14:19:09 +02:00
{
self.add_request_command(category, name,
[handler](Message & msg) {
2020-07-22 19:41:46 +02:00
std::string result;
{
py::gil_scoped_acquire gil;
result = handler(msg.data);
}
2020-07-20 14:19:09 +02:00
msg.send_reply(result);
});
})
.def("connect_remote",
[](LokiMQ & self,
std::string remote) -> std::optional<ConnectionID>
{
std::promise<std::optional<ConnectionID>> promise;
self.connect_remote(
remote,
[&promise](ConnectionID id) { promise.set_value(std::move(id)); },
[&promise](auto, auto) { promise.set_value(std::nullopt); });
return promise.get_future().get();
})
.def("request",
[](LokiMQ & self,
ConnectionID conn,
std::string name,
2020-07-22 19:41:46 +02:00
std::vector<std::string> args) -> std::optional<std::vector<std::string>>
2020-07-20 14:19:09 +02:00
{
std::promise<std::optional<std::vector<std::string>>> result;
self.request(conn, std::move(name),
[&result](bool success, std::vector<std::string> value)
{
if(not success)
{
result.set_value(std::nullopt);
return;
}
result.set_value(std::move(value));
2020-07-22 19:41:46 +02:00
}, lokimq::send_option::data_parts(args.begin(), args.end()));
2020-07-20 14:19:09 +02:00
return result.get_future().get();
});
}
}