summaryrefslogtreecommitdiffstats
path: root/lib/Reply/Plugin/Packages.pm
blob: 071e20bf1db9252b6acf9363121da38cb612066d (plain) (blame)
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
package Reply::Plugin::Packages;
use strict;
use warnings;

use base 'Reply::Plugin';

sub new {
    my $class = shift;

    my $self = $class->SUPER::new(@_);
    $self->{package} = 'main';

    return $self;
}

sub mangle_line {
    my $self = shift;
    my ($line) = @_;

    return "package $self->{package};\n$line\n;BEGIN { \$" . __PACKAGE__ . "::package = __PACKAGE__ }";
}

sub compile {
    my $self = shift;
    my ($next, @args) = @_;

    # XXX it'd be nice to avoid using globals here, but we can't use
    # eval_closure's environment parameter since we need to access the
    # information in a BEGIN block
    our $package = $self->{package};

    my @result = $next->(@args);

    $self->{package} = $package;

    return @result;
}

1;