2007-10-26 22:44:33 +00:00
|
|
|
#!/usr/bin/env perl
|
|
|
|
# IBM(c) 2007 EPL license http://www.eclipse.org/legal/epl-v10.html
|
2007-12-11 19:15:28 +00:00
|
|
|
BEGIN
|
|
|
|
{
|
2008-01-14 17:04:41 +00:00
|
|
|
$::XCATROOT = $ENV{'XCATROOT'} ? $ENV{'XCATROOT'} : -d '/opt/xcat' ? '/opt/xcat' : '/usr';
|
2007-12-11 19:15:28 +00:00
|
|
|
}
|
|
|
|
use lib "$::XCATROOT/lib/perl";
|
2007-10-26 22:44:33 +00:00
|
|
|
|
|
|
|
use File::Basename;
|
2007-11-26 19:59:04 +00:00
|
|
|
use xCAT::MsgUtils;
|
2007-10-26 22:44:33 +00:00
|
|
|
use xCAT::Client submit_request;
|
|
|
|
|
|
|
|
my $bname = basename($0);
|
|
|
|
|
|
|
|
#########################################
|
|
|
|
# Main
|
|
|
|
#
|
|
|
|
# xcatDBcmds
|
|
|
|
#
|
2007-11-26 19:59:04 +00:00
|
|
|
# Build hash and submit request
|
2007-10-26 22:44:33 +00:00
|
|
|
#
|
2007-11-26 19:59:04 +00:00
|
|
|
# Handles: mkdef, chdef, lsdef, rmdef commands
|
2007-10-26 22:44:33 +00:00
|
|
|
#
|
2007-11-26 19:59:04 +00:00
|
|
|
# Note: The subroutines that implement these commands
|
|
|
|
# are in /usr/lib/xcat/plugins/DBobjectdefs.pm
|
|
|
|
# on the xCAT management node
|
2007-10-26 22:44:33 +00:00
|
|
|
#
|
|
|
|
#########################################
|
|
|
|
|
|
|
|
my $cmdref;
|
|
|
|
|
|
|
|
# set the command name to pass to the plugin
|
|
|
|
if ($bname =~ /xcatDBcmds/)
|
|
|
|
{
|
|
|
|
$cmdref->{command}->[0] = shift @ARGV;
|
|
|
|
}
|
|
|
|
elsif ($bname =~ /^(.*$)/)
|
|
|
|
{
|
|
|
|
$cmdref->{command}->[0] = $1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
printf("Bad usage\n");
|
|
|
|
exit 1;
|
|
|
|
}
|
|
|
|
|
2007-11-26 19:59:04 +00:00
|
|
|
# get info from files piped in as stdin
|
|
|
|
if (-p STDIN) {
|
|
|
|
my $data;
|
|
|
|
while ( <STDIN> ) {
|
|
|
|
$data.=$_;
|
|
|
|
}
|
|
|
|
$cmdref->{stdin}->[0]=$data;
|
|
|
|
}
|
2007-10-26 22:44:33 +00:00
|
|
|
|
|
|
|
# add all the cmd line args to the hash - to pass to the plugin subroutine
|
|
|
|
foreach (@ARGV)
|
|
|
|
{
|
|
|
|
push(@{$cmdref->{arg}}, $_);
|
|
|
|
}
|
|
|
|
|
2007-11-26 19:59:04 +00:00
|
|
|
# Is it necessary to pass the node range through the client-server path ??
|
|
|
|
#
|
|
|
|
# !!!!!
|
|
|
|
#
|
|
|
|
# BUT - also want to pass in a list of object definitions that are
|
|
|
|
# not noderanges
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# In any case - this doesn't work for mkdef & chdef because we may be
|
|
|
|
# creating the node definition for the first time
|
|
|
|
#
|
|
|
|
#if (!($bname =~ /mkdef/))
|
|
|
|
if (0)
|
2007-10-26 22:44:33 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
#
|
|
|
|
# We need to see if a noderange was provided on the command line
|
|
|
|
# - the command line could be flags(options) -> noderange -> attr=val pairs
|
|
|
|
# - the noderange is used by xCAT remote access support infrastructure
|
|
|
|
# so we need to set it now
|
|
|
|
#
|
|
|
|
|
|
|
|
use Getopt::Long;
|
|
|
|
|
|
|
|
# Allows opts to be grouped (e.g. -avx)
|
|
|
|
Getopt::Long::Configure("bundling");
|
|
|
|
|
|
|
|
# parse the options
|
|
|
|
if (
|
|
|
|
!GetOptions(
|
|
|
|
'all|a' => \$::opt_a,
|
|
|
|
'dynamic|d' => \$::opt_d,
|
2007-11-26 19:59:04 +00:00
|
|
|
'f|force' => \$::opt_f,
|
2007-10-26 22:44:33 +00:00
|
|
|
'i=s' => \$::opt_i,
|
|
|
|
'help|h' => \$::opt_h,
|
|
|
|
'long|l' => \$::opt_l,
|
|
|
|
'm|minus' => \$::opt_m,
|
|
|
|
'o=s' => \$::opt_o,
|
|
|
|
'r|relace' => \$::opt_r,
|
|
|
|
't=s' => \$::opt_t,
|
|
|
|
'verbose|V' => \$::opt_V,
|
|
|
|
'version|v' => \$::opt_v,
|
|
|
|
'w=s' => \$::opt_w,
|
2007-11-26 19:59:04 +00:00
|
|
|
'x|xml' => \$::opt_x,
|
|
|
|
'z|stanza' => \$::opt_z
|
2007-10-26 22:44:33 +00:00
|
|
|
)
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
# a node range would be the next arg - but not if it contains an "=" sign
|
|
|
|
# - then it would be an attr=val operand
|
|
|
|
my $arg = shift(@ARGV);
|
|
|
|
if (!($arg =~ /=/))
|
|
|
|
{
|
2007-11-26 19:59:04 +00:00
|
|
|
# only set the noderange if it was a type of node or the type
|
|
|
|
# wasn't specified.
|
|
|
|
if (!$::opt_t || ($::opt_t eq 'node')) {
|
|
|
|
$cmdref->{noderange}->[0] = $arg;
|
|
|
|
}
|
2007-10-26 22:44:33 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
xCAT::Client::submit_request($cmdref, \&handle_response);
|
|
|
|
|
|
|
|
exit 0;
|
|
|
|
|
|
|
|
# may want to modify handle_response at some point!!!!!!!
|
|
|
|
|
|
|
|
##########################################
|
|
|
|
# handle_response is the callback that is
|
|
|
|
# invoked to print out the data returned by
|
|
|
|
# the plugin.
|
|
|
|
#
|
|
|
|
# Format of the response hash:
|
|
|
|
# {data => [ 'data str1', 'data str2', '...' ] }
|
|
|
|
#
|
|
|
|
# Results are printed as:
|
|
|
|
# data str1
|
|
|
|
# data str2
|
|
|
|
#
|
|
|
|
# or:
|
|
|
|
# {data => [ {desc => [ 'desc1' ],
|
|
|
|
# contents => [ 'contents1' ] },
|
|
|
|
# {desc => [ 'desc2 ],
|
|
|
|
# contents => [ 'contents2' ] }
|
|
|
|
# :
|
|
|
|
# ] }
|
|
|
|
# NOTE: In this format, only the data array can have more than one
|
|
|
|
# element. All other arrays are assumed to be a single element.
|
|
|
|
# Results are printed as:
|
|
|
|
# desc1: contents1
|
|
|
|
# desc2: contents2
|
|
|
|
#
|
|
|
|
# or:
|
|
|
|
# {node => [ {name => ['node1'],
|
|
|
|
# data => [ {desc => [ 'node1 desc' ],
|
|
|
|
# contents => [ 'node1 contents' ] } ] },
|
|
|
|
# {name => ['node2'],
|
|
|
|
# data => [ {desc => [ 'node2 desc' ],
|
|
|
|
# contents => [ 'node2 contents' ] } ] },
|
|
|
|
# :
|
|
|
|
# ] }
|
|
|
|
# NOTE: Only the node array can have more than one element.
|
|
|
|
# All other arrays are assumed to be a single element.
|
|
|
|
#
|
|
|
|
# This was generated from the corresponding HTML:
|
|
|
|
# <xcatrequest>
|
|
|
|
# <node>
|
|
|
|
# <name>node1</name>
|
|
|
|
# <data>
|
|
|
|
# <desc>node1 desc</desc>
|
|
|
|
# <contents>node1 contents</contents>
|
|
|
|
# </data>
|
|
|
|
# </node>
|
|
|
|
# <node>
|
|
|
|
# <name>node2</name>
|
|
|
|
# <data>
|
|
|
|
# <desc>node2 desc</desc>
|
|
|
|
# <contents>node2 contents</contents>
|
|
|
|
# </data>
|
|
|
|
# </node>
|
|
|
|
# </xcatrequest>
|
|
|
|
#
|
|
|
|
# Results are printed as:
|
|
|
|
# node_name: desc: contents
|
|
|
|
##########################################
|
|
|
|
sub handle_response
|
|
|
|
{
|
|
|
|
my $rsp = shift;
|
|
|
|
|
|
|
|
# Handle {node} structure
|
|
|
|
if ($rsp->{node})
|
|
|
|
{
|
|
|
|
my $nodes = ($rsp->{node});
|
|
|
|
my $node;
|
|
|
|
foreach $node (@$nodes)
|
|
|
|
{
|
|
|
|
my $desc = $node->{name}->[0];
|
|
|
|
if ($node->{data})
|
|
|
|
{
|
|
|
|
if (ref(\($node->{data}->[0])) eq 'SCALAR')
|
|
|
|
{
|
|
|
|
$desc = $desc . ": " . $node->{data}->[0];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ($node->{data}->[0]->{desc})
|
|
|
|
{
|
|
|
|
$desc = $desc . ": " . $node->{data}->[0]->{desc}->[0];
|
|
|
|
}
|
|
|
|
if ($node->{data}->[0]->{contents})
|
|
|
|
{
|
|
|
|
$desc = "$desc: " . $node->{data}->[0]->{contents}->[0];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($desc)
|
|
|
|
{
|
|
|
|
print "$desc\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# Handle {data} structure with no nodes
|
|
|
|
if ($rsp->{data})
|
|
|
|
{
|
|
|
|
my $data = ($rsp->{data});
|
|
|
|
my $data_entry;
|
|
|
|
foreach $data_entry (@$data)
|
|
|
|
{
|
|
|
|
my $desc;
|
|
|
|
if (ref(\($data_entry)) eq 'SCALAR')
|
|
|
|
{
|
|
|
|
$desc = $data_entry;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ($data_entry->{desc})
|
|
|
|
{
|
|
|
|
$desc = $data_entry->{desc}->[0];
|
|
|
|
}
|
|
|
|
if ($data_entry->{contents})
|
|
|
|
{
|
|
|
|
if ($desc)
|
|
|
|
{
|
|
|
|
$desc = "$desc: " . $data_entry->{contents}->[0];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$desc = $data_entry->{contents}->[0];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($desc)
|
|
|
|
{
|
|
|
|
print "$desc\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|