Tagged Questions
0
votes
1answer
173 views
Understanding HAL DBus Events?
I'm watching HAL events on DBus, observing when the AC Adapter is removed / plugged-in.
Via dbus-montior, the two events appear the exact same:
unplug event
signal sender=:1.85 -> dest=(null ...
0
votes
1answer
562 views
USB HID device detection
I am trying to access an USB HID device under Ubuntu(kernel-3.0). I want to write a program which could notify me whenever an USB device is attached to the bus i.e is there any event generated ...
0
votes
1answer
114 views
Handling HAL implementation: storage.cdrom.write_speeds
device.get('storage.cdrom.write_speeds')
This returns HAL list of ints, like:
[4284, 2342, 1202, 800]
How should these be handled, to recieve writing speed? Or better, how does one retrieve ...
2
votes
2answers
351 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
265 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 ...
1
vote
2answers
84 views
How to mark a device in a way that can be retrived by HAL but does not require mounting or changing the label
I'm trying to find a way to mark a USB flash device in a way that I can programmaticly test for without mounting it or changing the label.
Are there any properties I can modify about a device that ...
4
votes
1answer
424 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 ...