/usr/share/perl5/Inline/C/ParseRecDescent.pm is in libinline-perl 0.50-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 | package Inline::C::ParseRecDescent;
use strict;
use Carp;
sub register {
{
extends => [qw(C)],
overrides => [qw(get_parser)],
}
}
sub get_parser {
my $o = shift;
Inline::C::_parser_test("Inline::C::ParseRecDescent::get_parser called\n") if $o->{CONFIG}{_TESTING};
eval { require Parse::RecDescent };
croak <<END if $@;
This innvocation of Inline requires the Parse::RecDescent module.
$@
END
$main::RD_HINT++;
Parse::RecDescent->new(grammar())
}
sub grammar {
<<'END';
code: part(s)
{
return 1;
}
part: comment
| function_definition
{
my $function = $item[1][0];
$return = 1, last if $thisparser->{data}{done}{$function}++;
push @{$thisparser->{data}{functions}}, $function;
$thisparser->{data}{function}{$function}{return_type} =
$item[1][1];
$thisparser->{data}{function}{$function}{arg_types} =
[map {ref $_ ? $_->[0] : '...'} @{$item[1][2]}];
$thisparser->{data}{function}{$function}{arg_names} =
[map {ref $_ ? $_->[1] : '...'} @{$item[1][2]}];
}
| function_declaration
{
$return = 1, last unless $thisparser->{data}{AUTOWRAP};
my $function = $item[1][0];
$return = 1, last if $thisparser->{data}{done}{$function}++;
my $dummy = 'arg1';
push @{$thisparser->{data}{functions}}, $function;
$thisparser->{data}{function}{$function}{return_type} =
$item[1][1];
$thisparser->{data}{function}{$function}{arg_types} =
[map {ref $_ ? $_->[0] : '...'} @{$item[1][2]}];
$thisparser->{data}{function}{$function}{arg_names} =
[map {ref $_ ? ($_->[1] || $dummy++) : '...'} @{$item[1][2]}];
}
| anything_else
comment:
m{\s* // [^\n]* \n }x
| m{\s* /\* (?:[^*]+|\*(?!/))* \*/ ([ \t]*)? }x
function_definition:
rtype IDENTIFIER '(' <leftop: arg ',' arg>(s?) ')' '{'
{
[@item[2,1], $item[4]]
}
function_declaration:
rtype IDENTIFIER '(' <leftop: arg_decl ',' arg_decl>(s?) ')' ';'
{
[@item[2,1], $item[4]]
}
rtype: rtype1 | rtype2
rtype1: modifier(s?) TYPE star(s?)
{
$return = $item[2];
$return = join ' ',@{$item[1]},$return
if @{$item[1]} and $item[1][0] ne 'extern';
$return .= join '',' ',@{$item[3]} if @{$item[3]};
return undef unless (defined $thisparser->{data}{typeconv}
{valid_rtypes}{$return});
}
rtype2: modifier(s) star(s?)
{
$return = join ' ',@{$item[1]};
$return .= join '',' ',@{$item[2]} if @{$item[2]};
return undef unless (defined $thisparser->{data}{typeconv}
{valid_rtypes}{$return});
}
arg: type IDENTIFIER {[@item[1,2]]}
| '...'
arg_decl:
type IDENTIFIER(s?) {[$item[1], $item[2][0] || '']}
| '...'
type: type1 | type2
type1: modifier(s?) TYPE star(s?)
{
$return = $item[2];
$return = join ' ',@{$item[1]},$return if @{$item[1]};
$return .= join '',' ',@{$item[3]} if @{$item[3]};
return undef unless (defined $thisparser->{data}{typeconv}
{valid_types}{$return});
}
type2: modifier(s) star(s?)
{
$return = join ' ',@{$item[1]};
$return .= join '',' ',@{$item[2]} if @{$item[2]};
return undef unless (defined $thisparser->{data}{typeconv}
{valid_types}{$return});
}
modifier:
'unsigned' | 'long' | 'extern' | 'const'
star: '*'
IDENTIFIER:
/\w+/
TYPE: /\w+/
anything_else:
/.*/
END
}
my $hack = sub { # Appease -w using Inline::Files
print Parse::RecDescent::IN '';
print Parse::RecDescent::IN '';
print Parse::RecDescent::TRACE_FILE '';
print Parse::RecDescent::TRACE_FILE '';
};
1;
__DATA__
=head1 NAME
Inline::C::ParseRecDescent - The Classic Inline::C Parser
=head1 SYNOPSIS
use Inline C => DATA =>
USING => ParseRecDescent
=head1 DESCRIPTION
This module is Inline::C's original Parse::RecDescent based parser. It
was previously packaged as Inline::C::grammar.
Try Inline::C::ParseRegExp for an alternative.
=head2 AUTHOR
Brian Ingerson <ingy@ttul.org>
=head1 COPYRIGHT
Copyright (c) 2002. Brian Ingerson.
Copyright (c) 2008, 2010-2012. Sisyphus.
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
See http://www.perl.com/perl/misc/Artistic.html
=cut
|