#!/usr/bin/perl -w

# Copyright 2002, Vincenzo Zocca.

# See LICENSE section for usage and distribution rights.

use strict;
use Error qw (:try);

# Usage
use File::Basename;
my $basename=basename($0);
sub Usage {
	print STDERR <<EOF;
Usage: $basename [--h] [--dev <dev>] [--o <outfile>]
  NOTES:
     --h shows this message
     --dev defaults to Net::FreeDB2's default
     --o defaults to STDOUT
EOF
}

# Get options
my $dev;
my $h = 0;
my $o = '';
use Getopt::Long;
if (! GetOptions (
	'h' => \$h,
	'dev=s' => \$dev,
	'o=s' => \$o,
)) {
	&Usage;
	exit (1);
}

# Show usage
if ($h) {
	&Usage;
	exit (0);
}

# Open output file
my $fh;
if ($o) {
	use IO::File;
	$fh = IO::File->new ("> $o");
	defined ($fh) || throw Error::Simple ("ERROR: $basename: Failed to open file '$o' for writing.");
} else {
	use IO::File;
	$fh = IO::Handle->new_from_fd (fileno(STDOUT), 'w');
}

# Make entry
use Net::FreeDB2::Entry;
my $entry;
if ($dev) {
	$entry = Net::FreeDB2::Entry->new ({
		dev => $dev,
	});
} else {
	$entry = Net::FreeDB2::Entry->new ();
	$entry->readDev ()
}

# Write the entry
$entry->write ({
	fh => $fh,
});

# Exit OK
exit (0);
__END__

=head1 NAME

fdcdi - Net::FreeDB2's get CD info

=head1 SYNOPSIS

fdcdi [--h] [--dev <dev>] [--o <outfile>]

=head1 DESCRIPTION

Read technical information from a CD and store it into a FreeDB/CDDB file.

=head2 Options:

=over

=item --h

Show usage.

=item --dev

CD device. Defaults to C<Net::FreeDB2's> default.

=item --o

Output file. Defaults to STDOUT.

=head1 SEE ALSO

L<fdlscat>

=head1 EXAMPLE

Quick and dirty rip:
 $ fdrip

Slightly more sophisticated rip:
 $ fdcdi --o cd-tech.cddb
 $ fdquery --i cd-tech.cddb --o cd-query.cddb
 $ # Edit file cd-query.cddb
 $ fdrip --i cd-query.cddb

=head1 BUGS

None known (yet).

=head1 HISTORY

First development: September 2002

=head1 AUTHOR

Vincenzo Zocca E<lt>Vincenzo@Zocca.comE<gt>

=head1 COPYRIGHT

Copyright 2002, Vincenzo Zocca.

=head1 LICENSE

This file is part of the C<Net::FreeDB2> module hierarchy for Perl by
Vincenzo Zocca.

The Net::FreeDB2 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 Net::FreeDB2 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 Net::FreeDB2 module hierarchy; if not, write to
the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
Boston, MA 02111-1307 USA

=cut

