package Net::Shoutcast::Admin::Listener; # $Id: Listener.pm 315 2008-03-19 00:07:39Z davidp $ use warnings; use strict; use Carp; use vars qw($VERSION); $VERSION = '0.01'; =head1 NAME Net::Shoutcast::Admin::Listener - object to represent a listener =head1 DESCRIPTION An object representing a listener, returned by Net::Shoutcast::Admin. =head1 SYNOPSIS use Net::Shoutcast::Admin; my $shoutcast = Net::Shoutcast::Admin->new( host => 'server hostname', port => 8000, admin_password => 'mypassword', ); if ($shoutcast->source_connected) { my @listeners = $shoutcast->listeners; for my $listener (@listeners) { printf "Listener from %s, listening for %s", $listener->host, $listener->listen_time ; } } else { print "No source is currently connected."; } =head1 DESCRIPTION Object representing a listener, returned by Net::Shoutcast::Admin =head1 INTERFACE =over 4 =item new There's no reason to create instances of Net::Shoutcast::Admin::Listener directly; Net::Shoutcast::Admin creates and returns instances for you. Having said that: $song = Net::Shoutcast::Admin::Listener->new( %params ); Creates a new Net::Shoutcast::Admin::Listener object. Takes a hash of options as follows: =over 4 =item I The host from which this listener is connected =item I The number of seconds this listener has been connected =item I The number of buffer underruns this listener has suffered =item I The software this user is reportedly using to listen =back =cut sub new { my ($class, %params) = @_; my $self = bless {}, $class; $self->{last_update} = 0; my %acceptable_params = map { $_ => 1 } qw(host connect_time underruns agent); # make sure we haven't been given any bogus parameters: if (my @bad_params = grep { ! $acceptable_params{$_} } keys %params) { carp "Net::Shoutcast::Admin::Listener does not recognise param(s) " . join ',', @bad_params; return; } $self->{$_} = $params{$_} for keys %acceptable_params; if (my @missing_params = grep { ! $self->{$_} } keys %acceptable_params) { carp "Net::Shoutcast::Admin::Listener->new() must be supplied with " . "params: " . join ',', @missing_params; return; } return $self; } =item host Returns the hostname this listener is connected from =cut sub host { return shift->{host} } =item listen_time Returns the number of seconds this listener has been connected =cut sub listen_time { return shift->{connect_time} } =item underruns Returns the number of buffer underruns this listener has suffered =cut sub underruns { return shift->{underruns} } =item agent Returns the agent this listener is reportedly using =cut sub agent { return shift->{agent} } 1; # Magic true value required at end of module __END__ =back =head1 BUGS AND LIMITATIONS No bugs have been reported. Please report any bugs or feature requests to C, or through the web interface at L. =head1 AUTHOR David Precious C<< >> =head1 LICENCE AND COPYRIGHT Copyright (c) 2008, David Precious C<< >>. All rights reserved. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See L. =head1 DISCLAIMER OF WARRANTY BECAUSE THIS SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE SOFTWARE "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR CORRECTION. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE SOFTWARE AS PERMITTED BY THE ABOVE LICENCE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE SOFTWARE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.