D-Bus is a message bus system, which allows client programs to call procedures on a service - basically, the machine-local equivalent to XML-RPC and SOAP.

learn more… | top users | synonyms

12
votes
2answers
6k views

USB devices UDev and D-BUS

I am trying to get a list of currently plugged in USB devices in Ubuntu 10.10 and monitor changes that happen, like devices being plugged in or out using UDev and D-BUS. I'm fairly new to programming ...
8
votes
1answer
3k views

Async wait on file descriptor using Boost Asio

I'm trying to integrate D-Bus with my boost::asio application. D-Bus has an API that enumerates a set of Unix file descriptors (mainly sockets but could also be FIFOs) to be watched. When those ...
1
vote
1answer
2k views

Python DBUS SESSION_BUS - X11 dependency

I've got running sample python code which is fine in Ubuntu desktop: import dbus, gobject from dbus.mainloop.glib import DBusGMainLoop from dbus.mainloop.glib import threads_init import subprocess ...
4
votes
3answers
1k views

How can I run a Perl script as root yet still affect user gconf settings

THE NEW QUERY: I am trying to make a unified script that initializes a new Ubuntu install to my liking, it must be run under sudo to install packages, but using gconftool-2 to affect gconf setting ...
2
votes
1answer
957 views

Start the session bus of DBus with Perl Net::DBus

I am using Perl and the Net::DBus module. I wrote a simple test program: #!/usr/bin/perl use strict; use warnings; package MyObj; use Net::DBus::Exporter qw(org.example.Tao); use base ...
0
votes
1answer
327 views

How does one expose methods and properties on DBus using a QDBusAbstractAdaptor with PyQt4?

I am trying to get some basic code running on DBus using PyQt4, specifically QtDBus. I am using a Python3 version of PyQt4. I have already gotten the code I want running on Qt (c++) but I want to get ...
1
vote
1answer
1k views

dbus-send to remote machine

What's the syntax for sending a dbus message to another machines dbus daemon using dbus-send? I see there's TCP/IP support for the destination address, but I can't find any docs on how to actually ...
0
votes
1answer
257 views

Lua reading dbus info

The last few days I've looked on the internet and couldn't anything that worked. What module can I use to read dbus with lua?
11
votes
5answers
3k views

How to write a functional test for a DBUS service written in Python?

(Title was: "How to write a unit test for a DBUS service written in Python?") I've started to write a DBUS service using dbus-python, but I'm having trouble writing a test case for it. Here is an ...
7
votes
1answer
2k views

error: longjmp causes uninitialized stack frame

I have a server application that creates a Bus on the dbus and after some minutes of running I got an error that I have never seen before. Did you have an idea whats wrong? *** longjmp causes ...
7
votes
3answers
1k views

How do I use Emacs's DBUS interface?

I looked up the dbus package and it seems like all of the functions are built-in to the C source code and there's no documentation for them. How do I use the dbus-call-method function?
4
votes
3answers
1k views

How to continuously monitor rhythmbox for track change using python

I want to monitor the change of track in Rhythmbox using python. I want to continuously check for change of track and execute a set of functions if the track is changed. I have written a piece of code ...
3
votes
1answer
1k views

MPRIS + Python (dbus): reading and writing properties

I have already checked this link: How to handle properties of a dbus interface with python. However, that only lists an API... but I don't know where that API comes from. I just started working with ...
2
votes
3answers
1k views

Linux USB Mapping Question

I'm working on a utility that will auto mount an inserted USB stick on linux. I have tied into D-Bus to receive notification of when a device is inserted, and that works great. However, I need to ...
3
votes
1answer
750 views

How to handle properties of a dbus interface with python?

I'm about to work on an implementation of mpris. But currently I am not sure how to read/write dbus interface properties with python-dbus. Is there any examples for this ?
2
votes
2answers
1k views

DBus Finch/Pidgin without X11

I want to do some Python scripting on my server where I can communicate with finch (A console interface of pidgin, with the interface looking like links2) through the DBus Python library to send ...
2
votes
3answers
2k views

Linux : How to detect is usb keyboard is plugged and unplugged

Is there any daemon/tool which will trigger some signal/event when usb keyboard is plugged and unplugged from pc ? I need to know in my program when usb keyboard is plugged and unplugged. Any ideas ...
3
votes
1answer
690 views

dbus signal handler for e NetworkManager VPN connection

I need to develop some python code to be executed when a VPN connection is established, the VPN is controlled from NetworkManager, I am trying to figure how to use an NM DBUS event for this. Using ...
3
votes
1answer
3k views

Linux Shutdown with dbus-send

I am writing a Java app to shutdown my Linux box remotely. The desktop app sits and waits for a command to be sent to it. I have tried using "shutdown -h" but this requires sudo privileges and is ...
2
votes
2answers
1k views

Python Dbus : How to export Interface property

In all python dbus documentations there are info on how to export objects, interfaces, signals, but there is nothing how to export interface property. Any ideas how to do that ? Regards, Levon
1
vote
1answer
214 views

selective D-BUS signal emitting from ObServer (unicast signal)

I have a situation where I have a single ObServer object and a set of Clients. ObServer and clients connected through D-BUS (IPC). ObServer has generic interface for all clients. But, time to time ...
1
vote
1answer
415 views

Create DBus signal dynamically in python

I've read some topics related to dynamically create python methods, and I followed their instructions, but it does not work. I do not know if it is because I use decorator @ or something else. The ...
1
vote
1answer
463 views

Accessing Clementine instance via D-Bus MPRIS in Java

I'm using Clementine as a music player. It can be controlled with D-Bus-commands. On the command-line, using qdbus, I can: Start Stop Pause the player Force it to skip a song in the playlist ...
1
vote
1answer
170 views

Where to find information about Nautilus D-Bus interface

I am planning to develop a command line application that interact with Nautilus, but I cannot find a reference for the D-Bus interface that Nautilus exposes.
0
votes
1answer
85 views

Passing non PODs [ Plain old DataTypes ] over IPC

I am writing an implementation for doing IPC. User do a call, I take all these parameters and pass them onto other process. I have written an automatic code generator for such functions based on ...
0
votes
1answer
83 views

How dynamically export methods to dbus using python, without static decorator?

I searched for an answer to this question in several places, but I could not find a consistent solution, and some are too old and unclear. I have a classe where the interface path for dbus is ...
0
votes
1answer
124 views

How export methods with dbus in a extended class in python, inherited methods?

I have a top class and classes that extend the top class, but almost all methods from the child classes are from the top class (using inheritance, without reimplementation), so I don't have the ...
0
votes
0answers
134 views

Tweaking the TreeView of pygtk (python)

First off, I want to apologize for the non-minimal code. I'll point to the part I believe is important for the question further down. As a whole the code should run and work with Pidgin (under Linux) ...