InfoSys::FreeDB::Response - FreeDB response


InfoSys-FreeDB documentation Contained in the InfoSys-FreeDB distribution.

Index


Code Index:

NAME

Top

InfoSys::FreeDB::Response - FreeDB response

SYNOPSIS

Top

None. This is an abstract class.

ABSTRACT

Top

FreeDB response

DESCRIPTION

Top

InfoSys::FreeDB::Response contains information about FreeDB responses.

EXPORT

Top

By default nothing is exported.

line_parse

This tag contains variables useful to parse the messages from FreeDB servers.

$CODE_RX

Regular expression to parse the return code and the remaining tail.

CONSTRUCTOR

Top

new(OPT_HASH_REF)

Creates a new InfoSys::FreeDB::Response object. OPT_HASH_REF is a hash reference used to pass initialization options. OPT_HASH_REF is mandatory. On error an exception Error::Simple is thrown.

Options for OPT_HASH_REF may include:

code

Passed to set_code(). Mandatory option.

error

Passed to set_error().

result

Passed to set_result(). Mandatory option.

METHODS

Top

get_code()

Returns the response code.

get_result()

Returns the response result text.

is_error()

Returns whether the response has an error or not.

set_code(VALUE)

Set the response code. VALUE is the value. On error an exception Error::Simple is thrown.

set_error(VALUE)

State that the response has an error. VALUE is the value. On error an exception Error::Simple is thrown.

set_result(VALUE)

Set the response result text. VALUE is the value. On error an exception Error::Simple is thrown.

SEE ALSO

Top

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::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

BUGS

Top

None known (yet.)

HISTORY

Top

First development: September 2003 Last update: October 2003

AUTHOR

Top

Vincenzo Zocca

COPYRIGHT

Top

LICENSE

Top

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 Contained in the InfoSys-FreeDB distribution.

package InfoSys::FreeDB::Response;

use 5.006;
use base qw( Exporter );
use strict;
use warnings;
use AutoLoader qw(AUTOLOAD);
use Error qw(:try);
require Exporter;

our $CODE_RX = '^\s*(\d{3})\s+(.*)';

# Exporter variable
our %EXPORT_TAGS = (
    'line_parse' => [ qw(
        $CODE_RX
    ) ],
);

# Package version
our ($VERSION) = '$Revision: 0.92 $' =~ /\$Revision:\s+([^\s]+)/;

# Exporter variable
our @EXPORT = qw(
);

# Exporter variable
our @EXPORT_OK = qw(
    $CODE_RX
);

1;

__END__

sub new {
    my $class = shift;

    my $self = {};
    bless( $self, ( ref($class) || $class ) );
    return( $self->_initialize(@_) );
}

sub _initialize {
    my $self = shift;
    my $opt = defined($_[0]) ? shift : {};

    # Check $opt
    ref($opt) eq 'HASH' || throw Error::Simple("ERROR: InfoSys::FreeDB::Response::_initialize, first argument must be 'HASH' reference.");

    # code, SINGLE, mandatory
    exists( $opt->{code} ) || throw Error::Simple("ERROR: InfoSys::FreeDB::Response::_initialize, option 'code' is mandatory.");
    $self->set_code( $opt->{code} );

    # error, BOOLEAN
    exists( $opt->{error} ) && $self->set_error( $opt->{error} );

    # result, SINGLE, mandatory
    exists( $opt->{result} ) || throw Error::Simple("ERROR: InfoSys::FreeDB::Response::_initialize, option 'result' is mandatory.");
    $self->set_result( $opt->{result} );

    # Return $self
    return($self);
}

sub _value_is_allowed {
    return(1);
}

sub get_code {
    my $self = shift;

    return( $self->{InfoSys_FreeDB_Response}{code} );
}

sub get_result {
    my $self = shift;

    return( $self->{InfoSys_FreeDB_Response}{result} );
}

sub is_error {
    my $self = shift;

    if ( $self->{InfoSys_FreeDB_Response}{error} ) {
        return(1);
    }
    else {
        return(0);
    }
}

sub set_code {
    my $self = shift;
    my $val = shift;

    # Check if isa/ref/rx/value is allowed
    &_value_is_allowed( 'code', $val ) || throw Error::Simple("ERROR: InfoSys::FreeDB::Response::set_code, the specified value '$val' is not allowed.");

    # Assignment
    $self->{InfoSys_FreeDB_Response}{code} = $val;
}

sub set_error {
    my $self = shift;

    if (shift) {
        $self->{InfoSys_FreeDB_Response}{error} = 1;
    }
    else {
        $self->{InfoSys_FreeDB_Response}{error} = 0;
    }
}

sub set_result {
    my $self = shift;
    my $val = shift;

    # Check if isa/ref/rx/value is allowed
    &_value_is_allowed( 'result', $val ) || throw Error::Simple("ERROR: InfoSys::FreeDB::Response::set_result, the specified value '$val' is not allowed.");

    # Assignment
    $self->{InfoSys_FreeDB_Response}{result} = $val;
}