/usr/share/perl5/AtteanX/API/Lexer.pm is in libattean-perl 0.019-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 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 | use v5.14;
use warnings;
=head1 NAME
AtteanX::API::Lexer - Role defining common functionality for lexers.
=head1 VERSION
This document describes AtteanX::API::Lexer version 0.019
=head1 DESCRIPTION
The AtteanX::API::Lexer role provides a common interface and implementation
for lexer implementations, allowing line-based buffer filling, and consuming
of characters, constant strings, and fixed-length buffers.
=head1 ATTRIBUTES
=over 4
=item C<< file >>
=item C<< linebuffer >>
=item C<< line >>
=item C<< column >>
=item C<< buffer >>
=item C<< start_column >>
=item C<< start_line >>
=back
=head1 METHODS
=over 4
=cut
package AtteanX::API::Lexer 0.019 {
use strict;
use Types::Standard qw(FileHandle Ref Str Int ArrayRef HashRef ConsumerOf InstanceOf);
use Moo::Role;
has file => ( is => 'ro', isa => FileHandle, required => 1, );
has linebuffer => ( is => 'rw', isa => Str, default => '', );
has line => ( is => 'rw', isa => Int, default => 1, );
has column => ( is => 'rw', isa => Int, default => 1, );
has buffer => ( is => 'rw', isa => Str, default => '', );
has start_column => ( is => 'rw', isa => Int, default => -1, );
has start_line => ( is => 'rw', isa => Int, default => -1, );
around 'BUILDARGS' => sub {
my $orig = shift;
my $class = shift;
return { file => shift } if (scalar(@_) == 1);
return $orig->( $class, @_ );
};
=item C<< fill_buffer >>
Fills the buffer with a new line from the underlying filehandle.
=cut
sub fill_buffer {
my $self = shift;
unless (length($self->buffer)) {
my $line = $self->file->getline;
$self->{buffer} .= $line if (defined($line));
}
}
=item C<< check_for_bom >>
Remove a BOM character if one appears at the start of the buffer.
=cut
sub check_for_bom {
my $self = shift;
my $c = $self->peek_char();
$self->get_char if (defined($c) and $c eq "\x{FEFF}");
}
=item C<< get_char_safe( $char ) >>
Consume the single character C<< $char >> from the buffer.
Throw an error if C<< $char >> is not at the start of the buffer.
=cut
sub get_char_safe {
my $self = shift;
my $char = shift;
my $c = $self->get_char;
$self->_throw_error("Expected '$char' but got '$c'") if ($c ne $char);
return $c;
}
=item C<< get_char( $char ) >>
Consume and return a single character from the buffer.
=cut
sub get_char {
my $self = shift;
my $c = substr($self->{buffer}, 0, 1, '');
if ($c eq "\n") {
# $self->{linebuffer} = '';
$self->{line} = 1+$self->{line};
$self->{column} = 1;
} else {
# $self->{linebuffer} .= $c;
$self->{column} = 1+$self->{column};
}
return $c;
}
=item C<< peek_char( $char ) >>
Return a single character from the start of the buffer.
=cut
sub peek_char {
my $self = shift;
if (length($self->{buffer}) == 0) {
$self->fill_buffer;
return if (length($self->{buffer}) == 0);
}
return substr($self->{buffer}, 0, 1);
}
=item C<< read_word( $word ) >>
Consume the string C<< $word >> from the start of the buffer.
Throw an error if C<< $word >> is not at the start of the buffer.
=cut
sub read_word {
my $self = shift;
my $word = shift;
$self->fill_buffer while (length($self->{buffer}) < length($word));
$self->_throw_error("Expected '$word'") if (substr($self->{buffer}, 0, length($word)) ne $word);
my $lines = ($word =~ tr/\n//);
my $lastnl = rindex($word, "\n");
my $cols = length($word) - $lastnl - 1;
$self->{lines} += $lines;
if ($lines) {
$self->{column} = $cols;
} else {
$self->{column} += $cols;
}
substr($self->{buffer}, 0, length($word), '');
}
=item C<< read_length( $length ) >>
Consume and return C<< $length >> characters from the start of the buffer.
=cut
sub read_length {
my $self = shift;
my $len = shift;
while (length($self->{buffer}) < $len) {
$self->fill_buffer;
}
my $word = substr($self->{buffer}, 0, $len, '');
my $lines = ($word =~ tr/\n//);
my $lastnl = rindex($word, "\n");
my $cols = length($word) - $lastnl - 1;
$self->{lines} += $lines;
if ($lines) {
$self->{column} = $cols;
} else {
$self->{column} += $cols;
}
return $word;
}
}
1;
__END__
=back
=head1 BUGS
Please report any bugs or feature requests to through the GitHub web interface
at L<https://github.com/kasei/attean/issues>.
=head1 SEE ALSO
=head1 AUTHOR
Gregory Todd Williams C<< <gwilliams@cpan.org> >>
=head1 COPYRIGHT
Copyright (c) 2014--2018 Gregory Todd Williams.
This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.
=cut
|