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
|
package XTM::XML;
use strict;
use vars qw($VERSION @EXPORT @EXPORT_OK);
require Exporter;
require AutoLoader;
use base qw (XTM::IO);
$VERSION = '0.07';
use XTM::Memory;
use XTM::Log ('elog');
=pod
=head1 NAME
XTM::XML - Topic Map management, syncing with XML data
=head1 SYNOPSIS
use XTM::XML;
# reading a topic map description from an XML file
$xml = new XTM::XML (file => 'mymap.tm');
$tm = $xml->sync_in();
=head1 DESCRIPTION
This package provides interfacing with external resources based on
XTM (XML Topic Map) format as described in
=begin html
<BLOCKQUOTE>
<A HREF="http://www.topicmaps.org/xtm/1.0/">http://www.topicmaps.org/xtm/1.0/</A>
</BLOCKQUOTE>
=end html
=begin man
http://www.topicmaps.org/xtm/1.0/
=end man
except
=over
=item
that it ignores all merging related constraints (TNC) given in
http://www.topicmaps.org/xtm/1.0/#processing
=item
it only allows ONE SINGLE <topicMap> element in a document violating
'4.4 XTM Document Conformance', item 2. The reasoning for this is
that loading multiple maps implicitely means that some merging has
to occur. This should NOT be happening implicitly.
=item
All elements with no explicit ID element remain anonymous, except
=over
=item
<topic> and
=item
<association>
=back
elements which will get an ID assigned automatically if none is provided in the XTM instance.
=back
=head1 INTERFACE
=head2 Constructor
I<$xmlhandle> = new XTM::XML (I<url_file_or_text> => I<$source>,
[ auto_complete => I<1_or_0> ])
The constructor expects a hash as parameter containing one of the following fields:
=over
=item I<url>:
If given then the XML data will be read/written from/to this url.
=item I<file>:
If given then the XML data will be read/written from/to this file (This
is just a convenience function as it will be mapped to I<url>).
=item I<text>:
If given then the XML data will be read/written from/to this text. (See method
I<text> how to retrieve the current value).
=item I<auto_complete>
If set to 0, the XTM loader will NOT try to automatically generate topics which
have been mentioned without being declared.
=back
If several fields (C<file>, C<url>, C<text>) are specified, it is undefined which
one will be taken.
Examples:
$xtm = new XTM::XML (file => 'here.xml');
$xtm = new XTM::XML (url => 'file:here.xml', # the same
auto_complete => 0); # but with auto_completion turned off
$xtm = new XTM::XML (text => '<?xml version="1.0"?><topicMap> ...</topicMap>');
=cut
sub new {
my $class = shift;
my %options = @_;
elog ($class, 4, 'new');
my $self = bless { }, $class;
$self->{url} = 'inline:'.$options{text} if $options{text};
$self->{url} = 'file:'. $options{file} if $options{file};
$self->{url} = $options{url} if $options{url};
$self->{auto_complete} = defined $options{auto_complete} ? $options{auto_complete} : 1;
return $self;
}
=pod
=head2 Methods
The methods C<sync_in>, C<sync_out> and C<last_mod> implement the methods from
the abstract class L<XTM::IO>
=over
=item I<last_mod>
I<$unix_time> = I<$xmlhandle>->last_mod
returns the UNIX time when the resource has been modified last. C<undef> is
returned if the result cannot be determined.
=cut
sub last_mod {
my $self = shift;
elog ('XTM::XML', 4, "last mod on XML ".$self->{url});
if ($self->{url} =~ /^file:(.+)/) {
use File::stat;
my $stats = stat($1);
return $stats->mtime;
} elsif ($self->{url} =~ /^inline:/) {
return undef;
} else {
elog ('XTM::XML', 3, "Warning: unimplemented scheme '".$self->{url}."' in last_mod");
return undef;
}
}
=pod
=item I<sync_in>
I<$xmlhandle>->sync_in ([ I<$consistency> ]);
actually loads an XTM resource and returns a L<XTM::Memory> object.
The optional parameter specifies the I<consistency> (as defined in L<XTM>)
with which the map will be built. The default consistency will be used if
the parameter is missing.
=cut
use XTM::XML::MemoryBuilder;
use XML::SAX::ParserFactory;
sub sync_in {
my $self = shift;
my $consistency = shift || $XTM::default_consistency;
elog ('XTM::XML', 3, 'sync in '.$self->{url});
my $stream;
if ($self->{url} =~ /^inline:(.*)/s) {
$stream = $1;
} else { # some kind of URL
use LWP::Simple;
$stream = get($self->{url}) || die "XTM::XML: Unable to load '$self->{url}'\n";
elog ('XTM::XML', 5, "synced in stream", \$stream);
}
my $builder = new XTM::XML::MemoryBuilder (tm => new XTM::Memory (consistency => $consistency),
# auto_complete => $self->{auto_complete}
);
my $parser = XML::SAX::ParserFactory->parser(Handler => $builder,
# RequiredFeatures => {
# 'http://xml.org/sax/features/validation' => 1,
# }
);
# print STDERR "I'm using ", ref ($parser), "\n";
# this is to silence Perl in -w context: I use undef values sometimes in expressions and I'm happy with it
use Carp ();
local $SIG{__WARN__} = sub {};
$parser->parse_string($stream);
if ($self->{auto_complete}) {
#print "topics: ", join ('\n', @{$builder->{tm}->topics()}), "\n";
# use Data::Dumper;
#print Dumper $builder->{tm};
foreach my $t (map {$builder->{tm}->topic($_)} @{$builder->{tm}->topics}) {
#print "checking out ", $t->id, "\n";
push @{$builder->{mentioned}}, @{$t->connected};
push @{$builder->{defined}}, $t->id;
}
#print "defined: ", join ('\n', @{$builder->{defined}}), "\n";
foreach my $a (map {$builder->{tm}->association($_)} @{$builder->{tm}->associations}) {
push @{$builder->{mentioned}}, @{$a->connected};
}
foreach my $href (@{$builder->{mentioned}}) {
use URI;
my $u = new URI ($href);
next if $u->scheme; # external
next if $builder->{tm}->is_topic ($u->fragment);
$builder->{tm}->add (new XTM::topic (id => $u->fragment, populate => \&XTM::topic::default_populate))
}
}
return $builder->{tm};
}
=pod
=item I<sync_out>
I<$xmlhandle>->sync_out
is currently not implemented.
=cut
sub sync_out {
warn "XTM::XML: sync_out not yet implemented.";
}
=pod
=back
=head1 SEE ALSO
L<XTM>
=head1 AUTHOR INFORMATION
Copyright 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__
|