—## no critic (Modules::ProhibitAutomaticExportation)
package
Getopt::Long::Complete;
use
strict;
use
warnings;
require
Exporter;
our
@ISA
=
qw(Exporter)
;
our
@EXPORT
=
qw(
GetOptions
$REQUIRE_ORDER $PERMUTE $RETURN_IN_ORDER
)
;
our
@EXPORT_OK
=
qw(
GetOptionsWithCompletion
GetOptionsFromArray
GetOptionsFromString
Configure
HelpMessage
VersionMessage
)
;
our
$AUTHORITY
=
'cpan:PERLANCAR'
;
# AUTHORITY
our
$DATE
=
'2025-02-21'
;
# DATE
our
$DIST
=
'Getopt-Long-Complete'
;
# DIST
our
$VERSION
=
'0.318'
;
# VERSION
# we don't want to always load Getopt::Long to avoid startup overhead.
our
(
$REQUIRE_ORDER
,
$PERMUTE
,
$RETURN_IN_ORDER
) = (0..2);
# copied from Getopt::Long
# default follows Getopt::Long
our
$opt_permute
=
$ENV
{POSIXLY_CORRECT} ? 0 : 1;
our
$opt_pass_through
= 0;
our
$opt_bundling
= 1;
# in Getopt::Long the default is off
sub
GetOptionsWithCompletion {
my
$comp
=
shift
;
my
$hash
;
my
$ospec
;
if
(
ref
(
$_
[0]) eq
'HASH'
) {
$hash
=
shift
;
for
(
my
$i
= 0;
$i
<
@_
;
$i
++) {
if
((
$i
+1 <
@_
) && (
ref
$_
[
$i
+1])) {
$ospec
->{
$_
[
$i
]} =
$_
[
$i
+1];
$i
++;
}
else
{
$ospec
->{
$_
[
$i
]} =
sub
{};
}
}
}
else
{
$ospec
= \
@_
;
}
my
$shell
;
if
(
$ENV
{COMP_SHELL}) {
(
$shell
=
$ENV
{COMP_SHELL}) =~ s!.+/!!;
}
elsif
(
$ENV
{COMMAND_LINE}) {
$shell
=
'tcsh'
;
}
else
{
$shell
=
'bash'
;
}
if
(
$ENV
{COMP_LINE} ||
$ENV
{COMMAND_LINE}) {
my
(
$words
,
$cword
);
if
(
$ENV
{COMP_LINE}) {
(
$words
,
$cword
) = @{ Complete::Bash::parse_cmdline(
undef
,
undef
, {
truncate_current_word
=>1}) };
(
$words
,
$cword
) = @{ Complete::Bash::join_wordbreak_words(
$words
,
$cword
) };
}
elsif
(
$ENV
{COMMAND_LINE}) {
$shell
||=
'tcsh'
;
(
$words
,
$cword
) = @{ Complete::Tcsh::parse_cmdline() };
}
shift
@$words
;
$cword
--;
# strip program name
my
$compres
= Complete::Getopt::Long::complete_cli_arg(
words
=>
$words
,
cword
=>
$cword
,
getopt_spec
=>
$ospec
,
completion
=>
$comp
,
bundling
=>
$opt_bundling
,
);
if
(
$shell
eq
'bash'
) {
Complete::Bash::format_completion(
$compres
, {
word
=>
$words
->[
$cword
]});
}
elsif
(
$shell
eq
'fish'
) {
Complete::Bash::format_completion(
$compres
, {
word
=>
$words
->[
$cword
]});
}
elsif
(
$shell
eq
'tcsh'
) {
Complete::Tcsh::format_completion(
$compres
);
}
elsif
(
$shell
eq
'zsh'
) {
Complete::Zsh::format_completion(
$compres
);
}
else
{
die
"Unknown shell '$shell'"
;
}
exit
0;
}
my
$old_conf
= Getopt::Long::Configure(
'no_ignore_case'
,
'no_getopt_compat'
,
'gnu_compat'
,
$opt_bundling
?
'bundling'
:
'no_bundling'
,
$opt_permute
?
'permute'
:
'no_permute'
,
$opt_pass_through
?
'pass_through'
:
'no_pass_through'
,
);
my
$res
;
if
(
$hash
) {
$res
= Getopt::Long::GetOptions(
$hash
,
@_
);
}
else
{
$res
= Getopt::Long::GetOptions(
@_
);
}
Getopt::Long::Configure(
$old_conf
);
$res
;
}
sub
GetOptions {
GetOptionsWithCompletion(
undef
,
@_
);
}
1;
# ABSTRACT: A drop-in replacement for Getopt::Long, with shell tab completion
__END__
=pod
=encoding UTF-8
=head1 NAME
Getopt::Long::Complete - A drop-in replacement for Getopt::Long, with shell tab completion
=head1 VERSION
This document describes version 0.318 of Getopt::Long::Complete (from Perl distribution Getopt-Long-Complete), released on 2025-02-21.
=head1 SYNOPSIS
=head2 First example (simple)
You just replace C<use Getopt::Long> with C<use Getopt::Long::Complete> and your
program suddenly supports tab completion. This works for most/many programs (see
L</"INCOMPATIBILITIES">. For example, below is source code for C<delete-user>.
use Getopt::Long::Complete;
my %opts;
GetOptions(
'help|h' => sub { ... },
'on-fail=s' => \$opts{on_fail},
'user|U=s' => \$opts{name},
'force' => \$opts{force},
'verbose!' => \$opts{verbose},
);
Several shells are supported. To activate completion, see L</"DESCRIPTION">.
After activation, tab completion works:
% delete-user <tab>
--force --help --noverbose --no-verbose --on-fail --user --verbose -h
% delete-user --h<tab>
=head2 Second example (additional completion)
The previous example only provides completion for option names. To provide
completion for option values as well as arguments, you need to provide more
hints. Instead of C<GetOptions>, use C<GetOptionsWithCompletion>. It's basically
the same as C<GetOptions> but accepts an extra coderef in the first argument.
The code will be invoked when completion to option value or argument is needed.
Example:
use Getopt::Long::Complete qw(GetOptionsWithCompletion);
use Complete::Unix qw(complete_user);
use Complete::Util qw(complete_array_elem);
my %opts;
GetOptionsWithCompletion(
sub {
my %args = @_; # see Complete::Getopt::Long for details on what arguments are provided
my $word = $args{word}; # the word to be completed
my $type = $args{type}; # 'optname', 'optval', or 'arg'
my $opt = $args{opt}; # can be an array of options if ambiguous, e.g. ['--on-fail', '--on-full']
if ($type eq 'optval' && $opt eq '--on-fail') {
return complete_array_elem(array=>[qw/die warn ignore/], word=>$word);
} elsif ($type eq 'optval' && ($opt eq '--user' || $opt eq '-U')) {
return complete_user(word=>$word);
} elsif ($type eq 'arg') {
return complete_user(word=>$word);
}
[];
},
'help|h' => sub { ... },
'on-fail=s' => \$opts{on_fail},
'user=s' => \$opts{name},
'force' => \$opts{force},
'verbose!' => \$opts{verbose},
);
=head1 DESCRIPTION
This module provides a quick and easy way to add shell tab completion feature to
your scripts, including scripts already written using the venerable
L<Getopt::Long> module. Currently bash and tcsh are directly supported; fish and
zsh are also supported via L<shcompgen>.
This module is basically just a thin wrapper for Getopt::Long. Its C<GetOptions>
function just checks for COMP_LINE/COMP_POINT environment variable (in the case
of bash) or COMMAND_LINE (in the case of tcsh) before passing its arguments to
C<Getopt::Long>'s C<GetOptions>. If those environment variable(s) are defined,
completion reply will be printed to STDOUT and then the program will exit.
Otherwise, Getopt::Long's GetOptions is called.
To keep completion quick, you should do C<GetOptions()> or
C<GetOptionsWithCompletion()> as early as possible in your script. Preferably
before loading lots of other Perl modules.
To activate tab completion in bash, put your script somewhere in C<PATH> and
execute this in the shell or put it into your bash startup file (e.g.
C</etc/bash.bashrc> or C<~/.bashrc>). Replace C<delete-user> with the actual
script name:
complete -C delete-user delete-user
For tcsh:
complete delete-user 'p/*/`delete-user`/'
For other shells (but actually for bash too) you can use L<shcompgen>.
=head1 VARIABLES
Because we are "bound" by providing a Getopt::Long-compatible function
interface, these variables exist to allow configuring Getopt::Long::GetOptions.
You can use Perl's C<local> to localize the effect.
=head2 $opt_permute
Bool. Default: 1 (or 0 if POSIXLY_CORRECT). Not exported.
=head2 $opt_pass_through
Bool. Default: 0. Not exported.
=head2 $opt_bundling
Bool. Default: 1. Not exported.
=head2 $REQUIRE_ORDER
Integer. Constant. Value is 0. Exported by default, to be compatible with
Getopt::Long.
=head2 $PERMUTE
Integer. Constant. Value is 1. Exported by default, to be compatible with
Getopt::Long.
=head2 $RETURN_IN_ORDER
Integer. Constant. Value is 2. Exported by default, to be compatible with
Getopt::Long.
=head1 INCOMPATIBILITIES
Getopt::Long::Complete (GLC) provides all the same exports as Getopt::Long (GL),
for example L</GetOptions> (exported by default), L</GetOptionsFromArray>,
L</Configure>, etc.
Aside from L<GetOptions> which has an extra behavior to support completion, all
the other routines of GLC behave exactly the same as GL.
However, there are some incompatibilities or unsupported features:
=over
=item * GLC does not allow passing configure options during import
=item * GLC's GetOptions only supports running under a specific set of modes: C<bundling>, C<no_ignore_case>.
Other non-default settings have not been tested and probably not supported.
=back
=head1 FUNCTIONS
=head2 GetOptions
Usage:
GetOptions([ \%hash, ] @spec)
Exported by default. Will call Getopt::Long's GetOptions, except when COMP_LINE
environment variable is defined, in which case will print completion reply to
STDOUT and exit.
B<Note: Will temporarily set Getopt::Long configuration as follow: bundling,
no_ignore_case, gnu_compat, no_getopt_compat, permute (if POSIXLY_CORRECT
environment is false). I believe this a sane default.> You can turn off bundling
via C<$opt_bundling>. You can turn on/off permute explicitly by via
C<$opt_permute>. You can turn on pass_through via C<$opt_pass_through>.
=head2 GetOptionsWithCompletion
Usage:
GetOptionsWithCompletion(\&completion, [ \%hash, ] @spec)
Exported on demand. Just like C<GetOptions>, except that it accepts an extra
first argument C<\&completion> containing completion routine for completing
option I<values> and arguments. This will be passed as C<completion> argument to
L<Complete::Getopt::Long>'s C<complete_cli_arg>. See that module's documentation
on details of what is passed to the routine and what return value is expected
from it.
=head2 GetOptionsFromArray
Exported on demand. Will just call Getopt::Long's version.
=head2 GetOptionsFromString
Exported on demand. Will just call Getopt::Long's version.
=head2 Configure
Exported on demand. Will just call Getopt::Long's version.
=head2 HelpMessage
Exported on demand. Will just call Getopt::Long's version.
=head2 VersionMessage
Exported on demand. Will just call Getopt::Long's version.
=head1 HOMEPAGE
Please visit the project's homepage at L<https://metacpan.org/release/Getopt-Long-Complete>.
=head1 SOURCE
Source repository is at L<https://github.com/perlancar/perl-Getopt-Long-Complete>.
=head1 SEE ALSO
L<Getopt::Long::More>, another drop-in replacement for Getopt::Long with tab
completion support and more stuffs: default value, required value, summary in
auto_help.
L<Complete::Getopt::Long> (the backend for this module), L<Complete::Bash>,
L<Complete::Tcsh>.
L<Getopt::Long::Subcommand> also supports tab completion, in addition to
subcommands.
Other option-processing modules featuring shell tab completion:
L<Getopt::Complete>.
L<Perinci::CmdLine> - an alternative way to easily create command-line
applications with completion feature.
L<shcompgen>
L<Pod::Weaver::Section::Completion::GetoptLongComplete>
=head1 AUTHOR
perlancar <perlancar@cpan.org>
=head1 CONTRIBUTOR
=for stopwords Steven Haryanto
Steven Haryanto <stevenharyanto@gmail.com>
=head1 CONTRIBUTING
To contribute, you can send patches by email/via RT, or send pull requests on
GitHub.
Most of the time, you don't need to build the distribution yourself. You can
simply modify the code, then test via:
% prove -l
If you want to build the distribution (e.g. to try to install it locally on your
system), you can install L<Dist::Zilla>,
L<Dist::Zilla::PluginBundle::Author::PERLANCAR>,
L<Pod::Weaver::PluginBundle::Author::PERLANCAR>, and sometimes one or two other
Dist::Zilla- and/or Pod::Weaver plugins. Any additional steps required beyond
that are considered a bug and can be reported to me.
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2025 by perlancar <perlancar@cpan.org>.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=head1 BUGS
Please report any bugs or feature requests on the bugtracker website L<https://rt.cpan.org/Public/Dist/Display.html?Name=Getopt-Long-Complete>
When submitting a bug or request, please include a test-file or a
patch to an existing test-file that illustrates the bug or desired
feature.
=cut