/usr/share/perl5/TM/LTM/Parser.pm is in libtm-perl 1.56-7.
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 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 | package TM::LTM::Parser;
our $ltm_grammar = q {
{
my $store;
my $log;
my $implicits;
use Data::Dumper;
use TM;
use TM::Literal;
my %prefixes;
}
# comment is handled outside
startrule : { $store = $arg[0]; $log = $arg[1]; $implicits = $arg[2] } # set TM store and log once
topic_map
topic_map : encoding(?) directive(s?) component(s)
component: topic | assoc | occur
encoding : '@' string # not analyzed here, but capture in the calling program
# no good here if we would have to translate the encoding
directive : version_directive |
topicmapid_directive |
mergemap_directive |
prefix_directive |
baseuri_directive
# INCLUDE is handled outside
prefix_directive : '#PREFIX' /\w+/ '@' uri
{
my $uri = $item[4];
# $uri =~ s/^\"//; $uri =~ s/\"$//;
$prefixes{$item[2]} = $uri;
#warn "prefixes ".Dumper \%prefixes;
}
version_directive : '#VERSION' string
{
my $version = $item[2];
$log->logdie (__PACKAGE__ . ": VERSION not supported '$version'") unless $version =~ /^1\.[23]$/;
}
topicmapid_directive : '#TOPICMAP' ( name | reify )
{
$log->logdie (__PACKAGE__ . ": TOPICMAP directive ignored (use proper means)");
}
mergemap_directive : '#MERGEMAP' uri tm_format(?)
{
my $uri = $item[2];
#warn "uri is $uri";
my $format = $item[3]->[0] ? $item[3]->[0] : 'ltm';
my $tm;
if ($format =~ /^ltm$/i) {
$tm = new TM::Materialized::LTM (url => $uri);
} elsif ($format =~ /^xtm$/i) {
$tm = new TM::Materialized::XTM (url => $uri);
} elsif ($format =~ /^astma$/i) {
$tm = new TM::Materialized::AsTMa (url => $uri);
} else {
$log->logdie (__PACKAGE__ . ": unsupported TM format '$format'");
}
$tm->sync_in;
$store->add ($tm);
#warn "after merged in".Dumper $store;
$return = $uri;
}
tm_format : string
baseuri_directive : '#BASEURI' uri
topic : '[' name types(?) topname(?) reify(?) subject(?) indicator(s?) ']'
{
#warn "topic ".Dumper \@item;
my $id = $store->internalize ($item[2] => $item[6]->[0]); # maybe there is a subject addr, maybe not
# add the subject indicators
map { $store->internalize ($id => $_ ) } @{$item[7]};
if ($item[3] and $item[3]->[0]) {
$store->assert ( map {
[ undef,
undef,
'isa',
undef,
[ 'class', 'instance' ],
[ $_, $id ],
] }
@{$item[3]->[0]} );
map { $implicits->{'isa-thing'}->{$_}++ } @{$item[3]->[0]}; # the types and the ID are declared implicitely
}
#warn "item 4".Dumper $item[4];
if ($item[4] and @{$item[4]}) {
my $topnames = $item[4]->[0];
#warn "topnames ".Dumper $topnames;
my ($a) = $store->assert ( map {[ undef, # LID
$topnames->{scope}->[0], # SCOPE
'name', # TYPE
TM->NAME, # KIND
[ 'thing', 'value' ], # ROLES
[ $id, $_ ], # PLAYERS
undef ] }
@{$topnames->{names}}[0] ); # use the first for a name
$return = $a;
# TODO (2..3) for the variants
#warn "basename reify ".Dumper $item[5];
# reification of the basename
$store->internalize ($item[5]->[0], $a->[TM->LID]) if $item[5]->[0];
{
map { $implicits->{'isa-scope'}->{ $_ }++ } @{$topnames->{scope}};
}
}
$return = $id;
}
types : ':' name(s) { $return = $item[2]; }
subject : '%' uri { $return = $item[2]; } # for subject addrs the encoding is 'no-reference'
indicator : '@' uri { $return = \ $item[2]; } # for indicators it is 'send as string reference'
topname : '=' basesortdispname scope(?)
{
#warn "basenames".Dumper \@item;
$return = {
scope => $item[3],
names => $item[2],
};
}
basesortdispname: <leftop: basename ';' basename>
basename : string { $return = new TM::Literal ($item[1], 'xsd:string'); }
scope : '/' name { $return = $item[2]; }
assoc : name '(' assocroles ')' scope(?) reify(?)
{
#warn "assoc item " . Dumper \@item;
{ # memorize that association type subclasses association
$implicits->{'isa-scope'}->{ $item[5]->[0] }++ if $item[5]->[0];
}
my ($a) = $store->assert ([ undef, # LID
$item[5] && $item[5]->[0], # SCOPE
$item[1], # TYPE
TM->ASSOC, # KIND
[ map { $_->[1] } @{$item[3]} ], # ROLES
[ map { $_->[0] } @{$item[3]} ], # PLAYERS
undef ]);
#warn "reify ".Dumper $item[6];
$store->internalize ($item[6]->[0], $a->[TM->LID]) if $item[6]->[0];
$return = $a;
}
assocroles : assocrole(s /,/)
assocrole : ( topic | name ) role(?)
{
$return = [ $item[1], $item[2]->[0] || 'thing' ];
}
role : ':' name
occur : '{' occ_topic ',' occ_type ',' resource '}' scope(?) reify(?)
{
my $id = $store->internalize ($item[2]);
my ($a) = $store->assert ([ undef, # LID
$item[8]->[0], # SCOPE
$item[4], # TYPE (MUST BE DEFINED!)
TM->OCC, # KIND
[ 'thing', 'value' ], # ROLES
[ $id, $item[6] ], # PLAYERS
undef ]);
{ # memorize basename types and scopes as implicitely defined
$implicits->{'isa-scope'}-> { $item[8]->[0] }++ if $item[8]->[0]; # get the bloody scopes and tuck them away
$implicits->{'subclasses'}->{ 'occurrence' }->{ $item[4] }++;
}
#warn "reify ".Dumper $item[9];
$store->internalize ($item[9]->[0], $a->[TM->LID]) if $item[9]->[0];
$return = $a;
}
occ_topic: name
occ_type : name
reify : '~' name
resource : uri { $return = new TM::Literal ($item[1], 'xsd:uri') }
|
DATA { $return = new TM::Literal ($item[1], 'xsd:string') }
DATA : '[[' /.*(?=\]\])/sx ']]' { $return = $item[2]; }
uri : string
comment : '/*' /.+?/s '*/'
string : '"' /[^\"]*/ '"' { $return = $item[2]; }
name : /^\w[:\-\w]*/
{
my $name = $item[1];
if ($name =~ /^(\w+):/) {
my $prefix = $1;
if ($prefixes{$prefix}) {
$name =~ s/^$prefix:/$prefixes{$prefix}/;
$return = $name;
} else {
$return = undef;
}
} else {
$return = $name;
}
}
<reject: ! $return>
| /^\w[-\w]*/
{
$return = $item[1];
}
};
sub new {
my $class = shift;
my %options = @_;
my $self = bless \%options, $class;
$::RD_HINT = 1;
eval {
require TM::LTM::CParser;
$self->{parser} = TM::LTM::CParser->new();
}; if ($@) {
warn "could not find CParser ($@)";
use Parse::RecDescent;
$self->{parser} = new Parse::RecDescent ($ltm_grammar) or $TM::log->logdie (scalar __PACKAGE__ .": problem in grammar ($@)");
};
return $self;
}
sub parse {
my $self = shift;
my $text = shift;
# we not only capture what is said EXPLICITELY in the map, we also collect implicit knowledge
# we could add this immediately into the map at parsing, but it would slow the process down and
# it would probably duplicate/complicate things
my $implicits = {
'isa-thing' => undef, # just let them spring into existence
'isa-scope' => undef, # just let them spring into existence
'subclasses' => undef
};
while ($text =~ /\#INCLUDE\s+\"(.+)\"/s) { # find first
my $src = $1;
my $include; # we are trying to figure that one out
if ($src =~ /^inline:(.*)/s) {
$include = $1;
} else { # we try our luck with LWP
use LWP::Simple;
$include = get($1) || die "unable to load '$1'\n";
}
# use TM::Utils;
# my $include = TM::Utils::get_content ($1);
$text =~ s/\#INCLUDE\s+\"(.+)\"/\n$include\n/s; # replace first to find
}
# encoding
# NOTE: currently ignored
# remove comment
# NOTE: LTM comments are extremely complex as they may appear anywhere
# I ignored this and get rid of them on a syntactic level, even risking to throw away /* */ within string. So what.
$text =~ s|/\*.*?\*/||sg; # global multiline
$self->{parser}->startrule (\$text, 1, $self->{store}, $TM::log, $implicits);
$TM::log->logdie ( scalar __PACKAGE__ . ": Found unparseable '".substr($text,0,40)."....'" ) unless $text =~ /^\s*$/s;
{ # resolving implicit stuff
my $store = $self->{store};
{ # all super/subclasses
foreach my $superclass (keys %{$implicits->{'subclasses'}}) {
$store->assert ( map {
[ undef, undef, 'is-subclass-of', TM->ASSOC, [ 'superclass', 'subclass' ], [ $superclass, $_ ] ]
} keys %{$implicits->{'subclasses'}->{$superclass}});
}
#warn "done with subclasses";
}
{ # all things in isa-things are THINGS, simply add them
##warn "isa things ".Dumper [keys %{$implicits->{'isa-thing'}}];
$store->internalize (map { $_ => undef } keys %{$implicits->{'isa-thing'}});
}
{ # establishing the scoping topics
$store->assert (map {
[ undef, undef, 'isa', TM->ASSOC, [ 'class', 'instance' ], [ 'scope', $_ ] ]
} keys %{$implicits->{'isa-scope'}});
}
}
}
=pod
=head1 NAME
TM::LTM::Parser - Topic Maps, trait for parsing maps in LTM format
=head1 SEE ALSO
L<TM>
=head1 AUTHOR INFORMATION
Copyright 200[1-6], Robert Barta <rho@bigpond.net.au>, All rights reserved.
This library is free software; you can redistribute it
and/or modify it under the same terms as Perl itself.
http://www.perl.com/perl/misc/Artistic.html
=cut
our $VERSION = '0.4';
our $REVISION = '$Id: Parser.pm,v 1.8 2006/11/23 10:02:55 rho Exp $';
1;
__END__
|