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 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421
|
package XTM::Virtual;
use strict;
use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);
require Exporter;
require AutoLoader;
@ISA = qw(Exporter AutoLoader);
@EXPORT = qw( );
@EXPORT_OK = qw( );
$VERSION = '0.08';
use Carp;
use Data::Dumper;
use XTM;
use XTM::Log ('elog');
use XTM::Memory;
my %cache;
=pod
=head1 NAME
XTM::Virtual - Topic Map management, Virtual (topic induced) maps
=head1 SYNOPSIS
use XTM::Virtual;
my $tm = new XTM (tie => new XTM::Virtual (expr => '/m-some-map'));
=head1 DESCRIPTION
!!!This description has to be improved!!!
This is a tie wrapper for topic induced topic maps. The idea is that there
is a global tree of topic maps (maybe distributed over several topic map servers).
Every topic can---in principle---have a complete map as 'refinement'. So, for instance,
a topic 't-internet' in a particular map can have a topic map attached dealing with
details about the Internet.
In this sense we induce some topic map hierarchy, which can be easily
flexed by organising maps via Topic Map algebraic definitions. The hierarchy
only helps us to organize the maps physically.
=over
=item Topic Map Algebra
When loading topic maps (regardless their format), following operations
can be performed:
=over
=item joining
Here two topic maps are B<joined> by identifying topics in each of
the maps to be synonymous. The mapping is done by another map.
=item scoping
Given a particular topic map, the scope filters out only those topics
and associations for this very scope.
=item versioning
As topic maps may exist in different version it is sometimes
practical to select a particular version.
=back
???????
The syntax for an topic map expression is as follows:
expr -> tm-url # primitive
expr -> expr '[' expr ']' expr # join
expr -> expr [ 'v' version ] # versioning
[ '@' host ] # remote server
[ '|' scope ] # scoping
version -> natural [ '.' natural ]
scope -> I<SGML topic>-identifier
host -> I<some machine name or IP address>
natural -> I<some number greater equal 0>
The I<tm-url> has the form
tm://server-name/map-id1/map-id2/....
=back
=head1 INTERFACE
=head2 Global variables
=over
=item C<urlbase> this path is used as a basis for all maps loaded from the
file system (or via HTTP/FTP). This should point to the bootstrap map.
=cut
use vars qw($urlbase);
use URI::file;
$urlbase = URI::file->cwd; # everything relative will be resolved against this
=pod
=item C<tmbase> this path is used as a basis for all maps loaded from the tm:// name space.
=cut
use vars qw($tmbase);
=pod
=back
=head2 Constructor
The constructor expects a hash with the following fields:
=over
=item I<expr> denotes a topic map algebraic expression.
=back
Examples:
# relative to this server
$vtm = new XTM::Virtual (expr => '/m-test');
# absolute
$vtm = new XTM::Virtual (expr => 'tm://se-namod/map-topic1/map-topic2/');
# directly the server knowledge map
$vtm = new XTM::Virtual (expr => '/');
# some other server's knowledge map
$vtm = new XTM::Virtual (expr => 'tm://se-some-server/');
=cut
sub new {
my $class = shift;
my %options = @_;
elog ('XTM::Virtual', 5, "in new Virtual $options{expr}");
return bless { %options }, $class;
}
=pod
=head2 Methods
=over
=item I<sync_in>
I<$tm>->sync_in (I<$XTM::default_consistency>)
This method will cause the map to be loaded and/or generated, depending
on the complexity of the expression. The L<XTM::Memory> object will be returned.
You may add a consistency (see L<XTM>) as parameter. It will be used throughout.
=cut
sub sync_in {
my $self = shift;
my $consistency = shift;
elog ('XTM::Virtual', 3, "syncing in ", $self->{expr});
return _assert ($self->{expr}, $self->{key}, $consistency);
}
=pod
=item I<sync_out>
Not implemented.
=cut
sub sync_out {
die "XTM::Virtual: syncing out not implemented yet.\n";
}
=pod
=item I<staleness> returns the number of seconds the loaded map is old relative to the
external source. If the last modification of the source cannot be determined, then
the staleness is always 0.
=cut
sub staleness {
my $expr = shift;
my $tm = $cache{$expr} or return 1;
my $S = 0; #assumption
elog ('XTM::Virtual', 4, "staleness for $expr");
elog ('XTM::Virtual', 5, " map itself: ", $tm);
if ($tm->{depends}) { # take largest staleness of depend_ons
foreach my $d (@{$tm->{depends}}) {
elog ('XTM::Virtual', 4, " substaleness for $d ");
my $s = staleness ($d);
$S = $s if defined $s && $s > $S;
}
} else { # compute this from the difference of last_mod of source and syncin
elog ('XTM::Virtual', 4, " last mod for $tm $tm->{last_mod}", " lastsync ".$tm->{last_syncin} );
if (defined $tm->{last_mod}) {
$S = $tm->{last_mod} - $tm->{last_syncin};
} else {
$S = 0;
}
}
elog ('XTM::Virtual', 4, " is ", $S);
return $S;
}
sub _assert_package {
my $module = shift;
my $key = shift || $module;
my $cons = shift || $XTM::default_consistency;
elog ('XTM::Virtual', 3, "_assert package for '$module', '$key'");
return $cache{$key} if staleness ($key) <= 0;
elog ('XTM::Virtual', 3, " XML loading via '$module'");
my $tm;
eval qq|
use $module;
\$tm = new XTM (consistency => $cons,
tie => new $module (),
last_mod => time,
last_syncin => time);
|; if ($@) {
elog ('XTM::Virtual', 1, "Problem when loading via '$module': '$@'....continuing....");
}
return $cache{$key} = $tm;
}
sub _assert_xml {
my $url = shift;
my $key = shift || $url;
my $cons = shift || $XTM::default_consistency;
elog ('XTM::Virtual', 3, "_assert xml for '$url', '$key'");
return $cache{$key} if staleness ($key) <= 0;
use XTM::XML;
elog ('XTM::Virtual', 3, " XML loading via $url");
return $cache{$key} = new XTM (
consistency => $cons,
tie => new XTM::XML (url => $url),
last_mod => time,
last_syncin => time);
}
sub _assert_atm {
my $url = shift;
my $key = shift || $url;
my $cons = shift || $XTM::default_consistency;
elog ('XTM::Virtual', 3, "_assert atm for '$url', '$key'");
return $cache{$key} if staleness ($key) <= 0;
use XTM::AsTMa;
elog ('XTM::Virtual', 3, " ATM loading via $url");
return $cache{$key} = new XTM (
consistency => $cons,
tie => new XTM::AsTMa (url => $url),
last_mod => time,
last_syncin => time);
}
sub _assert_ltm {
my $url = shift;
my $key = shift || $url;
my $cons = shift || $XTM::default_consistency;
elog ('XTM::Virtual', 3, "_assert ltm for '$url', '$key'");
return $cache{$key} if staleness ($key) <= 0;
use XTM::LTM;
elog ('XTM::Virtual', 3, " LTM loading via $url");
return $cache{$key} = new XTM (
consistency => $cons,
tie => new XTM::LTM (url => $url),
last_mod => time,
last_syncin => time);
}
sub _assert_topic {
my $tmurl = shift;
my $key = shift || $tmurl;
my $cons = shift || $XTM::default_consistency;
elog ('XTM::Virtual', 3, "_assert topic for tmurl: $tmurl");
return $cache{$key} if staleness ($key) <= 0;
use URI;
my $uri = new URI ($tmurl);
die "XTM::Virtual: remote hosting to '".$uri->authority."' not yet implemented."
unless $tmurl =~ $tmbase; # I'm on the same server
## starting from the bottom, working our way up
elog ('XTM::Virtual', 3, " resolving total: ", $uri->path);
my @path = split (m|/|, $uri->path);
my $tid = pop @path || ($tmbase =~ m|tm://(.+)/| ? $1 : die "XTM::Virtual: Cannot determine server identity."); # 'se-namod';
my $tm = @path ? _assert_topic ($tmbase.join ("/", @path), undef, $cons) : _assert_xml ('','_peers', $cons);
my $t = $tm->topic ($tid); # might raise an exception which is propagated
elog ('XTM::Virtual', 5, " corresponding topic: ", $t);
use XTM::PSI;
my @os = @{$t->occurrences ( sub { my $o = shift; return $o->instanceOf->reference->href eq $XTM::PSI::priv{'knowledge'}; } )};
die "XTM::Virtual: Could not find a knowledge occurrence for '$tid'" unless @os;
elog ('XTM::Virtual', 5, " knowledge", $os[0]);
return $cache{$key} = _assert_expr ($os[0]->resource->href);
}
sub _assert_atom {
my $expr = shift;
my $key = shift || $expr;
my $cons = shift || $XTM::default_consistency;
elog ('XTM::Virtual', 3, " working on '$expr'");
return $cache{$key} if staleness ($key) <= 0;
use URI;
my $uri = new URI ($expr);
$uri->scheme ('file') unless $uri->scheme; # default is 'file:'
my $scheme = $uri->scheme;
elog ('XTM::Virtual', 3, " loading from $uri, ($scheme) base '$urlbase' path: ".$uri->path);
if (grep (/$scheme/, qw(http ftp file))) {
my $url = $urlbase =~ /^$scheme/ ?
scalar URI->new_abs ($uri->path, $urlbase) :
$uri->as_string;
elog ('XTM::Virtual', 4, " loading from $url");
return $url =~ /\.atm$/i ? _assert_atm ($url, undef, $cons) :
$url =~ /\.ltm$/i ? _assert_ltm ($url, undef, $cons) :
_assert_xml ($url, undef, $cons);
} elsif ($uri->scheme eq 'tm') {
my $url = scalar URI->new_abs ($uri->path, $tmbase);
elog ('XTM::Virtual', 4, " loading from $url");
return _assert_topic ($url, undef, $cons);
} elsif ($expr =~ /^package:\/\/(.+)/i) { ## Firm database, et.al
elog ('XTM::Virtual', 3, " loading via $1");
return _assert_package ($1, undef, $cons);
elog ('XTM::Virtual', 4, " Done.");
} else {
die "XTM::Virtual: Unhandled scheme '".$uri->scheme."'in _assert_expr\n";
}
}
sub _assert_expr {
my $expr = shift;
my $key = shift || $expr;
my $cons = shift || $XTM::default_consistency;
elog ('XTM::Virtual', 3, "_assert expr '$expr'");
return $cache{$key} if staleness ($key) <= 0;
my $tm;
unless ($expr =~ /\s*\[\]\s*/) { # so no composite here
$tm = _assert_atom ($expr, $expr, $cons);
} else {
# highly simplistic expression parser
$tm = new XTM (consistency => $cons);
$tm->{id} = $expr; # just to give a good idea what it is about
foreach my $e (split /\s*\[\]\s*/, $expr) {
elog ('XTM::Virtual', 3, "working on '$e'");
my $tm_to_be_added = _assert_atom ($e);
elog ('XTM::Virtual', 4, " merging new map (id=".($tm_to_be_added->{id} ? $tm_to_be_added->{id} : '??')." to ".($tm->{id} ? $tm->{id} : '?'));
$tm->add ($tm_to_be_added->memory);
push @{$tm->{depends}}, $e; # note, that I'm dependent on others
}
}
$cache{$key}->{last_mod} = $cache{$key}->{last_syncin} = time;
return $cache{$key} = $tm;
}
sub _assert {
my $r;
eval {
$r = _assert_expr (@_);
}; if ($@) {
elog ('XTM::Virtual', 1, "_assert failed ($@)", @_);
};
elog ('XTM::Virtual', 4, " now asserted: ", \%cache);
return $r;
}
sub _asserted {
return [ keys %cache ];
}
=pod
=back
=head1 AUTHOR INFORMATION
Copyright 2001, 2002, Robert Barta <rho@telecoma.net>, 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
1;
__END__
|