#include #include #include #include #include #include #include #include int foo(int test) { return ++test; } int main() { using GetSubTreeType = std::vector>>>>; using message = sdbusplus::message::message; // setup connection to dbus boost::asio::io_service io; auto conn = std::make_shared(io); // test async method call and async send auto mesg = conn->new_method_call("xyz.openbmc_project.ObjectMapper", "/xyz/openbmc_project/object_mapper", "xyz.openbmc_project.ObjectMapper", "GetSubTree"); static const auto depth = 2; static const std::vector interfaces = { "xyz.openbmc_project.Sensor.Value"}; mesg.append("/xyz/openbmc_project/Sensors", depth, interfaces); conn->async_send(mesg, [](boost::system::error_code ec, message& ret) { std::cout << "async_send callback\n"; if (ec || ret.is_method_error()) { std::cerr << "error with async_send\n"; return; } GetSubTreeType data; ret.read(data); for (auto& item : data) { std::cout << item.first << "\n"; } }); conn->async_method_call( [](boost::system::error_code ec, GetSubTreeType& subtree) { std::cout << "async_method_call callback\n"; if (ec) { std::cerr << "error with async_method_call\n"; return; } for (auto& item : subtree) { std::cout << item.first << "\n"; } }, "xyz.openbmc_project.ObjectMapper", "/xyz/openbmc_project/object_mapper", "xyz.openbmc_project.ObjectMapper", "GetSubTree", "/org/openbmc/control", 2, std::vector()); // test object server conn->request_name("xyz.openbmc_project.asio-test"); auto server = sdbusplus::asio::object_server(conn); std::shared_ptr iface = server.add_interface("/xyz/openbmc_project/test", "xyz.openbmc_project.test"); // test generic properties iface->register_property("int", 33, sdbusplus::asio::PropertyPermission::readWrite); std::vector myStringVec = {"some", "test", "data"}; std::vector myStringVec2 = {"more", "test", "data"}; iface->register_property("myStringVec", myStringVec, sdbusplus::asio::PropertyPermission::readWrite); iface->register_property("myStringVec2", myStringVec2); // test properties with specialized callbacks iface->register_property("lessThan50", 23, // custom set [](const int& req, int& propertyValue) { if (req >= 50) { return -EINVAL; } propertyValue = req; return 1; // success }); iface->register_property( "TrailTime", std::string("foo"), // custom set [](const std::string& req, std::string& propertyValue) { propertyValue = req; return 1; // success }, // custom get [](const std::string& property) { auto now = std::chrono::system_clock::now(); auto timePoint = std::chrono::system_clock::to_time_t(now); return property + std::ctime(&timePoint); }); // test method creation iface->register_method("TestMethod", [](const int32_t& callCount) { return "success: " + std::to_string(callCount); }); iface->register_method("TestFunction", foo); iface->initialize(); iface->set_property("int", 45); io.run(); return 0; }