7

I have a .service for a process that i don't want to start at boot-time, but to call it somehow from another already running application, at a given time.

The other option would be to put a D-Bus (i'm using glib dbus in my apps ) service file in /usr/share/dbus-1/services and somehow call it from my application. Also, i don't manage to do this either.

Let's say that my dbus service file from /usr/share/dbus-1/services is com.callThis.service and my main service file from /lib/systemd/system is com.startThis.service

If i run a simple introspect from command line:

/home/root # dbus-send --session --type=method_call --print-reply \
--dest=com.callThis  /com/callThis org.freedesktop.DBus.Introspectable.Introspect

the D-Bus service file will get called and it will start what is in the Exec ( com.starThis ). The problem is that i want to achieve this from C/C++ code using D-Bus glib.

lmcanavals
  • 2,339
  • 1
  • 24
  • 35
Cumatru
  • 695
  • 2
  • 12
  • 34
  • Did you try to implement it? Show some first steps you did. Plenty of documentation and even a example can be found http://developer.gnome.org/gio/2.30/GDBusConnection.html – drahnr Feb 12 '13 at 07:57
  • 1
    http://www.freedesktop.org/wiki/Software/systemd/dbus/ Here is info on `systemd`'s DBUS API – Sergey Kanaev Nov 25 '13 at 09:27

2 Answers2

6

A combination of g_dbus_connection_send_message with g_dbus_message_new_method_call or g_dbus_message_new_signal should be what you are looking for.

drahnr
  • 6,782
  • 5
  • 48
  • 75
0

I had trouble to do the same thing. The discover of : G_BUS_NAME_WATCHER_FLAGS_AUTO_START solve it.

g_bus_watch_name(G_BUS_TYPE_SYSTEM, "com.mydbus.listen",
      G_BUS_NAME_WATCHER_FLAGS_AUTO_START, xOnNameAppeared, xOnNameVanished,
      this, nullptr);