/usr/share/perl5/MIME/Decoder/NBit.pm is in libmime-tools-perl 5.503-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 | package MIME::Decoder::NBit;
use strict;
use warnings;
=head1 NAME
MIME::Decoder::NBit - encode/decode a "7bit" or "8bit" stream
=head1 SYNOPSIS
A generic decoder object; see L<MIME::Decoder> for usage.
=head1 DESCRIPTION
This is a MIME::Decoder subclass for the C<7bit> and C<8bit> content
transfer encodings. These are not "encodings" per se: rather, they
are simply assertions of the content of the message.
From RFC-2045 Section 6.2.:
Three transformations are currently defined: identity, the "quoted-
printable" encoding, and the "base64" encoding. The domains are
"binary", "8bit" and "7bit".
The Content-Transfer-Encoding values "7bit", "8bit", and "binary" all
mean that the identity (i.e. NO) encoding transformation has been
performed. As such, they serve simply as indicators of the domain of
the body data, and provide useful information about the sort of
encoding that might be needed for transmission in a given transport
system.
In keeping with this: as of MIME-tools 4.x,
I<this class does no modification of its input when encoding;>
all it does is attempt to I<detect violations> of the 7bit/8bit assertion,
and issue a warning (one per message) if any are found.
=head2 Legal 7bit data
RFC-2045 Section 2.7 defines legal C<7bit> data:
"7bit data" refers to data that is all represented as relatively
short lines with 998 octets or less between CRLF line separation
sequences [RFC-821]. No octets with decimal values greater than 127
are allowed and neither are NULs (octets with decimal value 0). CR
(decimal value 13) and LF (decimal value 10) octets only occur as
part of CRLF line separation sequences.
=head2 Legal 8bit data
RFC-2045 Section 2.8 defines legal C<8bit> data:
"8bit data" refers to data that is all represented as relatively
short lines with 998 octets or less between CRLF line separation
sequences [RFC-821]), but octets with decimal values greater than 127
may be used. As with "7bit data" CR and LF octets only occur as part
of CRLF line separation sequences and no NULs are allowed.
=head2 How decoding is done
The B<decoder> does a line-by-line pass-through from input to output,
leaving the data unchanged I<except> that an end-of-line sequence of
CRLF is converted to a newline "\n". Given the line-oriented nature
of 7bit and 8bit, this seems relatively sensible.
=head2 How encoding is done
The B<encoder> does a line-by-line pass-through from input to output,
and simply attempts to I<detect> violations of the C<7bit>/C<8bit>
domain. The default action is to warn once per encoding if violations
are detected; the warnings may be silenced with the QUIET configuration
of L<MIME::Tools>.
=head1 SEE ALSO
L<MIME::Decoder>
=head1 AUTHOR
Eryq (F<eryq@zeegee.com>), ZeeGee Software Inc (F<http://www.zeegee.com>).
All rights reserved. This program is free software; you can redistribute
it and/or modify it under the same terms as Perl itself.
=cut
use vars qw(@ISA $VERSION);
use MIME::Decoder;
use MIME::Tools qw(:msgs);
@ISA = qw(MIME::Decoder);
### The package version, both in 1.23 style *and* usable by MakeMaker:
$VERSION = "5.503";
### How many bytes to decode at a time?
my $DecodeChunkLength = 8 * 1024;
#------------------------------
#
# decode_it IN, OUT
#
sub decode_it {
my ($self, $in, $out) = @_;
my $and_also;
### Allocate a buffer suitable for a chunk and a line:
local $_ = (' ' x ($DecodeChunkLength + 1024)); $_ = '';
### Get chunks until done:
while ($in->read($_, $DecodeChunkLength)) {
$and_also = $in->getline;
$_ .= $and_also if defined($and_also);
### Just got a chunk ending in a line.
s/\015\012$/\n/g;
$out->print($_);
}
1;
}
#------------------------------
#
# encode_it IN, OUT
#
sub encode_it {
my ($self, $in, $out) = @_;
my $saw_8bit = 0; ### warn them ONCE PER ENCODING if 8-bit data exists
my $saw_long = 0; ### warn them ONCE PER ENCODING if long lines exist
my $seven_bit = ($self->encoding eq '7bit'); ### 7bit?
my $line;
while (defined($line = $in->getline)) {
### Whine if encoding is 7bit and it has 8-bit data:
if ($seven_bit && ($line =~ /[\200-\377]/)) { ### oops! saw 8-bit data!
whine "saw 8-bit data while encoding 7bit" unless $saw_8bit++;
}
### Whine if long lines detected:
if (length($line) > 998) {
whine "saw long line while encoding 7bit/8bit" unless $saw_long++;
}
### Output!
$out->print($line);
}
1;
}
1;
|