세션 버스를 사용하는 서비스를 생성/시작하려고 합니다. 세션 버스일 필요는 없으며 단지 작동하기를 원하며 면책조항처럼 둘 사이의 차이점을 모릅니다.
기본적으로 제가 작업하고 있는 건sdbus-cpp도서관에 가서 그들의 모범을 따르세요.
내 서비스 파일:
[Unit]
Description=org.sdbuscpp.concatenator
[Service]
Type=simple
ExecStart=/home/john/dev/dbus/server/build/dbus-server
StandardOutput=journal
User=john
[Install]
WantedBy=multi-user.target
내 구성:
<!DOCTYPE busconfig PUBLIC
"-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN"
"http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd">
<busconfig>
<policy user="john">
<allow own="org.sdbuscpp.concatenator"/>
<allow send_destination="org.sdbuscpp"/>
<allow send_interface="org.sdbuscpp.concatenator"/>
</policy>
</busconfig>
GitHub의 샘플 코드는 다음과 같습니다.
#include <sdbus-c++/sdbus-c++.h>
#include <string>
#include <vector>
// Yeah, global variable is ugly, but this is just an example and we want to access
// the concatenator instance from within the concatenate method handler to be able
// to emit signals.
sdbus::IObject* g_concatenator{};
void concatenate(sdbus::MethodCall call)
{
// Deserialize the collection of numbers from the message
std::vector<int> numbers;
call >> numbers;
// Deserialize separator from the message
std::string separator;
call >> separator;
// Return error if there are no numbers in the collection
if (numbers.empty())
{
throw sdbus::Error("org.sdbuscpp.Concatenator.Error", "No numbers provided");
}
std::string result;
for (auto number : numbers)
{
result += (result.empty() ? std::string() : separator) + std::to_string(number);
}
// Serialize resulting string to the reply and send the reply to the caller
auto reply = call.createReply();
reply << result;
reply.send();
// Emit 'concatenated' signal
const char* interfaceName = "org.sdbuscpp.Concatenator";
auto signal = g_concatenator->createSignal(interfaceName, "concatenated");
signal << result;
g_concatenator->emitSignal(signal);
}
int main()
{
// Create D-Bus connection to the system bus and requests name on it.
const char* serviceName = "org.sdbuscpp.concatenator";
// auto connection = sdbus::createSystemBusConnection(serviceName);
auto connection = sdbus::createSessionBusConnection(serviceName);
// Create concatenator D-Bus object.
const char* objectPath = "/org/sdbuscpp/concatenator";
auto concatenator = sdbus::createObject(*connection, objectPath);
g_concatenator = concatenator.get();
// Register D-Bus methods and signals on the concatenator object, and exports the object.
const char* interfaceName = "org.sdbuscpp.Concatenator";
concatenator->registerMethod(interfaceName, "concatenate", "ais", "s", &concatenate);
concatenator->registerSignal(interfaceName, "concatenated", "s");
concatenator->finishRegistration();
// Run the I/O event loop on the bus connection.
connection->enterProcessingLoop();
}
서비스를 시작하면 다음과 같은 결과가 나옵니다.
Feb 19 17:59:01 box systemd[1]: Started org.sdbuscpp.concatenator.
Feb 19 17:59:02 box dbus-server[828]: terminate called after throwing an instance of 'sdbus::Error'
Feb 19 17:59:02 box dbus-server[828]: what(): [org.freedesktop.DBus.Error.FileNotFound] Failed to open bus (No such file or directory)
Feb 19 17:59:02 box systemd[1]: org.sdbuscpp.concatenator.service: Main process exited, code=dumped, status=6/ABRT
Feb 19 17:59:02 box systemd[1]: org.sdbuscpp.concatenator.service: Failed with result 'core-dump'.
시스템 버스를 사용하도록 코드를 변경하면 서비스가 시작되는데, d-feet를 사용하여 서비스를 찾아 클릭하면 오류 메시지가 나옵니다.
내가 무엇을 잘못했거나 잘못 이해했나요? 우분투 19.10을 실행 중입니다.
답변1
나는 무덤 파는 사람의 헬멧을 썼다...
아마도 이것이 다른 독자들에게 도움이 될 것입니다:
처형
dbus-launch
이렇게 하면 터미널에서 설명된 문제가 해결됩니다.