Tagged Questions
D-Bus is a message bus system, a simple way for applications to talk to one another. D-Bus allows applications to expose internal API to the outside world by means of remotely callable interfaces. An interface as seen on the bus can be described using a standard XML format that is described in the D-Bus specification.
8
votes
2answers
2k 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 ...
7
votes
1answer
1k 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 ...
7
votes
5answers
2k 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 ...
6
votes
2answers
2k 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 ...
6
votes
3answers
892 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.
5
votes
1answer
260 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 ...
4
votes
3answers
175 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
2answers
248 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
3answers
758 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
1answer
537 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
4answers
923 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 ...
4
votes
1answer
393 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 ...
3
votes
2answers
168 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, ...
3
votes
3answers
127 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
3answers
203 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
135 views
the problem about detecting usb device
I need detect an usb device when it had been plugged and unplugged, and I write a python programme with dbus.
But it is very odd the device would be mounted three times at least when it is plugged or ...
3
votes
1answer
145 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
1answer
376 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
4answers
193 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
3answers
421 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
799 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.
3
votes
2answers
430 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?
3
votes
3answers
542 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
310 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
1answer
202 views
How to get root premissions for my app?
My app needs to do some privileged work. I've been looking everywhere, but I can't find anything useful. I know I want to use Policykit1 and dbus because all the other alternatives I've found aren't ...
3
votes
1answer
177 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 ...
3
votes
3answers
398 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 ...
3
votes
4answers
603 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 ...
3
votes
2answers
343 views
Are there any good recent reference books on IPC programming?
I grew up on UNIX Network Programming, Volume 2, Second Edition: Interprocess Communications (RIP, Richard Stevens), which was the essential reading for designing a multiprocess program back in the ...
2
votes
0answers
98 views
D-Bus tutorial in C to communicate with wpa_supplicant
I'm trying to write some code to communicate with wpa_supplicant using DBUS. As I'm working in an embedded system (ARM), I'd like to avoid the use of Pyhton or the GLib. I'm wondering if I'm stupid ...
2
votes
1answer
62 views
Run script on Fedora screen lock
I'm looking for a way to run a program when locking the screen in Fedora 15 linux. Basically I want to start running a motion detection program when the screen locks, or I manually hit Ctrl+Alt+L, but ...
2
votes
0answers
43 views
Using DBUS for application monitoring
After moving some time ago from primarily Java to a selection of languages, most notably Python (but also C, C++ and others) I was looking for a good analogy to JMX in order to provide application ...
2
votes
1answer
149 views
PySide IPC with signals/slots
I've been trying to figure out if there's any way to manage IPC in PySide and still take advantage of Qt's signals/slots mechanism. The QtDBus module sounds great, but it doesn't appear to be ...
2
votes
1answer
778 views
Ejecting USB devices on linux
I'm using Udisks via dbus in python to unmount a usb device (in this case a Kindle), but I'd like to send the eject signal to it, as this kicks the Kindle back from USB mode into its usual interface.
...
2
votes
1answer
263 views
Decorating a DBUS method
I'm trying to combine DBUS' asynchronous method calls with Twisted's Deferreds, but I'm encountering trouble in tweaking the usual DBUS service method decorator to do this.
To use the DBUS async ...
2
votes
1answer
281 views
problem printing mount point of usb in python
I have a program written in python that uses dbus to detect inserted usb drives and prints the dir they are mounted on when they are detected. Here is the code:
import dbus
import gobject
import ...
2
votes
1answer
311 views
How do I get all instances of VLC on dbus quickly?
basically the problem is, that the only way to get all instances of VLC is to search all non-named instances for the org.freedesktop.MediaPlayer identity function and call it.
(alternatively I could ...
2
votes
0answers
316 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 ...
2
votes
1answer
946 views
DBus Glib Send Signal - No signals being emitted
I am attempting to send a signal out over the session message bus. I am able to call methods fine using d-feet dbus debugger with no problem. Unfortunately d-feet does not allow you to connect to ...
2
votes
3answers
777 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 ...
2
votes
1answer
452 views
Qt invokeMethod with QString
I have a daemon running on DBus that offers service for launching applications. I want to pass two strings to this service API (appPath, appArgs). I have registered the service and the object path ...
2
votes
2answers
564 views
How do I get the selected text in desktop application using python-dbus?
For example, I open a pdf file or a web page in gnome, use mouse double click some text, so a word is selected, how can I get this word in a background running daemon written with python-dbus?
Some ...
2
votes
1answer
242 views
Custom threads?
How does one create custom threads to run in a Gtk application?
Given this simplistic example:
@w = Gtk::Window.new "testtest"
@l = Gtk::Label.new "test"
@w.add @l
@w.show_all
Gtk.main
How could I ...
2
votes
4answers
512 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 ...
2
votes
2answers
258 views
Find a HAL object based on /dev node path
I'm using python-dbus to interface with HAL, and I need to find a device's UDI based on it's path in the /dev hierarchy.
So given a path such as /dev/sdb, I want to get a value back like ...
2
votes
2answers
421 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 ...
2
votes
2answers
221 views
Unit testing for D-Bus and HAL?
How does one test a method that does some interactions with the local D-Bus (accessing a HAL object)?
Results of tests will differ depending on the system that the test is run on, so I don't know ...
2
votes
4answers
1k 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?
2
votes
2answers
2k views
1
vote
2answers
34 views
Parse a variant array using command line utils in bash
To get the current song being played in spotify (using DBus), I use the following command:
dbus-send --print-reply --session --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 ...