NAME
DBus - Perl extension for the DBus message system
SYNOPSIS
####### Attaching to the bus ###########
use Net::DBus;
# Find the most appropriate bus
my $bus = Net::DBus->find;
# ... or explicitly go for the session bus
my $bus = Net::DBus->session;
# .... or explicitly go for the system bus
my $bus = Net::DBus->system
######## Accessing remote services #########
# Get a handle to the HAL service
my $hal = $bus->get_service("org.freedesktop.Hal");
# Get the device manager
my $manager = $hal->get_object("/org/freedesktop/Hal/Manager",
"org.freedesktop.Hal.Manager");
# List devices
foreach my $dev (@{$manager->GetAllDevices}) {
print $dev, "\n";
}
######### Providing services ##############
# Register a service known as 'org.example.Jukebox'
my $service = $bus->export_service("org.example.Jukebox");
DESCRIPTION
Net::DBus provides a Perl API for the DBus message system. The DBus Perl interface is currently operating against the 0.32 development version of DBus, but should work with later versions too, providing the API changes have not been too drastic.
Users of this package are either typically, service providers in which case the Net::DBus::Service and Net::DBus::Object modules are of most relevance, or are client consumers, in which case Net::DBus::RemoteService and Net::DBus::RemoteObject are of most relevance.
METHODS
my $bus = Net::DBus->find(%params);
Search for the most appropriate bus to connect to and return a connection to it. The heuristic used for the search is
- If DBUS_STARTER_BUS_TYPE is set to 'session' attach
to the session bus
- Else If DBUS_STARTER_BUS_TYPE is set to 'system' attach
to the system bus
- Else If DBUS_SESSION_BUS_ADDRESS is set attach to the
session bus
- Else attach to the system bus
The optional params
hash can contain be used to specify connection options. The only support option at this time is nomainloop
which prevents the bus from being automatically attached to the main Net::DBus::Reactor event loop.
my $bus = Net::DBus->system(%params);
Return a connection to the system message bus. Note that the system message bus is locked down by default, so unless appropriate access control rules are added in /etc/dbus/system.d/, an application may access services, but won't be able to export services. The optional params
hash can contain be used to specify connection options. The only support option at this time is nomainloop
which prevents the bus from being automatically attached to the main Net::DBus::Reactor event loop.
my $bus = Net::DBus->session(%params);
Return a connection to the session message bus. The optional params
hash can contain be used to specify connection options. The only support option at this time is nomainloop
which prevents the bus from being automatically attached to the main Net::DBus::Reactor event loop.
my $bus = Net::DBus->new($address, %params);
Return a connection to a specific message bus. The $address
parameter must contain the address of the message bus to connect to. An example address for a session bus might look like unix:abstract=/tmp/dbus-PBFyyuUiVb,guid=191e0a43c3efc222e0818be556d67500
, while one for a system bus would look like unix:/var/run/dbus/system_bus_socket
. The optional params
hash can contain be used to specify connection options. The only support option at this time is nomainloop
which prevents the bus from being automatically attached to the main Net::DBus::Reactor event loop.
my $connection = $bus->connection;
Return a handle to the underlying, low level connection object associated with this bus. The returned object will be an instance of the Net::DBus::Binding::Bus class. This method is not intended for use by (most!) application developers, so if you don't understand what this is for, then you don't need to be calling it!
my $service = $bus->get_service($name);
Retrieves a handle for the remote service identified by the service name $name
. The returned object will be an instance of the Net::DBus::RemoteService class.
my $service = $bus->export_service($name);
Registers a service with the bus, returning a handle to the service. The returned object is an instance of the Net::DBus::Service class.
my $object = $bus->get_bus_object;
Retrieves a handle to the bus object, /org/freedesktop/DBus
, provided by the service org.freedesktop.DBus
. The returned object is an instance of Net::DBus::RemoteObject
my $name = $bus->get_unique_name;
Retrieves the unique name of this client's connection to the bus.
my $name = $bus->get_service_owner($service);
Retrieves the unique name of the client on the bus owning the service named by the $service
parameter.
SEE ALSO
Net::DBus, Net::DBus::RemoteService, Net::DBus::Service, Net::DBus::RemoteObject, Net::DBus::Object, Net::DBus::Exporter, Net::DBus::Dumper, Net::DBus::Reactor, dbus-monitor(1), dbus-daemon-1(1), dbus-send(1), http://dbus.freedesktop.org,
AUTHOR
Daniel Berrange <dan@berrange.com>
COPYRIGHT AND LICENSE
Copyright 2004-2005 by Daniel Berrange
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
1 POD Error
The following errors were encountered while parsing the POD:
- Around line 81:
You can't have =items (as at line 108) unless the first thing after the =over is an =item