
InfoSys::FreeDB - FreeDB connection factory

require InfoSys::FreeDB;
require InfoSys::FreeDB::Entry;
# Read entry from the default CD device
my $entry = InfoSys::FreeDB::Entry->new_from_cdparanoia();
# Create a HTTP connection
my $fact = InfoSys::FreeDB->new();
my $conn = $fact->create_connection( {
client_name => 'testing-InfoSys::FreeDB',
client_version => $InfoSys::FreeDB::VERSION,
} );
# Query FreeDB
my $res_q = $conn->query( $entry );
scalar( $res_q->get_match() ) ||
die 'no matches found for the disck in the default CD-Rom drive';
# Read the first match
my $res_r = $conn->read( ( $res_q->get_match() )[0] );
# Write the entry to STDERR
use IO::Handle;
my $fh = IO::Handle->new_from_fd( fileno(STDERR), 'w' );
$res_r->get_entry()->write_fh( $fh );

FreeDB connection factory

InfoSys::FreeDB is the connection factory of the InfoSys::FreeDB module hierarchy. This class creates connections using the protocols supported by FreeDB*.
Currently CDDBP and HTTP protocols are supported.

Creates a new InfoSys::FreeDB object.

Creates a InfoSys::FreeDB::Connection object. OPT_HASH_REF is a hash reference used to pass connection creation options. On error an exception Error::Simple is thrown.
If protocol level 1 is specified, the connect method tries to use the highest available protocol level. To do so, it queries the FreeDB to find out exaclty which level is supported. On CDDBP connections this doesn't take that long. On HTTP connections it does. To speed up HTTP connections specify a higher proto_level -say 5.
Options for OPT_HASH_REF may include:
auto_connectedConnect the created object just after instantiation. Defaults to 1.
client_hostThe hostname of the client. Defaults to &Sys::Hostname::hostname().
client_nameMandatory option to name the connecting client software.
client_userThe user name of the client. Defaults to scalar( getpwuid($>) ).
client_versionMandatory option with the client software version string.
freedb_cgi*The FreeDB cgi to use. Defaults to ~cddb/cddb.cgi.
freedb_hostThe FreeDB host. Defaults to freedb.freedb.org.
freedb_portThe port on the FreeDB host. Defaults to 80 for HTTP and to 888 for CDDBP connection types.
protocolThe protocol to use. Either HTTP or CDDBP. Defaults to HTTP.
proto_levelThe FreeDB protocol level. Defaults to 1.
proxy_host**The proxy host to use.
proxy_passwd**The proxy password to use.
proxy_port**The port on the proxy host. Defaults to 8080.
proxy_user**The proxy user name to use.

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, InfoSys::FreeDB::Site

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