skip compile tests for plugins using optional features - we conditionally test these...
[p5sagit/Devel-REPL.git] / lib / Devel / REPL / Plugin / CompletionDriver / Globals.pm
CommitLineData
1716b200 1use strict;
2use warnings;
908733a9 3package Devel::REPL::Plugin::CompletionDriver::Globals;
4use Devel::REPL::Plugin;
aa8b7647 5use namespace::autoclean;
908733a9 6
75a08365 7sub BEFORE_PLUGIN {
8 my $self = shift;
9 $self->load_plugin('Completion');
10}
11
908733a9 12around complete => sub {
13 my $orig = shift;
14 my ($self, $text, $document) = @_;
15
16 my $last = $self->last_ppi_element($document);
17
18 return $orig->(@_)
310ddf9f 19 unless $last->isa('PPI::Token::Symbol')
20 || $last->isa('PPI::Token::Word');
908733a9 21
310ddf9f 22 my $sigil = $last =~ s/^[\$\@\%\&\*]// ? $1 : undef;
908733a9 23 my $re = qr/^\Q$last/;
24
25 my @package_fragments = split qr/::|'/, $last;
26
27 # split drops the last fragment if it's empty
28 push @package_fragments, '' if $last =~ /(?:'|::)$/;
29
30 # the beginning of the variable, or an incomplete package name
31 my $incomplete = pop @package_fragments;
32
33 # recurse for the complete package fragments
34 my $stash = \%::;
35 for (@package_fragments) {
36 $stash = $stash->{"$_\::"};
37 }
38
39 # collect any variables from this stash
40 my @found = grep { /$re/ }
41 map { join '::', @package_fragments, $_ }
42 keys %$stash;
43
44 # check to see if it's an incomplete package name, and add its variables
45 # so Devel<TAB> is completed correctly
46 for my $key (keys %$stash) {
47 next unless $key =~ /::$/; # only look at deeper packages
48 next unless $key =~ /^\Q$incomplete/; # only look at matching packages
49 push @found,
50 map { join '::', @package_fragments, $_ }
51 map { "$key$_" } # $key already has trailing ::
52 keys %{ $stash->{$key} };
53 }
54
55 return $orig->(@_), @found;
56};
57
581;
59
cfd1094b 60__END__
61
62=head1 NAME
63
64Devel::REPL::Plugin::CompletionDriver::Globals - Complete global variables, packages, namespaced functions
65
30b459d4 66=head1 AUTHOR
67
68Shawn M Moore, C<< <sartak at gmail dot com> >>
69
cfd1094b 70=cut
71