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
|
package TM::FAQ;
=pod
=head1 NAME
TM::FAQ - Topic Maps, Frequently Angering Quirks
=head1 FAQ, TIPS AND PITFALLS
=over
=item
Q: How can I get rid of these annoying topics C<occurrence>, C<name>, etc. which I have not put into
the map in the first place. They seem to be in each map I create.
A: These infrastructure topics are needed to make the map I<complete> (everything used is
defined). Per se, you cannot remove them and, seriously you probably do not want that to happen.
But you can filter these out when you retrieve a list of toplets:
my @ts = $tm->toplets (\ '+all -infrastructure');
=item
Q: How can I get all names and/or occurrences of a topic?
A: If you have a topic identifier C<mytopic> in your hand, then you can get all characteristics (=
names and occurrences, but not associations) with
my @cs = $tm->match_forall (char => 1, irole => $tm->tids ('mytopic'));
Then you can filter occording the type, the scope, the data type value or the C<KIND>. The latter
tells you whether an assertion is a name or occurrence. For example those occurrences which are
C<occurrence>s and not anything specials as, say, C<homepage>:
my @occs = map { $_->[0] }
map { TM::get_x_players ($tm, $_, 'value') }
grep { $_->[TM->TYPE] eq 'occurrence' } @cs;
=item
Q: Some of these maps I create have the trait C<ResourceAble> and import therefore a method
C<mtime>. How does this work?
A: Every map which is attached to an external resource is said to be I<resourceable>, hence the
trait with the same name. You, the developer, decide which copy of the map is the I<authoritative>,
i.e. what should happen should the map infrastructure be forced to synchronize the content.
While the synchronization (and when that is triggered) is handled by the trait
L<TM::Synchronizable>, the infrastructure needs to know (a) when the in-memory copy of the map was
last modified and (b) when the resource to which it is attached has been modified last. This is the
reasons for timestamps on the memory-stored map.
The resources themselves also have these timestamps; when the resource is a file on a file system,
then the "last modified" timestamps are take from there. The only complication is that L<TM> is
using a much higher time resolution as most file systems (L<HiRes::Time>).
=item
Q: When using AsTMa (1.x) it is very difficult to figure out where I make a syntax error. Is
there a convenient and effective way? What about line numbers?
A: One approach is to use the C<%cancel> method: When added to the file, the parser will stop there
and write a message onto STDERR. Another method is to use C<%trace 1> within the AsTMa stream. Then
the parser should let you know what it could detect successfully.
Line numbers cannot be used because the file will be massively reduced before the parser actually
see it.
=item
Q: When serializing large maps, the serializer is REALLY slow. How to make it faster?
A: The problem was that some serializers have to call the method C<is_reified> very often to
find out whether there is a reification for the assertion. If this becomes a concern to you, simple
add an index over reification (available since 1.53):
use Class::Trait;
Class::Trait->apply ($tm, 'TM::Serializable::XTM');
use TM::Index::Reified;
my $idx = new TM::Index::Reified ($tm, closed => 1);
print $tm->serialize;
=back
=head1 COPYRIGHT AND LICENSE
Copyright 20(0[3-68]|10) by Robert Barta, E<lt>drrho@cpan.orgE<gt>
This library is free software; you can redistribute it and/or modify it under the same terms as Perl
itself.
=cut
our $VERSION = 0.6;
our $REVISION = '$Id: FAQ.pm,v 1.1 2006/11/30 08:38:10 rho Exp $';
1;
|