summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Quantum/Stdout.pm
blob: 9cf19992c34969d35e33fe890528cf09199b942a (plain)
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
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# This Source Code Form is "Incompatible With Secondary Licenses", as
# defined by the Mozilla Public License, v. 2.0.

package Bugzilla::Quantum::Stdout;
use 5.10.1;
use Moo;

use Bugzilla::Logging;
use Encode;
use English qw(-no_match_vars);

has 'controller' => (
    is       => 'ro',
    required => 1,
);

has '_encoding' => (
    is      => 'rw',
    default => '',
);

sub TIEHANDLE {    ## no critic (unpack)
    my $class = shift;

    return $class->new(@_);
}

sub PRINTF {       ## no critic (unpack)
    my $self = shift;
    $self->PRINT( sprintf @_ );
}

sub PRINT {        ## no critic (unpack)
    my $self  = shift;
    my $c     = $self->controller;
    my $bytes = join '', @_;
    return unless $bytes;
    if ( $self->_encoding ) {
        $bytes = encode( $self->_encoding, $bytes );
    }
    $c->write($bytes . ( $OUTPUT_RECORD_SEPARATOR // '' ) );
}

sub BINMODE {
    my ( $self, $mode ) = @_;
    if ($mode) {
        if ( $mode eq ':bytes' or $mode eq ':raw' ) {
            $self->_encoding('');
        }
        elsif ( $mode eq ':utf8' ) {
            $self->_encoding('utf8');
        }
    }
}

1;