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.
11
votes
3answers
2k views
Dbus: is there such a thing as a “Dbus sniffer”?
Is there such a thing as a "Dbus sniffer" ?
I would like to "sniff" all (or part) of the messages transiting on Dbus.
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 ...
11
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 ...
8
votes
1answer
116 views
Emacs connects to system bus, but not to the session one
The system bus works fine
(dbus-init-bus :system)
returns nil, as it should.
However, connection to the session bus
(dbus-init-bus :session)
raises
(dbus-error "No connection to bus" :session)
...
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?
7
votes
4answers
3k views
Is there an equivalent to DBus on OSX?
Is there an equivalent to Linux DBus on OSX? I mean, is there a "message bus" available by default on OSX?
Disclaimer: OSX newbie here.
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
2answers
3k views
Getting Java Binding for Dbus to Run on Android
Has anyone succeeded in running the Java bindings for dbus on Android? All indications point at dbus already running as a process within the Android OS, but there is no official access point for them ...
7
votes
2answers
300 views
libvlc and dbus interface
I'm trying a to create a basic media player using libvlc which will be controlled through dbus. I'm using the gtk and libvlc bindings for python. The code is based on the official example from the ...
6
votes
5answers
2k views
Temporarily prevent linux from shutting down
I have a backup script that runs in the background daily on my linux (Fedora 9) computer. If the computer is shut down while the backup is in progress the backup may be damaged so I would like to ...
6
votes
2answers
3k views
dbus_bus_request_name (): Connections are not allowed to own the service
I built a root filesystem on arm. It should run dbus-daemon and avahi-daemon, but when I try to run avahi-daemon
$ dbus-daemon --system
$ avahi-daemon
I get this message:
Found user 'avahi' (UID ...
6
votes
1answer
2k views
Waiting for a DBus service to be available in Qt
With a Qt DBus proxy built on QDbusAbstractInterface (via qdbusxml2cpp), what's the best way to handle the service/object you want to interface to not being available when you start? Note: I'm not ...
6
votes
1answer
472 views
D-Bus threading model
I am starting to use D-Bus as the IPC mechanism for a new project in Linux/KDE. And I've discovered that the documentation does not really address concurrency at all. How are D-Bus services expected ...
6
votes
1answer
952 views
DBus: Performance improvement practices
What are some good practices to obtain better time performance in applications that heavily utilize DBus?
Here are a few that our team has learned through the school of hard knocks:
Try to combine ...
5
votes
1answer
1k views
Connecting to dbus over tcp
I wrote a simple python program to play and pause banshee music player.
While its working on my own machine, I have trouble doing it to a remote computer, connected to the same router (LAN).
I edited ...
5
votes
4answers
3k views
QtDbus c++ minimal example
I try four days already to understand how to use QtDbus to send integer between two applications. But all my attempts failed. I found a lot of examples in internet but when I am trying to put all ...
5
votes
3answers
609 views
Passing a large data structure over dbus
I'm using dbus to communicate two programs. One creates a large image and it later sends it other program for further processing. I'm passing the image as ByteArray.
With 2000x2000 images my program ...
4
votes
2answers
4k views
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 ...
4
votes
3answers
1k views
Remotely shutdown/restart a Linux machine without password
I am writing a pyQt client-server application which restarts/shutdowns PCs remotely.
The receivers are listening to the network for incomming messages, and the sender sends a restart/shutdown message ...
4
votes
3answers
548 views
Python asyncore & dbus
Is it possible to integrate asyncore with dbus through the same main loop?
Usually, DBus integration is done through glib main loop: is it possible to have either asyncore integrate this main loop ...
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 ...
4
votes
4answers
846 views
Looking for advice on how to develop applets for Gnome / Ubuntu
I am a linux (mostly ubuntu) user with a reasonable understanding of how the system works (although I am certainly not a linux guru!). In the past I have developed small cross-platform desktop ...
4
votes
2answers
698 views
Can Cron Jobs Use Gnome-Open?
I am running Ubuntu 11.10 (Unity interface) and I created a Bash script that uses 'gnome-open' to open a series of web pages I use every morning. When I manually execute the script in the Terminal, ...
4
votes
1answer
2k views
Resources to learn qt-dbus
Please provide me resources ( web-links ) to learn qt-dbus ?
I already have a process which provides QtDBus interface, I want to learn it so that I can communicate with it.
4
votes
1answer
887 views
Implementation of an async method in Python DBus
How do I implement an async method in Python DBus? An Example below:
class LastfmApi(dbus.service.Object):
def __init__(self):
bus_name = dbus.service.BusName('fm.lastfm.api', ...
4
votes
1answer
470 views
Python dbus can't find org.(gnome|freedesktop).ScreenSaver
I'm trying to get python to interact with dbus and screensaver however it flatly refuses to do so no matter what. Perl seems to do alright with it but I write python, not perl (yet)
Python 2.6.6 ...
4
votes
1answer
238 views
Wrong type error in dbus method (GNU Emacs)
I am writing an elisp file to integrate GNU Emacs with Zeitgeist over dbus. Because of the lack of good documentation on dbus in emacs and my lack of experience with advanced elisp, I am coming up ...
4
votes
1answer
183 views
C# program connecting to example DBus daemon always gets 'Access is denied: DBus.BusObject'
For our current project we are using DBus (1.6.n).
It is largely accessed from C++ in shared memory mode, and this works really well.
I am now trying to access the same DBus from a C# program.
In ...
4
votes
1answer
422 views
When do hal properties get updated
I'm calling GetProperty on a org.freedesktop.Hal.Device from my handler during a PropertyNotified signal. I'm only calling GetProperty on properties that have been added or changed.
When I call ...
4
votes
1answer
262 views
Sending float over QDBus
We currently migrated from Qt 4.5.x to 4.7.3, and since then we get errors when trying to send floats over DBus ('float' not registered as DBus type).
For instance:
QVariantList getTemperatures() ...
3
votes
4answers
844 views
I'm trying to figure out how to use dbus with pidgin
My problem is I'm not sure how to interface them. Do I need to have pidgin installed in a particular way in order for dbus to interface with it? and if not does the pidgin gui have to be running in ...
3
votes
4answers
2k views
What is the underlying transport for D-Bus?
D-Bus allows programs to communicate. How is this IPC implemented? Unix domain sockets, shared memory + semaphores, named pipes, something else? Maybe a combination?
3
votes
4answers
413 views
Buildout: use dependencies from system Python
I'm trying to use buildout for a Python package which, when used, depends on 2 extension modules: dbus-python and pygobject. Both modules make buildout fail: dbus-python lacks a setup.py file, while ...
3
votes
1answer
1k views
Dbus/GLib Main Loop, Background Thread
I'm starting out with DBus and event driven programming in general. The service that I'm trying to create really consists of three parts but two are really "server" things.
1) The actual DBus server ...
3
votes
1answer
3k views
Compiling C program with dbus header files
I'm trying to compile a C program, with these headers: http://pastebin.com/SppCXb0U , on Ubuntu. At first I didn't have any luck at all, but after reading about pkg-config I crafted this line:
gcc ...
3
votes
1answer
1k views
How to continuously monitor rhythmbox for track change using bash
I'd like to do the same thing as is described here, but using shell scripting (preferably in bash) instead of python. It seems like such a thing should be possible using dbus-monitor, but I'm not very ...
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 ...
3
votes
1answer
1k views
Controlling Gnome Volume using DBus
I'm pretty new to the whole DBus stuff so excuse me if this is trivial, but I was wondering whether, using DBus, it is possible to set the audio volume from the command line.
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 ...
3
votes
4answers
366 views
Python calling a MQ broker and DBus
My Python is worse than my Chinese (I have never seen so many smiling faces than when I try to speak Mandarin), so I need a little help:
I want something to listen to MQ (for topics specified in a ...
3
votes
1answer
954 views
Why Bluetooth needs DBUS way of communication in android?
I am newbie to Android DBUS, recently I was informed that I need to use DBUS to implement Bluetooth in Android, from DBUS documentation I see DBUS is used for communication medium between two ...
3
votes
1answer
509 views
Disconnect a WiFi accespoint using NetworkManager and Python
I’m building an Python application that has to connect and disconnect from Wifi on linux box. I’m using NetworkManager layer, through the nice networkmanager lib found in cnetworkmanager (a python CLI ...
3
votes
3answers
786 views
Check if Rhythmbox is running via Python
I am trying to extract information from Rhythmbox via dbus, but I only want to do so, if Rhythmbox is running. Is there a way to check if Rhythmbox is running via Python without starting it if it is ...
3
votes
1answer
689 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
2answers
452 views
D-Bus GLib bindings—unable to get code off the ground
I've been playing with GLib's D-Bus bindings, trying to get something (anything) working, with very limited success. I've been trying to get Ross Burton's example code to compile and run, but keep ...
3
votes
3answers
562 views
What's the simplest way to detect CDROM media removal/insertion in Linux
What's the simplest way to detect CDROM media removal and insertion in Linux? I want to write some simple code to handle this. For example, just bind an event for media insertion and implement the ...
3
votes
1answer
234 views
Who called my DBus API in Linux system
The scenario is like this:
In a Linux based handheld device I have a C app which has dbus APIs ready to be called by 3rd party apps. The DBus APIs are called during booting time.
Is there any system ...
3
votes
2answers
678 views
freedesktop.org notifications in java
there's a freedesktop.org notification system using DBUS. Looks simple enough, but I just can't figure out how to use it in Java.
Can someone please point to some sample code to display a simple ...

