PBS::Watch::Client - Access to a PBS watch server


PerlBuildSystem documentation Contained in the PerlBuildSystem distribution.

Index


Code Index:

NAME

Top

PBS::Watch::Client - Access to a PBS watch server

DESCRIPTION

Top

EXPORT

None.

AUTHOR

Top

Khemir Nadim ibn Hamouda. nadim@khemir.net

SEE ALSO

Top

script/watch_server.pl.


PerlBuildSystem documentation Contained in the PerlBuildSystem distribution.

package PBS::Watch::Client ;

use strict ;
use warnings ;

use 5.006 ;

require Exporter ;
use AutoLoader qw(AUTOLOAD) ;

our @ISA = qw(Exporter) ;
our %EXPORT_TAGS = ('all' => [ qw() ]) ;
our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } ) ;
our @EXPORT = qw() ;
our $VERSION = '0.03' ;

use IO::Socket::INET ;
use PBS::Digest ;
use PBS::Output ;
use PBS::PBSConfig ;

#-------------------------------------------------------------------------------

#move to some config and add switches

my $separator = '_stop_' ;
my $host = 'localhost' ;
my $port = '12001' ;

#-------------------------------------------------------------------------------

sub WatchFiles
{
#  @_ should contain id and a list of files to watch

return(GetServerData('WATCH_FILES', @_)) ;
}

#---------------------------------------------------------------------------------------

sub GetModifiedFiles
{
#  @_ should contain id
return(GetServerData('GET_MODIFIED_FILES_LIST', @_)) ;
}

#---------------------------------------------------------------------------------------

sub GetServerData
{
#~ use Data::TreeDumper ;
#~ print DumpTree(\@_) ;
my $answer = SendCommand($host, $port, join($separator, @_)) ;

my ($result, @files) = split($separator, $answer) ;

return ($result, @files) ;
}

#---------------------------------------------------------------------------------------

sub SendCommand
{
my ($host, $port, $command) = @_ ;

my $socket = new IO::Socket::INET->new("$host:$port") or die $@ ;

print $socket "$command\n" ;

my $answer = <$socket> ;

return($answer) ;
}

#--------------------------------------------------------------

1 ;

__END__