File: rdf_db.pl

package info (click to toggle)
swi-prolog 7.2.3%2Bdfsg-6
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 84,180 kB
  • ctags: 45,684
  • sloc: ansic: 330,358; perl: 268,104; sh: 6,795; java: 4,904; makefile: 4,561; cpp: 4,153; ruby: 1,594; yacc: 843; xml: 82; sed: 12; sql: 6
file content (3636 lines) | stat: -rw-r--r-- 111,614 bytes parent folder | download
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
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
/*  Part of SWI-Prolog

    Author:        Jan Wielemaker
    E-mail:        J.Wielemaker@cs.vu.nl
    WWW:           http://www.swi-prolog.org
    Copyright (C): 1985-2015, University of Amsterdam
			      VU University Amsterdam

    This program is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public License
    as published by the Free Software Foundation; either version 2
    of the License, or (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU Lesser General Public
    License along with this library; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA

    As a special exception, if you link this library with other files,
    compiled with a Free Software compiler, to produce an executable, this
    library does not by itself cause the resulting executable to be covered
    by the GNU General Public License. This exception does not however
    invalidate any other reasons why the executable file might be covered by
    the GNU General Public License.
*/

:- module(rdf_db,
	  [ rdf_version/1,		% -Version

	    rdf/3,			% ?Subject, ?Predicate, ?Object
	    rdf/4,			% ?Subject, ?Predicate, ?Object, ?DB
	    rdf_has/3,			% ?Subject, +Pred, ?Obj
	    rdf_has/4,			% ?Subject, +Pred, ?Obj, -RealPred
	    rdf_reachable/3,		% ?Subject, +Pred, ?Object
	    rdf_reachable/5,		% ?Subject, +Pred, ?Object, +MaxD, ?D
	    rdf_resource/1,		% ?Resource
	    rdf_subject/1,		% ?Subject

	    rdf_member_property/2,	% ?Property, ?Index

	    rdf_assert/3,		% +Subject, +Predicate, +Object
	    rdf_assert/4,		% +Subject, +Predicate, +Object, +DB
	    rdf_retractall/3,		% ?Subject, ?Predicate, ?Object
	    rdf_retractall/4,		% ?Subject, ?Predicate, ?Object, +DB
	    rdf_update/4,		% +Subject, +Predicate, +Object, +Act
	    rdf_update/5,		% +Subject, +Predicate, +Object, +Src, +Act
	    rdf_set_predicate/2,	% +Predicate, +Property
	    rdf_predicate_property/2,	% +Predicate, ?Property
	    rdf_current_predicate/1,	% -Predicate
	    rdf_current_literal/1,	% -Literal
	    rdf_transaction/1,		% :Goal
	    rdf_transaction/2,		% :Goal, +Id
	    rdf_transaction/3,		% :Goal, +Id, +Options
	    rdf_active_transaction/1,	% ?Id

	    rdf_monitor/2,		% :Goal, +Options

	    rdf_save_db/1,		% +File
	    rdf_save_db/2,		% +File, +DB
	    rdf_load_db/1,		% +File
	    rdf_reset_db/0,

	    rdf_node/1,			% -Id
	    rdf_bnode/1,		% -Id
	    rdf_is_bnode/1,		% +Id

	    rdf_is_resource/1,		% +Term
	    rdf_is_literal/1,		% +Term
	    rdf_literal_value/2,	% +Term, -Value

	    rdf_load/1,			% +File
	    rdf_load/2,			% +File, +Options
	    rdf_save/1,			% +File
	    rdf_save/2,			% +File, +Options
	    rdf_unload/1,		% +File
	    rdf_unload_graph/1,		% +Graph

	    rdf_md5/2,			% +DB, -MD5
	    rdf_atom_md5/3,		% +Text, +Times, -MD5

	    rdf_create_graph/1,		% ?Graph
	    rdf_graph_property/2,	% ?Graph, ?Property
	    rdf_set_graph/2,		% +Graph, +Property
	    rdf_graph/1,		% ?Graph
	    rdf_source/1,		% ?File
	    rdf_source/2,		% ?DB, ?SourceURL
	    rdf_make/0,			% Reload modified databases
	    rdf_gc/0,			% Garbage collection

	    rdf_source_location/2,	% +Subject, -Source
	    rdf_statistics/1,		% -Key
	    rdf_set/1,			% +Term
	    rdf_generation/1,		% -Generation
	    rdf_snapshot/1,		% -Snapshot
	    rdf_delete_snapshot/1,	% +Snapshot
	    rdf_current_snapshot/1,	% +Snapshot
	    rdf_estimate_complexity/4,	% +S,+P,+O,-Count

	    rdf_save_subject/3,		% +Stream, +Subject, +DB
	    rdf_save_header/2,		% +Out, +Options
	    rdf_save_footer/1,		% +Out

	    rdf_equal/2,		% ?Resource, ?Resource
	    lang_equal/2,		% +Lang1, +Lang2
	    lang_matches/2,		% +Lang, +Pattern

	    rdf_current_prefix/2,	% ?Alias, ?URI
	    rdf_register_prefix/2,	% +Alias, +URI
	    rdf_register_prefix/3,	% +Alias, +URI, +Options
	    rdf_current_ns/2,		% ?Alias, ?URI
	    rdf_register_ns/2,		% +Alias, +URI
	    rdf_register_ns/3,		% +Alias, +URI, +Options
	    rdf_global_id/2,		% ?NS:Name, ?Global
	    rdf_global_object/2,	% ?Object, ?NSExpandedObject
	    rdf_global_term/2,		% Term, WithExpandedNS

	    rdf_match_label/3,		% +How, +String, +Label
	    rdf_split_url/3,		% ?Base, ?Local, ?URL
	    rdf_url_namespace/2,	% +URL, ?Base

	    rdf_warm_indexes/0,
	    rdf_warm_indexes/1,		% +Indexed
	    rdf_update_duplicates/0,

	    rdf_debug/1,		% Set verbosity

	    rdf_new_literal_map/1,	% -Handle
	    rdf_destroy_literal_map/1,	% +Handle
	    rdf_reset_literal_map/1,	% +Handle
	    rdf_insert_literal_map/3,	% +Handle, +Key, +Literal
	    rdf_insert_literal_map/4,	% +Handle, +Key, +Literal, -NewKeys
	    rdf_delete_literal_map/3,	% +Handle, +Key, +Literal
	    rdf_delete_literal_map/2,	% +Handle, +Key
	    rdf_find_literal_map/3,	% +Handle, +KeyList, -Literals
	    rdf_keys_in_literal_map/3,	% +Handle, +Spec, -Keys
	    rdf_statistics_literal_map/2, % +Handle, +Name(-Arg...)

	    rdf_graph_prefixes/2,	% ?Graph, -Prefixes
	    rdf_graph_prefixes/3,	% ?Graph, -Prefixes, :Filter

	    (rdf_meta)/1,		% +Heads
	    op(1150, fx, (rdf_meta))
	  ]).
:- use_module(library(rdf)).
:- use_module(library(lists)).
:- use_module(library(shlib)).
:- use_module(library(gensym)).
:- use_module(library(sgml)).
:- use_module(library(sgml_write)).
:- use_module(library(option)).
:- use_module(library(error)).
:- use_module(library(uri)).
:- use_module(library(debug)).
:- use_module(library(apply)).
:- use_module(library(xsdp_types)).
:- if(exists_source(library(thread))).
:- use_module(library(thread)).
:- endif.
:- use_module(library(semweb/rdf_cache)).

:- use_foreign_library(foreign(rdf_db)).
:- public rdf_print_predicate_cloud/2.	% print matrix of reachable predicates

:- meta_predicate
	rdf_transaction(0),
	rdf_transaction(0, +),
	rdf_transaction(0, +, +),
	rdf_monitor(1, +),
	rdf_save(+, :),
	rdf_load(+, :).

:- predicate_options(rdf_graph_prefixes/3, 3,
		     [expand(callable), filter(callable), min_count(nonneg)]).
:- predicate_options(rdf_load/2, 2,
		     [ base_uri(atom),
		       cache(boolean),
		       concurrent(positive_integer),
		       db(atom),
		       format(oneof([xml,triples,turtle,trig,nquads,ntriples])),
		       graph(atom),
		       if(oneof([true,changed,not_loaded])),
		       modified(-float),
		       silent(boolean),
		       register_namespaces(boolean)
		     ]).
:- predicate_options(rdf_register_ns/3, 3, [force(boolean), keep(boolean)]).
:- predicate_options(rdf_save/2, 2,
		     [ graph(atom),
		       db(atom),
		       anon(boolean),
		       base_uri(atom),
		       write_xml_base(boolean),
		       convert_typed_literal(callable),
		       encoding(encoding),
		       document_language(atom),
		       namespaces(list(atom)),
		       xml_attributes(boolean),
		       inline(boolean)
		     ]).
:- predicate_options(rdf_save_header/2, 2,
		     [ graph(atom),
		       db(atom),
		       namespaces(list(atom))
		     ]).
:- predicate_options(rdf_save_subject/3, 3,
		     [ graph(atom),
		       base_uri(atom),
		       convert_typed_literal(callable),
		       document_language(atom)
		     ]).
:- predicate_options(rdf_transaction/3, 3,
		     [ snapshot(any)
		     ]).

:- multifile
	ns/2,
	rdf_meta_specification/3.	% UnboundHead, Module, Head
:- dynamic
	ns/2.			% ID, URL
:- discontiguous
	term_expansion/2.

/** <module> Core RDF database

The file library(semweb/rdf_db) provides the core  of the SWI-Prolog RDF
store.
*/

		 /*******************************
		 *	     PREFIXES		*
		 *******************************/

%%	rdf_current_prefix(?Alias, ?URI) is nondet.
%
%	Query   predefined   prefixes   and    prefixes   defined   with
%	rdf_register_ns/2. If Alias is unbound and one URI is the prefix
%	of another, the longest is returned first. This allows turning a
%	resource into a prefix/local couple using the simple enumeration
%	below. See rdf_global_id/2.
%
%	  ==
%	  rdf_current_prefix(Prefix, Expansion),
%	  atom_concat(Expansion, Local, URI),
%	  ==

rdf_current_prefix(Alias, URI) :-
	ns(Alias, URI).

%%	ns(?Alias, ?URI) is nondet.
%
%	Dynamic and multifile predicate that   maintains  the registered
%	namespace aliases.
%
%	@deprecated New code  must  modify   the  namespace  table using
%	rdf_register_ns/3 and query using rdf_current_ns/2.

ns(rdf,	    'http://www.w3.org/1999/02/22-rdf-syntax-ns#').
ns(rdfs,    'http://www.w3.org/2000/01/rdf-schema#').
ns(owl,	    'http://www.w3.org/2002/07/owl#').
ns(xsd,	    'http://www.w3.org/2001/XMLSchema#').
ns(dc,	    'http://purl.org/dc/elements/1.1/').
ns(dcterms, 'http://purl.org/dc/terms/').
ns(eor,	    'http://dublincore.org/2000/03/13/eor#').
ns(skos,    'http://www.w3.org/2004/02/skos/core#').
ns(foaf,    'http://xmlns.com/foaf/0.1/').
ns(void,    'http://rdfs.org/ns/void#').
ns(serql,   'http://www.openrdf.org/schema/serql#').

%%	rdf_register_prefix(+Prefix, +URI) is det.
%%	rdf_register_prefix(+Prefix, +URI, +Options) is det.
%
%	Register Prefix as an abbreviation for URI. Options:
%
%		* force(Boolean)
%		If =true=, Replace existing namespace alias. Please note
%		that replacing a namespace is dangerous as namespaces
%		affect preprocessing. Make sure all code that depends on
%		a namespace is compiled after changing the registration.
%
%		* keep(Boolean)
%		If =true= and Alias is already defined, keep the
%		original message and succeed silently.
%
%	Without options, an attempt  to  redefine   an  alias  raises  a
%	permission error.
%
%	Predefined prefixes are:
%
%	| rdf	  | http://www.w3.org/1999/02/22-rdf-syntax-ns#' |
%	| rdfs	  | http://www.w3.org/2000/01/rdf-schema#'	 |
%	| owl	  | http://www.w3.org/2002/07/owl#'		 |
%	| xsd	  | http://www.w3.org/2001/XMLSchema#'		 |
%	| dc	  | http://purl.org/dc/elements/1.1/'		 |
%	| dcterms | http://purl.org/dc/terms/'			 |
%	| eor	  | http://dublincore.org/2000/03/13/eor#'	 |
%	| skos	  | http://www.w3.org/2004/02/skos/core#'	 |
%	| serql	  | http://www.openrdf.org/schema/serql#'	 |


rdf_register_prefix(Alias, URI) :-
	rdf_register_prefix(Alias, URI, []).

rdf_register_prefix(Alias, URI, _) :-
	ns(Alias, URI), !.
rdf_register_prefix(Alias, URI, Options) :-
	ns(Alias, _), !,
	(   option(force(true), Options, false)
	->  retractall(ns(Alias, _)),
	    rdf_register_prefix(Alias, URI, Options)
	;   option(keep(true), Options, false)
	->  true
	;   throw(error(permission_error(register, namespace, Alias),
			context(_, 'Already defined')))
	).
rdf_register_prefix(Alias, URI, _) :-
	findall(P-U, prefix_conflict(URI, P, U), Pairs),
	order_prefixes([Alias-URI|Pairs], Ordered),
	forall(member(P-U, Pairs), retract(ns(P,U))),
	forall(member(P-U, Ordered), assert(ns(P,U))).

prefix_conflict(URI, P, U) :-
	ns(P,U),
	(   sub_atom(URI, 0, _, _, U)
	->  true
	;   sub_atom(U, 0, _, _, URI)
	).

order_prefixes(Pairs, Sorted) :-
	map_list_to_pairs(prefix_uri_length, Pairs, ByLen),
	sort(1, >=, ByLen, SortedByLen),
	pairs_values(SortedByLen, Sorted).

prefix_uri_length(_-URI, Len) :-
	atom_length(URI, Len).

%%	rdf_current_ns(?Prefix, ?URI) is nondet.
%
%	@deprecated.  Use rdf_current_prefix/2.

rdf_current_ns(Prefix, URI) :-
	rdf_current_prefix(Prefix, URI).

%%	rdf_register_ns(?Prefix, ?URI) is det.
%
%	@deprecated.  Use rdf_register_prefix/2.

%%	rdf_register_ns(?Prefix, ?URI, +Options) is det.
%
%	@deprecated.  Use rdf_register_prefix/3.

rdf_register_ns(Prefix, URI) :-
	rdf_register_prefix(Prefix, URI).
rdf_register_ns(Prefix, URI, Options) :-
	rdf_register_prefix(Prefix, URI, Options).



%%	register_file_ns(+Map:list(pair)) is det.
%
%	Register a namespace as encounted in   the  namespace list of an
%	RDF document. We only register if  both the abbreviation and URL
%	are not already known. Is there a   better  way? This code could
%	also do checks on the consistency   of  RDF and other well-known
%	namespaces.
%
%	@tbd	Better error handling

register_file_ns([]) :- !.
register_file_ns([Decl|T]) :- !,
	register_file_ns(Decl),
	register_file_ns(T).
register_file_ns([]=_) :- !.		% xmlns= (overall default)
register_file_ns(NS=URL) :- !,		% compatibility
	register_file_ns(NS-URL).
register_file_ns(NS-URL) :-
	(   ns(NS, URL)
	->  true
	;   ns(NS, _)
	->  true			% redefined abbreviation
	;   ns(_, URL)
	->  true			% redefined URL
	;   rdf_register_ns(NS, URL)
	).


%%	rdf_global_id(?Id, ?GlobalId) is det.
%
%	Convert between NS:Local and global atomic identifier.
%	To be completed.

rdf_global_id(NS:Local, Global) :-
	global(NS, Local, Global), !.
rdf_global_id(Global, Global).


%%	rdf_global_object(+Object, -GlobalObject) is semidet.
%%	rdf_global_object(-Object, +GlobalObject) is semidet.
%
%	Same as rdf_global_id/2,  but  intended   for  dealing  with the
%	object part of a  triple,  in   particular  the  type  for typed
%	literals.
%
%	@error	existence_error(rdf_namespace, NS)

rdf_global_object(NS:Local, Global) :-
	global(NS, Local, Global), !.
rdf_global_object(literal(type(NS:Local, Value)),
		  literal(type(Global, Value))) :-
	global(NS, Local, Global), !.
rdf_global_object(literal(Query, type(NS:Local, Value)),
		  literal(Query, type(Global, Value))) :-
	global(NS, Local, Global), !.
rdf_global_object(Global, Global).

global(NS, Local, Global) :-
	(   atom(Global)
	->  ns(NS, Full),
	    atom_concat(Full, Local, Global)
	;   atom(NS), atom(Local)
	->  (   ns(NS, Full)
	    *->	atom_concat(Full, Local, Global)
	    ;	current_prolog_flag(xref, true)
	    ->	Global = NS:Local
	    ;	existence_error(rdf_namespace, NS)
	    )
	).


%%	rdf_global_term(+TermIn, -GlobalTerm) is det.
%
%	Does rdf_global_id/2 on all terms NS:Local by recursively analysing
%	the term.

rdf_global_term(Var, Var) :-
	var(Var), !.
rdf_global_term(NS:Local, Global) :-
	atom(NS), atom(Local), ns(NS, Full), !,
	atom_concat(Full, Local, Global).
rdf_global_term([H0|T0], [H|T]) :- !,
	rdf_global_term(H0, H),
	rdf_global_term(T0, T).
rdf_global_term(Term0, Term) :-
	compound(Term0), !,
	Term0 =.. [H|L0],
	rdf_global_term(L0, L),
	Term =.. [H|L].
rdf_global_term(Term, Term).

%%	rdf_global_graph(+TermIn, -GlobalTerm) is det.
%
%	Preforms rdf_global_id/2 on rdf/4, etc graph arguments

rdf_global_graph(NS:Local, Global) :-
	atom(NS), atom(Local), !,
	global(NS, Local, Global).
rdf_global_graph(G, G).


		 /*******************************
		 *	      EXPANSION		*
		 *******************************/

:- multifile
	system:term_expansion/2,
	system:goal_expansion/2.

system:term_expansion((:- rdf_meta(Heads)), Clauses) :-
	prolog_load_context(module, M),
	mk_clauses(Heads, M, Clauses).

mk_clauses((A,B), M, [H|T]) :- !,
	mk_clause(A, M, H),
	mk_clauses(B, M, T).
mk_clauses(A, M, [C]) :-
	mk_clause(A, M, C).

mk_clause(Head0, M0, rdf_db:rdf_meta_specification(Unbound, Module, Head)) :-
	strip_module(M0:Head0, Module, Head),
	valid_rdf_meta_head(Head),
	functor(Head, Name, Arity),
	functor(Unbound, Name, Arity).

valid_rdf_meta_head(Head) :-
	callable(Head), !,
	Head =.. [_|Args],
	valid_args(Args).
valid_rdf_meta_head(Head) :-
	throw(error(type_error(callable, Head), _)).

valid_args([]).
valid_args([H|T]) :-
	valid_arg(H), !,
	valid_args(T).

valid_arg(:).				% meta argument
valid_arg(+).				% non-var
valid_arg(-).				% var
valid_arg(?).				% either var or non-var
valid_arg(@).				% not modified
valid_arg(r).				% RDF resource
valid_arg(o).				% RDF object
valid_arg(t).				% term with RDF resources
valid_arg(g).				% graph argument
valid_arg(A) :-
	throw(error(type_error(rdf_meta_argument, A), _)).

%%	rdf_meta(+Heads)
%
%	This  directive  defines  the  argument    types  of  the  named
%	predicates, which will force compile   time  namespace expansion
%	for these predicates. Heads is a coma-separated list of callable
%	terms. Defined argument properties are:
%
%	  $ : :
%	  Argument is a goal. The goal is processed using expand_goal/2,
%	  recursively applying goal transformation on the argument.
%
%	  $ + :
%         The argument is instantiated at entry. Nothing is changed.
%
%	  $ - :
%	  The argument is not instantiated at entry. Nothing is changed.
%
%	  $ ? :
%	  The argument is unbound or instantiated at entry. Nothing is
%	  changed.
%
%	  $ @ :
%	  The argument is not changed.
%
%	  $ r :
%         The argument must be a resource. If it is a term
%         _prefix_:_local_ it is translated.
%
%	  $ o :
%	  The argument is an object or resource. See
%	  rdf_global_object/2.
%
%	  $ t :
%	  The argument is a term that must be translated. Expansion will
%	  translate all occurences of _prefix_:_local_ appearing
%	  anywhere in the term. See rdf_global_term/2.
%
%	As it is subject to term_expansion/2, the rdf_meta/1 declaration
%	can only be used as a directive. The directive must be processed
%	before the definition of  the  predicates   as  well  as  before
%	compiling code that  uses  the   rdf  meta-predicates.  The atom
%	=rdf_meta=  is  declared   as   an    operator   exported   from
%	library(semweb/rdf_db). Files using rdf_meta/1  must explicitely
%	load this library.

rdf_meta(Heads) :-
	throw(error(context_error(nodirective, rdf_meta(Heads)), _)).


system:goal_expansion(G, Expanded) :-
	rdf_meta_specification(G, _, _), !,
	prolog_load_context(module, LM),
	(   rdf_meta_specification(G, Module, Spec),
	    right_module(LM, G, Module)
	->  rdf_expand(G, Spec, Expanded)
	;   debugging(rdf_meta),
	    sub_term(G, NS:Local),
	    atom(NS), atom(Local)
	->  print_message(warning, rdf(meta(not_expanded(LM:G)))),
	    fail
	),
	rdf_expand(G, Spec, Expanded).

system:term_expansion(Fact, Expanded) :-
	rdf_meta_specification(Fact, Module, Spec),
	prolog_load_context(module, Module), !,
	rdf_expand(Fact, Spec, Expanded).
system:term_expansion((Head :- Body), (Expanded :- Body)) :-
	rdf_meta_specification(Head, Module, Spec),
	prolog_load_context(module, Module), !,
	rdf_expand(Head, Spec, Expanded).


right_module(M, _, M) :- !.
right_module(LM, G, M) :-
	predicate_property(LM:G, imported_from(M)).

rdf_expand(G, Spec, Expanded) :-
	functor(G, Name, Arity),
	functor(Expanded, Name, Arity),
	rdf_expand_args(0, Arity, G, Spec, Expanded).

rdf_expand_args(Arity, Arity, _, _, _) :- !.
rdf_expand_args(I0, Arity, Goal, Spec, Expanded) :-
	I is I0 + 1,
	arg(I, Goal, GA),
	arg(I, Spec, SA),
	arg(I, Expanded, EA),
	rdf_expand_arg(SA, GA, EA),
	rdf_expand_args(I, Arity, Goal, Spec, Expanded).

rdf_expand_arg(r, A, E) :-
	mk_global(A, E), !.
rdf_expand_arg(o, A, E) :-
	rdf_global_object(A, E), !.
rdf_expand_arg(t, A, E) :-
	rdf_global_term(A, E), !.
rdf_expand_arg(g, A, E) :-
	rdf_global_graph(A, E), !.
rdf_expand_arg(:, A, E) :- !,
	expand_goal(A, E).
rdf_expand_arg(_, A, A).

%%	mk_global(+Src, -Resource)
%
%	Realised rdf_global_id(+, -), but adds compiletime checking,
%	notably to see whether a namespace is not yet defined.

mk_global(X, X) :-
	var(X), !.
mk_global(X, X) :-
	atom(X), !.
mk_global(NS:Local, Global) :-
	must_be(atom, NS),
	must_be(atom, Local),
	(   ns(NS, Full)
	->  atom_concat(Full, Local, Global)
	;   current_prolog_flag(xref, true)
	->  Global = NS:Local
	;   existence_error(namespace, NS)
	).

:- rdf_meta
	rdf(r,r,o),
	rdf_has(r,r,o,r),
	rdf_has(r,r,o),
	rdf_assert(r,r,o),
	rdf_retractall(r,r,o),
	rdf(r,r,o,?),
	rdf_assert(r,r,o,+),
	rdf_retractall(r,r,o,?),
	rdf_reachable(r,r,o),
	rdf_reachable(r,r,o,+,?),
	rdf_update(r,r,o,t),
	rdf_update(r,r,o,+,t),
	rdf_equal(r,r),
	rdf_source_location(r,-),
	rdf_resource(r),
	rdf_subject(r),
	rdf_create_graph(r),
	rdf_graph(r),
	rdf_unload_graph(r),
	rdf_set_predicate(r, t),
	rdf_predicate_property(r, -),
	rdf_estimate_complexity(r,r,r,-),
	rdf_print_predicate_cloud(r,+).

%%	rdf_equal(?Resource1, ?Resource2)
%
%	Simple equality test to exploit goal-expansion

rdf_equal(Resource, Resource).

%%	lang_equal(+Lang1, +Lang2) is semidet.
%
%	True if two RFC language specifiers denote the same language
%
%	@see lang_matches/2.

lang_equal(Lang, Lang) :- !.
lang_equal(Lang1, Lang2) :-
	downcase_atom(Lang1, LangCannon),
	downcase_atom(Lang2, LangCannon).

%%	lang_matches(+Lang, +Pattern) is semidet.
%
%	True if Lang  matches  Pattern.   This  implements  XML language
%	matching  conform  RFC  4647.   Both    Lang   and  Pattern  are
%	dash-separated strings of  identifiers  or   (for  Pattern)  the
%	wildcart *. Identifiers are  matched   case-insensitive  and a *
%	matches any number of identifiers. A   short pattern is the same
%	as *.


		 /*******************************
		 *     BASIC TRIPLE QUERIES	*
		 *******************************/

%%	rdf(?Subject, ?Predicate, ?Object) is nondet.
%
%	Elementary query for triples. Subject   and  Predicate are atoms
%	representing the fully qualified URL of  the resource. Object is
%	either an atom representing a resource  or literal(Value) if the
%	object  is  a  literal  value.   If    a   value   of  the  form
%	NameSpaceID:LocalName is provided it  is   expanded  to a ground
%	atom  using  expand_goal/2.  This  implies   you  can  use  this
%	construct in compiled code without paying a performance penalty.
%	Literal values take one of the following forms:
%
%	  * Atom
%	  If the value is a simple atom it is the textual representation
%	  of a string literal without explicit type or language
%	  qualifier.
%
%	  * lang(LangID, Atom)
%	  Atom represents the text of a string literal qualified with
%	  the given language.
%
%	  * type(TypeID, Value)
%	  Used for attributes qualified using the =|rdf:datatype|=
%	  TypeID. The Value is either the textual representation or a
%	  natural Prolog representation. See the option
%	  convert_typed_literal(:Convertor) of the parser. The storage
%	  layer provides efficient handling of atoms, integers (64-bit)
%	  and floats (native C-doubles). All other data is represented
%	  as a Prolog record.
%
%	For literal querying purposes, Object can be of the form
%	literal(+Query, -Value), where Query is one of the terms below.
%
%	  * plain(+Text)
%	  Perform exact match and demand the language or type qualifiers
%	  to match. This query is fully indexed.
%
%	  * exact(+Text)
%	  Perform exact, but case-insensitive match. This query is
%	  fully indexed.
%
%	  * substring(+Text)
%	  Match any literal that contains Text as a case-insensitive
%	  substring. The query is not indexed on Object.
%
%	  * word(+Text)
%	  Match any literal that contains Text delimited by a non
%	  alpha-numeric character, the start or end of the string. The
%	  query is not indexed on Object.
%
%	  * prefix(+Text)
%	  Match any literal that starts with Text. This call is intended
%	  for completion. The query is indexed using the skip list of
%	  literals.
%
%	  * ge(+Literal)
%	  Match any literal that is equal or larger then Literal in the
%	  ordered set of literals.
%
%	  * le(+Literal)
%	  Match any literal that is equal or smaller then Literal in the
%	  ordered set of literals.
%
%	  * between(+Literal1, +Literal2)
%	  Match any literal that is between Literal1 and Literal2 in the
%	  ordered set of literals. This may include both Literal1 and
%	  Literal2.
%
%	  * like(+Pattern)
%	  Match any literal that matches Pattern case insensitively,
%	  where the `*' character in Pattern matches zero or more
%	  characters.
%
%	Backtracking never returns duplicate triples.  Duplicates can be
%	retrieved using rdf/4. The predicate   rdf/3 raises a type-error
%	if called with improper arguments.  If   rdf/3  is called with a
%	term  literal(_)  as  Subject  or   Predicate  object  it  fails
%	silently.  This  allows   for   graph    matching   goals   like
%	rdf(S,P,O),rdf(O,P2,O2) to proceed without errors.

%%	rdf(?Subject, ?Predicate, ?Object, ?Source) is nondet.
%
%	As rdf/3 but in addition query  the   graph  to which the triple
%	belongs. Unlike rdf/3, this predicate does not remove duplicates
%	from the result set.
%
%	@param Source is a term Graph:Line.  If Source is instatiated,
%	passing an atom is the same as passing Atom:_.


%%	rdf_has(?Subject, +Predicate, ?Object) is nondet.
%
%	Succeeds if the triple rdf(Subject,   Predicate, Object) is true
%	exploiting the rdfs:subPropertyOf predicate as   well as inverse
%	predicates   declared   using   rdf_set_predicate/2   with   the
%	=inverse_of= property.

%%	rdf_has(?Subject, +Predicate, ?Object, -RealPredicate) is nondet.
%
%	Same as rdf_has/3, but RealPredicate is   unified  to the actual
%	predicate that makes this relation   true. RealPredicate must be
%	Predicate or an rdfs:subPropertyOf  Predicate.   If  an  inverse
%	match is found, RealPredicate is the term inverse_of(Pred).

%%	rdf_reachable(?Subject, +Predicate, ?Object) is nondet.
%
%	Is true if Object can  be   reached  from  Subject following the
%	transitive predicate Predicate or a  sub-property thereof, while
%	repecting the symetric(true) or inverse_of(P2) properties.
%
%	If used with either Subject or  Object unbound, it first returns
%	the origin, followed by  the   reachable  nodes  in breath-first
%	search-order. The implementation internally   looks one solution
%	ahead and succeeds deterministically on  the last solution. This
%	predicate never generates the same  node   twice  and  is robust
%	against cycles in the transitive relation.
%
%	With all arguments instantiated,   it succeeds deterministically
%	if a path can be found from  Subject to Object. Searching starts
%	at Subject, assuming the branching factor   is normally lower. A
%	call  with  both  Subject   and    Object   unbound   raises  an
%	instantiation  error.  The  following    example  generates  all
%	subclasses of rdfs:Resource:
%
%	  ==
%	  ?- rdf_reachable(X, rdfs:subClassOf, rdfs:'Resource').
%	  X = 'http://www.w3.org/2000/01/rdf-schema#Resource' ;
%	  X = 'http://www.w3.org/2000/01/rdf-schema#Class' ;
%	  X = 'http://www.w3.org/1999/02/22-rdf-syntax-ns#Property' ;
%	  ...
%	  ==


%%	rdf_reachable(?Subject, +Predicate, ?Object, +MaxD, -D) is nondet.
%
%	Same as rdf_reachable/3, but in addition, MaxD limits the number
%	of edges expanded and D is   unified with the `distance' between
%	Subject and Object. Distance 0 means  Subject and Object are the
%	same resource. MaxD can be the  constant =infinite= to impose no
%	distance-limit.

%%	rdf_subject(?Resource) is nondet.
%
%	True if Resource appears as a   subject. This query respects the
%	visibility rules implied by the logical update view.
%
%	@see rdf_resource/1.

rdf_subject(Resource) :-
	rdf_resource(Resource),
	( rdf(Resource, _, _) -> true ).

%%	rdf_resource(?Resource) is nondet.
%
%	True when Resource is a resource used as a subject or object in
%	a triple.
%
%	This predicate is primarily intended  as   a  way to process all
%	resources without processing resources twice.   The user must be
%	aware that some of the returned resources  may not appear in any
%	_visible_ triple.


		 /*******************************
		 *     TRIPLE MODIFICATIONS	*
		 *******************************/

%%	rdf_assert(+Subject, +Predicate, +Object) is det.
%
%	Assert a new triple into  the   database.  This is equivalent to
%	rdf_assert/4 using Graph  =user=.  Subject   and  Predicate  are
%	resources. Object is either a resource or a term literal(Value).
%	See rdf/3 for an explanation  of   Value  for typed and language
%	qualified literals. All arguments  are   subject  to  name-space
%	expansion. Complete duplicates (including  the   same  graph and
%	`line' and with a compatible `lifespan')   are  not added to the
%	database.

%%	rdf_assert(+Subject, +Predicate, +Object, +Graph) is det.
%
%	As rdf_assert/3, adding the  predicate   to  the indicated named
%	graph.
%
%	@param Graph is either the name of a   graph (an atom) or a term
%	Graph:Line, where Line is an integer that denotes a line number.

%%	rdf_retractall(?Subject, ?Predicate, ?Object) is det.
%
%	Remove   all   matching   triples   from    the   database.   As
%	rdf_retractall/4 using an unbound graph.

%%	rdf_retractall(?Subject, ?Predicate, ?Object, ?Graph) is det.
%
%	As rdf_retractall/3, also matching Graph.   This  is particulary
%	useful to remove all triples coming from a loaded file. See also
%	rdf_unload/1.

%%	rdf_update(+Subject, +Predicate, +Object, +Action) is det.
%
%	Replaces one of  the  three  fields   on  the  matching  triples
%	depending on Action:
%
%	  * subject(Resource)
%	  Changes the first field of the triple.
%	  * predicate(Resource)
%         Changes the second field of the triple.
%	  * object(Object)
%	  Changes the last field of the triple to the given resource or
%	  literal(Value).
%	  * graph(Graph)
%	  Moves the triple from its current named graph to Graph.

%%	rdf_update(+Subject, +Predicate, +Object, +Graph, +Action) is det
%
%	As rdf_update/4 but allows for specifying the graph.


		 /*******************************
		 *	    COLLECTIONS		*
		 *******************************/

%%	rdf_member_property(?Prop, ?Index)
%
%	Deal with the rdf:_1, ... properties.

term_expansion(member_prefix(x),
	       member_prefix(Prefix)) :-
	rdf_db:ns(rdf, NS),
	atom_concat(NS, '_', Prefix).
member_prefix(x).

rdf_member_property(P, N) :-
	integer(N), !,
	member_prefix(Prefix),
	atom_concat(Prefix, N, P).
rdf_member_property(P, N) :-
	member_prefix(Prefix),
	atom_concat(Prefix, Sub, P),
	atom_number(Sub, N).


		 /*******************************
		 *	ANONYMOUS SUBJECTS	*
		 *******************************/

%%	rdf_node(-Id)
%
%	Generate a unique blank node identifier for a subject.
%
%	@deprecated	New code should use rdf_bnode/1.

rdf_node(Resource) :-
	rdf_bnode(Resource).

%%	rdf_bnode(-Id)
%
%	Generate a unique anonymous identifier for a subject.

rdf_bnode(Value) :-
	repeat,
	gensym('__bnode', Value),
	\+ rdf(Value, _, _),
	\+ rdf(_, _, Value),
	\+ rdf(_, Value, _), !.



		 /*******************************
		 *	       TYPES		*
		 *******************************/

%%	rdf_is_bnode(+Id)
%
%	Tests if a resource is a blank node (i.e. is an anonymous
%	resource).
%
%	@see rdf_bnode/1.

rdf_is_bnode(Id) :-
	atom(Id),
	sub_atom(Id, 0, _, _, '__').

%%	rdf_is_resource(@Term) is semidet.
%
%	True if Term is an RDF  resource.   Note  that  this is merely a
%	type-test; it does not mean  this   resource  is involved in any
%	triple.  Blank nodes are also considered resources.
%
%	@see rdf_is_bnode/1

rdf_is_resource(Term) :-
	atom(Term).

%%	rdf_is_literal(@Term) is semidet.
%
%	True if Term is an RDF literal object. Currently only checks for
%	groundness and the literal functor.

rdf_is_literal(literal(Value)) :-
	ground(Value).

		 /*******************************
		 *	       LITERALS		*
		 *******************************/

%%	rdf_current_literal(-Literal) is nondet.
%
%	True when Literal is a currently  known literal. Enumerates each
%	unique literal exactly once. Note that   it is possible that the
%	literal only appears in already deleted triples. Deleted triples
%	may be locked due to active   queries, transactions or snapshots
%	or may not yet be reclaimed by the garbage collector.


%%	rdf_literal_value(+Literal, -Value) is semidet.
%
%	True when value is  the   appropriate  Prolog  representation of
%	Literal in the RDF _|value space|_.  Current mapping:
%
%	  | Plain literals		| Atom			  |
%	  | Language tagged literal	| Atom holding plain text |
%	  | xsd:string			| Atom			  |
%	  | rdf:XMLLiteral		| XML DOM Tree		  |
%	  | Numeric XSD type		| Number		  |
%
%	@tbd	Well, this is the long-term idea.
%	@tbd	Add mode (-,+)

:- rdf_meta
	rdf_literal_value(o, -),
	typed_value(r, +, -),
	numeric_value(r, +, -).

rdf_literal_value(literal(String), Value) :-
	atom(String), !,
	Value = String.
rdf_literal_value(literal(lang(_Lang, String)), String).
rdf_literal_value(literal(type(Type, String)), Value) :-
	typed_value(Type, String, Value).

typed_value(Numeric, String, Value) :-
	xsdp_numeric_uri(Numeric, NumType), !,
	numeric_value(NumType, String, Value).
typed_value(xsd:string, String, String).
typed_value(rdf:'XMLLiteral', Value, DOM) :-
	(   atom(Value)
	->  setup_call_cleanup(
		( atom_to_memory_file(Value, MF),
		  open_memory_file(MF, read, In, [free_on_close(true)])
		),
		load_structure(stream(In), DOM, [dialect(xml)]),
		close(In))
	;   DOM = Value
	).

numeric_value(xsd:integer, String, Value) :-
	atom_number(String, Value),
	integer(Value).
numeric_value(xsd:float, String, Value) :-
	atom_number(String, Number),
	Value is float(Number).
numeric_value(xsd:double, String, Value) :-
	atom_number(String, Number),
	Value is float(Number).
numeric_value(xsd:decimal, String, Value) :-
	atom_number(String, Value).


		 /*******************************
		 *	      SOURCE		*
		 *******************************/

%%	rdf_source_location(+Subject, -Location) is nondet.
%
%	True when triples for Subject are loaded from Location.
%
%	@param Location is a term File:Line.

rdf_source_location(Subject, Source) :-
	findall(Source, rdf(Subject, _, _, Source), Sources),
	sort(Sources, Unique),
	member(Source, Unique).


		 /*******************************
		 *	 GARBAGE COLLECT	*
		 *******************************/

%%	rdf_create_gc_thread
%
%	Create the garbage collection thread.

:- public
	rdf_create_gc_thread/0.

rdf_create_gc_thread :-
	thread_create(rdf_gc_loop, _,
		      [ alias('__rdf_GC')
		      ]).

%%	rdf_gc_loop
%
%	Take care of running the RDF garbage collection.  This predicate
%	is called from a thread started by creating the RDF DB.

rdf_gc_loop :-
	catch(rdf_gc_loop(0), E, recover_gc(E)).

recover_gc('$aborted') :- !,
	thread_self(Me),
	thread_detach(Me).
recover_gc(Error) :-
	print_message(error, Error),
	rdf_gc_loop.

rdf_gc_loop(CPU) :-
	repeat,
	(   consider_gc(CPU)
	->  rdf_gc(CPU1),
	    sleep(CPU1)
	;   sleep(0.1)
	),
	fail.

%%	rdf_gc(-CPU) is det.
%
%	Run RDF GC one time. CPU is  the   amount  of CPU time spent. We
%	update this in Prolog because portable access to thread specific
%	CPU is really hard in C.

rdf_gc(CPU) :-
	statistics(cputime, CPU0),
	(   rdf_gc_
	->  statistics(cputime, CPU1),
	    CPU is CPU1-CPU0,
	    rdf_add_gc_time(CPU)
	;   CPU = 0.0
	).

%%	rdf_gc is det.
%
%	Run the RDF-DB garbage collector until   no  garbage is left and
%	all  tables  are  fully  optimized.  Under  normal  operation  a
%	seperate thread with  identifier   =__rdf_GC=  performs  garbage
%	collection as long as it is considered `useful'.
%
%	Using rdf_gc/0 should only be  needed   to  ensure a fully clean
%	database for analysis purposes such as leak detection.

rdf_gc :-
	has_garbage, !,
	rdf_gc(_),
	rdf_gc.
rdf_gc.

%%	has_garbage is semidet.
%
%	True if there is something to gain using GC.

has_garbage :-
	rdf_gc_info_(Info),
	has_garbage(Info), !.

has_garbage(Info) :- arg(2, Info, Garbage),     Garbage > 0.
has_garbage(Info) :- arg(3, Info, Reindexed),   Reindexed > 0.
has_garbage(Info) :- arg(4, Info, Optimizable), Optimizable > 0.

%%	consider_gc(+CPU) is semidet.
%
%	@param CPU is the amount of CPU time spent in the most recent
%	GC.

consider_gc(_CPU) :-
	(   rdf_gc_info_(gc_info(Triples,	% Total #triples in DB
				 Garbage,	% Garbage triples in DB
				 Reindexed,	% Reindexed & not reclaimed
				 Optimizable,	% Non-optimized tables
				 _KeepGen,	% Oldest active generation
				 _LastGCGen,    % Oldest active gen at last GC
				 _ReindexGen,
				 _LastGCReindexGen))
	->  (   (Garbage+Reindexed) * 5 > Triples
	    ;	Optimizable > 4
	    )
	;   print_message(error, rdf(invalid_gc_info)),
	    sleep(10)
	), !.


		 /*******************************
		 *	     STATISTICS		*
		 *******************************/

%%	rdf_statistics(?KeyValue) is nondet.
%
%	Obtain statistics on the RDF database.  Defined statistics are:
%
%	  * graphs(-Count)
%	  Number of named graphs
%
%	  * triples(-Count)
%	  Total number of triples in the database.  This is the number
%	  of asserted triples minus the number of retracted ones.  The
%	  number of _visible_ triples in a particular context may be
%	  different due to visibility rules defined by the logical
%	  update view and transaction isolation.
%
%	  * resources(-Count)
%	  Number of resources that appear as subject or object in a
%	  triple.  See rdf_resource/1.
%
%	  * properties(-Count)
%	  Number of current predicates.  See rdf_current_predicate/1.
%
%	  * literals(-Count)
%	  Number of current literals.  See rdf_current_literal/1.
%
%	  * gc(GCCount, ReclaimedTriples, ReindexedTriples, Time)
%	  Information about the garbage collector.
%
%	  * searched_nodes(-Count)
%	  Number of nodes expanded by rdf_reachable/3 and
%	  rdf_reachable/5.
%
%	  * lookup(rdf(S,P,O,G), Count)
%	  Number of queries for this particular instantiation pattern.
%	  Each of S,P,O,G is either + or -.
%
%	  * hash_quality(rdf(S,P,O,G), Buckets, Quality, PendingResize)
%	  Statistics on the index for this pattern.  Indices are created
%	  lazily on the first relevant query.
%
%	  * triples_by_graph(Graph, Count)
%	  This statistics is produced for each named graph. See
%	  =triples= for the interpretation of this value.

rdf_statistics(graphs(Count)) :-
	rdf_statistics_(graphs(Count)).
rdf_statistics(triples(Count)) :-
	rdf_statistics_(triples(Count)).
rdf_statistics(duplicates(Count)) :-
	rdf_statistics_(duplicates(Count)).
rdf_statistics(lingering(Count)) :-
	rdf_statistics_(lingering(Count)).
rdf_statistics(resources(Count)) :-
	rdf_statistics_(resources(Count)).
rdf_statistics(properties(Count)) :-
	rdf_statistics_(predicates(Count)).
rdf_statistics(literals(Count)) :-
	rdf_statistics_(literals(Count)).
rdf_statistics(gc(Count, Reclaimed, Reindexed, Time)) :-
	rdf_statistics_(gc(Count, Reclaimed, Reindexed, Time)).
rdf_statistics(searched_nodes(Count)) :-
	rdf_statistics_(searched_nodes(Count)).
rdf_statistics(lookup(Index, Count)) :-
	functor(Indexed, indexed, 16),
	rdf_statistics_(Indexed),
	index(Index, I),
	Arg is I + 1,
	arg(Arg, Indexed, Count),
	Count \== 0.
rdf_statistics(hash_quality(Index, Size, Quality,Optimize)) :-
	rdf_statistics_(hash_quality(List)),
	member(hash(Place,Size,Quality,Optimize), List),
	index(Index, Place).
rdf_statistics(triples_by_graph(Graph, Count)) :-
	rdf_graph_(Graph, Count).

index(rdf(-,-,-,-), 0).
index(rdf(+,-,-,-), 1).
index(rdf(-,+,-,-), 2).
index(rdf(+,+,-,-), 3).
index(rdf(-,-,+,-), 4).
index(rdf(+,-,+,-), 5).
index(rdf(-,+,+,-), 6).
index(rdf(+,+,+,-), 7).

index(rdf(-,-,-,+), 8).
index(rdf(+,-,-,+), 9).
index(rdf(-,+,-,+), 10).
index(rdf(+,+,-,+), 11).
index(rdf(-,-,+,+), 12).
index(rdf(+,-,+,+), 13).
index(rdf(-,+,+,+), 14).
index(rdf(+,+,+,+), 15).


		 /*******************************
		 *	     PREDICATES		*
		 *******************************/

%%	rdf_current_predicate(?Predicate) is nondet.
%
%	True when Predicate is a   currently known predicate. Predicates
%	are created if a triples is created  that uses this predicate or
%	a property of the predicate   is  set using rdf_set_predicate/2.
%	The predicate may (no longer) have triples associated with it.
%
%	Note that resources that have  =|rdf:type|= =|rdf:Property|= are
%	not automatically included in the  result-set of this predicate,
%	while _all_ resources that appear as   the  second argument of a
%	triple _are_ included.
%
%	@see rdf_predicate_property/2.

rdf_current_predicate(P, DB) :-
	rdf_current_predicate(P),
	(   rdf(_,P,_,DB)
	->  true
	).

%%	rdf_predicate_property(?Predicate, ?Property)
%
%	Query properties of  a  defined   predicate.  Currently  defined
%	properties are given below.
%
%	  * symmetric(Bool)
%	  True if the predicate is defined to be symetric. I.e., {A} P
%	  {B} implies {B} P {A}. Setting symmetric is equivalent to
%	  inverse_of(Self).
%
%	  * inverse_of(Inverse)
%	  True if this predicate is the inverse of Inverse. This
%	  property is used by rdf_has/3, rdf_has/4, rdf_reachable/3 and
%	  rdf_reachable/5.
%
%	  * transitive(Bool)
%	  True if this predicate is transitive. This predicate is
%	  currently not used. It might be used to make rdf_has/3 imply
%	  rdf_reachable/3 for transitive predicates.
%
%	  * triples(Triples)
%	  Unify Triples with the number of existing triples using this
%	  predicate as second argument. Reporting the number of triples
%	  is intended to support query optimization.
%
%	  * rdf_subject_branch_factor(-Float)
%	  Unify Float with the average number of triples associated with
%	  each unique value for the subject-side of this relation. If
%	  there are no triples the value 0.0 is returned. This value is
%	  cached with the predicate and recomputed only after
%	  substantial changes to the triple set associated to this
%	  relation. This property is indented for path optimalisation
%	  when solving conjunctions of rdf/3 goals.
%
%	  * rdf_object_branch_factor(-Float)
%	  Unify Float with the average number of triples associated with
%	  each unique value for the object-side of this relation. In
%	  addition to the comments with the subject_branch_factor
%	  property, uniqueness of the object value is computed from the
%	  hash key rather than the actual values.
%
%	  * rdfs_subject_branch_factor(-Float)
%	  Same as =rdf_subject_branch_factor=, but also considering
%	  triples of `subPropertyOf' this relation. See also rdf_has/3.
%
%	  * rdfs_object_branch_factor(-Float)
%	  Same as =rdf_object_branch_factor=, but also considering
%	  triples of `subPropertyOf' this relation. See also rdf_has/3.
%
%	@see rdf_set_predicate/2.

rdf_predicate_property(P, Prop) :-
	var(P), !,
	rdf_current_predicate(P),
	rdf_predicate_property_(P, Prop).
rdf_predicate_property(P, Prop) :-
	rdf_predicate_property_(P, Prop).

%%	rdf_set_predicate(+Predicate, +Property) is det.
%
%	Define a property of  the   predicate.  This predicate currently
%	supports the following properties:
%
%	    - symmetric(+Boolean)
%	    Set/unset the predicate as being symmetric.  Using
%	    symmetric(true) is the same as inverse_of(Predicate),
%	    i.e., creating a predicate that is the inverse of
%	    itself.
%	    - transitive(+Boolean)
%	    Sets the transitive property.
%	    - inverse_of(+Predicate2)
%	    Define Predicate as the inverse of Predicate2. An inverse
%	    relation is deleted using inverse_of([]).
%
%	The `transitive` property is currently not used. The `symmetric`
%	and `inverse_of` properties are considered   by  rdf_has/3,4 and
%	rdf_reachable/3.
%
%	@tbd	Maintain these properties based on OWL triples.


		 /*******************************
		 *	      SNAPSHOTS		*
		 *******************************/

%%	rdf_snapshot(-Snapshot) is det.
%
%	Take a snapshot of the current state   of  the RDF store. Later,
%	goals may be executed in the  context   of  the database at this
%	moment using rdf_transaction/3 with  the   =snapshot=  option. A
%	snapshot created outside  a  transaction   exists  until  it  is
%	deleted. Snapshots taken inside a transaction   can only be used
%	inside this transaction.

%%	rdf_delete_snapshot(+Snapshot) is det.
%
%	Delete a snapshot as obtained   from  rdf_snapshot/1. After this
%	call, resources used for maintaining the snapshot become subject
%	to garbage collection.

%%	rdf_current_snapshot(?Term) is nondet.
%
%	True when Term is a currently known snapshot.
%
%	@bug	Enumeration of snapshots is slow.

rdf_current_snapshot(Term) :-
	current_blob(Term, rdf_snapshot).


		 /*******************************
		 *	    TRANSACTION		*
		 *******************************/

%%	rdf_transaction(:Goal) is semidet.
%
%	Same as rdf_transaction(Goal, user, []).  See rdf_transaction/3.

%%	rdf_transaction(:Goal, +Id) is semidet.
%
%	Same as rdf_transaction(Goal, Id, []).  See rdf_transaction/3.

%%	rdf_transaction(:Goal, +Id, +Options) is semidet.
%
%	Run Goal in an RDF  transaction.   Compared to the ACID model,
%	RDF transactions have the following properties:
%
%	  1. Modifications inside the transactions become all atomically
%	     visible to the outside world if Goal succeeds or remain
%	     invisible if Goal fails or throws an exception.  I.e.,
%	     the _atomicy_ property is fully supported.
%	  2. _Consistency_ is not guaranteed. Later versions may
%	     implement consistency constraints that will be checked
%	     serialized just before the actual commit of a transaction.
%	  3. Concurrently executing transactions do not infuence each
%	     other.  I.e., the _isolation_ property is fully supported.
%	  4. _Durability_ can be activated by loading
%	     library(semweb/rdf_persistency).
%
%	Processed options are:
%
%	  * snapshot(+Snapshot)
%	  Execute Goal using the state of the RDF store as stored in
%	  Snapshot.  See rdf_snapshot/1.  Snapshot can also be the
%	  atom =true=, which implies that an anonymous snapshot is
%	  created at the current state of the store.  Modifications
%	  due to executing Goal are only visible to Goal.

rdf_transaction(Goal) :-
	rdf_transaction(Goal, user, []).
rdf_transaction(Goal, Id) :-
	rdf_transaction(Goal, Id, []).

%%	rdf_active_transaction(?Id) is nondet.
%
%	True if Id is the identifier of  a transaction in the context of
%	which  this  call  is  executed.  If  Id  is  not  instantiated,
%	backtracking yields transaction identifiers   starting  with the
%	innermost nested transaction. Transaction   identifier terms are
%	not copied, need not be ground   and  can be instantiated during
%	the transaction.

rdf_active_transaction(Id) :-
	rdf_active_transactions_(List),
	member(Id, List).

%%	rdf_monitor(:Goal, +Options)
%
%	Call Goal if specified actions occur on the database.

rdf_monitor(Goal, Options) :-
	monitor_mask(Options, 0xffff, Mask),
	rdf_monitor_(Goal, Mask).

monitor_mask([], Mask, Mask).
monitor_mask([H|T], Mask0, Mask) :-
	update_mask(H, Mask0, Mask1),
	monitor_mask(T, Mask1, Mask).

update_mask(-X, Mask0, Mask) :- !,
	monitor_mask(X, M),
	Mask is Mask0 /\ \M.
update_mask(+X, Mask0, Mask) :- !,
	monitor_mask(X, M),
	Mask is Mask0 \/ M.
update_mask(X, Mask0, Mask) :-
	monitor_mask(X, M),
	Mask is Mask0 \/ M.

%%	monitor_mask(Name, Mask)
%
%	Mask bit for the monitor events.  Note that this must be kept
%	consistent with the enum broadcast_id defined in rdf_db.c

					% C-defined broadcasts
monitor_mask(assert,	   0x0001).
monitor_mask(assert(load), 0x0002).
monitor_mask(retract,	   0x0004).
monitor_mask(update,	   0x0008).
monitor_mask(new_literal,  0x0010).
monitor_mask(old_literal,  0x0020).
monitor_mask(transaction,  0x0040).
monitor_mask(load,	   0x0080).
monitor_mask(create_graph, 0x0100).
monitor_mask(reset,	   0x0200).
					% prolog defined broadcasts
monitor_mask(parse,	   0x1000).
monitor_mask(unload,	   0x1000).	% FIXME: Duplicate
					% mask for all
monitor_mask(all,	   0xffff).

%rdf_broadcast(Term, MaskName) :-
%%	monitor_mask(MaskName, Mask),
%%	rdf_broadcast_(Term, Mask).


		 /*******************************
		 *	      WARM		*
		 *******************************/

%%	rdf_warm_indexes
%
%	Warm all indexes.  See rdf_warm_indexes/1.

rdf_warm_indexes :-
	findall(Index, rdf_index(Index), Indexes),
	rdf_warm_indexes(Indexes).

rdf_index(s).
rdf_index(p).
rdf_index(o).
rdf_index(sp).
rdf_index(o).
rdf_index(po).
rdf_index(spo).
rdf_index(g).
rdf_index(sg).
rdf_index(pg).

%%	rdf_warm_indexes(+Indexes) is det.
%
%	Create the named indexes.  Normally,   the  RDF database creates
%	indexes on lazily the first time they are needed. This predicate
%	serves two purposes: it provides an   explicit  way to make sure
%	that the required indexes  are   present  and  creating multiple
%	indexes at the same time is more efficient.


		 /*******************************
		 *	    DUPLICATES		*
		 *******************************/

%%	rdf_update_duplicates is det.
%
%	Update the duplicate administration of the RDF store. This marks
%	every triple that is potentionally  a   duplicate  of another as
%	duplicate. Being potentially a  duplicate   means  that subject,
%	predicate and object are equivalent and   the  life-times of the
%	two triples overlap.
%
%	The duplicates marks are used to  reduce the administrative load
%	of avoiding duplicate answers.  Normally,   the  duplicates  are
%	marked using a background thread that   is  started on the first
%	query that produces a substantial amount of duplicates.

:- public
	rdf_update_duplicates_thread/0.

%%	rdf_update_duplicates_thread
%
%	Start a thread to initialize the duplicate administration.

rdf_update_duplicates_thread :-
	thread_create(rdf_update_duplicates, _,
		      [ detached(true),
			alias('__rdf_duplicate_detecter')
		      ]).

%%	rdf_update_duplicates is det.
%
%	Update the duplicate administration. If   this  adminstration is
%	up-to-date, each triples that _may_ have a duplicate is flagged.
%	The predicate rdf/3 uses this administration to speedup checking
%	for duplicate answers.
%
%	This predicate is normally  executed   from  a background thread
%	named =__rdf_duplicate_detecter= which is created   when a query
%	discovers that checking for duplicates becomes too expensive.


		 /*******************************
		 *    QUICK BINARY LOAD/SAVE	*
		 *******************************/

%%	rdf_save_db(+File) is det.
%%	rdf_save_db(+File, +Graph) is det.
%
%	Save triples into File in a   quick-to-load binary format. If Graph
%	is supplied only triples flagged to originate from that database
%	are  added.  Files  created  this  way    can  be  loaded  using
%	rdf_load_db/1.

:- create_prolog_flag(rdf_triple_format, 3, [type(integer)]).

rdf_save_db(File) :-
	current_prolog_flag(rdf_triple_format, Version),
	setup_call_cleanup(
	    open(File, write, Out, [type(binary)]),
	    ( set_stream(Out, record_position(false)),
	      rdf_save_db_(Out, _, Version)
	    ),
	    close(Out)).


rdf_save_db(File, Graph) :-
	current_prolog_flag(rdf_triple_format, Version),
	setup_call_cleanup(
	    open(File, write, Out, [type(binary)]),
	    ( set_stream(Out, record_position(false)),
	      rdf_save_db_(Out, Graph, Version)
	    ),
	    close(Out)).


%%	rdf_load_db_no_admin(+File, +Id, -Graphs) is det.
%
%	Load triples from a  .trp  file   without  updating  the  source
%	administration. Id is  handled  to   monitor  action.  Graphs is
%	a list of graph-names encountered in File.

rdf_load_db_no_admin(File, Id, Graphs) :-
	open(File, read, In, [type(binary)]),
	set_stream(In, record_position(false)),
	call_cleanup(rdf_load_db_(In, Id, Graphs), close(In)).


%%	check_loaded_cache(+Graph, +Graphs, +Modified) is det.
%
%	Verify the loaded cache file and optionally fix the modification
%	time (new versions save this along with the snapshot).
%
%	@tbd	What to do if there is a cache mismatch? Delete the loaded
%		graphs and fail?

check_loaded_cache(DB, [DB], _Modified) :- !.
check_loaded_cache(DB, Graphs, _) :-
	print_message(warning, rdf(inconsistent_cache(DB, Graphs))).


%%	rdf_load_db(+File) is det.
%
%	Load triples from a file created using rdf_save_db/2.

rdf_load_db(File) :-
	uri_file_name(URL, File),
	rdf_load_db_no_admin(File, URL, _Graphs).


		 /*******************************
		 *	    LOADING RDF		*
		 *******************************/

:- multifile
	rdf_open_hook/8,
	rdf_open_decode/4,		% +Encoding, +File, -Stream, -Cleanup
	rdf_load_stream/3,		% +Format, +Stream, +Options
	rdf_file_type/2,		% ?Extension, ?Format
	rdf_storage_encoding/2,		% ?Extension, ?Encoding
	url_protocol/1.			% ?Protocol

%%	rdf_load(+FileOrList) is det.
%
%	Same as rdf_load(FileOrList, []).  See rdf_load/2.

%%	rdf_load(+FileOrList, :Options) is det.
%
%	Load RDF data. Options provides   additional processing options.
%	Defined options are:
%
%	    * blank_nodes(+ShareMode)
%	    How to handle equivalent blank nodes.  If =share= (default),
%	    equivalent blank nodes are shared in the same resource.
%
%	    * base_uri(+URI)
%	    URI that is used for rdf:about="" and other RDF constructs
%	    that are relative to the base uri.  Default is the source
%	    URL.
%
%	    * concurrent(+Jobs)
%	    If FileOrList is a list of files, process the input files
%	    using Jobs threads concurrently.  Default is the mininum
%	    of the number of cores and the number of inputs.  Higher
%	    values can be useful when loading inputs from (slow)
%	    network connections.  Using 1 (one) does not use
%	    separate worker threads.
%
%	    * format(+Format)
%	    Specify the source format explicitly. Normally this is
%	    deduced from the filename extension or the mime-type. The
%	    core library understands the formats xml (RDF/XML) and
%	    triples (internal quick load and cache format).  Plugins,
%	    such as library)semweb/turtle) extend the set of recognised
%	    extensions.
%
%	    * graph(?Graph)
%	    Named graph in which to load the data.  It is *not* allowed
%	    to load two sources into the same named graph.  If Graph is
%	    unbound, it is unified to the graph into which the data is
%	    loaded.  The default graph is a =file://= URL when loading
%	    a file or, if the specification is a URL, its normalized
%	    version without the optional _|#fragment|_.
%
%	    * if(Condition)
%	    When to load the file. One of =true=, =changed= (default) or
%	    =not_loaded=.
%
%	    * modified(-Modified)
%	    Unify Modified with one of =not_modified=, cached(File),
%	    last_modified(Stamp) or =unknown=.
%
%	    * cache(Bool)
%	    If =false=, do not use or create a cache file.
%
%	    * register_namespaces(Bool)
%	    If =true= (default =false=), register =xmlns= namespace
%	    declarations or Turtle =|@prefix|= prefixes using
%	    rdf_register_prefix/3 if there is no conflict.
%
%	    * silent(+Bool)
%	    If =true=, the message reporting completion is printed using
%	    level =silent=. Otherwise the level is =informational=. See
%	    also print_message/2.
%
%	Other  options  are  forwarded  to  process_rdf/3.  By  default,
%	rdf_load/2 only loads RDF/XML from files.  It can be extended to
%	load data from other formats and   locations  using plugins. The
%	full set of plugins relevant to   support  different formats and
%	locations is below:
%
%	  ==
%	  :- use_module(library(semweb/turtle)).	% Turtle and TRiG
%	  :- use_module(library(semweb/rdf_ntriples)).
%	  :- use_module(library(semweb/rdf_zlib_plugin)).
%	  :- use_module(library(semweb/rdf_http_plugin)).
%	  :- use_module(library(http/http_ssl_plugin)).
%	  ==
%
%	@see	rdf_db:rdf_open_hook/3, library(semweb/rdf_persistency) and
%		library(semweb/rdf_cache)

:- dynamic
	rdf_loading/3.				% Graph, Queue, Thread

rdf_load(Spec) :-
	rdf_load(Spec, []).

:- if(\+current_predicate(concurrent/3)).
concurrent(_, Goals, _) :-
	forall(member(G, Goals), call(G)).
:- endif.

% Note that we kill atom garbage collection.  This improves performance
% with about 15% loading the LUBM Univ_50 benchmark.

rdf_load(Spec, M:Options) :-
	must_be(list, Options),
	current_prolog_flag(agc_margin, Old),
	setup_call_cleanup(
	    set_prolog_flag(agc_margin, 0),
	    rdf_load_noagc(Spec, M, Options),
	    set_prolog_flag(agc_margin, Old)).

rdf_load_noagc(List, M, Options) :-
	is_list(List), !,
	flatten(List, Inputs),		% Compatibility: allow nested lists
	maplist(must_be(ground), Inputs),
	length(Inputs, Count),
	load_jobs(Count, Jobs, Options),
	(   Jobs =:= 1
	->  forall(member(Spec, Inputs),
		   rdf_load_one(Spec, M, Options))
	;   maplist(load_goal(Options, M), Inputs, Goals),
	    concurrent(Jobs, Goals, [])
	).
rdf_load_noagc(One, M, Options) :-
	must_be(ground, One),
	rdf_load_one(One, M, Options).

load_goal(Options, M, Spec, rdf_load_one(Spec, M, Options)).

load_jobs(_, Jobs, Options) :-
	option(concurrent(Jobs), Options), !,
	must_be(positive_integer, Jobs).
load_jobs(Count, Jobs, _) :-
	current_prolog_flag(cpu_count, CPUs),
	CPUs > 0, !,
	Jobs is max(1, min(CPUs, Count)).
load_jobs(_, 1, _).


rdf_load_one(Spec, M, Options) :-
	source_url(Spec, Protocol, SourceURL),
	load_graph(SourceURL, Graph, Options),
	setup_call_cleanup(
	    with_mutex(rdf_load_file,
		       rdf_start_load(SourceURL, Loading)),
	    rdf_load_file(Loading, Spec, SourceURL, Protocol,
			  Graph, M, Options),
	    rdf_end_load(Loading)).

%%	rdf_start_load(+SourceURL, -WhatToDo) is det.
%%	rdf_end_load(+WhatToDo) is det.
%%	rdf_load_file(+WhatToDo, +Spec, +SourceURL, +Protocol, +Graph,
%%		      +Module, +Options) is det.
%
%	Of these three predicates, rdf_load_file/7   does the real work.
%	The others deal with the  possibility   that  the graph is being
%	loaded by another thread. In that case,   we  wait for the other
%	thread to complete the work.
%
%	@tbd	What if both threads disagree on what is loaded into the
%		graph?
%	@see	Code is modelled closely after how concurrent loading
%		is handled in SWI-Prolog's boot/init.pl

rdf_start_load(SourceURL, queue(Queue)) :-
	rdf_loading(SourceURL, Queue, LoadThread),
	\+ thread_self(LoadThread), !,
	debug(rdf(load), '~p is being loaded by thread ~w; waiting ...',
	      [ SourceURL, LoadThread]).
rdf_start_load(SourceURL, Ref) :-
	thread_self(Me),
	message_queue_create(Queue),
	assertz(rdf_loading(SourceURL, Queue, Me), Ref).

rdf_end_load(queue(_)) :- !.
rdf_end_load(Ref) :-
	clause(rdf_loading(_, Queue, _), _, Ref),
	erase(Ref),
	thread_send_message(Queue, done),
	message_queue_destroy(Queue).

rdf_load_file(queue(Queue), _Spec, _SourceURL, _Protocol, _Graph, _M, _Options) :- !,
	catch(thread_get_message(Queue, _), _, true).
rdf_load_file(_Ref, _Spec, SourceURL, Protocol, Graph, M, Options) :-
	debug(rdf(load), 'RDF: Loading ~q into ~q', [SourceURL, Graph]),
	statistics(cputime, T0),
	rdf_open_input(SourceURL, Protocol, Graph,
		       In, Cleanup, Modified, Format, Options),
	supported_format(Format, Cleanup),
	return_modified(Modified, Options),
	(   Modified == not_modified
	->  Action = none
	;   Modified = cached(CacheFile)
	->  do_unload(Graph),
	    catch(rdf_load_db_no_admin(CacheFile, cache(Graph), Graphs), _, fail),
	    check_loaded_cache(Graph, Graphs, Modified),
	    Action = load
	;   option(base_uri(BaseURI), Options, Graph),
	    (	var(BaseURI)
	    ->	BaseURI = SourceURL
	    ;	true
	    ),
	    once(phrase(derived_options(Options, NSList), Extra)),
	    merge_options([ base_uri(BaseURI),
			    graph(Graph),
			    format(Format)
			  | Extra
			  ], Options, RDFOptions),
	    do_unload(Graph),
	    graph_modified(Modified, ModifiedStamp),
	    rdf_set_graph_source(Graph, SourceURL, ModifiedStamp),
	    call_cleanup(rdf_load_stream(Format, In, M:RDFOptions),
			 Cleanup),
	    save_cache(Graph, SourceURL, Options),
	    register_file_ns(NSList),
	    format_action(Format, Action)
	),
	rdf_statistics_(triples(Graph, Triples)),
	report_loaded(Action, SourceURL, Graph, Triples, T0, Options).

supported_format(Format, _Cleanup) :-
	rdf_file_type(_, Format), !.
supported_format(Format, Cleanup) :-
	call(Cleanup),
	existence_error(rdf_format_plugin, Format).

format_action(triples, load) :- !.
format_action(_, parsed).

save_cache(Graph, SourceURL, Options) :-
	option(cache(true), Options, true),
	rdf_cache_file(SourceURL, write, CacheFile), !,
	catch(save_cache(Graph, CacheFile), E,
	      print_message(warning, E)).
save_cache(_, _, _).

derived_options([], _) -->
	[].
derived_options([H|T], NSList) -->
	(   {   H == register_namespaces(true)
	    ;   H == (register_namespaces = true)
	    }
	->  [ namespaces(NSList) ]
	;   []
	),
	derived_options(T, NSList).

graph_modified(last_modified(Stamp), Stamp).
graph_modified(unknown, Stamp) :-
	get_time(Stamp).

return_modified(Modified, Options) :-
	option(modified(M0), Options), !,
	M0 = Modified.
return_modified(_, _).


		 /*******************************
		 *	  INPUT HANDLING	*
		 *******************************/

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
This section deals with pluggable input sources.  The task of the input
layer is

    * Decide on the graph-name
    * Decide on the source-location
    * Decide whether loading is needed (if-modified)
    * Decide on the serialization in the input

The protocol must ensure minimal  overhead,   in  particular for network
protocols. E.g. for HTTP we want to make a single call on the server and
use If-modified-since to verify that we need not reloading this file.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

%%	rdf_open_input(+SourceURL, +Protocol, +Graph,
%%		       -Stream, -Cleanup, -Modified, -Format, +Options)
%
%	Open an input source.
%
%	Options processed:
%
%	    * graph(Graph)
%	    * db(Graph)
%	    * if(Condition)
%	    * cache(Cache)
%	    * format(Format)
%
%	@param	Modified is one of =not_modified=, last_modified(Time),
%		cached(CacheFile) or =unknown=

rdf_open_input(SourceURL, Protocol, Graph,
	       Stream, Cleanup, Modified, Format, Options) :-
	option(if(If), Options, changed),
	(   If == true
	->  true
	;   rdf_graph_source_(Graph, SourceURL, HaveModified)
	->  true
	;   option(cache(true), Options, true),
	    rdf_cache_file(SourceURL, read, CacheFile)
	->  time_file(CacheFile, HaveModified)
	;   true
	),
	option(format(Format), Options, _),
	open_input_if_modified(Protocol, SourceURL, HaveModified,
			       Stream, Cleanup, Modified0, Format, Options),
	(   Modified0 == not_modified
	->  (   nonvar(CacheFile)
	    ->	Modified = cached(CacheFile)
	    ;	Modified = not_modified
	    )
	;   Modified = Modified0
	).


%%	source_url(+Spec, -Class, -SourceURL) is det.
%
%	Determine class and url of the source.  Class is one of
%
%	    * stream(Stream)
%	    * file
%	    * a url-protocol (e.g., =http=)

source_url(stream(In), stream(In), SourceURL) :- !,
	(   stream_property(In, file_name(File))
	->  to_url(File, SourceURL)
	;   gensym('stream://', SourceURL)
	).
source_url(Stream, Class, SourceURL) :-
	is_stream(Stream), !,
	source_url(stream(Stream), Class, SourceURL).
source_url(Spec, Protocol, SourceURL) :-
	compound(Spec), !,
	source_file(Spec, Protocol, SourceURL).
source_url(FileURL, Protocol, SourceURL) :-		% or return FileURL?
	uri_file_name(FileURL, File), !,
	source_file(File, Protocol, SourceURL).
source_url(SourceURL0, Protocol, SourceURL) :-
	is_url(SourceURL0, Protocol, SourceURL), !.
source_url(File, Protocol, SourceURL) :-
	source_file(File, Protocol, SourceURL).

source_file(Spec, file(SExt), SourceURL) :-
	findall(Ext, valid_extension(Ext), Exts),
	absolute_file_name(Spec, File, [access(read), extensions([''|Exts])]),
	storage_extension(Plain, SExt, File),
	uri_file_name(SourceURL, Plain).

to_url(URL, URL) :-
	uri_is_global(URL), !.
to_url(File, URL) :-
	absolute_file_name(File, Path),
	uri_file_name(URL, Path).

storage_extension(Plain, SExt, File) :-
	file_name_extension(Plain, SExt, File),
	SExt \== '',
	rdf_storage_encoding(SExt, _), !.
storage_extension(File, '', File).

%%	load_graph(+SourceURL, -Graph, +Options) is det.
%
%	Graph is the graph into which  we   load  the  data. Tries these
%	options:
%
%	  1. The graph(Graph) option
%	  2. The db(Graph) option (backward compatibility)
%	  3. The base_uri(BaseURI) option
%	  4. The source URL

load_graph(Source, Graph, Options) :-
	(   option(graph(Graph), Options)
	;   option(db(Graph), Options)
	), !,
	load_graph2(Source, Graph, Options).
load_graph(Source, Graph, Options) :-
	load_graph2(Source, Graph, Options).

load_graph2(_, Graph, _) :-
	ground(Graph), !.
load_graph2(_Source, Graph, Options) :-
	option(base_uri(Graph), Options),
	Graph \== [],
	ground(Graph), !.
load_graph2(Source, Graph, _) :-
	load_graph(Source, Graph).

load_graph(SourceURL, BaseURI) :-
	file_name_extension(BaseURI, Ext, SourceURL),
	rdf_storage_encoding(Ext, _), !.
load_graph(SourceURL, SourceURL).


open_input_if_modified(stream(In), SourceURL, _, In, true,
		       unknown, Format, _) :- !,
	(   var(Format)
	->  guess_format(SourceURL, Format)
	;   true
	).
open_input_if_modified(file(SExt), SourceURL, HaveModified, Stream, Cleanup,
		       Modified, Format, _) :- !,
	uri_file_name(SourceURL, File0),
	file_name_extension(File0, SExt, File),
	time_file(File, LastModified),
	(   nonvar(HaveModified),
	    HaveModified >= LastModified
	->  Modified = not_modified,
	    Cleanup = true
	;   storage_open(SExt, File, Stream, Cleanup),
	    Modified = last_modified(LastModified),
	    (	var(Format)
	    ->	guess_format(File0, Format)
	    ;	true
	    )
	).
open_input_if_modified(file, SourceURL, HaveModified, Stream, Cleanup,
		       Modified, Format, Options) :- !,
	open_input_if_modified(file(''), SourceURL, HaveModified,
			       Stream, Cleanup,
			       Modified, Format, Options).
open_input_if_modified(Protocol, SourceURL, HaveModified, Stream, Cleanup,
		       Modified, Format, Options) :-
	rdf_open_hook(Protocol, SourceURL, HaveModified, Stream, Cleanup,
		      Modified, Format, Options).

guess_format(File, Format) :-
	file_name_extension(_, Ext, File),
	(   rdf_file_type(Ext, Format)
	->  true
	;   Format = xml,
	    print_message(warning, rdf(guess_format(Ext)))
	).

%%	storage_open(+Extension, +File, -Stream, -Cleanup)
%
%	Open the low-level storage. Note  that   the  file  is opened as
%	binary. This is the same  as   for  HTTP  resources. The correct
%	encoding will be set by the XML parser or the Turtle parser.

storage_open('', File, Stream, close(Stream)) :- !,
	open(File, read, Stream, [type(binary)]).
storage_open(Ext, File, Stream, Cleanup) :-
	rdf_storage_encoding(Ext, Encoding),
	rdf_open_decode(Encoding, File, Stream, Cleanup).

valid_extension(Ext) :-
	rdf_file_type(Ext, _).
valid_extension(Ext) :-
	rdf_storage_encoding(Ext, _).

%%	is_url(@Term, -Scheme, -URL) is semidet.
%
%	True if Term is an atom denoting URL of the given Scheme. URL is
%	normalized  (see  uri_normalized/2)  and   a  possible  fragment
%	identifier (#fragment) is removed. This  predicate only succeeds
%	if  the  scheme  is   registered    using   the  multifile  hook
%	url_protocol/1.

is_url(URL, Scheme, FetchURL) :-
	atom(URL),
	uri_is_global(URL),
	uri_normalized(URL, URL1),		% case normalization
	uri_components(URL1, Components),
	uri_data(scheme, Components, Scheme0),
	url_protocol(Scheme0), !,
	Scheme = Scheme0,
	uri_data(fragment, Components, _, Components1),
	uri_components(FetchURL, Components1).

url_protocol(file).			% built-in

%%	rdf_file_type(+Extension, -Format) is semidet.
%
%	True if Format  is  the  format   belonging  to  the  given file
%	extension.  This predicate is multifile and can thus be extended
%	by plugins.

rdf_file_type(xml,   xml).
rdf_file_type(rdf,   xml).
rdf_file_type(rdfs,  xml).
rdf_file_type(owl,   xml).
rdf_file_type(htm,   xhtml).
rdf_file_type(html,  xhtml).
rdf_file_type(xhtml, xhtml).
rdf_file_type(trp,   triples).


%%	rdf_file_encoding(+Extension, -Format) is semidet.
%
%	True if Format describes the storage encoding of file.

rdf_storage_encoding('', plain).


%%	rdf_load_stream(+Format, +Stream, :Options)
%
%	Load RDF data from Stream.
%
%	@tbd	Handle mime-types?

rdf_load_stream(xml, Stream, Options) :- !,
	graph(Options, Graph),
	rdf_transaction(load_stream(Stream, Options),
			parse(Graph)).
rdf_load_stream(xhtml, Stream, M:Options) :- !,
	graph(Options, Graph),
	rdf_transaction(load_stream(Stream, M:[embedded(true)|Options]),
			parse(Graph)).
rdf_load_stream(triples, Stream, Options) :- !,
	graph(Options, Graph),
	rdf_load_db_(Stream, Graph, _Graphs).

load_stream(Stream, M:Options) :-
	process_rdf(Stream, assert_triples, M:Options),
	option(graph(Graph), Options),
	rdf_graph_clear_modified_(Graph).


%%	report_loaded(+Action, +Source, +DB, +Triples, +StartCPU, +Options)

report_loaded(none, _, _, _, _, _) :- !.
report_loaded(Action, Source, DB, Triples, T0, Options) :-
	statistics(cputime, T1),
	Time is T1 - T0,
	(   option(silent(true), Options)
	->  Level = silent
	;   Level = informational
	),
	print_message(Level,
		      rdf(loaded(Action, Source, DB, Triples, Time))).


%%	rdf_unload(+Source) is det.
%
%	Identify the graph loaded from Source and use rdf_unload_graph/1
%	to erase this graph.
%
%	@deprecated	For compatibility, this predicate also accepts a
%			graph name instead of a source specification.
%			Please update your code to use
%			rdf_unload_graph/1.

rdf_unload(Spec) :-
	source_url(Spec, _Protocol, SourceURL),
	rdf_graph_source_(Graph, SourceURL, _), !,
	rdf_unload_graph(Graph).
rdf_unload(Graph) :-
	atom(Graph),
	rdf_graph(Graph), !,
	warn_deprecated_unload(Graph),
	rdf_unload_graph(Graph).
rdf_unload(_).

:- dynamic
	warned/0.

warn_deprecated_unload(_) :-
	warned, !.
warn_deprecated_unload(Graph) :-
	assertz(warned),
	print_message(warning, rdf(deprecated(rdf_unload(Graph)))).


%%	rdf_unload_graph(+Graph) is det.
%
%	Remove Graph from the RDF store.  Succeeds silently if the named
%	graph does not exist.

rdf_unload_graph(Graph) :-
	must_be(atom, Graph),
	(   rdf_graph(Graph)
	->  rdf_transaction(do_unload(Graph), unload(Graph))
	;   true
	).

do_unload(Graph) :-
	(   rdf_graph_(Graph, Triples),
	    Triples > 0
	->  rdf_retractall(_,_,_,Graph)
	;   true
	),
	rdf_destroy_graph(Graph).

		 /*******************************
		 *	   GRAPH QUERIES	*
		 *******************************/

%%	rdf_create_graph(+Graph) is det.
%
%	Create an RDF graph without triples.   Succeeds  silently if the
%	graph already exists.


%%	rdf_graph(?Graph) is nondet.
%
%	True when Graph is an existing graph.

rdf_graph(Graph) :-
	rdf_graph_(Graph, _Triples).

%%	rdf_source(?Graph, ?SourceURL) is nondet.
%
%	True if named Graph is loaded from SourceURL.
%
%	@deprecated Use rdf_graph_property(Graph, source(SourceURL)).

rdf_source(Graph, SourceURL) :-
	rdf_graph(Graph),
	rdf_graph_source_(Graph, SourceURL, _Modified).

%%	rdf_source(?Source)
%
%	True if Source is a loaded source.
%
%	@deprecated	Use rdf_graph/1 or rdf_source/2.

rdf_source(SourceURL) :-
	rdf_source(_Graph, SourceURL).

%%	rdf_make
%
%	Reload all loaded files that have been modified since the last
%	time they were loaded.

rdf_make :-
	findall(Source-Graph, modified_graph(Source, Graph), Modified),
	forall(member(Source-Graph, Modified),
	       catch(rdf_load(Source, [graph(Graph), if(changed)]), E,
		     print_message(error, E))).

modified_graph(SourceURL, Graph) :-
	rdf_graph(Graph),
	rdf_graph_source_(Graph, SourceURL, Modified),
	\+ sub_atom(SourceURL, 0, _, _, 'stream://'),
	Modified > 0.

%%	rdf_graph_property(?Graph, ?Property) is nondet.
%
%	True when Property is a property of Graph.  Defined properties
%	are:
%
%	    * hash(Hash)
%	    Hash is the (MD5-)hash for the content of Graph.
%	    * modified(Boolean)
%	    True if the graph is modified since it was loaded or
%	    rdf_set_graph/2 was called with modified(false).
%	    * source(Source)
%	    The graph is loaded from the Source (a URL)
%	    * source_last_modified(?Time)
%	    Time is the last-modified timestamp of Source at the moment
%	    that the graph was loaded from Source.
%	    * triples(Count)
%	    True when Count is the number of triples in Graph.
%
%	 Additional graph properties can be added  by defining rules for
%	 the multifile predicate  property_of_graph/2.   Currently,  the
%	 following extensions are defined:
%
%	    - library(semweb/rdf_persistency)
%	      - persistent(Boolean)
%	        Boolean is =true= if the graph is persistent.

rdf_graph_property(Graph, Property) :-
	rdf_graph(Graph),
	property_of_graph(Property, Graph).

:- multifile
	property_of_graph/2.

property_of_graph(hash(Hash), Graph) :-
	rdf_md5(Graph, Hash).
property_of_graph(modified(Boolean), Graph) :-
	rdf_graph_modified_(Graph, Boolean, _).
property_of_graph(source(URL), Graph) :-
	rdf_graph_source_(Graph, URL, _).
property_of_graph(source_last_modified(Time), Graph) :-
	rdf_graph_source_(Graph, _, Time),
	Time > 0.0.
property_of_graph(triples(Count), Graph) :-
	rdf_graph_(Graph, Count).

%%	rdf_set_graph(+Graph, +Property) is det.
%
%	Set properties of Graph.  Defined properties are:
%
%	    * modified(false)
%	    Set the modified state of Graph to false.

rdf_set_graph(Graph, modified(Modified)) :-
	must_be(oneof([false]), Modified),
	rdf_graph_clear_modified_(Graph).


%%	save_cache(+DB, +Cache) is det.
%
%	Save triples belonging to DB in the file Cache.

save_cache(DB, Cache) :-
	current_prolog_flag(rdf_triple_format, Version),
	setup_call_cleanup(
	    catch(open(Cache, write, CacheStream, [type(binary)]), _, fail),
	    rdf_save_db_(CacheStream, DB, Version),
	    close(CacheStream)).

%%	assert_triples(+Triples, +Source)
%
%	Assert a list of triples into the database. Foir security
%	reasons we check we aren't inserting anything but nice RDF
%	triples.

assert_triples([], _).
assert_triples([rdf(S,P,O)|T], DB) :- !,
	rdf_assert(S, P, O, DB),
	assert_triples(T, DB).
assert_triples([H|_], _) :-
	throw(error(type_error(rdf_triple, H), _)).


		 /*******************************
		 *	       RESET		*
		 *******************************/

%%	rdf_reset_db
%
%	Remove all triples from the RDF database and reset all its
%	statistics.
%
%	@bug	This predicate checks for active queries, but this check is
%		not properly synchronized and therefore the use of this
%		predicate is unsafe in multi-threaded contexts. It is
%		mainly used to run functionality tests that need to
%		start with an empty database.

rdf_reset_db :-
	rdf_reset_db_.


		 /*******************************
		 *	     SAVE RDF		*
		 *******************************/

%%	rdf_save(+Out) is det.
%
%	Same as rdf_save(Out, []).  See rdf_save/2 for details.

%%	rdf_save(+Out, :Options) is det.
%
%	Write RDF data as RDF/XML. Options is a list of one or more of
%	the following options:
%
%		* graph(+Graph)
%		Save only triples associated to the given named Graph.
%
%		* anon(Bool)
%		If false (default true) do not save blank nodes that do
%		not appear (indirectly) as object of a named resource.
%
%		* base_uri(URI)
%		BaseURI used. If present, all URIs that can be
%		represented relative to this base are written using
%		their shorthand.  See also =write_xml_base= option
%
%		* convert_typed_literal(:Convertor)
%		Call Convertor(-Type, -Content, +RDFObject), providing
%		the opposite for the convert_typed_literal option of
%		the RDF parser.
%
%		* document_language(+Lang)
%		Initial xml:lang saved with rdf:RDF element
%
%		* encoding(Encoding)
%		Encoding for the output.  Either utf8 or iso_latin_1
%
%		* inline(+Bool)
%		If =true= (default =false=), inline resources when
%		encountered for the first time. Normally, only bnodes
%		are handled this way.
%
%		* namespaces(+List)
%		Explicitely specify saved namespace declarations. See
%		rdf_save_header/2 option namespaces for details.
%
%		* sorted(+Boolean)
%		If =true= (default =false=), emit subjects sorted on
%		the full URI.  Useful to make file comparison easier.
%
%		* write_xml_base(Bool)
%		If =false=, do _not_ include the =|xml:base|=
%		declaration that is written normally when using the
%		=base_uri= option.
%
%		* xml_attributes(+Bool)
%		If =false= (default =true=), never use xml attributes to
%		save plain literal attributes, i.e., always used an XML
%		element as in =|<name>Joe</name>|=.
%
%	@param Out	Location to save the data.  This can also be a
%			file-url (=|file://path|=) or a stream wrapped
%			in a term stream(Out).
%	@see rdf_save_db/1

:- thread_local
	named_anon/2,			% +Resource, -Id
	inlined/1.			% +Resource

rdf_save(File) :-
	rdf_save2(File, []).

rdf_save(Spec, M:Options0) :-
	is_list(Options0), !,
	meta_options(save_meta_option, M:Options0, Options),
	to_file(Spec, File),
	rdf_save2(File, Options).
rdf_save(Spec, _:DB) :-
	atom(DB), !,			% backward compatibility
	to_file(Spec, File),
	rdf_save2(File, [graph(DB)]).

save_meta_option(convert_typed_literal).

to_file(URL, File) :-
	atom(URL),
	uri_file_name(URL, File), !.
to_file(File, File).

rdf_save2(File, Options) :-
	option(encoding(Encoding), Options, utf8),
	valid_encoding(Encoding),
	open_output(File, Encoding, Out, Close),
	flag(rdf_db_saved_subjects, OSavedSubjects, 0),
	flag(rdf_db_saved_triples, OSavedTriples, 0),
	call_cleanup(rdf_do_save(Out, Options),
		     Reason,
		     cleanup_save(Reason,
				  File,
				  OSavedSubjects,
				  OSavedTriples,
				  Close)).

open_output(stream(Out), Encoding, Out,
	    set_stream(Out, encoding(Old))) :- !,
	stream_property(Out, encoding(Old)),
	set_stream(Out, encoding(Encoding)).
open_output(File, Encoding, Out,
	    close(Out)) :-
	open(File, write, Out, [encoding(Encoding)]).

valid_encoding(Enc) :-
	(   xml_encoding_name(Enc, _)
	->  true
	;   throw(error(domain_error(encoding, Enc), _))
	).


cleanup_save(Reason,
	     File,
	     OSavedSubjects,
	     OSavedTriples,
	     Close) :-
	call(Close),
	flag(rdf_db_saved_subjects, SavedSubjects, OSavedSubjects),
	flag(rdf_db_saved_triples, SavedTriples, OSavedTriples),
	retractall(named_anon(_, _)),
	retractall(inlined(_)),
	(   Reason == exit
	->  print_message(informational,
			  rdf(saved(File, SavedSubjects, SavedTriples)))
	;   format(user_error, 'Reason = ~w~n', [Reason])
	).

rdf_do_save(Out, Options0) :-
	rdf_save_header(Out, Options0, Options),
	(   option(sorted(true), Options, false)
	->  setof(Subject, rdf_subject(Subject, Options), Subjects),
	    forall(member(Subject, Subjects),
		   rdf_save_non_anon_subject(Out, Subject, Options))
	;   forall(rdf_subject(Subject, Options),
		   rdf_save_non_anon_subject(Out, Subject, Options))
	),
	rdf_save_footer(Out), !.	% dubious cut; without the
					% cleanup handlers isn't called!?

rdf_subject(Subject, Options) :-
	graph(Options, DB),
	var(DB), !,
	rdf_subject(Subject).
rdf_subject(Subject, Options) :-
	graph(Options, DB),
	rdf_subject(Subject),
	(   rdf(Subject, _, _, DB:_)
	->  true
	).

graph(Options0, DB) :-
	strip_module(Options0, _, Options),
	(   memberchk(graph(DB0), Options)
	->  DB = DB0
	;   memberchk(db(DB0), Options)
	->  DB = DB0
	;   true			% leave unbound
	).


%%	rdf_save_header(+Fd, +Options)
%
%	Save XML document header, doctype and open the RDF environment.
%	This predicate also sets up the namespace notation.
%
%	Save an RDF header, with the XML header, DOCTYPE, ENTITY and
%	opening the rdf:RDF element with appropriate namespace
%	declarations. It uses the primitives from section 3.5 to
%	generate the required namespaces and desired short-name. Options
%	is one of:
%
%	  * graph(+URI)
%	  Only search for namespaces used in triples that belong to the
%	  given named graph.
%
%	  * namespaces(+List)
%	  Where List is a list of namespace abbreviations. With this
%	  option, the expensive search for all namespaces that may be
%	  used by your data is omitted. The namespaces =rdf= and =rdfs=
%	  are added to the provided List. If a namespace is not
%	  declared, the resource is emitted in non-abreviated form.

rdf_save_header(Out, Options) :-
	rdf_save_header(Out, Options, _).

rdf_save_header(Out, Options, OptionsOut) :-
	is_list(Options), !,
	stream_property(Out, encoding(Enc)),
	xml_encoding(Enc, Encoding),
	format(Out, '<?xml version=\'1.0\' encoding=\'~w\'?>~n', [Encoding]),
	format(Out, '<!DOCTYPE rdf:RDF [', []),
	header_namespaces(Options, NSIdList),
	nsmap(NSIdList, NsMap),
	append(Options, [nsmap(NsMap)], OptionsOut),
	forall(member(Id=URI, NsMap),
	       (   xml_quote_attribute(URI, NSText0, Enc),
		   xml_escape_parameter_entity(NSText0, NSText),
		   format(Out, '~N    <!ENTITY ~w \'~w\'>', [Id, NSText])
	       )),
	format(Out, '~N]>~n~n', []),
	format(Out, '<rdf:RDF', []),
	(   member(Id, NSIdList),
	    format(Out, '~N    xmlns:~w="&~w;"~n', [Id, Id]),
	    fail
	;   true
	),
	(   option(base_uri(Base), Options),
	    option(write_xml_base(true), Options, true)
	->  xml_quote_attribute(Base, BaseText, Enc),
	    format(Out, '~N    xml:base="~w"~n', [BaseText])
	;   true
	),
	(   memberchk(document_language(Lang), Options)
	->  format(Out, '~N    xml:lang="~w"', [Lang])
	;   true
	),
	format(Out, '>~n', []).
rdf_save_header(Out, FileRef, OptionsOut) :-	% compatibility
	atom(FileRef),
	rdf_save_header(Out, [graph(FileRef)], OptionsOut).

xml_encoding(Enc, Encoding) :-
	(   xml_encoding_name(Enc, Encoding)
	->  true
	;   throw(error(domain_error(rdf_encoding, Enc), _))
	).

xml_encoding_name(ascii,       'US-ASCII').
xml_encoding_name(iso_latin_1, 'ISO-8859-1').
xml_encoding_name(utf8,        'UTF-8').

%%	nsmap(+NSIds, -Map:list(id=uri)) is det.
%
%	Create a namespace-map that is compatible to xml_write/2
%	for dealing with XML-Literals

nsmap([], []).
nsmap([Id|T0], [Id=URI|T]) :-
	ns(Id, URI),
	nsmap(T0, T).

%%	xml_escape_parameter_entity(+In, -Out) is det.
%
%	Escape % as &#37; for entity declarations.

xml_escape_parameter_entity(In, Out) :-
	sub_atom(In, _, _, _, '%'), !,
	atom_codes(In, Codes),
	phrase(escape_parent(Codes), OutCodes),
	atom_codes(Out, OutCodes).
xml_escape_parameter_entity(In, In).

escape_parent([]) --> [].
escape_parent([H|T]) -->
	(   { H == 37 }
	->  "&#37;"
	;   [H]
	),
	escape_parent(T).


%%	header_namespaces(Options, -List)
%
%	Get namespaces we will define as entities

header_namespaces(Options, List) :-
	memberchk(namespaces(NSL0), Options), !,
	sort([rdf,rdfs|NSL0], List).
header_namespaces(Options, List) :-
	graph(Options, DB),
	used_namespace_entities(List, DB).

%%	rdf_graph_prefixes(?Graph, -List:ord_set) is det.
%%	rdf_graph_prefixes(?Graph, -List:ord_set, :Options) is det.
%
%	List is a sorted list of  prefixes (namepaces) in Graph. Options
%	defined are:
%
%	    * filter(:Filter)
%	    optional Filter argument is used to filter the results. It
%	    is called with 3 additional arguments:
%
%	        ==
%	        call(Filter, Where, Prefix, URI)
%	        ==
%
%	    The Where argument gives the location of the prefix ans is
%	    one of =subject=, =predicate=, =object= or =type=. The
%	    Prefix argument is the potentionally new prefix and URI is
%	    the full URI that is being processed.
%
%	    * expand(:Goal)
%	    Hook to generate the graph.  Called using
%
%	        ==
%	        call(Goal,S,P,O,Graph)
%	        ==
%
%	    * min_count(+Count)
%	    Only include prefixes that appear at least N times.  Default
%	    is 1. Declared prefixes are always returned if found at
%	    least one time.


:- thread_local
	graph_prefix/3.
:- meta_predicate
	rdf_graph_prefixes(?, -, :).

rdf_graph_prefixes(Graph, List) :-
	rdf_graph_prefixes(Graph, List, []).

rdf_graph_prefixes(Graph, List, M:QOptions) :-
	is_list(QOptions), !,
	meta_options(is_meta, M:QOptions, Options),
	option(filter(Filter), Options, true),
	option(expand(Expand), Options, rdf_db),
	option(min_count(MinCount), Options, 1),
	call_cleanup(prefixes(Expand, Graph, Prefixes, Filter, MinCount),
		     retractall(graph_prefix(_,_,_))),
	sort(Prefixes, List).
rdf_graph_prefixes(Graph, List, M:Filter) :-
	rdf_graph_prefixes(Graph, List, M:[filter(Filter)]).

is_meta(filter).
is_meta(expand).


prefixes(Expand, Graph, Prefixes, Filter, MinCount) :-
	(   call(Expand, S, P, O, Graph),
	    add_ns(subject, Filter, S, MinCount, s(S)),
	    add_ns(predicate, Filter, P, MinCount, sp(S,P)),
	    add_ns_obj(Filter, O, MinCount, spo(S,P,O)),
	    fail
	;   true
	),
	findall(Prefix, graph_prefix(Prefix, MinCount, _), Prefixes).

add_ns(Where, Filter, S, MinCount, Context) :-
	\+ rdf_is_bnode(S),
	iri_xml_namespace(S, Full),
	Full \== '', !,
	(   graph_prefix(Full, MinCount, _)
	->  true
	;   Filter == true
	->  add_ns(Full, Context)
	;   call(Filter, Where, Full, S)
	->  add_ns(Full, Context)
	;   true
	).
add_ns(_, _, _, _, _).

add_ns(Full, Context) :-
	graph_prefix(Full, _, Contexts),
	memberchk(Context, Contexts), !.
add_ns(Full, Context) :-
	retract(graph_prefix(Full, C0, Contexts)), !,
	C1 is C0+1,
	asserta(graph_prefix(Full, C1, [Context|Contexts])).
add_ns(Full, _) :-
	ns(_, Full), !,
	asserta(graph_prefix(Full, _, _)).
add_ns(Full, Context) :-
	asserta(graph_prefix(Full, 1, [Context])).


add_ns_obj(Filter, O, MinCount, Context) :-
	atom(O), !,
	add_ns(object, Filter, O, MinCount, Context).
add_ns_obj(Filter, literal(type(Type, _)), MinCount, _) :-
	atom(Type), !,
	add_ns(type, Filter, Type, MinCount, t(Type)).
add_ns_obj(_, _, _, _).


%%	used_namespace_entities(-List, ?Graph) is det.
%
%	Return the namespace aliases that are actually used in Graph. In
%	addition, this predicate creates ns<N>   aliases  for namespaces
%	used in predicates because RDF/XML cannot write predicates other
%	than as an XML name.

used_namespace_entities(List, Graph) :-
	decl_used_predicate_ns(Graph),
	used_namespaces(List, Graph).

used_namespaces(List, DB) :-
	rdf_graph_prefixes(DB, FullList),
	ns_abbreviations(FullList, List0),
	sort([rdf|List0], List).

ns_abbreviations([], []).
ns_abbreviations([H0|T0], [H|T]) :-
	ns(H, H0), !,
	ns_abbreviations(T0, T).
ns_abbreviations([_|T0], T) :-
	ns_abbreviations(T0, T).


/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
For every URL used as a predicate  we   *MUST*  define a namespace as we
cannot use names holding /, :, etc. as XML identifiers.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

:- thread_local
	predicate_ns/2.

decl_used_predicate_ns(DB) :-
	retractall(predicate_ns(_,_)),
	(   rdf_current_predicate(P, DB),
	    decl_predicate_ns(P),
	    fail
	;   true
	).

decl_predicate_ns(Pred) :-
	predicate_ns(Pred, _), !.
decl_predicate_ns(Pred) :-
	rdf_global_id(NS:Local, Pred),
	xml_name(Local), !,
	assert(predicate_ns(Pred, NS)).
decl_predicate_ns(Pred) :-
	atom_codes(Pred, Codes),
	append(NSCodes, LocalCodes, Codes),
	xml_codes(LocalCodes), !,
	(   NSCodes \== []
	->  atom_codes(NS, NSCodes),
	    (   ns(Id, NS)
	    ->	assert(predicate_ns(Pred, Id))
	    ;	between(1, infinite, N),
		atom_concat(ns, N, Id),
		\+ ns(Id, _)
	    ->  rdf_register_ns(Id, NS),
		print_message(informational,
			      rdf(using_namespace(Id, NS)))
	    ),
	    assert(predicate_ns(Pred, Id))
	;   assert(predicate_ns(Pred, -)) % no namespace used
	).

xml_codes([]).
xml_codes([H|T]) :-
	xml_code(H),
	xml_codes(T).

xml_code(X) :-
	code_type(X, csym), !.
xml_code(0'-).				% Match 0'-


%%	rdf_save_footer(Out:stream) is det.
%
%	Finish XML generation and write the document footer.
%
%	@see rdf_save_header/2, rdf_save_subject/3.

rdf_save_footer(Out) :-
	retractall(named_anon(_, _)),
	retractall(inlined(_)),
	format(Out, '</rdf:RDF>~n', []).

%%	rdf_save_non_anon_subject(+Out, +Subject, +Options)
%
%	Save an object.  Anonymous objects not saved if anon(false)
%	is present in the Options list.

rdf_save_non_anon_subject(_Out, Subject, Options) :-
	rdf_is_bnode(Subject),
	(   memberchk(anon(false), Options)
	;   graph(Options, DB),
	    rdf_db(_, _, Subject, DB)
	), !.
rdf_save_non_anon_subject(Out, Subject, Options) :-
	rdf_save_subject(Out, Subject, Options),
	flag(rdf_db_saved_subjects, X, X+1).


%%	rdf_save_subject(+Out, +Subject:resource, +Options) is det.
%
%	Save the triples associated to Subject to Out. Options:
%
%	  * graph(+Graph)
%	  Only save properties from Graph.
%	  * base_uri(+URI)
%	  * convert_typed_literal(:Goal)
%	  * document_language(+XMLLang)
%
%	@see rdf_save/2 for a description of these options.

rdf_save_subject(Out, Subject, Options) :-
	is_list(Options), !,
	option(base_uri(BaseURI), Options, '-'),
	(   rdf_save_subject(Out, Subject, BaseURI, 0, Options)
	->  format(Out, '~n', [])
	;   throw(error(rdf_save_failed(Subject), 'Internal error'))
	).
rdf_save_subject(Out, Subject, DB) :-
	(   var(DB)
	->  rdf_save_subject(Out, Subject, [])
	;   rdf_save_subject(Out, Subject, [graph(DB)])
	).


%%	rdf_save_subject(+Out:stream, +Subject:resource, +BaseURI,
%%			 +Indent:int, +Options) is det.
%
%	Save properties of Subject.
%
%	@param Indent	Current indentation

rdf_save_subject(_, Subject, _, _, _) :-
	inlined(Subject), !.
rdf_save_subject(Out, Subject, BaseURI, Indent, Options) :-
	do_save_subject(Out, Subject, BaseURI, Indent, Options).

do_save_subject(Out, Subject, BaseURI, Indent, Options) :-
	graph(Options, DB),
	findall(Pred=Object, rdf_db(Subject, Pred, Object, DB), Atts0),
	sort(Atts0, Atts),		% remove duplicates
	length(Atts, L),
	(   length(Atts0, L0),
	    Del is L0-L,
	    Del > 0
	->  print_message(informational,
			  rdf(save_removed_duplicates(Del, Subject)))
	;   true
	),
	rdf_save_subject(Out, Subject, BaseURI, Atts, Indent, Options),
	flag(rdf_db_saved_triples, X, X+L).

rdf_db(Subject, Pred, Object, DB) :-
	var(DB), !,
	rdf(Subject, Pred, Object).
rdf_db(Subject, Pred, Object, DB) :-
	rdf(Subject, Pred, Object, DB:_).

%%	rdf_save_subject(+Out:stream, +Subject:resource, +BaseURI,
%%			 +Atts:list(Pred=Obj), +Indent:int, +Options) is det.
%
%	Save triples defined by Atts on Subject.

rdf_save_subject(Out, Subject, BaseURI, Atts, Indent, Options) :-
	rdf_equal(rdf:type, RdfType),
	select(RdfType=Type, Atts, Atts1),
	\+ rdf_is_bnode(Type),
	rdf_id(Type, BaseURI, TypeId),
	xml_is_name(TypeId), !,
	format(Out, '~*|<', [Indent]),
	rdf_write_id(Out, TypeId),
	save_about(Out, BaseURI, Subject),
	save_attributes(Atts1, BaseURI, Out, TypeId, Indent, Options).
rdf_save_subject(Out, Subject, BaseURI, Atts, Indent, Options) :-
	format(Out, '~*|<rdf:Description', [Indent]),
	save_about(Out, BaseURI, Subject),
	save_attributes(Atts, BaseURI, Out, rdf:'Description', Indent, Options).

xml_is_name(_NS:Atom) :- !,
	xml_name(Atom).
xml_is_name(Atom) :-
	xml_name(Atom).

%%	save_about(+Out, +BaseURI, +Subject) is det.
%
%	Save the rdf:about. If Subject is a  blank node, save the nodeID
%	if any.

save_about(Out, _, Subject) :-
	rdf_is_bnode(Subject), !,
	(   named_anon(Subject, NodeID)
	->  format(Out, ' rdf:nodeID="~w"', [NodeID])
	;   true
	).
save_about(Out, BaseURI, Subject) :-
	stream_property(Out, encoding(Encoding)),
	rdf_value(Subject, BaseURI, QSubject, Encoding),
	format(Out, ' rdf:about="~w"', [QSubject]).

%%	save_attributes(+List, +BaseURI, +Stream, +Element, +Indent, +Options)
%
%	Save the attributes.  Short literal attributes are saved in the
%	tag.  Others as the content of the description element.  The
%	begin tag has already been filled.

save_attributes(Atts, BaseURI, Out, Element, Indent, Options) :-
	split_attributes(Atts, InTag, InBody, Options),
	SubIndent is Indent + 2,
	save_attributes2(InTag, BaseURI, tag, Out, SubIndent, Options),
	(   InBody == []
	->  format(Out, '/>~n', [])
	;   format(Out, '>~n', []),
	    save_attributes2(InBody, BaseURI, body, Out, SubIndent, Options),
	    format(Out, '~N~*|</', [Indent]),
	    rdf_write_id(Out, Element),
	    format(Out, '>~n', [])
	).

%%	split_attributes(+Attributes, -HeadAttrs, -BodyAttr, Options)
%
%	Split attribute (Name=Value) list into attributes for the head
%	and body. Attributes can only be in the head if they are literal
%	and appear only one time in the attribute list.

split_attributes(Atts, [], Atts, Options) :-
	option(xml_attributes(false), Options), !.
split_attributes(Atts, HeadAttr, BodyAttr, _) :-
	duplicate_attributes(Atts, Dupls, Singles),
	simple_literal_attributes(Singles, HeadAttr, Rest),
	append(Dupls, Rest, BodyAttr).

%%	duplicate_attributes(+Attrs, -Duplicates, -Singles)
%
%	Extract attributes that appear more than onces as we cannot
%	dublicate an attribute in the head according to the XML rules.

duplicate_attributes([], [], []).
duplicate_attributes([H|T], Dupls, Singles) :-
	H = (Name=_),
	named_attributes(Name, T, D, R),
	D \== [],
	append([H|D], Dupls2, Dupls), !,
	duplicate_attributes(R, Dupls2, Singles).
duplicate_attributes([H|T], Dupls2, [H|Singles]) :-
	duplicate_attributes(T, Dupls2, Singles).

named_attributes(_, [], [], []) :- !.
named_attributes(Name, [H|T], D, R) :-
	(   H = (Name=_)
	->  D = [H|DT],
	    named_attributes(Name, T, DT, R)
	;   R = [H|RT],
	    named_attributes(Name, T, D, RT)
	).

%%	simple_literal_attributes(+Attributes, -Inline, -Body)
%
%	Split attributes for (literal) attributes to be used in the
%	begin-tag and ones that have to go into the body of the description.

simple_literal_attributes([], [], []).
simple_literal_attributes([H|TA], [H|TI], B) :-
	in_tag_attribute(H), !,
	simple_literal_attributes(TA, TI, B).
simple_literal_attributes([H|TA], I, [H|TB]) :-
	simple_literal_attributes(TA, I, TB).

in_tag_attribute(_=literal(Text)) :-
	atom(Text),			% may not have lang qualifier
	atom_length(Text, Len),
	Len < 60.

%%	save_attributes(+List, +BaseURI, +TagOrBody, +Stream)
%
%	Save a list of attributes.

save_attributes2([], _, _, _, _, _).
save_attributes2([H|T], BaseURI, Where, Out, Indent, Options) :-
	save_attribute(Where, H, BaseURI, Out, Indent, Options),
	save_attributes2(T, BaseURI, Where, Out, Indent, Options).

save_attribute(tag, Name=literal(Value), BaseURI, Out, Indent, _DB) :-
	AttIndent is Indent + 2,
	rdf_id(Name, BaseURI, NameText),
	stream_property(Out, encoding(Encoding)),
	xml_quote_attribute(Value, QVal, Encoding),
	format(Out, '~N~*|', [AttIndent]),
	rdf_write_id(Out, NameText),
	format(Out, '="~w"', [QVal]).
save_attribute(body, Name=literal(Literal0), BaseURI, Out, Indent, Options) :- !,
	rdf_id(Name, BaseURI, NameText),
	(   memberchk(convert_typed_literal(Converter), Options),
	    call(Converter, Type, Content, Literal0)
	->  Literal = type(Type, Content)
	;   Literal = Literal0
	),
	save_body_literal(Literal, NameText, BaseURI, Out, Indent, Options).
save_attribute(body, Name=Value, BaseURI, Out, Indent, Options) :-
	rdf_is_bnode(Value), !,
	rdf_id(Name, BaseURI, NameText),
	format(Out, '~N~*|<', [Indent]),
	rdf_write_id(Out, NameText),
	(   named_anon(Value, NodeID)
	->  format(Out, ' rdf:nodeID="~w"/>', [NodeID])
	;   (   rdf(S1, Name, Value),
	        rdf(S2, P2, Value),
		(S1 \== S2 ; Name \== P2)
	    ->  predicate_property(named_anon(_,_), number_of_clauses(N)),
		atom_concat('bn', N, NodeID),
		assertz(named_anon(Value, NodeID))
	    ;	true
	    ),
	    SubIndent is Indent + 2,
	    (   rdf_collection(Value)
	    ->  save_about(Out, BaseURI, Value),
		format(Out, ' rdf:parseType="Collection">~n', []),
		rdf_save_list(Out, Value, BaseURI, SubIndent, Options)
	    ;   format(Out, '>~n', []),
		rdf_save_subject(Out, Value, BaseURI, SubIndent, Options)
	    ),
	    format(Out, '~N~*|</', [Indent]),
	    rdf_write_id(Out, NameText),
	    format(Out, '>~n', [])
	).
save_attribute(body, Name=Value, BaseURI, Out, Indent, Options) :-
	option(inline(true), Options),
	has_attributes(Value, Options),
	\+ inlined(Value), !,
	assertz(inlined(Value)),
	rdf_id(Name, BaseURI, NameText),
	format(Out, '~N~*|<', [Indent]),
	rdf_write_id(Out, NameText),
	SubIndent is Indent + 2,
	(   rdf_collection(Value)
	->  save_about(Out, BaseURI, Value),
	    format(Out, ' rdf:parseType="Collection">~n', []),
	    rdf_save_list(Out, Value, BaseURI, SubIndent, Options)
	;   format(Out, '>~n', []),
	    do_save_subject(Out, Value, BaseURI, SubIndent, Options)
	),
	format(Out, '~N~*|</', [Indent]),
	rdf_write_id(Out, NameText),
	format(Out, '>~n', []).
save_attribute(body, Name=Value, BaseURI, Out, Indent, _DB) :-
	stream_property(Out, encoding(Encoding)),
	rdf_value(Value, BaseURI, QVal, Encoding),
	rdf_id(Name, BaseURI, NameText),
	format(Out, '~N~*|<', [Indent]),
	rdf_write_id(Out, NameText),
	format(Out, ' rdf:resource="~w"/>', [QVal]).

has_attributes(URI, Options) :-
	graph(Options, DB),
	rdf_db(URI, _, _, DB), !.

%%	save_body_literal(+Literal, +NameText, +BaseURI,
%%			  +Out, +Indent, +Options).

save_body_literal(lang(Lang, Value),
		  NameText, BaseURI, Out, Indent, Options) :- !,
	format(Out, '~N~*|<', [Indent]),
	rdf_write_id(Out, NameText),
	(   memberchk(document_language(Lang), Options)
	->  write(Out, '>')
	;   rdf_id(Lang, BaseURI, LangText),
	    format(Out, ' xml:lang="~w">', [LangText])
	),
	save_attribute_value(Value, Out, Indent),
	write(Out, '</'), rdf_write_id(Out, NameText), write(Out, '>').
save_body_literal(type(Type, DOM),
		  NameText, _BaseURI, Out, Indent, Options) :-
	rdf_equal(Type, rdf:'XMLLiteral'), !,
	(   atom(DOM)
	->  format(Out, '~N~*|<', [Indent]),
	    rdf_write_id(Out, NameText),
	    format(Out, ' rdf:parseType="Literal">~w</', [DOM]),
	    rdf_write_id(Out, NameText), write(Out, '>')
	;   save_xml_literal(DOM, NameText, Out, Indent, Options)
	).
save_body_literal(type(Type, Value),
		  NameText, BaseURI, Out, Indent, _) :- !,
	format(Out, '~N~*|<', [Indent]),
	rdf_write_id(Out, NameText),
	stream_property(Out, encoding(Encoding)),
	rdf_value(Type, BaseURI, QVal, Encoding),
	format(Out, ' rdf:datatype="~w">', [QVal]),
	save_attribute_value(Value, Out, Indent),
	write(Out, '</'), rdf_write_id(Out, NameText), write(Out, '>').
save_body_literal(Literal,
		  NameText, _, Out, Indent, _) :-
	atomic(Literal), !,
	format(Out, '~N~*|<', [Indent]),
	rdf_write_id(Out, NameText),
	write(Out, '>'),
	save_attribute_value(Literal, Out, Indent),
	write(Out, '</'), rdf_write_id(Out, NameText), write(Out, '>').
save_body_literal(DOM,
		  NameText, BaseURI, Out, Indent, Options) :-
	rdf_equal(Type, rdf:'XMLLiteral'),
	save_body_literal(type(Type, DOM),
			  NameText, BaseURI, Out, Indent, Options).

save_attribute_value(Value, Out, _) :-	% strings
	atom(Value), !,
	stream_property(Out, encoding(Encoding)),
	xml_quote_cdata(Value, QVal, Encoding),
	write(Out, QVal).
save_attribute_value(Value, Out, _) :-	% numbers
	number(Value), !,
	writeq(Out, Value).		% quoted: preserve floats
save_attribute_value(Value, _Out, _) :-
	throw(error(save_attribute_value(Value), _)).

%%	save_xml_literal(+DOM, +Attr, +Out, +Indent, +Options) is det.
%
%	Save an XMLLiteral value. We already emitted
%
%		==
%		<prop parseType="literal"
%		==
%
%	but  not  the  terminating  =|>|=.  We  need  to  establish  the
%	namespaces used in the DOM. The   namespaces in the rdf document
%	are in the nsmap-option of Options.

save_xml_literal(DOM, Attr, Out, Indent, Options) :-
	xml_is_dom(DOM), !,
	memberchk(nsmap(NsMap), Options),
	id_to_atom(Attr, Atom),
	xml_write(Out,
		  element(Atom, ['rdf:parseType'='Literal'], DOM),
		  [ header(false),
		    indent(Indent),
		    nsmap(NsMap)
		  ]).
save_xml_literal(NoDOM, _, _, _, _) :-
	must_be(xml_dom, NoDOM).

id_to_atom(NS:Local, Atom) :- !,
	atomic_list_concat([NS,Local], :, Atom).
id_to_atom(ID, ID).


%%	rdf_collection(+URI) is semidet.
%
%	True  if  URI  represents  an  RDF    list  that  fits  the  RDF
%	parseType=collection syntax. This means it is   a linked list of
%	bnode-cells with a rdf:first that is   a  resource, optionally a
%	rdf:type that is an rdf:list and the list ends in an rdf:nil.

:- rdf_meta
	rdf_collection(r),
	collection_p(r,r).

rdf_collection(rdf:nil) :- !.
rdf_collection(Cell) :-
	rdf_is_bnode(Cell),
	findall(F, rdf(Cell, rdf:first, F), [_]),
	findall(F, rdf(Cell, rdf:rest, F), [Rest]),
	forall(rdf(Cell, P, V),
	       collection_p(P, V)),
	rdf_collection(Rest).

collection_p(rdf:first, V) :- atom(V).
collection_p(rdf:rest, _).
collection_p(rdf:type, rdf:'List').


%%	rdf_save_list(+Out, +List, +BaseURI, +Indent, +Options)

rdf_save_list(_, List, _, _, _) :-
	rdf_equal(List, rdf:nil), !.
rdf_save_list(Out, List, BaseURI, Indent, Options) :-
	rdf_has(List, rdf:first, First),
	(   rdf_is_bnode(First)
	->  nl(Out),
	    rdf_save_subject(Out, First, BaseURI, Indent, Options)
	;   stream_property(Out, encoding(Encoding)),
	    rdf_value(First, BaseURI, QVal, Encoding),
	    format(Out, '~N~*|<rdf:Description rdf:about="~w"/>',
		   [Indent, QVal])
	),
	flag(rdf_db_saved_triples, X, X+3),
	(   rdf_has(List, rdf:rest, List2),
	    \+ rdf_equal(List2, rdf:nil)
	->  rdf_save_list(Out, List2, BaseURI, Indent, Options)
	;   true
	).


%%	rdf_id(+Resource, +BaseURI, -NSLocal)
%
%	Generate a NS:Local  name  for   Resource  given  the  indicated
%	default namespace. This call is used for elements.

rdf_id(Id, BaseURI, Local) :-
	assertion(atom(BaseURI)),
	atom_concat(BaseURI, Local, Id),
	sub_atom(Local, 0, 1, _, #), !.
rdf_id(Id, _, NS:Local) :-
	iri_xml_namespace(Id, Full, Local),
	ns(NS, Full), !.
rdf_id(Id, _, NS:Local) :-
	ns(NS, Full),
	Full \== '',
	atom_concat(Full, Local, Id), !.
rdf_id(Id, _, Id).


%%	rdf_write_id(+Out, +NSLocal) is det.
%
%	Write an identifier. We cannot use native write on it as both NS
%	and Local can be operators.

rdf_write_id(Out, NS:Local) :- !,
	format(Out, '~w:~w', [NS, Local]).
rdf_write_id(Out, Atom) :-
	write(Out, Atom).

%%	rdf_value(+Resource, +BaseURI, -Text, +Encoding)
%
%	According  to  "6.4  RDF  URI  References"  of  the  RDF  Syntax
%	specification, a URI reference is  UNICODE string not containing
%	control sequences, represented as  UTF-8   and  then  as escaped
%	US-ASCII.

rdf_value(Base, Base, '', _) :- !.
rdf_value(V, Base, Text, Encoding) :-
	atom_concat(Base, Local, V),
	sub_atom(Local, 0, _, _, #), !,
	xml_quote_attribute(Local, Text, Encoding).
rdf_value(V, _, Text, Encoding) :-
	ns(NS, Full),
	atom_concat(Full, Local, V), !,
	xml_quote_attribute(Local, QLocal, Encoding),
	atomic_list_concat(['&', NS, (';'), QLocal], Text).
rdf_value(V, _, Q, Encoding) :-
	xml_quote_attribute(V, Q, Encoding).


		 /*******************************
		 *	DEPRECATED MATERIAL	*
		 *******************************/

%%	rdf_match_label(+Method, +Search, +Atom) is semidet.
%
%	True if Search matches Atom as   defined by Method. All matching
%	is performed case-insensitive. Defines methods are:
%
%	  * exact
%	  Perform exact, but case-insensitive match.
%	  * substring
%	  Search is a sub-string of Text.
%	  * word
%	  Search appears as a whole-word in Text.
%	  * prefix
%	  Text start with Search.
%	  * like
%	  Text matches Search, case insensitively, where the `*'
%	  character in Search matches zero or more characters.


%%	rdf_split_url(+Prefix, +Local, -URL) is det.
%%	rdf_split_url(-Prefix, -Local, +URL) is det.
%
%	Split/join a URL.  This functionality is moved to library(sgml).
%
%	@deprecated Use iri_xml_namespace/3. Note that the argument
%	order is iri_xml_namespace(+IRI, -Namespace, -Localname).

rdf_split_url(Prefix, Local, URL) :-
	atomic(URL), !,
	iri_xml_namespace(URL, Prefix, Local).
rdf_split_url(Prefix, Local, URL) :-
	atom_concat(Prefix, Local, URL).

%%	rdf_url_namespace(+URL, -Namespace)
%
%	Namespace is the namespace of URL.
%
%	@deprecated Use iri_xml_namespace/2

rdf_url_namespace(URL, Prefix) :-
	iri_xml_namespace(URL, Prefix).


		 /*******************************
		 *	      LITERALS		*
		 *******************************/

%%	rdf_new_literal_map(-Map) is det.
%
%	Create a new literal map, returning an opaque handle.

%%	rdf_destroy_literal_map(+Map) is det.
%
%	Destroy a literal map. After this call,   further use of the Map
%	handle is illegal. Additional synchronisation  is needed if maps
%	that are shared between threads are   destroyed to guarantee the
%	handle    is    no    longer    used.    In    some    scenarios
%	rdf_reset_literal_map/1 provides a safe alternative.

%%	rdf_reset_literal_map(+Map) is det.
%
%	Delete all content from the literal map.

%%	rdf_insert_literal_map(+Map, +Key, +Value) is det.
%
%	Add a relation between  Key  and  Value   to  the  map.  If this
%	relation already exists no action is performed.

%%	rdf_insert_literal_map(+Map, +Key, +Value, -KeyCount) is det.
%
%	As rdf_insert_literal_map/3. In addition, if Key is a new key in
%	Map, unify KeyCount with the number of  keys in Map. This serves
%	two purposes. Derived maps, such as  the stem and metaphone maps
%	need to know about new  keys   and  it avoids additional foreign
%	calls for doing the progress in rdf_litindex.pl.

%%	rdf_delete_literal_map(+Map, +Key) is det.
%
%	Delete Key and all associated values from the map.

%%	rdf_delete_literal_map(+Map, +Key, +Value) is det.
%
%	Delete the association between Key and Value from the map.

%%	rdf_find_literal_map(+Map, +KeyList, -ValueList) is det.
%
%	Unify ValueList with an ordered set  of values associated to all
%	keys from KeyList. Each key in  KeyList   is  either an atom, an
%	integer or a term not(Key).  If   not-terms  are provided, there
%	must be at least one positive keywords. The negations are tested
%	after establishing the positive matches.

%%	rdf_keys_in_literal_map(+Map, +Spec, -Answer) is det.
%
%	Realises various queries on the key-set:
%
%	  * all
%
%	  Unify Answer with an ordered list of all keys.
%	  * key(+Key)
%
%	  Succeeds if Key is a key in the map and unify Answer with the
%	  number of values associated with the key. This provides a fast
%	  test of existence without fetching the possibly large
%	  associated value set as with rdf_find_literal_map/3.
%
%	  * prefix(+Prefix)
%	  Unify Answer with an ordered set of all keys that have the
%	  given prefix. See section 3.1 for details on prefix matching.
%	  Prefix must be an atom. This call is intended for
%	  auto-completion in user interfaces.
%
%	  * ge(+Min)
%	  Unify Answer with all keys that are larger or equal to the
%	  integer Min.
%
%	  * le(+Max)
%	  Unify Answer with all keys that are smaller or equal to the integer
%	  Max.
%
%	  * between(+Min, +Max) Unify
%	  Answer with all keys between Min and Max (including).

%%	rdf_statistics_literal_map(+Map, -KeyValue)
%
%	Query some statistics of the map. Provides KeyValue are:
%
%	  * size(-Keys, -Relations)
%	  Unify Keys with the total key-count of the index and Relation
%	  with the total Key-Value count.



		 /*******************************
		 *	       MISC		*
		 *******************************/

%%	rdf_version(-Version) is det.
%
%	True when Version is the numerical version-id of this library.
%	The version is computed as
%
%		Major*10000 + Minor*100 + Patch.

%%	rdf_set(+Term) is det.
%
%	Set properties of the RDF store.  Currently defines:
%
%	  * hash(+Hash, +Parameter, +Value)
%	  Set properties for a triple index.  Hash is one of =s=,
%	  =p=, =sp=, =o=, =po=, =spo=, =g=, =sg= or =pg=.  Parameter
%	  is one of:
%
%	    - size
%	    Value defines the number of entries in the hash-table.
%	    Value is rounded _down_ to a power of 2.  After setting
%	    the size explicitly, auto-sizing for this table is
%	    disabled.  Setting the size smaller than the current
%	    size results in a =permission_error= exception.
%
%	    - average_chain_len
%	    Set maximum average collision number for the hash.
%
%	    - optimize_threshold
%	    Related to resizing hash-tables.  If 0, all triples are
%	    moved to the new size by the garbage collector.  If more
%	    then zero, those of the last Value resize steps remain at
%	    their current location.  Leaving cells at their current
%	    location reduces memory fragmentation and slows down
%	    access.

%%	rdf_md5(+Graph, -MD5) is det.
%
%	True when MD5 is the MD5 hash for  all triples in graph. The MD5
%	digest itself is represented as an   atom holding a 32-character
%	hexadecimal   string.   The   library   maintains   the   digest
%	incrementally on rdf_load/[1,2], rdf_load_db/1, rdf_assert/[3,4]
%	and  rdf_retractall/[3,4].  Checking  whether   the  digest  has
%	changed since the last rdf_load/[1,2]  call provides a practical
%	means for checking whether the file needs to be saved.
%
%	@deprecated New code should use rdf_graph_property(Graph,
%	hash(Hash)).

%%	rdf_generation(-Generation) is det.
%
%	True when Generation is the current  generation of the database.
%	Each modification to the database  increments the generation. It
%	can be used to check the validity of cached results deduced from
%	the database. Committing a non-empty  transaction increments the
%	generation by one.
%
%	When inside a transaction,  Generation  is   unified  to  a term
%	_TransactionStartGen_ + _InsideTransactionGen_. E.g.,  4+3 means
%	that the transaction was started at   generation 4 of the global
%	database and we have  created  3   new  generations  inside  the
%	transaction. Note that this choice  of representation allows for
%	comparing  generations  using  Prolog  arithmetic.  Comparing  a
%	generation in one  transaction  with   a  generation  in another
%	transaction is meaningless.

%%	rdf_estimate_complexity(?Subject, ?Predicate, ?Object, -Complexity)
%
%	Return the number of alternatives as   indicated by the database
%	internal hashed indexing. This is a rough measure for the number
%	of alternatives we can expect for   an  rdf_has/3 call using the
%	given three arguments. When  called   with  three variables, the
%	total number of triples is returned.   This  estimate is used in
%	query  optimisation.  See  also    rdf_predicate_property/2  and
%	rdf_statistics/1 for additional information to help optimizers.

%%	rdf_debug(+Level) is det.
%
%	Set debugging to Level.  Level is an integer 0..9.  Default is
%	0 no debugging.

%%	rdf_atom_md5(+Text, +Times, -MD5) is det.
%
%	Computes the MD5 hash from Text,  which   is  an atom, string or
%	list of character codes. Times is an integer >= 1. When > 0, the
%	MD5 algorithm is repeated Times  times   on  the generated hash.
%	This can be used for  password   encryption  algorithms  to make
%	generate-and-test loops slow.
%
%	@deprecated. New code should  use   the  library(crypt)  library
%	provided by the clib package.


		 /*******************************
		 *	 SANDBOX SUPPORT	*
		 *******************************/

:- multifile
	sandbox:safe_primitive/1.

sandbox:safe_primitive(rdf_db:rdf(_,_,_)).
sandbox:safe_primitive(rdf_db:rdf(_,_,_,_)).
sandbox:safe_primitive(rdf_db:rdf_has(_,_,_)).
sandbox:safe_primitive(rdf_db:rdf_has(_,_,_,_)).
sandbox:safe_primitive(rdf_db:rdf_reachable(_,_,_)).
sandbox:safe_primitive(rdf_db:rdf_reachable(_,_,_,_,_)).
sandbox:safe_primitive(rdf_db:rdf_resource(_)).
sandbox:safe_primitive(rdf_db:rdf_subject(_)).
sandbox:safe_primitive(rdf_db:rdf_predicate_property(_,_)).
sandbox:safe_primitive(rdf_db:rdf_current_predicate(_)).
sandbox:safe_primitive(rdf_db:rdf_current_literal(_)).
sandbox:safe_primitive(rdf_db:rdf_graph(_)).
sandbox:safe_primitive(rdf_db:rdf_generation(_)).
sandbox:safe_primitive(rdf_db:rdf_estimate_complexity(_,_,_,_)).
sandbox:safe_primitive(rdf_db:rdf_statistics(_)).
sandbox:safe_primitive(rdf_db:lang_matches(_,_)).
sandbox:safe_primitive(rdf_db:lang_equal(_,_)).
sandbox:safe_primitive(rdf_db:rdf_version(_)).
sandbox:safe_primitive(rdf_db:rdf_md5(_,_)).
sandbox:safe_primitive(rdf_db:rdf_graph_modified_(_,_,_)).
sandbox:safe_primitive(rdf_db:rdf_graph_source_(_,_,_)).
sandbox:safe_primitive(rdf_db:rdf_graph_(_,_)).
sandbox:safe_primitive(rdf_db:rdf_find_literal_map(_,_,_)).
sandbox:safe_primitive(rdf_db:rdf_keys_in_literal_map(_,_,_)).
sandbox:safe_primitive(rdf_db:rdf_statistics_literal_map(_,_)).


		 /*******************************
		 *	       MESSAGES		*
		 *******************************/

:- multifile
	prolog:message//1.

prolog:message(rdf(Term)) -->
	message(Term).

message(loaded(How, What, BaseURI, Triples, Time)) -->
	how(How),
	source(What),
	into(What, BaseURI),
	in_time(Triples, Time).
message(save_removed_duplicates(N, Subject)) -->
	[ 'Removed ~d duplicate triples about "~p"'-[N,Subject] ].
message(saved(File, SavedSubjects, SavedTriples)) -->
	[ 'Saved ~D triples about ~D subjects into ~p'-
	  [SavedTriples, SavedSubjects, File]
	].
message(using_namespace(Id, NS)) -->
	[ 'Using namespace id ~w for ~w'-[Id, NS] ].
message(inconsistent_cache(DB, Graphs)) -->
	[ 'RDF cache file for ~w contains the following graphs'-[DB], nl,
	  '~t~8|~p'-[Graphs]
	].
message(guess_format(Ext)) -->
	[ 'Unknown file-extension: ~w.  Assuming RDF/XML'-[Ext] ].
message(meta(not_expanded(G))) -->
	[ 'rdf_meta/1: ~p is not expanded'-[G] ].
message(deprecated(rdf_unload(Graph))) -->
	[ 'rdf_unload/1: Use ~q'-[rdf_unload_graph(Graph)] ].


how(load)   --> [ 'Loaded' ].
how(parsed) --> [ 'Parsed' ].

source(SourceURL) -->
	{ uri_file_name(SourceURL, File), !,
	  file_base_name(File, Base)	% TBD: relative file?
	},
	[ ' "~w"'-[Base] ].
source(SourceURL) -->
	[ ' "~w"'-[SourceURL] ].

into(_, _) --> [].			% TBD

in_time(Triples, ParseTime) -->
	[ ' in ~2f sec; ~D triples'-[ParseTime, Triples]
	].