| #pragma once |
| #include <tuple> |
| #include <systemd/sd-bus.h> |
| #include <sdbusplus/server.hpp> |
| <% |
| namespaces = interface.name.split('.') |
| classname = namespaces.pop() |
| %> |
| namespace sdbusplus |
| { |
| namespace server |
| { |
| % for s in namespaces: |
| namespace ${s} |
| { |
| % endfor |
| |
| class ${classname} |
| { |
| public: |
| /* 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. |
| */ |
| ${classname}() = delete; |
| ${classname}(const ${classname}&) = delete; |
| ${classname}& operator=(const ${classname}&) = delete; |
| ${classname}(${classname}&&) = default; |
| ${classname}& operator=(${classname}&&) = default; |
| virtual ~${classname}() = default; |
| |
| /** @brief Constructor to put object onto bus at a dbus path. |
| * @param[in] bus - Bus to attach to. |
| * @param[in] path - Path to attach at. |
| */ |
| ${classname}(bus::bus& bus, const char* path); |
| |
| % for m in interface.methods: |
| ${ m.cpp_prototype(loader, interface=interface, ptype='header') } |
| % endfor |
| |
| private: |
| % for m in interface.methods: |
| ${ m.cpp_prototype(loader, interface=interface, ptype='callback-header') } |
| % endfor |
| |
| static constexpr auto _interface = "${interface.name}"; |
| static const vtable::vtable_t _vtable[]; |
| interface::interface _${"_".join(interface.name.split('.'))}_interface; |
| |
| }; |
| |
| % for s in namespaces: |
| } // namespace ${s} |
| % endfor |
| } // namespace server |
| } // namespace sdbusplus |