1 | use warnings; |
---|
2 | use strict; |
---|
3 | |
---|
4 | =head1 NAME |
---|
5 | |
---|
6 | BarnOwl::Completion |
---|
7 | |
---|
8 | =head1 DESCRIPTION |
---|
9 | |
---|
10 | Hooks for tab-completion support in BarnOwl. |
---|
11 | |
---|
12 | =cut |
---|
13 | |
---|
14 | package BarnOwl::Completion; |
---|
15 | |
---|
16 | use BarnOwl::Completion::Context; |
---|
17 | use BarnOwl::Editwin qw(save_excursion text_before_point text_after_point |
---|
18 | point_move replace_region); |
---|
19 | |
---|
20 | use List::Util qw(min first); |
---|
21 | |
---|
22 | our %completers = (); |
---|
23 | |
---|
24 | sub do_complete { |
---|
25 | my $cmd = shift; |
---|
26 | my $before = text_before_point(); |
---|
27 | my $after = text_after_point(); |
---|
28 | BarnOwl::debug("Completing: $before-|-$after"); |
---|
29 | my $ctx = BarnOwl::Completion::Context->new($before, $after); |
---|
30 | |
---|
31 | my @words = get_completions($ctx); |
---|
32 | return unless @words; |
---|
33 | my $prefix = common_prefix(@words); |
---|
34 | |
---|
35 | if($prefix) { |
---|
36 | insert_completion($ctx, $prefix, scalar @words == 1); |
---|
37 | } |
---|
38 | |
---|
39 | if(scalar @words > 1) { |
---|
40 | show_completions(@words); |
---|
41 | } else { |
---|
42 | BarnOwl::message(''); |
---|
43 | } |
---|
44 | } |
---|
45 | |
---|
46 | sub insert_completion { |
---|
47 | my $ctx = shift; |
---|
48 | my $completion = BarnOwl::quote(shift); |
---|
49 | my $unique = shift; |
---|
50 | |
---|
51 | if($unique) { |
---|
52 | $completion .= " "; |
---|
53 | } |
---|
54 | |
---|
55 | save_excursion { |
---|
56 | point_move($ctx->word_start - $ctx->point); |
---|
57 | BarnOwl::Editwin::set_mark(); |
---|
58 | point_move($ctx->word_end - $ctx->word_start); |
---|
59 | replace_region($completion); |
---|
60 | }; |
---|
61 | if(!length($ctx->words->[$ctx->word])) { |
---|
62 | point_move(length($completion)); |
---|
63 | } |
---|
64 | } |
---|
65 | |
---|
66 | sub show_completions { |
---|
67 | my @words = @_; |
---|
68 | my $all = BarnOwl::quote(@words); |
---|
69 | my $width = BarnOwl::getnumcols(); |
---|
70 | if (length($all) > $width-1) { |
---|
71 | $all = substr($all, 0, $width-4) . "..."; |
---|
72 | } |
---|
73 | BarnOwl::message($all); |
---|
74 | } |
---|
75 | |
---|
76 | sub common_prefix { |
---|
77 | my @words = @_; |
---|
78 | my $len = min(map {length($_)} @words); |
---|
79 | my $pfx = ''; |
---|
80 | for my $i (1..$len) { |
---|
81 | $pfx = substr($words[0], 0, $i); |
---|
82 | if(first {substr($_, 0, $i) ne $pfx} @words) { |
---|
83 | $pfx = substr($pfx, 0, $i-1); |
---|
84 | last; |
---|
85 | } |
---|
86 | } |
---|
87 | |
---|
88 | return $pfx; |
---|
89 | } |
---|
90 | |
---|
91 | |
---|
92 | sub get_completions { |
---|
93 | my $ctx = shift; |
---|
94 | if($ctx->word == 0) { |
---|
95 | return complete_command($ctx->words->[0]); |
---|
96 | } else { |
---|
97 | my $cmd = $ctx->words->[0]; |
---|
98 | my $word = $ctx->words->[$ctx->word]; |
---|
99 | if(exists($completers{$cmd})) { |
---|
100 | return grep {$_ =~ m{^\Q$word\E}} $completers{$cmd}->($ctx); |
---|
101 | } |
---|
102 | return; |
---|
103 | } |
---|
104 | } |
---|
105 | |
---|
106 | sub complete_command { |
---|
107 | my $cmd = shift; |
---|
108 | $cmd = "" unless defined($cmd); |
---|
109 | return grep {$_ =~ m{^\Q$cmd\E}} @BarnOwl::all_commands; |
---|
110 | } |
---|
111 | |
---|
112 | sub register_completer { |
---|
113 | my $cmd = shift; |
---|
114 | my $completer = shift; |
---|
115 | $completers{$cmd} = $completer; |
---|
116 | } |
---|
117 | |
---|
118 | sub load_completers { |
---|
119 | opendir(my $dh, BarnOwl::get_data_dir() . "/" . "lib/BarnOwl/Complete/") or return; |
---|
120 | while(my $name = readdir($dh)) { |
---|
121 | next if $name =~ m{^\.}; |
---|
122 | next unless $name =~ m{[.]pm$}; |
---|
123 | $name =~ s{[.]pm$}{}; |
---|
124 | eval "use BarnOwl::Complete::$name"; |
---|
125 | if($@) { |
---|
126 | BarnOwl::error("Loading completion module $name:\n$@\n"); |
---|
127 | } |
---|
128 | } |
---|
129 | } |
---|
130 | |
---|
131 | $BarnOwl::Hooks::startup->add("BarnOwl::Completion::load_completers"); |
---|
132 | |
---|
133 | 1; |
---|