#!/usr/bin/perl -w
#
# ecaccess-cosinfo: Display ConsInfo from ECMWF
#
# Laurent.Gougeon@ecmwf.int - 2010-10-15

use ECMWF::ECaccess;
use Getopt::Long;
use Pod::Usage;

my %opt = ( version => 0, help => 0, manual => 0, debug => 0 );

pod2usage( -noperldoc => 1, -exit => 1, verbose => 1 ) if !GetOptions(
	\%opt,
	qw(
	  version
	  help|?
	  manual
	  debug
	  )
);

# Display version if requested
die ECMWF::ECaccess->VERSION . "\n" if ( $opt{version} );

pod2usage( -noperldoc => 1, -exit => 1, verbose => 1 ) if ( $opt{help} );
pod2usage( -noperldoc => 1, -exit => 1, verbose => 2 ) if ( $opt{manual} );

# Create the ECaccess Controler
my $ecaccess = ECMWF::ECaccess->new();
$ecaccess->setDebug( $opt{debug} );

# Get the Token (using the Certificate in $HOME)
my $token = $ecaccess->getToken();

# Get the Control Channel
my $controlChannel = $ecaccess->getControlChannel();

# Display the ConsInfo
print $controlChannel->getCosInfo($token)->result . "\n";

# Release the Token
$ecaccess->releaseToken($token);

__END__

=head1 NAME

ecaccess-cosinfo - Display ConsInfo from ECMWF

=head1 SYNOPSIS

B<ecaccess-cosinfo -version|-help|-manual>

B<ecaccess-cosinfo [-debug]>

=head1 DESCRIPTION

Cosinfo is the system used at ECMWF to provide computer operations
system information, such as scheduled or unscheduled downtime of
servers, applications or hardware.

=head1 OPTIONS

=over 8

=item B<-version>

Display version number and exits.

=item B<-help>

Print a brief help message and exits.
=item B<-manual>

Prints the manual page and exits.

=item B<-debug>

Display the SOAP messages exchanged.

=back

=head1 SEE ALSO

B<ecaccess>.

=cut
