1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
|
package Catmandu::CLI;
use Catmandu::Sane;
our $VERSION = '1.2024';
use Catmandu::Util qw(is_instance);
use Catmandu;
use Log::Any::Adapter;
use Data::Dumper;
use Getopt::Long;
use parent qw(App::Cmd);
BEGIN {
# Unknown opts are added to the args instead of generating a usage error
# so we can handle them dynamically (see Catmandu::Cmd _parse_options).
Getopt::Long::Configure("pass_through");
}
sub deleted_commands {
[
qw(
Catmandu::Cmd::data
Catmandu::Cmd::exporter_info
Catmandu::Cmd::fix_info
Catmandu::Cmd::importer_info
Catmandu::Cmd::module_info
Catmandu::Cmd::move
Catmandu::Cmd::store_info
)
];
}
sub default_command {'commands'}
sub plugin_search_path {'Catmandu::Cmd'}
sub global_opt_spec {
(['debug|D:i', ""], ['load_path|L=s@', ""], ['lib_path|I=s@', ""]);
}
sub default_log4perl_config {
my $level = shift // 'DEBUG';
my $appender = shift // 'STDERR';
my $config = <<EOF;
log4perl.category.Catmandu=$level,$appender
log4perl.category.Catmandu::Fix::log=TRACE,$appender
log4perl.appender.STDOUT=Log::Log4perl::Appender::Screen
log4perl.appender.STDOUT.stderr=0
log4perl.appender.STDOUT.utf8=1
log4perl.appender.STDOUT.layout=PatternLayout
log4perl.appender.STDOUT.layout.ConversionPattern=%d [%P] - %p %l %M time=%r : %m%n
log4perl.appender.STDERR=Log::Log4perl::Appender::Screen
log4perl.appender.STDERR.stderr=1
log4perl.appender.STDERR.utf8=1
log4perl.appender.STDERR.layout=PatternLayout
log4perl.appender.STDERR.layout.ConversionPattern=%d [%P] - %l : %m%n
EOF
\$config;
}
sub setup_debugging {
my %LEVELS = (1 => 'WARN', 2 => 'INFO', 3 => 'DEBUG');
my $debug = shift;
my $level = $LEVELS{$debug} // 'WARN';
my $load_from;
try {
my $log4perl_pkg = Catmandu::Util::require_package('Log::Log4perl');
my $logany_adapter
= Catmandu::Util::require_package('Log::Any::Adapter::Log4perl');
my $config = Catmandu->config->{log4perl};
if (defined $config) {
if ($config =~ /^\S+$/) {
Log::Log4perl::init($config);
$load_from = "file: $config";
}
else {
Log::Log4perl::init(\$config);
$load_from = "string: <defined in catmandu.yml>";
}
}
else {
Log::Log4perl::init(default_log4perl_config($level, 'STDERR'));
$load_from = "string: <defined in " . __PACKAGE__ . ">";
}
Log::Any::Adapter->set('Log4perl');
}
catch {
print STDERR <<EOF;
Oops! Debugging tools not available on this platform
Try to install Log::Log4perl and Log::Any::Adapter::Log4perl
Hint: cpan Log::Log4perl Log::Any::Adapter::Log4perl
EOF
exit(2);
};
Catmandu->log->warn(
"debug activated - level $level - config load from $load_from");
}
# overload run to read the global options before
# the App::Cmd object is created
sub run {
my ($class) = @_;
my ($global_opts, $argv)
= $class->_process_args([@ARGV],
$class->_global_option_processing_params);
my $load_path = $global_opts->{load_path} || [];
my $lib_path = $global_opts->{lib_path} || [];
if (exists $global_opts->{debug}) {
setup_debugging($global_opts->{debug} // 1);
}
if (@$lib_path) {
Catmandu::Util::use_lib(@$lib_path);
}
Catmandu->load(@$load_path);
my $self = ref $class ? $class : $class->new;
$self->set_global_options($global_opts);
my ($cmd, $opts, @args) = $self->prepare_command(@$argv);
my $err;
try {
$self->execute_command($cmd, $opts, @args);
}
catch {
my $e = $_;
if (is_instance($e, 'Catmandu::NoSuchPackage')
&& $e->package_name eq 'Catmandu::Importer::help')
{
$err = "Did you mean 'catmandu $ARGV[1] $ARGV[0]'?";
}
elsif (is_instance($e, 'Catmandu::Error')) {
$err = $e->log_message;
}
else {
$err = $e;
}
};
if (defined $err) {
say STDERR "Oops! $err";
return;
}
1;
}
sub should_ignore {
my ($self, $cmd_class) = @_;
for my $cmd (@{$self->deleted_commands}) {
return 1 if $cmd_class->isa($cmd);
}
return;
}
1;
__END__
=pod
=head1 NAME
Catmandu::CLI - The App::Cmd application class for the catmandu command line script
=head1 SEE ALSO
L<catmandu>
=cut
|