blob: c19c2f5b9372b08f4a2d4f13fec6ffa80ae4420d [file] [log] [blame]
#pragma once
#include <algorithm>
#include <memory>
#include <climits>
#include <vector>
#include <string>
#include <systemd/sd-bus.h>
#include <systemd/sd-event.h>
#include <sdbusplus/message.hpp>
#include <sdbusplus/sdbus.hpp>
extern sdbusplus::SdBusImpl sdbus_impl;
namespace sdbusplus
{
// Forward declare.
namespace server
{
namespace interface
{
struct interface;
}
} // namespace server
namespace server
{
namespace manager
{
struct manager;
}
} // namespace server
namespace server
{
namespace object
{
template <class...> struct object;
}
} // namespace server
namespace bus
{
namespace match
{
struct match;
}
} // namespace bus
namespace bus
{
using busp_t = sd_bus*;
class bus;
/** @brief Get an instance of the 'default' bus. */
bus new_default();
/** @brief Get an instance of the 'user' session bus. */
bus new_user();
/** @brief Get an instance of the 'system' bus. */
bus new_system();
namespace details
{
/** @brief unique_ptr functor to release a bus reference. */
struct BusDeleter
{
void operator()(sd_bus* ptr) const
{
deleter(ptr);
}
decltype(&sd_bus_flush_close_unref) deleter = sd_bus_flush_close_unref;
};
/** @brief Convert a vector of strings to c-style char** array. */
class Strv
{
public:
~Strv() = default;
Strv() = delete;
Strv(const Strv&) = delete;
Strv& operator=(const Strv&) = delete;
Strv(Strv&&) = default;
Strv& operator=(Strv&&) = default;
explicit Strv(const std::vector<std::string>& v)
{
std::transform(v.begin(), v.end(), std::back_inserter(ptrs),
[](const auto& i) { return i.c_str(); });
ptrs.push_back(nullptr);
}
explicit operator char**()
{
return const_cast<char**>(&ptrs.front());
}
private:
std::vector<const char*> ptrs;
};
/* @brief Alias 'bus' to a unique_ptr type for auto-release. */
using bus = std::unique_ptr<sd_bus, BusDeleter>;
} // namespace details
/** @class bus
* @brief Provides C++ bindings to the sd_bus_* class functions.
*/
struct bus
{
/* Define all of the basic class operations:
* Not allowed:
* - Default constructor to avoid nullptrs.
* - Copy operations due to internal unique_ptr.
* Allowed:
* - Move operations.
* - Destructor.
*/
bus() = delete;
bus(const bus&) = delete;
bus& operator=(const bus&) = delete;
bus(bus&&) = default;
bus& operator=(bus&&) = default;
~bus() = default;
bus(busp_t b, sdbusplus::SdBusInterface* intf);
/** @brief Conversion constructor from 'busp_t'.
*
* Increments ref-count of the bus-pointer and releases it when done.
*/
explicit bus(busp_t b);
/** @brief Constructor for 'bus'.
*
* Takes ownership of the bus-pointer and releases it when done.
* This method will also cause the bus to be flushed and closed
* on destruction.
*/
bus(busp_t b, std::false_type);
/** @brief Release ownership of the stored bus-pointer. */
busp_t release()
{
return _bus.release();
}
/** @brief Wait for new dbus messages or signals.
*
* @param[in] timeout_us - Timeout in usec.
*/
void wait(uint64_t timeout_us = ULLONG_MAX)
{
_intf->sd_bus_wait(_bus.get(), timeout_us);
}
/** @brief Process waiting dbus messages or signals. */
auto process()
{
sd_bus_message* m = nullptr;
_intf->sd_bus_process(_bus.get(), &m);
return message::message(m, _intf, std::false_type());
}
/** @brief Process waiting dbus messages or signals, discarding unhandled.
*/
void process_discard()
{
_intf->sd_bus_process(_bus.get(), nullptr);
}
/** @brief Claim a service name on the dbus.
*
* @param[in] service - The service name to claim.
*/
void request_name(const char* service)
{
_intf->sd_bus_request_name(_bus.get(), service, 0);
}
/** @brief Create a method_call message.
*
* @param[in] service - The service to call.
* @param[in] objpath - The object's path for the call.
* @param[in] interf - The object's interface to call.
* @param[in] method - The object's method to call.
*
* @return A newly constructed message.
*/
auto new_method_call(const char* service, const char* objpath,
const char* interf, const char* method)
{
sd_bus_message* m = nullptr;
_intf->sd_bus_message_new_method_call(_bus.get(), &m, service, objpath,
interf, method);
return message::message(m, _intf, std::false_type());
}
/** @brief Create a signal message.
*
* @param[in] objpath - The object's path for the signal.
* @param[in] interf - The object's interface for the signal.
* @param[in] member - The signal name.
*
* @return A newly constructed message.
*/
auto new_signal(const char* objpath, const char* interf, const char* member)
{
sd_bus_message* m = nullptr;
_intf->sd_bus_message_new_signal(_bus.get(), &m, objpath, interf,
member);
return message::message(m, _intf, std::false_type());
}
/** @brief Perform a message call.
*
* @param[in] m - The method_call message.
* @param[in] timeout_us - The timeout for the method call.
*
* @return The response message.
*/
auto call(message::message& m, uint64_t timeout_us = 0)
{
sd_bus_message* reply = nullptr;
_intf->sd_bus_call(_bus.get(), m.get(), timeout_us, nullptr, &reply);
return message::message(reply, _intf, std::false_type());
}
/** @brief Perform a message call, ignoring the reply.
*
* @param[in] m - The method_call message.
* @param[in] timeout_us - The timeout for the method call.
*/
void call_noreply(message::message& m, uint64_t timeout_us = 0)
{
_intf->sd_bus_call(_bus.get(), m.get(), timeout_us, nullptr, nullptr);
}
/** @brief Get the bus unique name. Ex: ":1.11".
*
* @return The bus unique name.
*/
auto get_unique_name()
{
const char* unique = nullptr;
_intf->sd_bus_get_unique_name(_bus.get(), &unique);
return std::string(unique);
}
/** @brief Attach the bus with a sd-event event loop object.
*
* @param[in] event - sd_event object.
* @param[in] priority - priority of bus event source.
*/
void attach_event(sd_event* event, int priority)
{
_intf->sd_bus_attach_event(_bus.get(), event, priority);
}
/** @brief Detach the bus from its sd-event event loop object */
void detach_event()
{
_intf->sd_bus_detach_event(_bus.get());
}
/** @brief Get the sd-event event loop object of the bus */
auto get_event()
{
return _intf->sd_bus_get_event(_bus.get());
}
/** @brief Wrapper for sd_bus_emit_interfaces_added_strv
*
* In general the similarly named server::object::object API should
* be used to manage emission of ObjectManager signals in favor
* of this one. Provided here for complex usage scenarios.
*
* @param[in] path - The path to forward.
* @param[in] ifaces - The interfaces to forward.
*/
void emit_interfaces_added(const char* path,
const std::vector<std::string>& ifaces)
{
details::Strv s{ifaces};
_intf->sd_bus_emit_interfaces_added_strv(_bus.get(), path,
static_cast<char**>(s));
}
/** @brief Wrapper for sd_bus_emit_interfaces_removed_strv
*
* In general the similarly named server::object::object API should
* be used to manage emission of ObjectManager signals in favor
* of this one. Provided here for complex usage scenarios.
*
* @param[in] path - The path to forward.
* @param[in] ifaces - The interfaces to forward.
*/
void emit_interfaces_removed(const char* path,
const std::vector<std::string>& ifaces)
{
details::Strv s{ifaces};
_intf->sd_bus_emit_interfaces_removed_strv(_bus.get(), path,
static_cast<char**>(s));
}
/** @brief Wrapper for sd_bus_emit_object_added
*
* In general the similarly named server::object::object API should
* be used to manage emission of ObjectManager signals in favor
* of this one. Provided here for complex usage scenarios.
*
* @param[in] path - The path to forward to sd_bus_emit_object_added
*/
void emit_object_added(const char* path)
{
_intf->sd_bus_emit_object_added(_bus.get(), path);
}
/** @brief Wrapper for sd_bus_emit_object_removed
*
* In general the similarly named server::object::object API should
* be used to manage emission of ObjectManager signals in favor
* of this one. Provided here for complex usage scenarios.
*
* @param[in] path - The path to forward to sd_bus_emit_object_removed
*/
void emit_object_removed(const char* path)
{
_intf->sd_bus_emit_object_removed(_bus.get(), path);
}
/** @brief Wrapper for sd_bus_list_names.
*
* @return A vector of strings containing the 'acquired' names from
* sd_bus_list_names.
*/
auto list_names_acquired()
{
char** names = nullptr;
_intf->sd_bus_list_names(_bus.get(), &names, nullptr);
std::vector<std::string> result;
for (auto ptr = names; ptr && *ptr; ++ptr)
{
result.push_back(*ptr);
free(*ptr);
}
free(names);
return result;
}
/** @brief Get the SdBusInterface used by this bus.
*
* @return A pointer to the SdBusInterface used by this bus.
*/
sdbusplus::SdBusInterface* getInterface()
{
return _intf;
}
friend struct server::interface::interface;
friend struct server::manager::manager;
template <class... Args> friend struct server::object::object;
friend struct match::match;
private:
busp_t get()
{
return _bus.get();
}
sdbusplus::SdBusInterface* _intf;
details::bus _bus;
};
inline bus::bus(busp_t b, sdbusplus::SdBusInterface* intf) :
_intf(intf), _bus(_intf->sd_bus_ref(b))
{
// We can leave this as the real deleter if we just use a null pointer.
_bus.get_deleter().deleter = sd_bus_unref;
#if @WANT_TRANSACTION@
// Emitting object added causes a message to get the properties
// which can trigger a 'transaction' in the server bindings. If
// the bus isn't up far enough, this causes an assert deep in
// sd-bus code. Get the 'unique_name' to ensure the bus is up far
// enough to avoid the assert.
if (b != nullptr)
{
get_unique_name();
}
#endif
}
inline bus::bus(busp_t b) : _intf(&sdbus_impl), _bus(_intf->sd_bus_ref(b))
{
// We can leave this as the real deleter if we just use a null pointer.
_bus.get_deleter().deleter = sd_bus_unref;
#if @WANT_TRANSACTION@
// Emitting object added causes a message to get the properties
// which can trigger a 'transaction' in the server bindings. If
// the bus isn't up far enough, this causes an assert deep in
// sd-bus code. Get the 'unique_name' to ensure the bus is up far
// enough to avoid the assert.
if (b != nullptr)
{
get_unique_name();
}
#endif
}
inline bus::bus(busp_t b, std::false_type) : _intf(&sdbus_impl), _bus(b)
{
#if @WANT_TRANSACTION@
// Emitting object added causes a message to get the properties
// which can trigger a 'transaction' in the server bindings. If
// the bus isn't up far enough, this causes an assert deep in
// sd-bus code. Get the 'unique_name' to ensure the bus is up far
// enough to avoid the assert.
if (b != nullptr)
{
get_unique_name();
}
#endif
}
inline bus new_default()
{
sd_bus* b = nullptr;
sd_bus_open(&b);
return bus(b, std::false_type());
}
inline bus new_user()
{
sd_bus* b = nullptr;
sd_bus_open_user(&b);
return bus(b, std::false_type());
}
inline bus new_system()
{
sd_bus* b = nullptr;
sd_bus_open_system(&b);
return bus(b, std::false_type());
}
} // namespace bus
/** @brief Get the dbus bus from the message.
*
* @return The dbus bus.
*/
inline auto message::message::get_bus()
{
sd_bus* b = nullptr;
b = _intf->sd_bus_message_get_bus(_msg.get());
return bus::bus(b, _intf);
}
} // namespace sdbusplus