File: Memory.pm

package info (click to toggle)
libxtm-perl 0.37-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,536 kB
  • ctags: 410
  • sloc: perl: 23,045; makefile: 37
file content (982 lines) | stat: -rw-r--r-- 33,348 bytes parent folder | download | duplicates (2)
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
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
package XTM::Memory;

use Carp;
use strict;

#use utf8;
use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);

require Exporter;
require AutoLoader;
use UNIVERSAL qw(isa);

@ISA = qw(Exporter AutoLoader);
@EXPORT = qw( );
$VERSION = '0.16';

use Data::Dumper;

use XTM::Log ('elog');
use XTM::topic;
use XTM::association;
use XTM::mergeMap;
use XTM::PSI;

=pod

=head1 NAME

XTM - Topic Map management, in-memory data structure.

=head1 SYNOPSIS

   use XTM::Memory;
   $tm = new XTM::Memory ();

   # adding something
   $tm->add (new XTM::topic (id => "t-beatles", ...));
   $tm->add (new XTM::association (....));

   # removing something
   $tm->remove ('t-beatles');

   # checking something
   print "Hurray" if
   $tm->is_topic ('t-john-lennon') ||
   $tm->is_association ('a-played-in');

   # finding something
   @rumstis = @{$tm->topics ( "baseName regexps /rumsti.*/" )};

   # fetching names for a scope
   %names = %{$tm->baseNames ([ 't-paul-mccartney', 't-john-lennon' ], 
			      [ 'http://www.topicmaps.org/xtm/language.xtm#en' ])};

=head1 DESCRIPTION

This package provides an in-memory data structure for topic maps. Basically, the
object maintains a hash of topics and a hash of associations. The interface provides
for basic operations to add/delete topics/associations and to query the map via a query language.

=head1 INTERFACE

The interface offers basic access function but also some sophisticated filters to create
sub maps. More convenient functions to retrieve topic and association information can
be found in the XTM::server package distributed seperately.

For merging related information see L<XTM>.

=head2 Constructor

I<$mem> = new XTM::Memory ( [ id => I<$id> ] )

The constructor expects only one optional parameter, C<id>. If not provided, the C<id> will remain
undefined.

=begin html

<PRE>
   $tm = new XTM::Memory ();
</PRE>

=end html

=begin man

   $tm = new XTM::Memory ();

=end man

=cut

sub new {
  my $class   = shift;
  my %options  = @_;
  my $self = bless {id           => $options{id},
		    topics       => {}, # topics ALL have an id
		    associations => {}, # assocs ALL have an id, I love ids....
		    subjects     => {}, # this hash records all subjectIdentifiers and the topics for it
		    merged       => {}, # hash, topic-id -> topic-id, after merging this will be set
		    consistency  => $options{consistency},
		   }, $class;
  return $self;
}

=pod

=head2 Methods

=over

=item B<id>

I<$id> = I<$mem>->id ( [ I<$id> ] )

Returns the id of the topic map. This can be empty if it has never been provided. If a parameter is provided, that scalar will be the new value for the id.

=cut

sub id {
  my $self = shift;
  my $id   = shift;
  return defined $id ? $self->{id} = $id : $self->{id};
}

=pod

=item B<add_topic>

I<$mem>->add_topic ( I<$topic> )

Adds/merge a single topic to the map.

=item B<add>

I<$mem>->add ( I<$topic>, ... )

I<$mem>->add ( I<$association>, ... )

I<$mem>->add ( I<$tm>, ... )

Adds a (list of) topic(s), associations and/or maps. There is a small overhead
involved determining the kind of object to be added. See L<XTM> for the merging rules.

Examples:

   $t = new XTM::topic (id => "t-portishead", ...);
   $a = new XTM::association (....);
   $tm->add ($t);
   $tm->add ($t1, $t2);
   $a = new XTM::association (....);
   $tm->add ($a);
   $tm->add ($a, $t);
   $tm2 = new XTM::Memory;
   ...
   $tm->add ($tm2);

If a parameter is neither a topic nor an association nor a topic map, an exception will be raised.

Note:

When a topic is added it may be merged with other topics according to your consistency setting
of the map. This implies that topics are B<modified> by having more C<baseNames>, C<occurrences>, ...
If the calling program still maintains a reference to this topic, then it will experience these
changes. On the other hand, if topics are merged, then the topic which is merged in, will NOT
be stored as-is in the map. Only its components (C<baseNames>, ..._) will survive.

Saying this, it means that you cannot trust the topic references you have created. You should
request a new reference via a subjectIndicator or the topic id.

=cut

sub __do_merge {
  my $self = shift;
  my $t    = shift;   # topic to which everything will be merged into
  my $s    = shift;   # topic which has to be merged, that one will die afterwards (except the tid)
  my $reason = shift; # for some particular reason

#  warn "merging ", $t->id, " and " , $s->id, " ", $reason, "\n";

  # merging is list management
  push @{$t->{instanceOfs}},  @{$s->{instanceOfs}}; # instanceOfs are mandatory in a topic, no guard
  push @{$t->{baseNames}},    @{$s->{baseNames}}    if $s->{baseNames};
  push @{$t->{occurrences}},  @{$s->{occurrences}}  if $s->{occurrences};

  { # merging Identities, I love complicated if statements
    my $ti = $t->{subjectIdentity};
    my $si = $s->{subjectIdentity};
    if ($ti && !$si) {                # ignore, nothing new
    } elsif (!$ti && $si) {           # $t did not have, gets one now
      $t->add_ ($s->{subjectIdentity});
    } elsif (!$ti && !$si) {          # none where here
    } else {                          # both have something
      my $trr = $ti->{resourceRef} ? $ti->{resourceRef}->{href} : undef;
      my $srr = $si->{resourceRef} ? $si->{resourceRef}->{href} : undef;
      use URI;
      if (defined $trr and defined $srr) { # both resourceRefs defined? then the URI must match
	my $u1 = URI->new($trr);
	my $u2 = URI->new($srr);
	die "XTM::Memory: incompatible resourceRefs encountered on merging '".$t->{id}."' and '".$s->{id}."'"
	  unless URI::eq ($u1, $u2);
	                                   # but we leave it as it is
      } elsif (defined $trr) {             # $srr undefined, leave that
      } elsif (defined $srr) {             # $trr undefined, we have something new
	$t->{subjectIdentity}->add_resourceRef ($si->{resourceRef});
      } else {                             # both undefined
      }
      $ti->add_reference_s (@{$si->{references}}) if $si->{references};
    }
  }
  # merging variants is list management
  $t->add__s (@{$s->{variants}});

  foreach my $sid (@{$s->{ids}}) {
    $self->{topics}->{$sid} = $t;             # get rid of old topic, add the merged results
  }
  push @{$t->{ids}}, @{$s->{ids}};            # merged topic receives all ids of s
  #warn "s sids are ", @{$s->ids};
  #warn "t afterwards has ", Dumper $t;
  #warn "after merge: ", Dumper $self;

  # we are done now with s
  $t->canonicalize;                           # sorting and/or creating the fingerprints for scoped baseNames
  ##  $self->__update_subjects  ($t->{subjectIdentity}, $t->{id}); # tell the world for which subjects we stand
  ##  $self->__update_baseNames ($t->{baseNames},       $t->{id}); # and also where the (scoped) baseNames are

  #warn "followup merge check for ", $t->id;
  $self->__check_for_merge ($t->{id});        # check whether this merge will trigger a followup merge
  #warn "completed merge check for ", $t->id;
}

sub __check_for_merge {
  my $self = shift;
  my $tid  = shift;                                               # new arrived/created/merged topic, might have to merged ...
  my $t    = $self->{topics}->{$tid};                             # ... with something we have already have

#print "_check ", $tid, Dumper $t;


  if (grep ($_ eq 'Subject_based_Merging', @{$self->{consistency}->{merge}})) {
    # check F.5.2.1 (share both the same resourceRef)
    my ($href, $href2);
    if ($t->{subjectIdentity} && $t->{subjectIdentity}->{resourceRef} && 
	($href = $t->{subjectIdentity}->{resourceRef}->{href})) {
      foreach my $t2 (grep ($_ != $t, values %{$self->{topics}})) {
#warn "checking sub for ", $t2->id;
	use URI;
	if ($t2->{subjectIdentity} &&                                   # we have identity
	    $t2->{subjectIdentity}->{resourceRef} &&                    # and it has an addressable resource
	    ($href2 = $t2->{subjectIdentity}->{resourceRef}->{href}) && # get the href
	    URI::eq ($href, $href2) ) {                                 # compare it with the other
#warn "resource ref equal";
	  $self->__do_merge ($t2, $t, "merge share both the same resourceRef");
	  return; # no need to do more with this topic
	}
      }
    }
    # check F.5.2.2 (new one pointing subjectIndicator to existing)
    foreach my $r ($t->{subjectIdentity} &&
		   $t->{subjectIdentity}->{references} ?
		   @{$t->{subjectIdentity}->{references}}: ()) {
#	print "afound reference for ", Dumper $r, "\n";
      if (isa($r, 'XTM::topicRef')) {
#	  print "xfound reference for ", Dumper $r, "\n";
	my $t2; eval { $t2 = $self->{topics}->{$r->{href}} };               # try to find this topic in local map
	if ($t2) {
	  # get rid of this topicRef, it is useless now
	  $t->{subjectIdentity}->references ( [ grep ($_ != $r, @{$t->{subjectIdentity}->{references}}) ] );
	  $self->__do_merge ($t2, $t, "new one pointing subjectIndicator to existing");
	  return; # no need to do more with this topic
	}
      }
    }
    # check F.5.2.2 (existing one pointing subjectIndicator to new)
    {
      my $tid2;
#warn "topic in focus ", $t->id, Dumper $t;
#warn "subjects ", Dumper $self->{subjects};
#warn "our own ids " , Dumper $t->ids;
      if (($tid2 = $self->{subjects}->{$t->{id}}) && (!grep ($tid2 eq $_, @{$t->{ids}}))) { # this particular topic is topicRef'd by something
#warn "short before merging";
	my $t2 = $self->{topics}->{$tid2};
	$t2->{subjectIdentity}->references ( [ grep ($_->{href} ne $t->{id}, @{$t2->{subjectIdentity}->{references}}) ] );
	$self->__do_merge ($t2, $t, "existing one pointing subjectIndicator to new");
	return;
      }
    }
    # check F.5.2.3 (share at least on URI in references)
    foreach my $r ($t->{subjectIdentity} && $t->{subjectIdentity}->{references} ?
		   @{$t->{subjectIdentity}->{references}} : ()) {
      my $uri = URI->new($r->{href})->canonical->as_string;            # canonical is better
#warn "checking for ", Dumper( $t), "sharing", $uri;
      my $tid2;
#warn "comparing with subjects " , Dumper $self->{subjects};
      if (($tid2 = $self->{subjects}->{$uri}) && (!grep ($tid2 eq $_, @{$t->{ids}}))) {# yes we share a subjectIndicator with ourselves, ..
	my $t2 = $self->{topics}->{$tid2};                               # but that is not the point
	$self->__do_merge ($t2, $t, "sharing a subjectIndicator");
	return;
      }
    }
  }

  if (grep ($_ eq 'Topic_Naming_Constraint', @{$self->{consistency}->{merge}})) {
    # F.5.3, same baseName in same scope
    foreach my $bn (@{$t->{baseNames}}) {
#      warn "checking baseName ".$bn->{baseNameString}->{string}." for ".$t->{id};
      my $tid2;
#warn "ids list is: ".Dumper $t->{ids};
#warn "finger print for this is ".Dumper $self->{baseName_fingerprints}->{$bn->{fingerprint}}. " <<end";
#warn "fingprints are :".Dumper $self->{baseName_fingerprints};
      if (($tid2 = $self->{baseName_fingerprints}->{$bn->{fingerprint}}) # there is a topic with this baseName
          && (!grep ($tid2 eq $_, @{$t->{ids}}))) {                      # and it is not the one we have here
	#warn "!!!!have to merge ".$t->{id}."with $tid2";
	my $t2 = $self->{topics}->{$tid2};
	$self->__do_merge ($t2, $t, "sharing a baseName");
	return;
      }
    }
  }

  $self->__update_subjects  ($t->{subjectIdentity}, $t->{id}); # tell the world for which subjects we stand
  $self->__update_baseNames ($t->{baseNames},       $t->{id}); # and also where the (scoped) baseNames are

   ## unconditional => can use it later## if (grep ($_ eq 'Subject_based_Merging', @{$self->{consistency}->{merge}}));
#  warn "no merge for $tid\n";
}

sub __update_baseNames {
  my $self = shift;
  my $bns  = shift; # list ref
  my $tid  = shift;

  foreach my $bn (@$bns) {
#    warn "add fingerprint for $tid (".$bn->baseNameString->string.")";
#    warn "  fingprint: ".$bn->fingerprint."...";
    $self->{baseName_fingerprints}->{$bn->{fingerprint}} = $tid;
  }
#  warn "end fingerprints: ".Dumper $self->{baseName_fingerprints};
}

sub __update_subjects {
  my $self = shift;
  my $si   = shift;
  my $tid  = shift;

  return unless $si;
  $self->{subjects}->{$si->{resourceRef}->{href}} = $tid if $si->{resourceRef};
  foreach my $r ($si->{references} ? @{$si->{references}} : ()) {
    my $uri = URI->new($r->{href})->canonical->as_string;
    $self->{subjects}->{$uri} = $tid;
  }
}

sub add_topic {
  my $self = shift;
  my $t    = shift;

  if ($self->{topics}->{$t->{id}}) {                                      # there exists already a topic with this id
    if (grep ($_ eq 'Id_based_Merging', @{$self->{consistency}->{merge}}))  { # allow merging based on id
      $self->__do_merge ($self->{topics}->{$t->{id}}, $t, "same id");
    } else {                                                            # there can only be one and we overwrite
      $self->{topics}->{$t->{id}} = $t;
    }
  } else {                                                              # we see a new id
    $self->{topics}->{$t->{id}} = $t;
  }
  $t->canonicalize();                                                   # sorting and/or creating the fingerprints for scoped baseNames
  $self->__check_for_merge ($t->{id});                                    # here various merging checks are performed
}

sub add {
  my $self = shift;

  elog ('XTM::Memory', 4, "add ".ref ($_[0])."....");

  foreach my $at (@_) {
    if ($at->isa ('XTM::topic')) {
      $self->add_topic ($at);
    } elsif ($at->isa ('XTM::association')) {
      $self->{associations}->{$at->id} = $at;
    } elsif ($at->isa ('XTM::Memory')) {
      foreach my $t (values %{$at->{topics}}) {
	$self->add_topic ($t);
      }
      foreach my $a (values %{$at->{associations}}) {
	$self->{associations}->{$a->id} = $a;
      }
    } else {
      die "XTM: add: invalid parameter, expected topic, association or map";
    }
    # here TNC will kick in. Or not.
  }
}

=pod


=item B<remove>

I<$listref> = I<$mem>->remove ( I<@list_of_topic_ids> )

removes particular topics and associations specified by their C<id>.
You can provide a list here. The method will return a list references of object (references), which were
removed from the map during this operation. Topic ids not identifying any topic or association
in the map, are silently ignored.

Examples:

  # get rid of a particular topic
  $tm->remove ('t-portishead');

=cut

sub remove {
  my $self = shift;
  my @doomed  = @_;
  my @removed = ();
  foreach my $d (@doomed) {
    if ($self->{topics}->{$d}) {
      push @removed, $self->{topics}->{$d};
      delete $self->{topics}->{$d};
    } elsif ($self->{associations}->{$d}) {
      push @removed, $self->{associations}->{$d};
      delete $self->{associations}->{$d};
    }
  }
  return [ @removed ] ;
}

=pod

=item B<is_topic>, B<is_association>

I<$boolean> = I<$mem>->is_topic       ( I<$topic_id> )

I<$boolean> = I<$mem>->is_association ( I<$association_id> )

check whether a particular topic/association with a given C<id> exists in the map.
Returns 1 in that case, C<undef> otherwise.

Examples:

   print "Hurray" if $tm->is_topic ('t-john-lennon') || 
                     $tm->is_association ('a-played-in');

=cut

sub is_topic {
  my $self = shift;
  my $id   = shift;
  return 1 if $self->{topics}->{$id};
}

sub is_association {
  my $self = shift;
  my $id   = shift;
  return 1 if $self->{associations}->{$id};
}

=pod

=item B<topics>

I<$list_ref> = I<$mem>->topics ( [ I<$query> ] )

returns a list reference of topic ids for this given map. An optional filter
specification can filter only relevant topics:

Example:

   # get all of them (or at least what the implementation is willing to give)
   $tm->topics ();
   # only with some name
   $tm->topics ( "baseName regexps /rumsti.*/" );

The filter specifications follow the syntax:

  filter        -> clause { 'AND' clause }
  clause        -> 'baseName'   'regexps' regexp_string                               |
                   'occurrence' 'regexps' regexp_string                               |
                   'text'       'regexps' regexp_string                               | # any text within the topic
                   'id'         'regexps' regexp_string                               |
                   'id'         'eq'      ''' string '''                              |
                   'assocs' [ 'via' topic_id ] [ 'with' topic_id ] [ 'transitively' ] |
                   'is-a'  topic_id                                                   |
                   'reifies'    'regexps' regexp_string                               |
                   'indicates'  'regexps' regexp_string                               |
##                 'instanceOfs' ( '<=' | '==' | '>=' )  set_of_topic_ids | NOT IMPLEMENTED
##                 'scoped_by' topic_id   ## NOT IMPLEMENTED
  regexp_string -> '/' regexp '/'
  regexp        -> <a perl pattern>
  topic_id      -> <id of a topic>
  string        -> <any string with no \' in it>

The regexps are all interpreted as //i, i.e. case-insensitive matching.


=cut

sub _passes_filter {
  my $self = shift;
  my $t    = shift;
  my $f    = shift;
  my $memoize = shift;

#  elog ('XTM::Memory', 4, "passing filter  '$f'");
  if ($f =~ /^baseName\s+regexps\s+\/(.+)\/$/) {
    my $regexp = $1;
#    elog ('XTM::Memory', 4, "    baseName regexps '$regexp'");
    foreach my $b (@{$t->{baseNames}}) {  # only one matches => ok
#      elog ('XTM::Memory', 5, "       baseName", $b);
      return 1 if $b->{baseNameString}->{string} =~ /$regexp/i;
    }
  } elsif ($f =~ /^indicates\s+regexps\s+\/(.+)\/$/) {
    my $regexp = $1;
    if ($t->{subjectIdentity}) {
      foreach my $r (@{$t->{subjectIdentity}->{references}}) {
	return 1 if $r->{href} =~ /$regexp/i;
      }
    }
    return 0;
  } elsif ($f =~ /^reifies\s+regexps\s+\/(.+)\/$/) {
    my $regexp = $1;
    return 
      $t->{subjectIdentity} && 
	$t->{subjectIdentity}->{resourceRef} &&
	  $t->{subjectIdentity}->{resourceRef}->{href} =~ /$regexp/i;
  } elsif ($f =~ /^occurrence\s+regexps\s+\/(.+)\/$/) { # make no distinction between resourceRef and resourceData
    my $regexp = $1;
    foreach my $o (@{$t->{occurrences}}) {
##      return 1 if $o->baseName && $o->baseName->baseNameString->string =~ /$regexp/i;
      return 1 if $o->{resource}->isa ('XTM::resourceRef')  && $o->{resource}->href =~ /$regexp/i;
      return 1 if $o->{resource}->isa ('XTM::resourceData') && $o->{resource}->data =~ /$regexp/i;
    }
  } elsif ($f =~ /^id\s+regexps\s+\/(.+)\/$/) {
    my $regexp = $1;
    return grep ($_ =~ /$regexp/i, @{$t->ids});
  } elsif ($f =~ /^text\s+regexps\s+\/(.+)\/$/) {
    my $regexp = $1;
    foreach my $b (@{$t->{baseNames}}) {  # only one matches => ok
      return 1 if $b->{baseNameString}->{string} =~ /$regexp/i;
    }
    foreach my $o (@{$t->{occurrences}}) {
      return 1 if $o->{baseName} && $o->{baseName}->{baseNameString}->{string} =~ /$regexp/i;
      return 1 if $o->{resource}->isa ('XTM::resourceRef')  && $o->{resource}->href =~ /$regexp/i;
      return 1 if $o->{resource}->isa ('XTM::resourceData') && $o->{resource}->data =~ /$regexp/i;
    }
  } elsif ($f =~ /^id\s+eq\s+\'(.+)\'$/) {
    return grep ($_ eq $1, @{$t->{ids}});
  } elsif ($f =~ /^assocs(\s+via\s+(\S+))?(\s+as\s+(\S+))?(\s+with\s+(\S+))?(\s+transitively)?$/) {
    my $via   = $1 ? $2 : '';
    my $role  = $3 ? "#$4" : undef;
    my $with  = $5 ? $6 : '';
    my $trans = $7 || '';
    my $id    = $t->id;

#    elog ('XTM::Memory', 4, "    assocs via '$via' ".($role ? "role '$role'" : "")." with '$with', $trans");
    my $assocs = $memoize->{"a_instances => $via"} ||
      ($memoize->{"a_instances => $via"} = $via ? $self->associations ("is-a $via") : $self->associations ());

    if ($with) { # then we better start from there, performance
      ($id, $with) = ($with, $id);
#      elog ('XTM::Memory', 4, "    assocs via with optimization");
    }
    my $s = $memoize->{$id.$trans} || 
      ($memoize->{$id.$trans} = $self->_topic_tree ($id, {}, $assocs, undef, undef, 0, $trans ? undef : 1));
#    elog ('XTM::Memory', 5, "        tree", $s);
    return 0 if ($via  && !scalar             @{$s->{'children*'}}); # no topics via via reached
    return 0 if (         !grep ($with eq $_, @{$s->{'children*'}}));
#    elog ('XTM::Memory', 4, "       passed via, with");
    return 1;
  } elsif ($f =~ /^is-a\s+(.+)$/) {
    return $t->has_instanceOf ($1);
  } else {
    die "XTM::Memory: Unimplemented filter '$f'\n";
  }
  return 0;
}

sub topics {
  my $self   = shift;
  my $filter = shift || '';
  my $from   = shift || 0;
  my $to     = shift || undef;

#  elog ('XTM::Memory', 3,"topics");
#  elog ('XTM::Memory', 5,"    filter  $filter, $from -> ", defined $to ? $to : undef);

  my @ids;
  my $i = 0; # indexes the matches

  $filter =~ s/\s+$//;  # strip leading and
  $filter =~ s/^\s+//;  # trailing blanks
  my @filters = split (/\s+and\s+/i, $filter); # poor man's parsing, only ANDed clauses, no brackets

  my %memoize;  # optimization
  my %seen; # only used for the uniq sort below
 TOPICS:
#  foreach my $t ( grep ($_ != $p && ($p = $_), sort values  %{$self->{topics}} )) {
  foreach my $t ( grep (!$seen{$_}++, values  %{$self->{topics}} )) {
    last TOPICS if defined $to && $i > $to;
#    elog ('XTM::Memory', 4, "  working on ".$t->id);

    foreach my $f ( @filters ) { # only ANDed clauses, yet
#      elog ('XTM::Memory', 4, "     checking $f, as $i. for from $from to ".(defined $to ? $to : ''));
      next TOPICS unless $self->_passes_filter ($t, $f, \%memoize);
#      elog ('XTM::Memory', 4, "        passed");
    }
    push @ids, $t->id if ($from <= $i++);
  }
  return [ @ids ];
}

=pod

=item B<associations>

I<$list_ref> = I<$mem>->associations ( [ I<$query> ] )

returns the C<id>s of associations. An optional filter specification can filter only relevant associations:

Examples:

  # get _all_  from the map
  @assocs = @{$tm->associations()};
  # get only these matching a specific regexp for the id
  @assocs = @{$tm->associations ('id  regexps /^#a-some-assoc/')};
  # get only these containing a particular topic as a role player
  @assocs = @{$tm->associations ('has_role t-some-role')};
  # get only these containing a particular topic as a member
  @assocs = @{$tm->associations ('has_member t-some-topic AND has_role t-some-role')};
  # with a specific type
  @assocs = @{$tm->associations ('is-a at-relation')};

The filter specifications follow the syntax:

  filter        -> clause { 'AND' clause } 
  clause        -> 'id'    'regexps' regexp_string      |
                   'id'    'eq'      ''' string '''     |
                   'has-role'        topic_id           |
                   'has-member'      topic_id           |
                   'is-a'            topic_id           |
  regexp_string -> '/' regexp '/'
  regexp        -> <a perl pattern>
  topic_id      -> <id of a topic>


=cut

sub _assoc_contains_topic_as_role {
  my $a    = shift;
  my $role = shift;
  use Data::Dumper;
  
  foreach my $m (@{$a->members}) {
    return 1 if $m->{roleSpec}->reference->href eq "#$role";
  }
  return 0;
}

sub _assoc_contains_topic_as_member {
  my $a  = shift;
  my $id = shift;

  use Data::Dumper;
  foreach my $m (@{$a->members}) {
    foreach my $r (@{$m->references}) {
      return 1 if $r->href eq "#$id";
    }
  }
  return 0;
}

sub _assoc_has_instanceOf {
  my $a  = shift;
  my $id = shift;
  
  return $a->instanceOf && ($id =~ /^urn:/ ? 
			      $a->instanceOf->reference->href eq $id :
			      $a->instanceOf->reference->href eq "#$id");
}

sub associations {
  my $self   = shift;
  my $filter = shift || '';

  elog ('XTM::Memory', 3,"associations filter='$filter'");

  $filter =~ s/\s+$//;  # strip leading and
  $filter =~ s/^\s+//;  # trailing blanks
  my @filters = split (/\s+and\s+/i, $filter); # poor man's parsing, only ANDed clauses, no brackets

  my @aids  = keys %{ $self->{associations} };
  foreach my $f (@filters) {
    if ($f =~ /id\s+regexps\s+\/(.+)\//) { # select by id regexp
      my $pattern = $1;
      @aids = grep ( $_ =~ /$pattern/,  @aids);
    } elsif ($f =~ /^id\s+eq\s+\'(.+)\'$/) {
      my $id = $1;
      @aids = grep ( $_ eq $id,  @aids);
    } elsif ($f =~ /has-role\s+(\S+)\s*/) { # only fetch those which contain a specific role
      my $role = $1;
      @aids = grep ( _assoc_contains_topic_as_role ($self->{associations}->{$_}, $role),  @aids);
    } elsif ($f =~ /has-member\s+(\S+)\s*/) { # only fetch those which contain a specific member
      my $member = $1;
      @aids = grep ( _assoc_contains_topic_as_member ($self->{associations}->{$_}, $member),  @aids);
    } elsif ($f =~ /is-a\s+(\S+)\s*/) {
      my $instanceOf = $1;
      @aids = grep ( _assoc_has_instanceOf ($self->{associations}->{$_}, $instanceOf),  @aids);
    } else {
      die "XTM::Memory: Unknown filter '$f' in associations\n";
    }
  }
  return [ @aids ];
}

=pod

=item B<topic>, B<association>

I<$topic_ref>       = I<$mem>->topic       ( I<$topic_id> )

I<$association_ref> = I<$mem>->association ( I<$association_id> )

return a topic/association object (reference) for a given C<id>. If there is no such id, an exception will be raised.

  my $john = $tm->topic ('t-john-lennon');

=cut

sub topic {
  my $self = shift;
  my $id   = shift;
#  while ($self->{merged}->{$id}) { # dereference merged indirection
#    $id = $self->{merged}->{$id}
#  };
  return $self->{topics}->{$id} if $self->{topics}->{$id};
  die "XTM::Memory: topic: No such topic '$id'", caller;
}

sub association {
  my $self = shift;
  my $id   = shift;
  return $self->{associations}->{$id} if $self->{associations}->{$id};
  die "XTM::Memory: association: No such association '$id'";
}

=pod

=item B<baseNames>

I<$hash_ref> = I<$mem>->baseNames ( I<$topic_id_list_ref>,
                              I<$scope_list_ref> )

receives a list reference containing topic C<id>s. It returns a hash reference containing
the baseName for each topic as a value with the topic id the key. The additional parameter is interpreted as
list reference to scoping topics. If this list is undef, then any basename may be returned. If the list is
empty ([]), then NO basename will ever be returned. If it is non-empty, then - according to the order in
this list - the first basename matching will be selected.

Example:

   $names_ref = $tm->baseNames ([ 't-topic1', 't-topic-2' ], 
				[ 'http://www.topicmaps.org/xtm/language.xtm#en' ]);

=cut

sub baseNames {
  my $self   = shift;
  my $names  = shift;
  my $scopes = shift;

  push @$scopes, $XTM::PSI::xtm{universal_scope} unless ($scopes && @$scopes); # default scope
  
  elog ('XTM::Memory', 3, "baseNames for.... ");
  elog ('XTM::Memory', 4, "  baseNames for ", $names, $scopes);

  my %dict;
  foreach my $n (@{$names}) {
    next if $dict{$n};
    (my $m = $n) =~ s/^\#//;
    if ( $self->{topics}->{$m} ) {  # skip ids where there is nothing
    FIND:
      foreach my $scope (@$scopes) { # iterate over all scopes and find first matching
	elog ('XTM::Memory', 5, "     looking for scope ", $scope);
	foreach my $b (@{$self->{topics}->{$m}->baseNames}) { 
	  elog ('XTM::Memory', 5, "      in baseName ", $b, "scope", $b->scope->references);
	  if (grep ($_->href eq $scope, @{$b->scope->references})) { # OK, perfect match
	    $dict{$n} = $b->baseNameString->string;
	    elog ('XTM::Memory', 5, "      perfect match: found $dict{$n}");
	    last FIND;
	  } elsif (grep ($_->href eq $XTM::PSI::xtm{universal_scope}, @{$b->scope->references})) { 
            # topic map did not care
	    $dict{$n} = $b->baseNameString->string;
	    elog ('XTM::Memory', 5, "      map not care: found $dict{$n}");
	    last FIND;
	  } elsif ($scope eq $XTM::PSI::xtm{universal_scope}) { # user did not care
	    $dict{$n} = $b->baseNameString->string;
	    elog ('XTM::Memory', 5, "      user not care: found $dict{$n}");
	    last FIND;
	  }
	}
      }
    }
    unless ($dict{$n}) { # silent desperation, leave it up to the app to handle this
      $dict{$n} = undef;
    }
  }
  elog ('XTM::Memory', 4, "  result ", \%dict);
  return { %dict };
}



##------------------------------------------------------------
# functions where I am still unsure where they belong to, hmmm.

sub _topic_tree {
  my $self    = shift;
  my $topic   = shift;
  my $visited = shift;
  my $aids    = shift;
  my ($a, $b) = (shift, shift);
  my ($currdepth, $maxdepth) = (shift, shift);
  
#  elog ('XTM::Memory', 3, "_topic_tree ".
#	defined $a ? $a : 'no a'.", ".
#	defined $b ? $b : 'no b'.
#	" with node $topic type ?? ($currdepth, ".
#	defined $maxdepth ? $maxdepth : '-'.")");
#  elog ('XTM::Memory', 5, "    assocs: ", $aids);
  
  return $visited->{$topic} if $visited->{$topic}; # been there, done that

  my $n = { tid         => $topic,
	    children    => [],# contains direct children
	    'children*' => [] # contains also indirect one
	  };

  if (!defined $maxdepth || $currdepth < $maxdepth) {
    foreach my $ar (map { $self->association ($_) } @{$aids}) {
      elog ('XTM::Memory', 4,"checking assoc ",$ar->id);
      my ($a_topic, @b_topics);
      # look whether $a has an instance here
      foreach my $m ( @{$ar->members} ) {
	next unless $m->roleSpec; # give up if there is no role
#	elog ('XTM::Memory', 4,"    checking for role ", $m->roleSpec->reference->href);
	next if defined $a && $a ne $m->roleSpec->reference->href;
#	elog ('XTM::Memory', 4,"      still there because of child");
	foreach my $lr (@{$m->references}) {
#	  elog ('XTM::Memory', 4,"  checking out reference ".$lr->href);
	  if ($lr->href eq "#$topic") {
#	    elog ('XTM::Memory', 4,"    found $topic playing first role");
	    foreach my $m2 ( @{$ar->members} ) { 
#	      elog ('XTM::Memory', 4,"    inner loop for other members");
	      next unless $m->roleSpec && $m2->roleSpec; # give up if there is no role
	      if ($m->roleSpec->reference->href ne $m2->roleSpec->reference->href) { # get forward drift
	        next if defined $b && $b ne $m2->roleSpec->reference->href;
#		elog ('XTM::Memory', 4,"    found other playing second role");
		foreach my $ls (@{$m2->references}) {
		  (my $b_topic = $ls->href) =~ s/^\#//;
#		  elog ('XTM::Memory', 4,"    drill down for $b_topic");
		  my $child = $self->_topic_tree ($b_topic, 
						  $visited, 
						  $aids, 
						  $a, 
						  $b, 
						  $currdepth+1, 
						  $maxdepth);
		  push @{$n->{'children'}},  $child;
		  push @{$n->{'children*'}}, $child->{tid}, @{$child->{'children*'}};
		}
	      }
	    }
	    last;                                   # I'm only interested in a tree here
	  }
	}
      }
    }
  }
  $visited->{$n->{tid}} = $n;                      # global hash which remembers already built subtrees
  return $n;
}


sub _class_tree {
  my $self    = shift;
  my $topic   = shift;
  my $visited = shift;
  my ($currdepth, $maxdepth) = (shift, shift);

  return { tid         => $topic,
	   children    => [],
	   'children*' => []
	   } if ($topic =~ /^\w+:/);               # absolute ones

  $topic =~ s/^\#//;                               # continue with relative topics

  return $visited->{$topic} if $visited->{$topic}; # been there, done that

  my $n = { tid         => $topic,
	    children    => [],
	    'children*' => []
	  };

  if (!defined $maxdepth || $currdepth < $maxdepth) {
    foreach my $href (map { $_->{reference}->{href} } @{$self->{topics}->{$topic}->{instanceOfs}}) {
      my $child = $self->_class_tree ($href, $visited, $currdepth+1, $maxdepth);
      push @{$n->{'children'}},  $child;
      push @{$n->{'children*'}}, $child->{tid}, @{$child->{'children*'}};
    }
  }

  $visited->{$n->{tid}} = $n;                      # global hash which remembers already built subtrees
  return $n;
}


sub _instance_tree {
  my $self  = shift;
  my $topic = shift;
  my $visited = shift;
  my ($currdepth, $maxdepth) = (shift, shift);


  return $visited->{$topic} if $visited->{$topic}; # been there, done that

  my $n = { tid         => $topic,
	    children    => [],
	    'children*' => []
	  };

#warn $maxdepth;
  if (!defined $maxdepth || $currdepth < $maxdepth) {
    foreach my $t (values %{$self->{topics}}) {
#warn "check: ".Dumper $t;
      if ($t->has_instanceOf ($topic)) {
	my $child = $self->_instance_tree ($t->{id}, $visited, $currdepth+1, $maxdepth);
	push @{$n->{'children'}},  $child;
	push @{$n->{'children*'}}, $child->{tid}, @{$child->{'children*'}};
      }
    }
  }

  $visited->{$n->{tid}} = $n;                      # global hash which remembers already built subtrees
  return $n;
}


=pod

=back

=head1 SEE ALSO

L<XTM>, L<XTM::base>

=head1 AUTHOR INFORMATION

Copyright 200[1-2], 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__


# old code was pretty slow
#    foreach my $t2 (grep ($_ != $t, values %{$self->{topics}})) {
#      foreach my $bn2 (@{$t2->baseNames}) {
#	foreach my $bn (@{$t->baseNames}) {
#	  next unless $bn->baseNameString->string eq $bn2->baseNameString->string;
#	  next unless XTM::scope::scope_eq ($bn->scope->references, $bn2->scope->references);
#	  $self->__do_merge ($t2, $t, "TNC");
#	  return;
#	}
#      }
#    }