summaryrefslogtreecommitdiffstats
path: root/lib/App/Ttyrec.pm
blob: ff9f8d95a6f3d6985570384d99a180a6063794a4 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package App::Ttyrec;
use Moose;

use Scalar::Util 'weaken';
use Term::Filter;
use Tie::Handle::TtyRec;

has ttyrec_file => (
    is      => 'ro',
    isa     => 'Str',
    default => 'ttyrecord',
);

has append => (
    is      => 'ro',
    isa     => 'Bool',
    default => 0,
);

has ttyrec => (
    is      => 'ro',
    isa     => 'FileHandle',
    lazy    => 1,
    default => sub { Tie::Handle::TtyRec->new(shift->ttyrec_file) },
);

has term => (
    is      => 'ro',
    isa     => 'Term::Filter',
    lazy    => 1,
    default => sub {
        my $_self = shift;
        weaken(my $self = $_self);
        Term::Filter->new(
            callbacks => {
                munge_output => sub {
                    my $term = shift;
                    my ($got) = @_;

                    syswrite $self->ttyrec, $got;

                    $got;
                },
            },
        );
    },
    handles => ['run'],
);

sub BUILD {
    my $self = shift;

    die "Appending is not currently supported"
        if $self->append;
}

__PACKAGE__->meta->make_immutable;
no Moose;

1;