Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

net::upnp::service(3pm) [debian man page]

Net::UPnP::Service(3pm) 				User Contributed Perl Documentation				   Net::UPnP::Service(3pm)

NAME
Net::UPnP::Service - Perl extension for UPnP. SYNOPSIS
use Net::UPnP::ControlPoint; my $obj = Net::UPnP::ControlPoint->new(); @dev_list = $obj->search(st =>'upnp:rootdevice', mx => 3); $devNum= 0; foreach $dev (@dev_list) { $device_type = $dev->getdevicetype(); if ($device_type ne 'urn:schemas-upnp-org:device:MediaServer:1') { next; } print "[$devNum] : " . $dev->getfriendlyname() . " "; unless ($dev->getservicebyname('urn:schemas-upnp-org:service:ContentDirectory:1')) { next; } $condir_service = $dev->getservicebyname('urn:schemas-upnp-org:service:ContentDirectory:1'); unless (defined(condir_service)) { next; } %action_in_arg = ( 'ObjectID' => 0, 'BrowseFlag' => 'BrowseDirectChildren', 'Filter' => '*', 'StartingIndex' => 0, 'RequestedCount' => 0, 'SortCriteria' => '', ); $action_res = $condir_service->postcontrol('Browse', \%action_in_arg); unless ($action_res->getstatuscode() == 200) { next; } $actrion_out_arg = $action_res->getargumentlist(); unless ($actrion_out_arg->{'Result'}) { next; } $result = $actrion_out_arg->{'Result'}; while ($result =~ m/<dc:title>(.*?)</dc:title>/sgi) { print " $1 "; } $devNum++; } DESCRIPTION
The package is used a object of UPnP service. METHODS
getdevice - get the device. $description = $service->getdevice(); Get the parent device of the service. getdevicedescription - get the service description of the device description. $description = $service->getdevicedescription( name => $name # undef ); Get the service description of the device description. The function returns the all description when the name parameter is not specified, otherwise return a value the specified name. getservicetype - get the service type. $service_type = $service->getservicetype(); Get the service type. getserviceid - get the service id. $service_id = $service->getserviceid(); Get the service id. postaction - post a action control. $action_res = $service->postcontrol($action_name, \%action_arg); Post a action control to the device, and return Net::UPnP::ActionResponse. The method was renamed from postcontrol(), but the old name is deprecated. postquery - post a query control. $query_res = $service->postcontrol($var_name); Post a query control to the device, and return Net::UPnP::QueryResponse. SEE ALSO
Net::UPnP::ActionResponse AUTHOR
Satoshi Konno skonno@cybergarage.org CyberGarage http://www.cybergarage.org COPYRIGHT AND LICENSE
Copyright (C) 2005 by Satoshi Konno It may be used, redistributed, and/or modified under the terms of BSD License. perl v5.10.1 2009-07-27 Net::UPnP::Service(3pm)

Check Out this Related Man Page

Net::DBus::Dumper(3pm)					User Contributed Perl Documentation				    Net::DBus::Dumper(3pm)

NAME
Net::DBus::Dumper - Stringify Net::DBus objects suitable for printing SYNOPSIS
use Net::DBus::Dumper; use Net::DBus; # Dump out info about the bus my $bus = Net::DBus->find; print dbus_dump($bus); # Dump out info about a service my $service = $bus->get_service("org.freedesktop.DBus"); print dbus_dump($service); # Dump out info about an object my $object = $service->get_object("/org/freedesktop/DBus"); print dbus_dump($object); DESCRIPTION
This module serves as a debugging aid, providing a means to stringify a DBus related object in a form suitable for printing out. It can stringify any of the Net::DBus:* objects, generating the following information for each Net::DBus A list of services registered with the bus Net::DBus::Service =item Net::DBus::RemoteService The service name Net::DBus::Object =item Net::DBus::RemoteObject The list of all exported methods, and signals, along with their parameter and return types. METHODS
my @data = dbus_dump($object); Generates a stringified representation of an object. The object passed in as the parameter must be an instance of one of Net::DBus, Net::DBus::RemoteService, Net::DBus::Service, Net::DBus::RemoteObject, Net::DBus::Object. The stringified representation will be returned as a list of strings, with newlines in appropriate places, such that it can be passed string to the "print" method. BUGS
It should print out a list of object paths registered against a service, but this only currently works for service implemented in Perl AUTHOR
Daniel P. Berrange COPYRIGHT
Copyright (C) 2005-2011 Daniel P. Berrange SEE ALSO
Net::DBus, Net::DBus::RemoteService, Net::DBus::Service, Net::DBus::RemoteObject, Net::DBus::Object, Data::Dumper. perl v5.14.2 2011-06-30 Net::DBus::Dumper(3pm)
Man Page