Menu

[r12]: / trunk / libtop_engine / rdf_graph.h  Maximize  Restore  History

Download this file

1304 lines (995 with data), 38.6 kB

   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
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
#ifndef RDF_GRAPH_H_
#define RDF_GRAPH_H_
#include "rdf_rule_core.h"
#include "rdf_index.h"
#include "rdf_rule_cback.h"
#include "rdf_index.h"
// index required:
// ---------------------------------------------------------------
//
// Considering that generally we have: num(o) > num(s) > num(p)
//
// - index 0: map(s, map(p, set(o))) most common
// - index 1: map(p, map(o, set(s))) common
// - index 2: map(o, map(s, set(p))) least common
//
// All possible query types:
// ---------------------------------------------------------------
//
// - query type 0: ( s, ?p, ?o) use index 0
// - query type 1: (?s, p, ?o) use index 1
// - query type 2: (?s, ?p, o) use index 2
//
// - query type 3: ( s, p, ?o) use index 0
// - query type 4: ( s, ?p, o) use index 2
// - query type 5: (?s, p, o) use index 1
// - query type 6: ( s, p, ?o) use index 0
//
// - query type 7: ( s, p, o) use index 0
//
// String pools requirement:
// ---------------------------------------------------------------
//
// - subject, predicate and object in single pool: map(name, id) and slist(resource_shared_ptr)
// - index above contains id only.
// - Assumption: predicate is never a subject or object in any triples.
//
// Data structure notes:
// ---------------------------------------------------------------
//
// - subjects and objects must co-habit in same container but can be of different
// types: subject are string (or uri), object can be of type uri, string, int, unsigned int,
// long, unsigned long, float, double, and boolean.
// > use the boost::variant type.
//
// - String pools are of structure map(name, id) and map(id, name) can be effectively
// implemented using:
// > boost:multi_index, in particular the bidirectional map
namespace rdf {
class rdf_session;
/////////////////////////////////////////////////////////////////////////////////////////
// class index_triple_iterator
//
/////////////////////////////////////////////////////////////////////////////////////////
class index_triple_iterator {
typedef internal::index_graph::iterator index_graph_iterator_t;
public:
inline index_triple_iterator(char const lookup_, index_graph_iterator_t const& index_itor_):
m_lookup(lookup_),
m_index_itor(index_itor_)
{};
inline index_triple_iterator():
m_lookup('s'),
m_index_itor()
{};
inline index_triple_iterator(index_triple_iterator const& rhs):
m_lookup(rhs.m_lookup),
m_index_itor(rhs.m_index_itor)
{};
inline bool
is_end()const
{
return m_index_itor.is_end();
};
inline bool
next()
{
return m_index_itor.next();
};
inline index_triple
get_triple() const{
index_type s;
index_type p;
index_type o;
internal::lookup_spo(m_lookup, s, p, o, m_index_itor);
return index_triple(s, p, o);
};
inline index_type*
get_triple_as_array(index_type* t3)const{
index_type s;
index_type p;
index_type o;
internal::lookup_spo(m_lookup, s, p, o, m_index_itor);
t3[0] = s; t3[1] = p; t3[2] = o;
return t3;
};
private:
char m_lookup; // case 's' for 'spo' lookup, 'p' for 'pos' lookup, and 'o' for 'osp' lookup
index_graph_iterator_t m_index_itor;
};
/////////////////////////////////////////////////////////////////////////////////////////
// class triple
//
/////////////////////////////////////////////////////////////////////////////////////////
class triple {
public:
inline triple(resource const &s, resource const &p, resource const &o):
m_subject(s),
m_predicate(p),
m_object(o)
{};
inline triple(index_type const s, index_type const p, index_type const o):
m_subject (internal::to_resource(s)),
m_predicate(internal::to_resource(p)),
m_object (internal::to_resource(o))
{};
inline resource const& get_subject() const{return m_subject;};
inline resource const& get_predicate() const{return m_predicate;};
inline resource const& get_object() const{return m_object;};
inline index_type* as_array(index_type* t3)const{
t3[0] = m_subject.get_index();
t3[1] = m_predicate.get_index();
t3[2] = m_object.get_index();
return t3;
};
private:
resource const& m_subject;
resource const& m_predicate;
resource const& m_object;
friend std::ostream& operator<<(std::ostream& out, triple const& t);
};
inline std::ostream& operator<<(std::ostream& out, triple const& t)
{
out << "(" << t.m_subject << ", " << t.m_predicate << ", " << t.m_object << ")";
return out;
};
/////////////////////////////////////////////////////////////////////////////////////////
// class triple_iterator
//
/////////////////////////////////////////////////////////////////////////////////////////
class triple_iterator {
typedef internal::index_graph::iterator index_graph_iterator_t;
public:
inline triple_iterator(
char const lookup_,
index_graph_iterator_t const& index_itor_):
m_lookup(lookup_),
m_index_itor(index_itor_)
{};
inline triple_iterator(triple_iterator const& rhs):
m_lookup(rhs.m_lookup),
m_index_itor(rhs.m_index_itor)
{};
inline bool is_end() const{return m_index_itor.is_end();};
inline bool next() {return m_index_itor.next();};
inline triple get_triple() const{
index_type s;
index_type p;
index_type o;
internal::lookup_spo(m_lookup, s, p, o, m_index_itor);
return triple(s, p, o);
};
private:
char m_lookup; // case 's' for 'spo' lookup, 'p' for 'pos' lookup, and 'o' for 'osp' lookup
index_graph_iterator_t m_index_itor;
};
/////////////////////////////////////////////////////////////////////////////////////////
// class rdf_graph
//
/////////////////////////////////////////////////////////////////////////////////////////
class rdf_graph
{
public:
typedef internal::resource_base_map::resource_ptr_const_iterator resource_ptr_const_iterator;
typedef internal::resource_base_map_ptr_type resource_map_ptr_t;
typedef index_triple_iterator index_iterator;
typedef triple_iterator iterator;
inline rdf_graph(
unsigned int pool_size,
unsigned int triple_size,
resource_map_ptr_t const& resource_map_p):
m_size(0),
m_idx_spo(pool_size),
m_idx_pos(pool_size),
m_idx_osp(pool_size),
m_resource_map_p(resource_map_p)
{
set_initial_triple_size(triple_size);
};
inline rdf_graph(rdf_graph const&rhs):
m_size(rhs.m_size),
m_idx_spo(rhs.m_idx_spo),
m_idx_pos(rhs.m_idx_pos),
m_idx_osp(rhs.m_idx_osp),
m_resource_map_p(rhs.m_resource_map_p)
{};
~rdf_graph(){};
inline void
set_initial_triple_size(unsigned int triple_size)
{
m_idx_spo.set_initial_size(triple_size);
m_idx_pos.set_initial_size(triple_size);
m_idx_osp.set_initial_size(triple_size);
};
inline unsigned int
size()const{return m_size;};
//// utility ///////////////////////////////////////////////////////////////////////////////////-
inline resource_ptr_const_iterator
get_resources_iterator_begin()const
{
return m_resource_map_p->get_resources_iterator_begin();
};
inline resource_ptr_const_iterator
get_resources_iterator_end()const
{
return m_resource_map_p->get_resources_iterator_end();
};
//// contains ///////////////////////////////////////////////////////////////////////////////////-
/*
* return true if (u, v, w) exist, false otherwise.
*/
inline bool
contains(index_type s, index_type p, index_type o) const
{
return m_idx_spo.contains(s, p, o);
};
inline bool
contains(index_type s, index_type p, all_objects) const
{
return m_idx_spo.contains(s, p);
};
inline bool
contains(index_triple t) const
{
return contains(t.get_subject(), t.get_predicate(), t.get_object());
};
inline bool
contains(std::string const& s_str, std::string const& p_str, std::string const& o_str) const
{
if(not is_resource(s_str)) return false;
if(not is_resource(p_str)) return false;
if(not is_resource(o_str)) return false;
return contains(get_resource(s_str), get_resource(p_str), get_resource(o_str));
};
inline bool
contains(std::string const& s_str, std::string const& p_str) const
{
if(not is_resource(s_str)) return false;
if(not is_resource(p_str)) return false;
return contains(get_index_type(s_str), get_index_type(p_str), all_objects());
};
inline bool
contains(resource const& s, resource const& p, resource const& o) const
{
return contains(s.get_index(), p.get_index(), o.get_index());
};
//// find_index ///////////////////////////////////////////////////////////////////////////////////-
///////////////////////////////////////////////////////////////////////////////////////
// find(*, *, *)
///////////////////////////////////////////////////////////////////////////////////////
inline index_iterator
find_index()const
{
return index_iterator('s', m_idx_spo.find());
};
inline index_iterator
find_all_index()const
{
return find_index();
};
inline index_iterator
find_index(all_subjects, all_predicates, all_objects)const
{
return find_index();
};
///////////////////////////////////////////////////////////////////////////////////////
// find(s, *, *)
///////////////////////////////////////////////////////////////////////////////////////
inline index_iterator
find_index(index_type s, all_predicates, all_objects)const
{
return index_iterator('s', m_idx_spo.find(s));
};
inline index_iterator
find_index(std::string const& s, all_predicates p, all_objects o)const
{
if(not is_resource(s)) return index_iterator();
return find_index(get_index_type(s), p, o);
};
///////////////////////////////////////////////////////////////////////////////////////
// find(s, p, *)
///////////////////////////////////////////////////////////////////////////////////////
inline index_iterator
find_index(index_type s, index_type p, all_objects)const
{
return index_iterator('s', m_idx_spo.find(s, p));
};
inline index_iterator
find_index(std::string const& s, std::string const& p, all_objects o)const
{
if(not is_resource(s)) return index_iterator();
if(not is_resource(p)) return index_iterator();
return find_index(get_index_type(s), get_index_type(p), o);
};
///////////////////////////////////////////////////////////////////////////////////////
// find(*, p, *)
///////////////////////////////////////////////////////////////////////////////////////
inline index_iterator
find_index(all_subjects, index_type p, all_objects)const
{
return index_iterator('p', this->m_idx_pos.find(p));
};
inline index_iterator
find_index(all_subjects s, std::string const& p, all_objects o)const
{
if(not is_resource(p)) return index_iterator();
return find_index(s, get_index_type(p), o);
};
///////////////////////////////////////////////////////////////////////////////////////
// find(*, p, o)
///////////////////////////////////////////////////////////////////////////////////////
inline index_iterator
find_index(all_subjects, index_type p, index_type o)const
{
return index_iterator('p', this->m_idx_pos.find(p, o));
};
inline index_iterator
find_index(all_subjects s, std::string const& p, std::string const& o)const
{
if(not is_resource(p)) return index_iterator();
if(not is_resource(o)) return index_iterator();
return find_index(s, get_index_type(p), get_index_type(o));
};
///////////////////////////////////////////////////////////////////////////////////////
// find(*, *, o)
///////////////////////////////////////////////////////////////////////////////////////
inline index_iterator
find_index(all_subjects, all_predicates, index_type o)const
{
return index_iterator('o', this->m_idx_osp.find(o));
};
inline index_iterator
find_index(all_subjects s, all_predicates p, std::string const& o)const
{
if(not is_resource(o)) return index_iterator();
return find_index(s, p, get_index_type(o));
};
///////////////////////////////////////////////////////////////////////////////////////
// find(s, *, o)
///////////////////////////////////////////////////////////////////////////////////////
inline index_iterator
find_index(index_type s, all_predicates, index_type o)const
{
return index_iterator('o', this->m_idx_osp.find(o, s));
};
inline index_iterator
find_index(std::string const& s, all_predicates p, std::string const& o)const
{
if(not is_resource(s)) return index_iterator();
if(not is_resource(o)) return index_iterator();
return find_index(get_index_type(s), p, get_index_type(o));
};
//// count_triples ///////////////////////////////////////////////////////////////////////////////////-
protected:
inline unsigned int
count_triples(index_iterator itor)const
{
unsigned int count = 0;
while(not itor.is_end()) {
count++;
itor.next();
}
return count;
};
public:
///////////////////////////////////////////////////////////////////////////////////////
// count_triples(*, *, *)
///////////////////////////////////////////////////////////////////////////////////////
inline unsigned int
count_triples(all_subjects, all_predicates, all_objects)const
{
return size();
};
///////////////////////////////////////////////////////////////////////////////////////
// count_triples(s, *, *)
///////////////////////////////////////////////////////////////////////////////////////
inline unsigned int
count_triples(index_type s, all_predicates p, all_objects o)const
{
return count_triples(find_index(s, p, o));
};
inline unsigned int
count_triples(std::string const& s, all_predicates p, all_objects o)const
{
if(not is_resource(s)) return 0;
return count_triples(find_index(s, p, o));
};
///////////////////////////////////////////////////////////////////////////////////////
// count_triples(s, p, *)
///////////////////////////////////////////////////////////////////////////////////////
inline unsigned int
count_triples(index_type s, index_type p, all_objects o)const
{
return count_triples(find_index(s, p, o));
};
inline unsigned int
count_triples(std::string const& s, std::string const& p, all_objects o)const
{
if(not is_resource(s)) return 0;
if(not is_resource(p)) return 0;
return count_triples(find_index(s, p, o));
};
///////////////////////////////////////////////////////////////////////////////////////
// count_triples(*, p, *)
///////////////////////////////////////////////////////////////////////////////////////
inline unsigned int
count_triples(all_subjects s, index_type p, all_objects o)const
{
return count_triples(find_index(s, p, o));
};
inline unsigned int
count_triples(all_subjects s, std::string const& p, all_objects o)const
{
if(not is_resource(p)) return 0;
return count_triples(find_index(s, p, o));
};
///////////////////////////////////////////////////////////////////////////////////////
// count_triples(*, p, o)
///////////////////////////////////////////////////////////////////////////////////////
inline unsigned int
count_triples(all_subjects s, index_type p, index_type o)const
{
return count_triples(find_index(s, p, o));
};
inline unsigned int
count_triples(all_subjects s, std::string const& p, std::string const& o)const
{
if(not is_resource(p)) return 0;
if(not is_resource(o)) return 0;
return count_triples(find_index(s, p, o));
};
///////////////////////////////////////////////////////////////////////////////////////
// count_triples(*, *, o)
///////////////////////////////////////////////////////////////////////////////////////
inline unsigned int
count_triples(all_subjects s, all_predicates p, index_type o)const
{
return count_triples(find_index(s, p, o));
};
inline unsigned int
count_triples(all_subjects s, all_predicates p, std::string const& o)const
{
if(not is_resource(o)) return 0;
return count_triples(find_index(s, p, o));
};
///////////////////////////////////////////////////////////////////////////////////////
// count_triples(s, *, o)
///////////////////////////////////////////////////////////////////////////////////////
inline unsigned int
count_triples(index_type s, all_predicates p, index_type o)const
{
return count_triples(find_index(s, p, o));
};
inline unsigned int
count_triples(std::string const& s, all_predicates p, std::string const& o)const
{
if(not is_resource(s)) return 0;
if(not is_resource(o)) return 0;
return count_triples(find_index(s, p, o));
};
//// find ///////////////////////////////////////////////////////////////////////////////////-
inline iterator
find()const
{
return iterator('s', m_idx_spo.find());
};
inline iterator
find_all()const
{
return find();
};
inline iterator
find(resource const& s, all_predicates, all_objects)const
{
return iterator('s', m_idx_spo.find(s.get_index()));
};
inline iterator
find(resource const& s, resource const& p, all_objects)const
{
return iterator('s', m_idx_spo.find(s.get_index(), p.get_index()));
};
inline iterator
find(all_subjects, resource const& p, all_objects)const
{
return iterator('p', m_idx_pos.find(p.get_index()));
};
inline iterator
find(all_subjects, resource const& p, resource const& o)const
{
return iterator('p', m_idx_pos.find(p.get_index(), o.get_index()));
};
inline iterator
find(all_subjects, all_predicates, resource const& o)const
{
return iterator('o', m_idx_osp.find(o.get_index()));
};
inline iterator
find(resource const& s, all_predicates, resource const& o)const
{
return iterator('o', m_idx_osp.find(o.get_index(), s.get_index()));
};
//// insert ///////////////////////////////////////////////////////////////////////////////////-
protected:
inline unsigned int
insert_internal(index_type s, index_type p, index_type o, bool notify_listners=true)
{
// if(m_idx_spo.insert(s, p, o)) {
// m_idx_pos.insert(p, o, s);
// m_idx_osp.insert(o, s, p);
// ++m_size;
// return 1;
// };
// return 0;
bool inserted = m_idx_spo.insert(s, p, o, notify_listners);
m_idx_pos.insert(p, o, s, notify_listners);
m_idx_osp.insert(o, s, p, notify_listners);
if(inserted) {
++m_size;
return 1;
}
return 0;
};
public:
// returns the reference count in the inferred graph.
// used by rule_term to determine if an inferred triple will
// be removed as result of retract call.
inline unsigned int
get_ref_count(index_type s, index_type p, index_type o)const
{
return m_idx_spo.get_ref_count(s, p, o);
};
inline unsigned int
insert(index_type s, index_type p, index_type o)
{
if(!s or !p or !o) throw rdf_exception(invalid_index, "rdf_graph::insert: trying to insert a triple with a null index");
return insert_internal(s, p, o);
};
inline unsigned int
insert(std::string const& s, std::string const& p, std::string const& o)
{
return insert_internal(
create_resource_as_index(s),
create_resource_as_index(p),
create_resource_as_index(o)
);
};
inline unsigned int
insert(resource const& s, resource const& p, resource const& o)
{
return insert_internal(s.get_index(), p.get_index(), o.get_index());
};
//// erase ///////////////////////////////////////////////////////////////////////////////////-
inline void
erase(index_type s, index_type p)
{
index_iterator itor = find_index(s, p, all_objects());
std::vector<index_type> v;
while(not itor.is_end()) {
v.push_back(itor.get_triple().get_object());
itor.next();
}
for(std::vector<index_type>::iterator itor=v.begin(); itor!=v.end(); ++itor)
erase(s, p, *itor);
};
inline void
erase_triples_for(index_type s)
{
index_iterator itor = find_index(s, all_predicates(), all_objects());
std::vector<index_triple> v;
while(not itor.is_end()) {
v.push_back(itor.get_triple());
itor.next();
}
for(std::vector<index_triple>::iterator itor=v.begin(); itor!=v.end(); ++itor)
erase(itor->get_subject(),itor->get_predicate(),itor->get_object());
};
inline unsigned int
erase(index_type s, index_type p, index_type o)
{
// only possible values for count are 0, 1 since cannot have duplicate triples
unsigned int count = m_idx_spo.erase(s, p, o);
if(count > 0) {
m_idx_pos.erase(p, o, s);
m_idx_osp.erase(o, s, p);
--m_size;
}
return count;
};
inline unsigned int
erase(resource const& s, resource const& p, resource const& o)
{
return erase(s.get_index(), p.get_index(), o.get_index());
};
inline void
erase(std::string const& s, std::string const& p)
{
if(not is_resource(s)) return;
if(not is_resource(p)) return;
erase(get_index_type(s), get_index_type(p));
};
inline void
erase_triples_for(std::string const& s)
{
if(not is_resource(s)) return;
erase_triples_for(get_index_type(s));
};
inline unsigned int
erase(std::string const& s, std::string const& p, std::string const& o)
{
if(not is_resource(s)) return 0;
if(not is_resource(p)) return 0;
if(not is_resource(o)) return 0;
return erase(get_index_type(s), get_index_type(p), get_index_type(o));
};
//// retract ///////////////////////////////////////////////////////////////////////////////////-
inline unsigned int
retract(index_type s, index_type p, index_type o)
{
// only possible values for count are 0, 1 since cannot have duplicate triples
unsigned int count = m_idx_spo.retract(s, p, o);
m_idx_pos.retract(p, o, s);
m_idx_osp.retract(o, s, p);
if(count > 0) --m_size;
return count;
};
inline unsigned int
retract(resource const& s, resource const& p, resource const& o)
{
return retract(s.get_index(), p.get_index(), o.get_index());
};
inline unsigned int
retract(std::string const& s, std::string const& p, std::string const& o)
{
if(not is_resource(s)) return 0;
if(not is_resource(p)) return 0;
if(not is_resource(o)) return 0;
return retract(get_index_type(s), get_index_type(p), get_index_type(o));
};
//// call_back_managers ///////////////////////////////////////////////////////////////////////////////////-
inline void
register_call_back_manager(rule::rule_session *session_p, rdf_cback_mgr const& cback_mgr)
{
m_idx_spo.register_call_back_manager(session_p, &cback_mgr.get_spo_cback_mgr());
m_idx_pos.register_call_back_manager(session_p, &cback_mgr.get_pos_cback_mgr());
m_idx_osp.register_call_back_manager(session_p, &cback_mgr.get_osp_cback_mgr());
};
inline void
unregister_call_back_manager()
{
m_idx_spo.unregister_call_back_manager();
m_idx_pos.unregister_call_back_manager();
m_idx_osp.unregister_call_back_manager();
};
inline resource_base const&
get_resource_base(index_type r)const{return internal::to_resource_base(r);};
//// resource ///////////////////////////////////////////////////////////////////////////////////-
// for functional relationship
inline index_type
get_object(index_type s, index_type p)const
{
index_iterator itor = find_index(s, p, all_objects());
if(itor.is_end()) return NULL;
return itor.get_triple().get_object();
};
// for functional relationship
inline index_type
get_object(std::string const& s, std::string const& p)const
{
return get_object(get_index_type(s), get_index_type(p));
};
inline index_type
get_index_type(std::string const& name)const
{
return m_resource_map_p->get_index_type(name);
};
inline index_type
get_index_type(unsigned int key)const
{
return m_resource_map_p->get_index_type(key);
};
inline bool
is_resource(std::string const& name)const
{
return m_resource_map_p->is_resource(name);
};
inline resource const&
get_resource(index_type r)const
{
return internal::to_resource(r);
};
inline resource const&
get_resource(std::string const& name)const
{
return m_resource_map_p->get_resource(name);
};
inline resource const&
create_resource(std::string const& name)
{
return m_resource_map_p->create_resource(name);
};
inline index_type
create_resource_as_index (std::string const& name)
{
return m_resource_map_p->create_resource_as_index(name);
};
//// literal ///////////////////////////////////////////////////////////////////////////////////-
// for functional relationship
inline literal const&
get_literal_object(index_type s, index_type p)const
{
index_iterator itor = find_index(s, p, all_objects());
if(itor.is_end()) throw rdf_exception(invalid_index, "ERROR-L1: No literal found for arguments.");
return get_literal(itor.get_triple().get_object());
};
// for functional relationship
inline literal const&
get_literal_object(std::string const& s, std::string const& p)const
{
return get_literal_object(get_index_type(s), get_index_type(p));
};
inline bool
is_literal(index_type r)const
{
return m_resource_map_p->is_literal(r);
};
inline bool
is_literal(std::string const& name) const
{
return m_resource_map_p->is_literal(name);
};
inline literal const&
get_literal(index_type r)const
{
if(!is_literal(r)) throw rdf_exception(invalid_index, "ERROR-G1: Cannot convert to literal, index_type argument is not a literal.");
return internal::to_literal(r);
};
inline literal const&
get_literal(std::string const& name)const
{
return m_resource_map_p->get_literal(name);
};
inline literal const&
create_literal(std::string const& name)
{
return m_resource_map_p->create_literal(name);
};
template<class T>
inline literal const&
create_literal(std::string const& name, T const& c)
{
return m_resource_map_p->create_literal(name, c);
};
inline index_type
create_literal_as_index(std::string const& name)
{
return m_resource_map_p->create_literal_as_index(name);
};
template<class T>
inline index_type
create_literal_as_index (std::string const& name, T const& c)
{
return m_resource_map_p->create_literal_as_index(name, c);
};
////////////////////////////////////////////////////////////////////////////////////////////////
// string literal
////////////////////////////////////////////////////////////////////////////////////////////////
inline literal const&
create_string_literal(std::string const& data)
{
return m_resource_map_p->create_string_literal(data);
};
inline index_type
create_string_literal_as_index(std::string const& data)
{
return m_resource_map_p->create_string_literal_as_index(data);
};
inline index_type
get_string_literal(std::string const& data)const
{
return m_resource_map_p->get_string_literal(data);
};
////////////////////////////////////////////////////////////////////////////////////////////////
// int literal
////////////////////////////////////////////////////////////////////////////////////////////////
inline literal const&
create_int_literal(int_type data)
{
return m_resource_map_p->create_int_literal(data);
};
inline index_type
create_int_literal_as_index(int_type data)
{
return m_resource_map_p->create_int_literal_as_index(data);
};
inline index_type
get_int_literal(int_type data)const
{
return m_resource_map_p->get_int_literal(data);
};
////////////////////////////////////////////////////////////////////////////////////////////////
// uint literal
////////////////////////////////////////////////////////////////////////////////////////////////
inline literal const&
create_uint_literal(u_int_type data)
{
return m_resource_map_p->create_uint_literal(data);
};
inline index_type
create_uint_literal_as_index(u_int_type data)
{
return m_resource_map_p->create_uint_literal_as_index(data);
};
inline index_type
get_uint_literal(u_int_type data)const
{
return m_resource_map_p->get_uint_literal(data);
};
////////////////////////////////////////////////////////////////////////////////////////////////
// real literal
////////////////////////////////////////////////////////////////////////////////////////////////
inline literal const&
create_real_literal(real_type data)
{
return m_resource_map_p->create_real_literal(data);
};
inline index_type
create_real_literal_as_index(real_type data)
{
return m_resource_map_p->create_real_literal_as_index(data);
};
inline index_type
get_real_literal(real_type data)const
{
return m_resource_map_p->get_real_literal(data);
};
////////////////////////////////////////////////////////////////////////////////////////////////
// date literal
////////////////////////////////////////////////////////////////////////////////////////////////
inline literal const&
create_date_literal(date_type data)
{
return m_resource_map_p->create_date_literal(data);
};
inline index_type
create_date_literal_as_index(date_type data)
{
return m_resource_map_p->create_date_literal_as_index(data);
};
inline index_type
get_date_literal(date_type data)const
{
return m_resource_map_p->get_date_literal(data);
};
////////////////////////////////////////////////////////////////////////////////////////////////
// time literal
////////////////////////////////////////////////////////////////////////////////////////////////
inline literal const&
create_time_literal(time_type data)
{
return m_resource_map_p->create_time_literal(data);
};
inline index_type
create_time_literal_as_index(time_type data)
{
return m_resource_map_p->create_time_literal_as_index(data);
};
inline index_type
get_time_literal(time_type data)const
{
return m_resource_map_p->get_time_literal(data);
};
////////////////////////////////////////////////////////////////////////////////////////////////
// duration literal
////////////////////////////////////////////////////////////////////////////////////////////////
inline literal const&
create_duration_literal(duration_type data)
{
return m_resource_map_p->create_duration_literal(data);
};
inline index_type
create_duration_literal_as_index(duration_type data)
{
return m_resource_map_p->create_duration_literal_as_index(data);
};
inline index_type
get_duration_literal(duration_type data)const
{
return m_resource_map_p->get_duration_literal(data);
};
//// bnode ///////////////////////////////////////////////////////////////////////////////////-
inline bool
is_bnode(index_type r)const
{
return m_resource_map_p->is_bnode(r);
};
inline bnode const&
create_bnode()
{
return m_resource_map_p->create_bnode();
};
inline index_type
create_bnode_as_index()
{
return m_resource_map_p->create_bnode_as_index();
};
// merge bn1 and bn2, keeping bn1 and removing bn2
// there is no consideration for reference count - basically assumed to be 1 (not expected to be used against inferred triples.)
inline void
merge_bnodes(index_type bn1, index_type bn2)
{
if(!is_bnode(bn1) or !is_bnode(bn2)) throw rdf_exception(invalid_index, "ERROR-N1: Requesting to merge bnodes but at least one f the argument is not of type bnode!");
// predicate cannot be bnodes - find all subjects and objects that are bn2
index_type t3[3];
index_iterator itor = find_index(bn2, all_predicates(), all_objects());
while(!itor.is_end()) {
itor.get_triple_as_array(t3);
itor.next();
erase(t3[0], t3[1], t3[2]);
insert_internal(bn1, t3[1], t3[2]==bn2 ? bn1:t3[2]);
}
itor = find_index(all_subjects(), all_predicates(), bn2);
while(!itor.is_end()) {
itor.get_triple_as_array(t3);
itor.next();
erase(t3[0], t3[1], t3[2]);
insert_internal(t3[0]==bn2 ? bn1:t3[0], t3[1], bn1);
}
//* m_resource_map_p->remove_bnode(bn2);
};
// -- ----------------------------------------------------------------------------------------------------
inline std::string
get_name(index_type r)const
{
return r->get_name();
};
inline resource_map_ptr_t
get_resource_map_ptr()const
{
return m_resource_map_p;
};
inline void
enumerate_resources()const
{
m_resource_map_p->enumerate_resources();
};
private:
friend class rdf_session;
unsigned int m_size;
internal::index_graph m_idx_spo;
internal::index_graph m_idx_pos;
internal::index_graph m_idx_osp;
resource_map_ptr_t m_resource_map_p;
};
typedef std::tr1::shared_ptr<rdf_graph> rdf_graph_ptr_type;
/////////////////////////////////////////////////////////////////////////////////////////
// create_rdf_graph
//
/////////////////////////////////////////////////////////////////////////////////////////
inline rdf_graph_ptr_type
create_rdf_graph(unsigned int pool_size=50, unsigned int triple_size=20)
{
internal::resource_base_map_ptr_type resource_map_p (new internal::resource_base_map (pool_size));
return rdf_graph_ptr_type(new rdf_graph(pool_size, triple_size, resource_map_p));
};
inline rdf_graph_ptr_type
create_rdf_graph(internal::resource_base_map_ptr_type meta_resources_p, unsigned int pool_size=50, unsigned int triple_size=20)
{
internal::resource_base_map_ptr_type resource_map_p(
new internal::resource_base_map(&*meta_resources_p, pool_size)
);
return rdf_graph_ptr_type(new rdf_graph(pool_size, triple_size, resource_map_p));
};
inline rdf_graph_ptr_type
create_rdf_graph(rdf_graph_ptr_type meta_graph_p)
{
return create_rdf_graph(meta_graph_p->get_resource_map_ptr());
};
/////////////////////////////////////////////////////////////////////////////////////////
// print_resource_names
//
// utility function
/////////////////////////////////////////////////////////////////////////////////////////
void
print_resource_names(rdf_graph_ptr_type const& graph_p, bool including_literals=false);
}; /*namespace rdf */
#endif /*RDF_GRAPH_H_*/
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.