/usr/lib/perl5/Net/DBus/Object.pm is in libnet-dbus-perl 1.0.0-2build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 | # -*- perl -*-
#
# Copyright (C) 2004-2011 Daniel P. Berrange
#
# This program is free software; You can redistribute it and/or modify
# it under the same terms as Perl itself. Either:
#
# a) the GNU General Public License as published by the Free
# Software Foundation; either version 2, or (at your option) any
# later version,
#
# or
#
# b) the "Artistic License"
#
# The file "COPYING" distributed along with this file provides full
# details of the terms and conditions of the two licenses.
=pod
=head1 NAME
Net::DBus::Object - Provide objects to the bus for clients to use
=head1 SYNOPSIS
# Connecting an object to the bus, under a service
package main;
use Net::DBus;
# Attach to the bus
my $bus = Net::DBus->find;
# Acquire a service 'org.demo.Hello'
my $service = $bus->export_service("org.demo.Hello");
# Export our object within the service
my $object = Demo::HelloWorld->new($service);
....rest of program...
# Define a new package for the object we're going
# to export
package Demo::HelloWorld;
# Specify the main interface provided by our object
use Net::DBus::Exporter qw(org.example.demo.Greeter);
# We're going to be a DBus object
use base qw(Net::DBus::Object);
# Export a 'Greeting' signal taking a stringl string parameter
dbus_signal("Greeting", ["string"]);
# Export 'Hello' as a method accepting a single string
# parameter, and returning a single string value
dbus_method("Hello", ["string"], ["string"]);
sub new {
my $class = shift;
my $service = shift;
my $self = $class->SUPER::new($service, "/org/demo/HelloWorld");
bless $self, $class;
return $self;
}
sub Hello {
my $self = shift;
my $name = shift;
$self->emit_signal("Greeting", "Hello $name");
return "Said hello to $name";
}
# Export 'Goodbye' as a method accepting a single string
# parameter, and returning a single string, but put it
# in the 'org.exaple.demo.Farewell' interface
dbus_method("Goodbye", ["string"], ["string"], "org.example.demo.Farewell");
sub Goodbye {
my $self = shift;
my $name = shift;
$self->emit_signal("Greeting", "Goodbye $name");
return "Said goodbye to $name";
}
=head1 DESCRIPTION
This the base of all objects which are exported to the
message bus. It provides the core support for type introspection
required for objects exported to the message. When sub-classing
this object, methods can be created & tested as per normal Perl
modules. Then just as the L<Exporter> module is used to export
methods within a script, the L<Net::DBus::Exporter> module is
used to export methods (and signals) to the message bus.
All packages inheriting from this, will automatically have the
interface C<org.freedesktop.DBus.Introspectable> registered
with L<Net::DBus::Exporter>, and the C<Introspect> method within
this exported.
=head1 METHODS
=over 4
=cut
package Net::DBus::Object;
use 5.006;
use strict;
use warnings;
our $ENABLE_INTROSPECT;
BEGIN {
if ($ENV{DBUS_DISABLE_INTROSPECT}) {
$ENABLE_INTROSPECT = 0;
} else {
$ENABLE_INTROSPECT = 1;
}
}
use Net::DBus::Exporter "org.freedesktop.DBus.Introspectable";
dbus_method("Introspect", [], ["string"]);
dbus_method("Get", ["string", "string"], [["variant"]], "org.freedesktop.DBus.Properties");
dbus_method("GetAll", ["string"], [["dict", "string", ["variant"]]], "org.freedesktop.DBus.Properties");
dbus_method("Set", ["string", "string", ["variant"]], [], "org.freedesktop.DBus.Properties");
=item my $object = Net::DBus::Object->new($service, $path)
This creates a new DBus object with an path of C<$path>
registered within the service C<$service>. The C<$path>
parameter should be a string complying with the usual
DBus requirements for object paths, while the C<$service>
parameter should be an instance of L<Net::DBus::Service>.
The latter is typically obtained by calling the C<export_service>
method on the L<Net::DBus> object.
=item my $object = Net::DBus::Object->new($parentobj, $subpath)
This creates a new DBus child object with an path of C<$subpath>
relative to its parent C<$parentobj>. The C<$subpath>
parameter should be a string complying with the usual
DBus requirements for object paths, while the C<$parentobj>
parameter should be an instance of L<Net::DBus::Object>.
=cut
sub new {
my $class = shift;
my $self = {};
my $parent = shift;
my $path = shift;
$self->{parent} = $parent;
if ($parent->isa(__PACKAGE__)) {
$self->{service} = $parent->get_service;
$self->{object_path} = $parent->get_object_path . $path;
} else {
$self->{service} = $parent;
$self->{object_path} = $path;
}
$self->{interface} = shift;
$self->{introspector} = undef;
$self->{introspected} = 0;
$self->{callbacks} = {};
$self->{children} = {};
bless $self, $class;
if ($self->{parent}->isa(__PACKAGE__)) {
$self->{parent}->_register_child($self);
} else {
$self->get_service->_register_object($self);
}
return $self;
}
=item $object->disconnect();
This method disconnects the object from the bus, such that it
will no longer receive messages sent by other clients. Any
child objects will be recursively disconnected too. After an
object has been disconnected, it is possible for Perl to
garbage collect the object instance. It will also make it
possible to connect a newly created object to the same path.
=cut
sub disconnect {
my $self = shift;
return unless $self->{parent};
foreach my $child (keys %{$self->{children}}) {
$self->_unregister_child($self->{children}->{$child});
}
if ($self->{parent}->isa(__PACKAGE__)) {
$self->{parent}->_unregister_child($self);
} else {
$self->get_service->_unregister_object($self);
}
$self->{parent} = undef;
}
=item my $bool = $object->is_connected
Returns a true value if the object is connected to the bus,
and thus capable of being accessed by remote clients. Returns
false if the object is disconnected & thus ready for garbage
collection. All objects start off in the connected state, and
will only transition if the C<disconnect> method is called.
=cut
sub is_connected {
my $self = shift;
return 0 unless $self->{parent};
if ($self->{parent}->isa(__PACKAGE__)) {
return $self->{parent}->is_connected;
}
return 1;
}
sub DESTROY {
my $self = shift;
# XXX there are some issues during global
# destruction which need to be better figured
# out before this will work
#$self->disconnect;
}
sub _register_child {
my $self = shift;
my $object = shift;
$self->get_service->_register_object($object);
$self->{children}->{$object->get_object_path} = $object;
}
sub _unregister_child {
my $self = shift;
my $object = shift;
$self->get_service->_unregister_object($object);
delete $self->{children}->{$object->get_object_path};
}
# return a list of sub nodes for this object
sub _get_sub_nodes {
my $self = shift;
my %uniq;
my $base = "$self->{object_path}/";
foreach ( keys( %{$self->{children}} ) ) {
m/^$base([^\/]+)/;
$uniq{$1} = 1;
}
return sort( keys( %uniq ) );
}
=item my $service = $object->get_service
Retrieves the L<Net::DBus::Service> object within which this
object is exported.
=cut
sub get_service {
my $self = shift;
return $self->{service};
}
=item my $path = $object->get_object_path
Retrieves the path under which this object is exported
=cut
sub get_object_path {
my $self = shift;
return $self->{object_path};
}
=item $object->emit_signal_in($name, $interface, $client, @args);
Emits a signal from the object, with a name of C<$name>. If the
C<$interface> parameter is defined, the signal will be scoped
within that interface. If the C<$client> parameter is defined,
the signal will be unicast to that client on the bus. The
signal and the data types of the arguments C<@args> must have
been registered with L<Net::DBus::Exporter> by calling the
C<dbus_signal> method.
=cut
sub emit_signal_in {
my $self = shift;
my $name = shift;
my $interface = shift;
my $destination = shift;
my @args = @_;
die "object is disconnected from the bus" unless $self->is_connected;
my $con = $self->get_service->get_bus->get_connection;
my $signal = $con->make_signal_message($self->get_object_path,
$interface,
$name);
if ($destination) {
$signal->set_destination($destination);
}
my $ins = $self->_introspector;
if ($ins) {
$ins->encode($signal, "signals", $name, "params", @args);
} else {
$signal->append_args_list(@args);
}
$con->send($signal);
# Short circuit locally registered callbacks
if (exists $self->{callbacks}->{$interface} &&
exists $self->{callbacks}->{$interface}->{$name}) {
my $cb = $self->{callbacks}->{$interface}->{$name};
&$cb(@args);
}
}
=item $self->emit_signal_to($name, $client, @args);
Emits a signal from the object, with a name of C<$name>. The
signal and the data types of the arguments C<@args> must have
been registered with L<Net::DBus::Exporter> by calling the
C<dbus_signal> method. The signal will be sent only to the
client named by the C<$client> parameter.
=cut
sub emit_signal_to {
my $self = shift;
my $name = shift;
my $destination = shift;
my @args = @_;
my $intro = $self->_introspector;
if (!$intro) {
die "no introspection data available for '" . $self->get_object_path .
"', use the emit_signal_in method instead";
}
my @interfaces = $intro->has_signal($name);
if ($#interfaces == -1) {
die "no signal with name '$name' is exported in object '" .
$self->get_object_path . "'\n";
} elsif ($#interfaces > 0) {
die "signal '$name' is exported in more than one interface of '" .
$self->get_object_path . "', use the emit_signal_in method instead.";
}
$self->emit_signal_in($name, $interfaces[0], $destination, @args);
}
=item $self->emit_signal($name, @args);
Emits a signal from the object, with a name of C<$name>. The
signal and the data types of the arguments C<@args> must have
been registered with L<Net::DBus::Exporter> by calling the
C<dbus_signal> method. The signal will be broadcast to all
clients on the bus.
=cut
sub emit_signal {
my $self = shift;
my $name = shift;
my @args = @_;
$self->emit_signal_to($name, undef, @args);
}
=item $object->connect_to_signal_in($name, $interface, $coderef);
Connects a callback to a signal emitted by the object. The C<$name>
parameter is the name of the signal within the object, and C<$coderef>
is a reference to an anonymous subroutine. When the signal C<$name>
is emitted by the remote object, the subroutine C<$coderef> will be
invoked, and passed the parameters from the signal. The C<$interface>
parameter is used to specify the explicit interface defining the
signal to connect to.
=cut
sub connect_to_signal_in {
my $self = shift;
my $name = shift;
my $interface = shift;
my $code = shift;
die "object is disconnected from the bus" unless $self->is_connected;
$self->{callbacks}->{$interface} = {} unless
exists $self->{callbacks}->{$interface};
$self->{callbacks}->{$interface}->{$name} = $code;
}
=item $object->connect_to_signal($name, $coderef);
Connects a callback to a signal emitted by the object. The C<$name>
parameter is the name of the signal within the object, and C<$coderef>
is a reference to an anonymous subroutine. When the signal C<$name>
is emitted by the remote object, the subroutine C<$coderef> will be
invoked, and passed the parameters from the signal.
=cut
sub connect_to_signal {
my $self = shift;
my $name = shift;
my $code = shift;
my $ins = $self->_introspector;
if (!$ins) {
die "no introspection data available for '" . $self->get_object_path .
"', use the connect_to_signal_in method instead";
}
my @interfaces = $ins->has_signal($name);
if ($#interfaces == -1) {
die "no signal with name '$name' is exported in object '" .
$self->get_object_path . "'\n";
} elsif ($#interfaces > 0) {
die "signal with name '$name' is exported " .
"in multiple interfaces of '" . $self->get_object_path . "'" .
"use the connect_to_signal_in method instead";
}
$self->connect_to_signal_in($name, $interfaces[0], $code);
}
sub _dispatch {
my $self = shift;
my $connection = shift;
my $message = shift;
# Experiment in handling dispatch for child objects internally
# my $path = $message->get_path;
# while ($path ne $self->get_object_path) {
# if (exists $self->{children}->{$path}) {
# $self->{children}->{$path}->_dispatch($connection, $message);
# return;
# }
# $path =~ s,/[^/]+$,,;
# }
my $reply;
my $method_name = $message->get_member;
my $interface = $message->get_interface;
if ((defined $interface) &&
($interface eq "org.freedesktop.DBus.Introspectable")) {
if ($method_name eq "Introspect" &&
$self->_introspector &&
$ENABLE_INTROSPECT) {
my $xml = $self->_introspector->format($self);
$reply = $connection->make_method_return_message($message);
$self->_introspector->encode($reply, "methods", $method_name, "returns", $xml);
}
} elsif ((defined $interface) &&
($interface eq "org.freedesktop.DBus.Properties")) {
if ($method_name eq "Get") {
$reply = $self->_dispatch_prop_read($connection, $message);
} elsif ($method_name eq "GetAll") {
$reply = $self->_dispatch_all_prop_read($connection, $message);
} elsif ($method_name eq "Set") {
$reply = $self->_dispatch_prop_write($connection, $message);
}
} elsif ($self->_is_method_allowed($method_name)) {
my $ins = $self->_introspector;
my @ret = eval {
my @args;
if ($ins) {
@args = $ins->decode($message, "methods", $method_name, "params");
} else {
@args = $message->get_args_list;
}
$self->$method_name(@args);
};
if ($@) {
my $name = UNIVERSAL::isa($@, "Net::DBus::Error") ? $@->name : "org.freedesktop.DBus.Error.Failed";
my $desc = UNIVERSAL::isa($@, "Net::DBus::Error") ? $@->message : $@;
$reply = $connection->make_error_message($message,
$name,
$desc);
} else {
$reply = $connection->make_method_return_message($message);
if ($ins) {
$self->_introspector->encode($reply, "methods", $method_name, "returns", @ret);
} else {
$reply->append_args_list(@ret);
}
}
}
if (!$reply) {
$reply = $connection->make_error_message($message,
"org.freedesktop.DBus.Error.Failed",
"No such method " . ref($self) . "->" . $method_name);
}
if ($message->get_no_reply()) {
# Not sending reply
} else {
$self->get_service->get_bus->get_connection->send($reply);
}
}
sub _dispatch_prop_read {
my $self = shift;
my $connection = shift;
my $message = shift;
my $ins = $self->_introspector;
if (!$ins) {
return $connection->make_error_message($message,
"org.freedesktop.DBus.Error.Failed",
"no introspection data exported for properties");
}
my ($pinterface, $pname) = $ins->decode($message, "methods", "Get", "params");
if (!$ins->has_property($pname, $pinterface)) {
return $connection->make_error_message($message,
"org.freedesktop.DBus.Error.Failed",
"no property '$pname' exported in interface '$pinterface'");
}
if (!$ins->is_property_readable($pinterface, $pname)) {
return $connection->make_error_message($message,
"org.freedesktop.DBus.Error.Failed",
"property '$pname' in interface '$pinterface' is not readable");
}
if ($self->can($pname)) {
my $value = eval {
$self->$pname;
};
if ($@) {
return $connection->make_error_message($message,
"org.freedesktop.DBus.Error.Failed",
"error reading '$pname' in interface '$pinterface': $@");
} else {
my $reply = $connection->make_method_return_message($message);
$self->_introspector->encode($reply, "methods", "Get", "returns", $value);
return $reply;
}
} else {
return $connection->make_error_message($message,
"org.freedesktop.DBus.Error.Failed",
"no method to read property '$pname' in interface '$pinterface'");
}
}
sub _dispatch_all_prop_read {
my $self = shift;
my $connection = shift;
my $message = shift;
my $ins = $self->_introspector;
if (!$ins) {
return $connection->make_error_message($message,
"org.freedesktop.DBus.Error.Failed",
"no introspection data exported for properties");
}
my ($pinterface) = $ins->decode($message, "methods", "Get", "params");
my %values = ();
foreach my $pname ($ins->list_properties($pinterface)) {
unless ($ins->is_property_readable($pinterface, $pname)) {
next; # skip write-only properties
}
$values{$pname} = eval {
$self->$pname;
};
if ($@) {
return $connection->make_error_message($message,
"org.freedesktop.DBus.Error.Failed",
"error reading '$pname' in interface '$pinterface': $@");
}
}
my $reply = $connection->make_method_return_message($message);
$self->_introspector->encode($reply, "methods", "Get", "returns", \%values);
return $reply;
}
sub _dispatch_prop_write {
my $self = shift;
my $connection = shift;
my $message = shift;
my $ins = $self->_introspector;
if (!$ins) {
return $connection->make_error_message($message,
"org.freedesktop.DBus.Error.Failed",
"no introspection data exported for properties");
}
my ($pinterface, $pname, $pvalue) = $ins->decode($message, "methods", "Set", "params");
if (!$ins->has_property($pname, $pinterface)) {
return $connection->make_error_message($message,
"org.freedesktop.DBus.Error.Failed",
"no property '$pname' exported in interface '$pinterface'");
}
if (!$ins->is_property_writable($pinterface, $pname)) {
return $connection->make_error_message($message,
"org.freedesktop.DBus.Error.Failed",
"property '$pname' in interface '$pinterface' is not writable");
}
if ($self->can($pname)) {
eval {
$self->$pname($pvalue);
};
if ($@) {
return $connection->make_error_message($message,
"org.freedesktop.DBus.Error.Failed",
"error writing '$pname' in interface '$pinterface': $@");
} else {
return $connection->make_method_return_message($message);
}
} else {
return $connection->make_error_message($message,
"org.freedesktop.DBus.Error.Failed",
"no method to write property '$pname' in interface '$pinterface'");
}
}
sub _introspector {
my $self = shift;
if (!$self->{introspected}) {
$self->{introspector} = Net::DBus::Exporter::_dbus_introspector(ref($self));
$self->{introspected} = 1;
}
return $self->{introspector};
}
sub _is_method_allowed {
my $self = shift;
my $method = shift;
# Disallow any method defined in this specific package, since these
# are all server-side helpers / internal methods
return 0 if __PACKAGE__->can($method);
# If this object instance doesn't have it defined, trivially can't
# allow it
return 0 unless $self->can($method);
my $ins = $self->_introspector;
if (defined $ins) {
# Finally do check against introspection data
return $ins->is_method_allowed($method);
}
# No introspector, so have to assume its allowed
return 1;
}
1;
=pod
=back
=head1 AUTHOR
Daniel P. Berrange
=head1 COPYRIGHT
Copyright (C) 2005-2011 Daniel P. Berrange
=head1 SEE ALSO
L<Net::DBus>, L<Net::DBus::Service>, L<Net::DBus::RemoteObject>,
L<Net::DBus::Exporter>.
=cut
|