/usr/share/perl5/Net/UPnP/ControlPoint.pm is in libnet-upnp-perl 1.4.3-1.
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 | package Net::UPnP::ControlPoint;
#-----------------------------------------------------------------
# Net::UPnP::ControlPoint
#-----------------------------------------------------------------
use strict;
use warnings;
use Socket;
use Net::UPnP;
use Net::UPnP::HTTP;
use Net::UPnP::Device;
#------------------------------
# new
#------------------------------
sub new {
my($class) = shift;
my($this) = {};
bless $this, $class;
}
#------------------------------
# search
#------------------------------
sub search {
my($this) = shift;
my %args = (
st => 'upnp:rootdevice',
mx => 3,
@_,
);
my(
@dev_list,
$ssdp_header,
$ssdp_mcast,
$rin,
$rout,
$ssdp_res_msg,
$dev_location,
$dev_addr,
$dev_port,
$dev_path,
$http_req,
$post_res,
$post_content,
$key,
$dev,
);
$ssdp_header = <<"SSDP_SEARCH_MSG";
M-SEARCH * HTTP/1.1
Host: $Net::UPnP::SSDP_ADDR:$Net::UPnP::SSDP_PORT
Man: "ssdp:discover"
ST: $args{st}
MX: $args{mx}
SSDP_SEARCH_MSG
$ssdp_header =~ s/\r//g;
$ssdp_header =~ s/\n/\r\n/g;
socket(SSDP_SOCK, AF_INET, SOCK_DGRAM, getprotobyname('udp'));
$ssdp_mcast = sockaddr_in($Net::UPnP::SSDP_PORT, inet_aton($Net::UPnP::SSDP_ADDR));
send(SSDP_SOCK, $ssdp_header, 0, $ssdp_mcast);
if ($Net::UPnP::DEBUG) {
print "$ssdp_header\n";
}
@dev_list = ();
$rin = '';
vec($rin, fileno(SSDP_SOCK), 1) = 1;
while( select($rout = $rin, undef, undef, ($args{mx} * 2)) ) {
recv(SSDP_SOCK, $ssdp_res_msg, 4096, 0);
print "$ssdp_res_msg" if ($Net::UPnP::DEBUG);
unless ($ssdp_res_msg =~ m/LOCATION[ :]+(.*)\r/i) {
next;
}
$dev_location = $1;
unless ($dev_location =~ m/http:\/\/([0-9a-z.]+)[:]*([0-9]*)\/(.*)/i) {
next;
}
$dev_addr = $1;
$dev_port = $2;
$dev_path = '/' . $3;
$http_req = Net::UPnP::HTTP->new();
$post_res = $http_req->post($dev_addr, $dev_port, "GET", $dev_path, "", "");
if ($Net::UPnP::DEBUG) {
print $post_res->getstatus() . "\n";
print $post_res->getheader() . "\n";
print $post_res->getcontent() . "\n";
}
$post_content = $post_res->getcontent();
$dev = Net::UPnP::Device->new();
$dev->setssdp($ssdp_res_msg);
$dev->setdescription($post_content);
if ($Net::UPnP::DEBUG) {
print "ssdp = $ssdp_res_msg\n";
print "description = $post_content\n";
}
push(@dev_list, $dev);
}
close(SSDP_SOCK);
@dev_list;
}
1;
__END__
=head1 NAME
Net::UPnP::ControlPoint - Perl extension for UPnP control point.
=head1 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() . "\n";
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);
$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 "\t$1\n";
}
$devNum++;
}
=head1 DESCRIPTION
The package can search UPnP devices in the local network and get the device list of L<Net::UPnP::Device>.
=head1 METHODS
=over 4
=item B<new> - create new Net::UPnP::ControlPoint
$ctrlPoint = Net::UPnP::ControlPoint();
Creates a new object. Read `perldoc perlboot` if you don't understand that.
=item B<search> - search UPnP devices
@device_list = $ctrlPoint->search();
@device_list = $ctrlPoint->search(
[st => $search_target], # 'upnp:rootdevice'
[mx => $maximum_wait] # 3
);
Search UPnP devices and return the device list. Please see L<Net::UPnP::Device> too.
=back
=head1 SEE ALSO
L<Net::UPnP::Device>
=head1 AUTHOR
Satoshi Konno
skonno@cybergarage.org
CyberGarage
http://www.cybergarage.org
=head1 COPYRIGHT AND LICENSE
Copyright (C) 2005 by Satoshi Konno
It may be used, redistributed, and/or modified under the terms of BSD License.
=cut
|