| InfoSys-FreeDB documentation | view source | Contained in the InfoSys-FreeDB distribution. |
InfoSys::FreeDB::Site - FreeDB site
require InfoSys::FreeDB;
# Create a HTTP connection
my $fact = InfoSys::FreeDB->new();
my $conn = $fact->create_connection( {
client_name => 'testing-InfoSys::FreeDB',
client_version => $InfoSys::FreeDB::VERSION,
} );
# Get sites from FreeDB
my $res = $conn->sites();
# Write the sites to STDERR
use IO::Handle;
my $fh = IO::Handle->new_from_fd( fileno(STDERR), 'w' );
foreach my $site ( $res->get_site() ) {
$fh->print( join(', ',
$site->get_address(),
$site->get_description(),
$site->get_latitude(),
$site->get_longitude(),
$site->get_port(),
$site->get_protocol(),
$site->get_site(),
), "\n" );
}
FreeDB site
InfoSys::FreeDB::Site objects contain information on FreeDB sites.
Creates a new InfoSys::FreeDB::Site object. OPT_HASH_REF is a hash reference used to pass initialization options. On error an exception Error::Simple is thrown.
Options for OPT_HASH_REF may include:
addressPassed to set_address(). Defaults to '-'.
descriptionPassed to set_description().
latitudePassed to set_latitude().
longitudePassed to set_longitude().
portPassed to set_port().
protocolPassed to set_protocol().
sitePassed to set_site().
Returns the additional addressing information needed to access the server.
Returns the short description of the geographical location of the site.
Returns the latitude of the server site.
Returns the longitude of the server site.
Returns the port at which the server resides on that site.
Returns the supported protocol.
Returns the Internet address of the remote site.
Set the additional addressing information needed to access the server. VALUE is the value. Default value at initialization is -. On error an exception Error::Simple is thrown.
Set the short description of the geographical location of the site. VALUE is the value. On error an exception Error::Simple is thrown.
Set the latitude of the server site. VALUE is the value. On error an exception Error::Simple is thrown.
Set the longitude of the server site. VALUE is the value. On error an exception Error::Simple is thrown.
Set the port at which the server resides on that site. VALUE is the value. On error an exception Error::Simple is thrown.
Set the supported protocol. VALUE is the value. On error an exception Error::Simple is thrown.
Set the Internet address of the remote site. VALUE is the value. On error an exception Error::Simple is thrown.
InfoSys::FreeDB, InfoSys::FreeDB::Connection, InfoSys::FreeDB::Connection::CDDBP, InfoSys::FreeDB::Connection::HTTP, InfoSys::FreeDB::Entry, InfoSys::FreeDB::Entry::Track, InfoSys::FreeDB::Match, InfoSys::FreeDB::Response, InfoSys::FreeDB::Response::DiscId, InfoSys::FreeDB::Response::Hello, InfoSys::FreeDB::Response::LsCat, InfoSys::FreeDB::Response::Motd, InfoSys::FreeDB::Response::Proto, InfoSys::FreeDB::Response::Query, InfoSys::FreeDB::Response::Quit, InfoSys::FreeDB::Response::Read, InfoSys::FreeDB::Response::SignOn, InfoSys::FreeDB::Response::Sites, InfoSys::FreeDB::Response::Stat, InfoSys::FreeDB::Response::Ver, InfoSys::FreeDB::Response::Whom, InfoSys::FreeDB::Response::Write::1, InfoSys::FreeDB::Response::Write::2
None known (yet.)
First development: September 2003 Last update: October 2003
Vincenzo Zocca
Copyright 2003 by Vincenzo Zocca
This file is part of the InfoSys::FreeDB module hierarchy for Perl by
Vincenzo Zocca.
The InfoSys::FreeDB module hierarchy is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
The InfoSys::FreeDB module hierarchy is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with the InfoSys::FreeDB module hierarchy; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
| InfoSys-FreeDB documentation | view source | Contained in the InfoSys-FreeDB distribution. |