$Carp::Internal
{
'Module::Runtime'
} = 1;
sub
global_opt_spec {
my
(
$self
) =
@_
;
return
(
[
"verbose|v"
,
"log additional output"
],
[
"verbose-plugin|V=s@"
,
"log additional output from some plugins only"
],
[
"lib-inc|I=s@"
,
"additional \@INC dirs"
, {
callbacks
=> {
'always fine'
=>
sub
{
unshift
@INC
, @{
$_
[0]}; } }
} ],
$self
->SUPER::global_opt_spec,
);
}
sub
_build_global_stashes {
my
(
$self
) =
@_
;
return
$self
->{__global_stashes__}
if
$self
->{__global_stashes__};
return
{}
if
$ENV
{DZIL_TESTING};
my
$stash_registry
=
$self
->{__global_stashes__} = {};
my
$config_dir
= Dist::Zilla::Util->_global_config_root;
my
$config_base
=
$config_dir
->child(
'config'
);
my
$assembler
= Dist::Zilla::MVP::Assembler::GlobalConfig->new({
chrome
=>
$self
->chrome,
stash_registry
=>
$stash_registry
,
section_class
=>
'Dist::Zilla::MVP::Section'
,
});
try
{
my
$reader
= Dist::Zilla::MVP::Reader::Finder->new({
if_none
=>
sub
{
return
$_
[2]->{assembler}->sequence
},
});
my
$seq
=
$reader
->read_config(
$config_base
, {
assembler
=>
$assembler
});
}
catch
{
my
$e
=
$_
;
if
(
eval
{
$e
->isa(
'Config::MVP::Error'
) and
$e
->ident eq
'package not installed'
}) {
my
$package
=
$e
->
package
;
my
$bundle
=
$package
=~ /^@/ ?
' bundle'
:
''
;
die
<<"END_DIE";
Required plugin$bundle $package isn't installed. Remedy with:
cpanm $package
END_DIE
}
else
{
die
<<'END_DIE';
Your global configuration file couldn't be loaded. It's a file matching
~/.dzil/config.*
You can try deleting the file or you might need to upgrade from pre-version 4
format. In most cases, this will just mean replacing [!release] with [%PAUSE]
and deleting any [!new] stanza. You can also delete the existing file and run
"dzil setup"
END_DIE
}
};
return
$stash_registry
;
}
sub
chrome {
my
(
$self
) =
@_
;
return
$self
->{__chrome__}
if
$self
->{__chrome__};
$self
->{__chrome__} = Dist::Zilla::Chrome::Term->new;
my
@v_plugins
=
$self
->global_options->verbose_plugin
?
grep
{
length
} @{
$self
->global_options->verbose_plugin }
: ();
my
$verbose
=
$self
->global_options->verbose;
$self
->{__chrome__}->logger->set_debug(
$verbose
? 1 : 0);
return
$self
->{__chrome__};
}
sub
zilla {
my
(
$self
) =
@_
;
return
$self
->{
''
. __PACKAGE__}{zilla} ||=
do
{
my
@v_plugins
=
$self
->global_options->verbose_plugin
?
grep
{
length
} @{
$self
->global_options->verbose_plugin }
: ();
my
$verbose
=
$self
->global_options->verbose;
$self
->chrome->logger->set_debug(
$verbose
? 1 : 0);
my
$core_debug
=
grep
{ m/\A[-_]\z/ }
@v_plugins
;
my
$zilla
;
try
{
$zilla
= Dist::Zilla::Dist::Builder->from_config({
chrome
=>
$self
->chrome,
_global_stashes
=>
$self
->_build_global_stashes,
});
}
catch
{
die
$_
unless
try
{
$_
->isa(
'Config::MVP::Error'
) }
&&
$_
->ident =~ /
no
viable config/;
$self
->chrome->logger->log_fatal(
"no configuration (e.g, dist.ini) found"
);
};
$zilla
->logger->set_debug(
$verbose
? 1 : 0);
VERBOSE_PLUGIN:
for
my
$plugin_name
(
grep
{ ! m{\A[-_]\z} }
@v_plugins
) {
my
@plugins
=
grep
{
$_
->plugin_name =~ /\b\Q
$plugin_name
\E\b/ }
@{
$zilla
->plugins };
$zilla
->log_fatal(
"can't find plugins matching $plugin_name to set debug"
)
unless
@plugins
;
$_
->logger->set_debug(1)
for
@plugins
;
}
$zilla
;
}
}
1;