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
|
--
-- $Id$
--
-- This file is part of the OpenLink Software Virtuoso Open-Source (VOS)
-- project.
--
-- Copyright (C) 1998-2018 OpenLink Software
--
-- This project 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; only version 2 of the License, dated June 1991.
--
-- 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 General Public License along
-- with this program; if not, write to the Free Software Foundation, Inc.,
-- 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
--
--
create procedure L_O_LOOK (inout val_str varchar, inout dt_lang int, inout lng varchar, inout is_text int, inout id int)
{
vectored;
-- dbg_obj_princ ('L_O_LOOK (', val_str, dt_lang, lng, is_text, id, ')');
declare fetched int;
set triggers off;
insert into rdf_obj index ro_val option (fetch id by 'RDF_RO_ID' set fetched) (ro_val, ro_dt_and_lang, ro_id) values (val_str, dt_lang, id);
if (0 = fetched)
{
declare flags int;
flags := case when is_text = 2 then 0 else is_text end;
-- if (0 = flags)
-- {
-- dbg_obj_princ ('zero ro_flags in ttlpv,sql:37 ', val_str, lng);
-- ;
-- }
insert into rdf_obj index rdf_obj (ro_id, ro_val, ro_flags, ro_dt_and_lang, ro_long) values (id, val_str, flags, dt_lang, lng);
if (1 = is_text)
insert soft VTLOG_DB_DBA_RDF_OBJ option (no cluster) (vtlog_ro_id, SNAPTIME, DMLTYPE) values (id, curdatetime (), 'I');
if (2 = is_text)
{
declare geo any;
if (lng is null)
geo := deserialize (val_str);
else
geo := deserialize (lng);
geo_insert ('DB.DBA.RDF_GEO', geo, id);
return;
}
declare pref varchar;
if (lng is null)
pref := subseq (val_str, 0, case when length (val_str) < 10 then length (val_str) else 10 end);
else
pref := subseq (lng, 0, 10);
insert into ro_start option (no cluster) (rs_start, rs_dt_and_lang, rs_ro_id) values (pref, dt_lang, rdf_box (0, 257, 257, id, 0));
}
else if ((1 = is_text) and not __rdf_obj_ft_rule_check (null, null))
{
declare flags int;
if (bit_and (is_text, 1) and exists (select 1 from DB.DBA.RDF_OBJ where RO_ID=id and not bit_and (RO_FLAGS, 1)))
{
update DB.DBA.RDF_OBJ set RO_FLAGS = bit_or (RO_FLAGS, 1) where RO_ID=id;
insert soft VTLOG_DB_DBA_RDF_OBJ option (no cluster) (vtlog_ro_id, SNAPTIME, DMLTYPE) values (id, curdatetime (), 'I');
}
}
}
;
create procedure RL_I2ID_NP (inout pref varchar, inout name varchar, inout id iri_id_8)
{
vectored;
declare pref_fetched, id_fetched, pref_id int;
insert into rdf_prefix index rdf_prefix option (fetch pref_id by 'RDF_PREF_SEQ' set pref_fetched) (rp_name, rp_id) values (pref, pref_id);
if (0 = pref_fetched)
insert soft rdf_prefix index DB_DBA_RDF_PREFIX_UNQC_RP_ID (rp_name, rp_id) values (pref, pref_id);
rdf_cache_id ('p', pref, pref_id);
__rl_set_pref_id (name, pref_id);
-- name[0] := bit_shift (pref_id, -24);
-- name[1] := bit_shift (pref_id, -16);
-- name[2] := bit_shift (pref_id, -8);
-- name[3] := pref_id;
insert into rdf_iri index rdf_iri option (fetch id by 'RDF_URL_IID_NAMED' set id_fetched) (ri_name, ri_id) values (name, id);
if (0 = id_fetched)
insert into RDF_IRI index DB_DBA_RDF_IRI_UNQC_RI_ID (RI_ID, RI_NAME) values (id, name);
}
;
create procedure rl_i2id (inout name varchar, inout id iri_id_8)
{
vectored;
declare id_fetched int;
insert into rdf_iri index rdf_iri option (fetch id by 'RDF_URL_IID_NAMED' set id_fetched) (ri_name, ri_id) values (name, id);
if (0 = id_fetched)
insert into RDF_IRI index DB_DBA_RDF_IRI_UNQC_RI_ID (RI_ID, RI_NAME) values (id, name);
rdf_cache_id ('i', name, id);
}
;
create procedure DB.DBA.TTLP_RL_TRIPLE (
inout g_iid IRI_ID, inout s_uri varchar, inout p_uri varchar,
inout o_uri varchar,
inout app_env any )
{
connection_set ('g_iid', g_iid);
dpipe_input (app_env[1], s_uri, p_uri, o_uri, null);
if (daq_buffered_bytes (app_env[1]) > 30000000 or dpipe_count (app_env[1]) >= sys_stat ('dc_max_batch_sz'))
rl_send (app_env, g_iid);
}
;
create procedure rdf_rl_type_id (in iri varchar)
{
declare id, old_mode int;
declare t_iri_id, daq any;
id := (select rdt_twobyte from rdf_datatype where rdt_qname = iri);
if (id)
{
rdf_cache_id ('t', iri, id);
return id;
}
old_mode := log_enable (1, 1);
declare n_dead int;
n_dead := 1;
declare exit handler for sqlstate '40001' {
rollback work;
n_dead := n_dead + 1;
if (n_dead > 10)
signal ('RDF..', 'Over 10 deadlocks getting language id. Retry ref load');
goto again;
};
again:
if (2 = old_mode)
log_enable (0, 1);
t_iri_id := iri_to_id (iri, 1);
id := (select rdt_twobyte from rdf_datatype where rdt_qname = iri);
if (id)
{
commit work; -- if load non transactional, this is still a sharpp transaction boundary.
log_enable (old_mode, 1);
rdf_cache_id ('t', iri, id);
return id;
}
id:= sequence_next ('RDF_DATATYPE_TWOBYTE', 1, 1);
insert into rdf_datatype (rdt_twobyte, rdt_iid, rdt_qname) values (id, t_iri_id, iri);
commit work; -- if load non transactional, this is still a sharpp transaction boundary.
log_enable (old_mode, 1);
rdf_cache_id ('t', iri, id);
return id;
}
;
create procedure rdf_rl_lang_id (in ln varchar)
{
declare id, old_mode int;
declare daq any;
ln := lower (ln);
id := (select RL_TWOBYTE from DB.DBA.RDF_LANGUAGE where RL_ID = ln);
if (id)
{
rdf_cache_id ('l', ln, id);
return id;
}
old_mode := log_enable (1, 1);
declare n_dead int;
n_dead := 1;
declare exit handler for sqlstate '40001' {
rollback work;
n_dead := n_dead + 1;
if (n_dead > 10)
signal ('RDF..', 'Over 10 deadlocks getting language id. Retry ref load');
goto again;
};
again:
if (2 = old_mode)
log_enable (0, 1);
id := (select RL_TWOBYTE from DB.DBA.RDF_LANGUAGE where RL_ID = ln);
if (id)
{
rdf_cache_id ('l', ln, id);
commit work; -- if load non transactional, this is still a sharpp transaction boundary.
log_enable (old_mode, 1);
return id;
}
id:= sequence_next ('RDF_LANGUAGE_TWOBYTE', 1, 1);
insert into rdf_language (rl_twobyte, rl_id) values (id, ln);
commit work; -- if load non transactional, this is still a sharpp transaction boundary.
log_enable (old_mode, 1);
rdf_cache_id ('l', ln, id);
return id;
}
;
create procedure DB.DBA.TTLP_RL_TRIPLE_L (
inout g_iid IRI_ID, inout s_uri varchar, inout p_uri varchar,
inout o_val any, inout o_type varchar, inout o_lang varchar,
inout app_env any )
{
declare is_text int;
connection_set ('g_iid', g_iid);
if (__rdf_obj_ft_rule_check (g_iid, p_uri))
is_text := 1;
if (o_type or o_lang)
{
declare o_val_2 any;
declare lid, tid int;
if (o_lang)
{
lid := rdf_cache_id ('l', o_lang);
if (lid = 0)
lid := rdf_rl_lang_id (o_lang);
}
else
lid := 257;
if (o_type)
{
declare parsed any;
parsed := __xqf_str_parse_to_rdf_box (o_val, o_type, isstring (o_val));
if (parsed is not null)
{
if (__tag of rdf_box = __tag (parsed))
{
tid := rdf_cache_id ('t', o_type);
if (tid = 0)
tid := rdf_rl_type_id (o_type);
rdf_box_set_type (parsed, tid);
}
else if (__tag of XML = __tag (parsed))
{
parsed := rdf_box (parsed, 300, 257, 0, 1);
tid := rdf_cache_id ('t', o_type);
if (tid = 0)
tid := rdf_rl_type_id (o_type);
rdf_box_set_type (parsed, tid);
}
-- if (not bit_and (is_text, 1))
-- {
-- dbg_obj_princ ('zero set_is_text in ttlpv.sql:231', parsed);
-- ;
-- }
rdf_box_set_is_text (parsed, is_text);
dpipe_input (app_env[1], s_uri, p_uri, null, parsed);
goto do_flush; -- see below
}
tid := rdf_cache_id ('t', o_type);
if (tid = 0)
tid := rdf_rl_type_id (o_type);
}
else
tid := 257;
o_val_2 := rdf_box (o_val, tid, lid, 0, 1);
-- if (not bit_and (is_text, 1))
-- {
-- dbg_obj_princ ('zero set_is_text in ttlpv.sql:241', o_val_2);
-- ;
-- }
rdf_box_set_is_text (o_val_2, is_text);
dpipe_input (app_env[1], s_uri, p_uri, null, o_val_2);
}
else
{
-- make first first non default type because if all is default it will make no box
declare o_val_2 any;
o_val_2 := rdf_box (o_val, 300, 257, 0, 1);
-- if (not is_text)
-- {
-- dbg_obj_princ ('zero set_is_text in ttlpv.sql:265', o_val_2);
-- ;
-- }
if (is_text)
rdf_box_set_is_text (o_val_2, 1);
rdf_box_set_type (o_val_2, 257);
dpipe_input (app_env[1], s_uri, p_uri, null, o_val_2);
}
do_flush:
if (daq_buffered_bytes (app_env[1]) > 30000000 or dpipe_count (app_env[1]) >= sys_stat ('dc_max_batch_sz'))
rl_send (app_env, g_iid);
}
;
create procedure DB.DBA.TTLP_RL_NEW_GRAPH (inout g varchar, inout g_iid IRI_ID, inout app_env any)
{
-- dbg_obj_princ ('DB.DBA.TTLP_EV_NEW_GRAPH(', g, g_iid, app_env, ')');
declare prev_g iri_id;
prev_g := connection_get ('g_iid');
if (dpipe_count (app_env[1]))
rl_send (app_env, prev_g);
}
;
create procedure rl_local_dpipe ()
{
return dpipe (1, 'L_IRI_TO_ID', 'L_IRI_TO_ID', 'L_IRI_TO_ID', 'L_MAKE_RO');
}
;
create procedure rl_local_dpipe_gs ()
{
return dpipe (1, 'L_IRI_TO_ID', 'L_IRI_TO_ID', 'L_IRI_TO_ID', 'L_MAKE_RO', 'L_IRI_TO_ID');
}
;
create procedure RL_FLUSH (in dp any, in g_iid any)
{
declare ro_id_dict any;
if (1 or '1' = registry_get ('cl_rdf_text_index'))
ro_id_dict := dict_new (2000);
else
ro_id_dict := null;
connection_set ('g_dict', ro_id_dict);
connection_set ('g_iid', g_iid);
if (log_enable (null, 1) in (2,3))
{
set non_txn_insert = 1;
}
rl_dp_ids (dp, g_iid);
connection_set ('g_dict', 0);
connection_set ('g_iid', 0);
}
;
create procedure rl_send (inout env any, in g_iid any)
{
declare req, n_reqs int;
commit work;
-- dbg_obj_princ ('rl_send (', env, g_iid, ')');
n_reqs := env[2];
env[2] := n_reqs + 1;
req := aq_request (env[0], 'DB.DBA.RL_FLUSH', vector (env[1], g_iid));
env[1] := rl_local_dpipe ();
env[4 + mod (n_reqs, 5)] := req;
if (n_reqs > 5)
{
commit work; -- it may happen the aq request before is executed on client thread
aq_wait (env[0], env[4 + mod (n_reqs - 4, 5)], 1);
}
}
;
create procedure DB.DBA.TTLP_RL_COMMIT (inout g varchar, inout app_env any)
{
return;
}
;
create procedure rl_send_gs (inout env any, in g_iid any)
{
declare req, n_reqs int;
if (bit_and (4, dpipe_rdf_load_mode (env[1])))
return;
-- dbg_obj_princ ('rl_send_gs (', env, g_iid, ')');
commit work;
n_reqs := env[2];
env[2] := n_reqs + 1;
req := aq_request (env[0], 'DB.DBA.RL_FLUSH', vector (env[1], g_iid));
env[1] := rl_local_dpipe_gs ();
env[4 + mod (n_reqs, 5)] := req;
if (n_reqs > 5)
{
commit work; -- it may happen the aq request before is executed on client thread
aq_wait (env[0], env[4 + mod (n_reqs - 4, 5)], 1);
}
}
;
create procedure DB.DBA.TTLP_RL_GS_TRIPLE (
inout g_iid IRI_ID, inout s_uri varchar, inout p_uri varchar,
inout o_uri varchar,
inout app_env any )
{
declare dp any;
connection_set ('g_iid', g_iid);
dp := app_env[1];
dpipe_input (dp, s_uri, p_uri, o_uri, null, g_iid);
if ((daq_buffered_bytes (dp) > 30000000 or dpipe_count (app_env[1]) >= sys_stat ('dc_max_batch_sz'))
and 0 = bit_and (4, dpipe_rdf_load_mode (dp)))
rl_send_gs (app_env, g_iid);
}
;
create procedure DB.DBA.TTLP_RL_GS_TRIPLE_L (
inout g_iid IRI_ID, inout s_uri varchar, inout p_uri varchar,
inout o_val any, inout o_type varchar, inout o_lang varchar,
inout app_env any )
{
declare dp any;
dp := app_env[1];
declare is_text int;
if (isstring (g_iid))
g_iid := __i2id (g_iid);
connection_set ('g_iid', g_iid);
if (__rdf_obj_ft_rule_check (g_iid, p_uri))
is_text := 1;
if (o_type or o_lang)
{
declare o_val_2 any;
declare lid, tid int;
if (o_lang)
{
lid := rdf_cache_id ('l', o_lang);
if (lid = 0)
lid := rdf_rl_lang_id (o_lang);
}
else
lid := 257;
if (o_type)
{
declare parsed any;
parsed := __xqf_str_parse_to_rdf_box (o_val, o_type, isstring (o_val));
if (parsed is not null)
{
if (__tag of rdf_box = __tag (parsed))
{
tid := rdf_cache_id ('t', o_type);
if (tid = 0)
tid := rdf_rl_type_id (o_type);
rdf_box_set_type (parsed, tid);
}
else if (__tag of XML = __tag (parsed))
{
parsed := rdf_box (parsed, 300, 257, 0, 1);
rdf_box_set_type (parsed, 257);
}
-- if (not bit_and (is_text, 1))
-- {
-- dbg_obj_princ ('zero set_is_text in ttlpv.sql:401', parsed, is_text);
-- ;
-- }
rdf_box_set_is_text (parsed, is_text);
dpipe_input (dp, s_uri, p_uri, null, parsed, g_iid);
goto do_flush; -- see below
}
tid := rdf_cache_id ('t', o_type);
if (tid = 0)
tid := rdf_rl_type_id (o_type);
}
else
tid := 257;
o_val_2 := rdf_box (o_val, tid, lid, 0, 1);
-- if (not bit_and (is_text, 1))
-- {
-- dbg_obj_princ ('zero set_is_text in ttlpv.sql:414', o_val_2, is_text);
-- ;
-- }
rdf_box_set_is_text (o_val_2, is_text);
dpipe_input (dp, s_uri, p_uri, null, o_val_2, g_iid);
}
else
{
-- make first first non default type because if all is default it will make no box
declare o_val_2 any;
o_val_2 := rdf_box (o_val, 300, 257, 0, 1);
-- if (not is_text)
-- {
-- dbg_obj_princ ('zero set_is_text in ttlpv.sql:451', o_val_2);
-- ;
-- }
if (is_text)
rdf_box_set_is_text (o_val_2, 1);
rdf_box_set_type (o_val_2, 257);
dpipe_input (dp, s_uri, p_uri, null, o_val_2, g_iid);
}
do_flush:
if ((daq_buffered_bytes (dp) > 30000000 or dpipe_count (app_env[1]) >= sys_stat ('dc_max_batch_sz'))
and 0 = bit_and (4, dpipe_rdf_load_mode (dp)))
rl_send_gs (app_env, g_iid);
}
;
create procedure DB.DBA.TTLP_RL_GS_NEW_GRAPH (inout g varchar, inout g_iid IRI_ID, inout app_env any)
{
-- no op
return;
}
;
create procedure DB.DBA.TTLP_EV_NULL_IID (inout uri varchar, inout g_iid IRI_ID, inout app_env any, inout res IRI_ID)
{
res := uri;
}
;
--/1d1/tpch1000
--!!!
create procedure DB.DBA.TTLP_V_GS (in strg varchar, in base varchar, in graph varchar := null, in flags integer, in threads int, in log_mode int, in old_log_mode int)
{
declare ro_id_dict, app_env, g_iid any;
-- dbg_obj_princ ('DB.DBA.TTLP_V_GS (...', base, graph, flags, threads, log_mode, old_log_mode);
app_env := vector (async_queue (threads, 1), rl_local_dpipe_gs (), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
if (bit_and (flags, 2048))
dpipe_set_rdf_load (app_env[1], 6);
g_iid := case when length (graph) > 0 then iri_to_id (graph) else null end;
rdf_load_turtle (strg, base, graph, flags,
vector (
'DB.DBA.TTLP_RL_GS_NEW_GRAPH',
'DB.DBA.TTLP_EV_NEW_BLANK',
'DB.DBA.TTLP_EV_NULL_IID',
'DB.DBA.TTLP_RL_GS_TRIPLE',
'DB.DBA.TTLP_RL_GS_TRIPLE_L',
'DB.DBA.TTLP_RL_COMMIT',
'DB.DBA.TTLP_EV_REPORT_DEFAULT' ),
app_env);
if (bit_and (4, dpipe_rdf_load_mode (app_env[1])))
dpipe_exec_rdf_callback (app_env[1]);
else
{
rl_send_gs (app_env, g_iid);
commit work;
aq_wait_all (app_env[0]);
}
connection_set ('g_dict', null);
log_enable (old_log_mode, 1);
}
;
create procedure DB.DBA.TTLP_V (in strg varchar, in base varchar, in graph varchar := null, in flags integer := 0, in threads int := 3, in transactional int := 0, in log_enable int := null)
{
declare ro_id_dict, app_env, g_iid, old_log_mode any;
if (1 <> sys_stat ('cl_run_local_only'))
{
DB.DBA.TTLP_CL (strg, 0, base, graph, flags);
return;
}
declare exit handler for sqlstate '37000' {
if (app_env <> 0)
{
rl_send (app_env, g_iid);
commit work;
aq_wait_all (app_env[0]);
}
connection_set ('g_dict', null);
log_enable (old_log_mode, 1);
signal (__SQL_STATE, '[Vectorized Turtle loader] ' || __SQL_MESSAGE);
};
old_log_mode := log_enable (null, 1);
if (transactional = 0)
{
if (log_enable = 0 or log_enable = 1)
log_enable (2 + log_enable, 1);
}
else
threads := 0;
if (log_enable is not null)
{
old_log_mode := log_enable (log_enable, 1);
}
if (126 = __tag (strg))
strg := cast (strg as varchar);
if (bit_and (flags, 256+512))
return DB.DBA.TTLP_V_GS (strg, base, graph, flags, threads, log_enable, old_log_mode);
app_env := vector (async_queue (threads, 1),rl_local_dpipe (), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
g_iid := iri_to_id (graph);
rdf_load_turtle (strg, base, graph, flags,
vector (
'DB.DBA.TTLP_RL_NEW_GRAPH',
'DB.DBA.TTLP_EV_NEW_BLANK',
'DB.DBA.TTLP_EV_GET_IID',
'DB.DBA.TTLP_RL_TRIPLE',
'DB.DBA.TTLP_RL_TRIPLE_L',
'DB.DBA.TTLP_RL_COMMIT',
'DB.DBA.TTLP_EV_REPORT_DEFAULT' ),
app_env);
rl_send (app_env, g_iid);
commit work;
aq_wait_all (app_env[0]);
connection_set ('g_dict', null);
log_enable (old_log_mode, 1);
}
;
create procedure DB.DBA.RDF_LOAD_RDFXML_V (in strg varchar, in base varchar, in graph varchar := null, in threads int := 3, in transactional int := 0, in log_mode int := null, in parse_mode int := 0)
{
declare ro_id_dict, app_env, g_iid, old_log_mode any;
if (1 <> sys_stat ('cl_run_local_only'))
return rdf_load_rdfxml_cl (strg, base, graph,0);
declare exit handler for sqlstate '37000' {
rl_send (app_env, g_iid);
commit work;
aq_wait_all (app_env[0]);
connection_set ('g_dict', null);
log_enable (old_log_mode, 1);
signal (__SQL_STATE, '[Vectorized RDF/XML loader] ' || __SQL_MESSAGE);
};
old_log_mode := log_enable (null, 1);
if (transactional = 0)
{
if (log_mode = 0 or log_mode = 1)
log_enable (2 + log_mode, 1);
}
else
threads := 0;
if (log_mode is not null)
{
old_log_mode := log_enable (log_mode, 1);
}
if (126 = __tag (strg))
{
declare s any;
s := string_output ();
http (strg, s);
strg := s;
}
app_env := vector (async_queue (threads, 1), rl_local_dpipe (), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
g_iid := iri_to_id (graph);
rdf_load_rdfxml (strg, parse_mode, graph,
vector (
'DB.DBA.TTLP_RL_NEW_GRAPH',
'DB.DBA.TTLP_EV_NEW_BLANK',
'DB.DBA.TTLP_EV_GET_IID',
'DB.DBA.TTLP_RL_TRIPLE',
'DB.DBA.TTLP_RL_TRIPLE_L',
'DB.DBA.TTLP_RL_COMMIT',
'DB.DBA.TTLP_EV_REPORT_DEFAULT' ),
app_env, base);
rl_send (app_env, g_iid);
commit work;
aq_wait_all (app_env[0]);
connection_set ('g_dict', null);
log_enable (old_log_mode, 1);
}
;
create procedure ID_TO_IRI_VEC (in id iri_id)
{
vectored;
declare name, pref varchar;
declare idn int;
if (id is null)
return id;
if (not isiri_id (id))
{
if (__tag (id) = __tag of UNAME)
return id;
if (__tag (id) = __tag of varchar and bit_and (__box_flags (id), 1))
return id;
}
idn := iri_id_num (id);
if ((id >= #ib0) and (id < min_named_bnode_iri_id()))
{
if (idn >= 4611686018427387904)
return sprintf_iri ('nodeID://b%ld', idn-4611686018427387904);
return sprintf_iri ('nodeID://%ld', idn);
}
name := rdf_cache_id_to_name ('i', idn, 0);
if (0 = name)
{
name := (select ri_name from rdf_iri where ri_id = id);
if (name is null)
return sprintf_iri ('iri_id_%ld_with_no_name_entry', iri_id_num (id));
else
rdf_cache_id ('i', name, id);
}
pref := rdf_cache_id_to_name ('p', iri_name_id (name), 0);
if (pref <> 0)
return iri_from_pref_name (pref, name);
pref := (select rp_name from rdf_prefix where rp_id = iri_name_id (name));
if (pref is null)
pref := 'no prefix';
else
rdf_cache_id ('p', pref, iri_name_id (name));
return iri_from_pref_name (pref, name);
}
;
create procedure ID_TO_IRI_VEC_NS (in id any array)
{
vectored;
declare name, pref varchar;
declare idn int;
if (not isiri_id (id))
return (case (__tag (id))
when __tag of UNAME then id
when __tag of varchar then case when bit_and (__box_flags (id), 1) then id else NULL end
else NULL end );
idn := iri_id_num (id);
if ((id >= #ib0) and (id < min_named_bnode_iri_id()))
{
if (idn >= 4611686018427387904)
return sprintf_iri ('nodeID://b%ld', idn-4611686018427387904);
return sprintf_iri ('nodeID://%ld', idn);
}
name := rdf_cache_id_to_name ('i', idn, 0);
if (0 = name)
{
name := (select ri_name from rdf_iri where ri_id = id);
if (name is null)
return sprintf_iri ('iri_id_%ld_with_no_name_entry', iri_id_num (id));
else
rdf_cache_id ('i', name, id);
}
pref := rdf_cache_id_to_name ('p', iri_name_id (name), 0);
if (pref <> 0)
return iri_from_pref_name (pref, name);
pref := (select rp_name from rdf_prefix where rp_id = iri_name_id (name));
if (pref is null)
pref := 'no prefix';
else
rdf_cache_id ('p', pref, iri_name_id (name));
return iri_from_pref_name (pref, name);
}
;
create procedure DB.DBA.RDF_TRIPLES_BATCH_COMPLETE (inout triples any)
{
declare tcount, tctr, vcount, vctr integer;
declare inx, nt int;
declare os, op, oo any array;
nt := length (triples);
for vectored (in t any array := triples, out os := s1, out op := p1, out oo := o1)
{
declare s1, p1, o1 any array;
s1 := __ro2sq (t[0]);
p1 := __ro2sq (t[1]);
o1 := __ro2sq (t[2]);
}
for (inx := 0; inx < nt; inx := inx + 1)
{
declare obj any;
triples[inx][0] := uriqa_dynamic_local_replace (os[inx]);
triples[inx][1] := uriqa_dynamic_local_replace (op[inx]);
obj := oo[inx];
if (isstring (obj) and __box_flags (obj) = 1)
triples[inx][2] := uriqa_dynamic_local_replace (obj);
else
triples[inx][2] := obj;
}
}
;
create procedure DB.DBA.RDF_QUADS_BATCH_COMPLETE (inout triples any)
{
declare tcount, tctr, vcount, vctr integer;
declare inx, nt int;
declare og, os, op, oo any array;
nt := length (triples);
for vectored (in t any array := triples, out og := g1, out os := s1, out op := p1, out oo := o1)
{
declare g1, s1, p1, o1 any array;
g1 := __ro2sq (t[0]);
s1 := __ro2sq (t[1]);
p1 := __ro2sq (t[2]);
o1 := __ro2sq (t[3]);
}
for (inx := 0; inx < nt; inx := inx + 1)
{
triples[inx][0] := og[inx];
triples[inx][1] := os[inx];
triples[inx][2] := op[inx];
triples[inx][3] := oo[inx];
}
}
;
create procedure rdf_vec_ins_triples (in s any, in p any, in o any, in g any)
{
vectored;
not vectored {
declare dp any array;
declare is_local int;
is_local := sys_stat ('cl_run_local_only');
if (is_local)
dp := dpipe (1, 'L_IRI_TO_ID', 'L_IRI_TO_ID', 'L_IRI_TO_ID', 'L_MAKE_RO', 'L_IRI_TO_ID');
else
{
dp := dpipe (5, 'IRI_TO_ID_1', 'IRI_TO_ID_1', 'IRI_TO_ID_1', 'MAKE_RO_1', 'IRI_TO_ID_1');
dpipe_set_rdf_load (dp, 2); -- multiple graphs flag as G is given
}
}
dpipe_input (dp, s, p, null, o, g);
not vectored {
if (log_enable (null, 1) in (2,3))
set non_txn_insert = 1;
if (is_local)
rl_dp_ids (dp, 0);
else
{
dpipe_next (dp, 0);
dpipe_next (dp, 1);
}
}
}
;
create procedure DB.DBA.RDF_MAKE_S_O_FROM_PARTS_AND_FLAGS_C (inout s any array, inout o any, in o_type any, in o_and_bnode_flags int, in is_local int)
{
vectored;
not vectored {
declare xlat_dict any;
xlat_dict := coalesce (connection_get ('RDF_INSERT_TRIPLE_C_BNODES', null), connection_get ('RDF_INSERT_TRIPLE_C_BNODES', null, 1));
-- dbg_obj_princ ('DB.DBA.RDF_MAKE_S_O_FROM_PARTS_AND_FLAGS_C: xlat_dict=', xlat_dict);
}
declare o_flags, is_text int;
declare lid, tid int;
is_text := bit_and (o_and_bnode_flags, 16);
o_flags := bit_and (o_and_bnode_flags, 15);
-- dbg_obj_princ ('DB.DBA.RDF_MAKE_S_O_FROM_PARTS_AND_FLAGS_C: args are ', s, o, o_type, o_and_bnode_flags, is_local);
if (xlat_dict is not null and (__tag(s) in (__tag of varchar, __tag of UNAME)) and (s like '[_]:%' or bit_and (o_and_bnode_flags, 0hex100)))
{
s := __bft ('nodeID://' || dict_get_or_set_sequence_next (xlat_dict, __bft (s,1), 'RDF_URL_IID_BLANK'), 1);
-- dbg_obj_princ ('DB.DBA.RDF_MAKE_S_O_FROM_PARTS_AND_FLAGS_C: s is tweaked, now ', s);
}
if (o_flags in (0,15) and xlat_dict is not null and ((__tag(o) = __tag of UNAME) or (__tag(o) = __tag of varchar)) and (o like '[_]:%' or bit_and (o_and_bnode_flags, 0hex200)))
{
o := __bft ('nodeID://' || dict_get_or_set_sequence_next (xlat_dict, __bft(o,1), 'RDF_URL_IID_BLANK'), 1);
return;
}
if (0 = o_flags)
{
o := __bft (o, 1);
return;
}
else if (1 = o_flags)
{
o := rdf_box (o, 258, 257, 0, 1);
rdf_box_set_type (o, 257);
if (is_text and 246 = __tag (o))
rdf_box_set_is_text (o, 1);
return;
}
else if (2 = o_flags)
{
lid := rdf_cache_id ('l', lower (o_type));
if (lid = 0)
{
if (is_local)
lid := rdf_rl_lang_id (lower (o_type));
else
lid := rdf_lang_id (lower (o_type));
}
if (is_text and 246 = __tag (o))
rdf_box_set_is_text (o, 1);
o := rdf_box (o, 257, lid, 0, 1);
return;
}
else if (3 = o_flags)
{
lid := 257;
declare parsed any array;
parsed := __xqf_str_parse_to_rdf_box (o, o_type, 1);
if (parsed is not null)
{
if (__tag of XML = __tag (parsed))
{
parsed := rdf_box (parsed, 300, 257, 0, 1);
rdf_box_set_type (parsed, 257);
}
if (__tag of rdf_box = __tag (parsed))
{
if (257 = rdf_box_type (parsed))
{
tid := rdf_cache_id ('t', o_type);
if (tid = 0)
{
if (is_local)
tid := rdf_rl_type_id (o_type);
else
tid := rdf_type_id (o_type);
}
rdf_box_set_type (parsed, tid);
}
}
o := parsed;
return;
}
else
{
tid := rdf_cache_id ('t', o_type);
if (tid = 0)
{
if (is_local)
tid := rdf_rl_type_id (o_type);
else
tid := rdf_type_id (o_type);
}
o := rdf_box (o, tid, 257, 0, 1);
if (is_text and 246 = __tag (o))
rdf_box_set_is_text (o, 1);
return;
}
}
else if (4 = o_flags)
{
o := rdf_box (xml_tree_doc (o), 300, 257, 0, 1);
rdf_box_set_type (o, 257);
if (is_text and 246 = __tag (o))
rdf_box_set_is_text (o, 1);
return;
}
else if (5 = o_flags)
{
o := cast (o as int);
return;
}
else if (6 = o_flags)
{
o := cast (o as real);
return;
}
else if (7 = o_flags)
{
o := cast (o as double precision);
return;
}
else if (8 = o_flags)
{
o := cast (o as decimal);
return;
}
else if (15 = o_flags)
{
o := __bft (o, 1);
return;
}
else
signal ('xxxxx', 'Bad rdf object flags va,value');
}
;
create procedure DB.DBA.RDF_INSERT_TRIPLE_C (in s any array, in p any array, in o any array, in o_type any array, in o_flags int, in g any array)
{
vectored;
not vectored {
declare is_local int;
is_local := sys_stat ('cl_run_local_only');
if (log_enable (null, 1) in (2,3))
set non_txn_insert = 1;
}
DB.DBA.RDF_MAKE_S_O_FROM_PARTS_AND_FLAGS_C (s, o, o_type, o_flags, is_local);
not vectored {
declare dp any array;
if (is_local)
dp := dpipe (1, 'L_IRI_TO_ID', 'L_IRI_TO_ID', 'L_IRI_TO_ID', 'L_MAKE_RO', 'L_IRI_TO_ID');
else
{
dp := dpipe (5, 'IRI_TO_ID_1', 'IRI_TO_ID_1', 'IRI_TO_ID_1', 'MAKE_RO_1', 'IRI_TO_ID_1');
dpipe_set_rdf_load (dp, 2);
}
}
--dbg_obj_princ ('After bnodes check, will call dpipe_input (dp, ', s, p, null, o, g, ')...');
dpipe_input (dp, s, p, null, o, g);
not vectored {
if (log_enable (null, 1) in (2,3))
set non_txn_insert = 1;
if (is_local)
rl_dp_ids (dp, 0);
else
{
dpipe_next (dp, 0);
dpipe_next (dp, 1);
}
}
}
;
create procedure rdf_replace_graph_c (in s any array, in p any array, in o any array, in o_type any array, in o_flags int, in g any array)
{
vectored;
not vectored {
declare is_local int;
is_local := sys_stat ('cl_run_local_only');
if (log_enable (null, 1) in (2,3))
set non_txn_insert = 1;
}
o := DB.DBA.RDF_MAKE_S_O_FROM_PARTS_AND_FLAGS_C (s, o, o_type, o_flags, is_local);
not vectored {
declare dp any array;
if (is_local)
dp := dpipe (1, 'L_IRI_TO_ID', 'L_IRI_TO_ID', 'L_IRI_TO_ID', 'L_MAKE_RO', 'L_IRI_TO_ID');
else
{
dp := dpipe (5, 'IRI_TO_ID_1', 'IRI_TO_ID_1', 'IRI_TO_ID_1', 'MAKE_RO_1', 'IRI_TO_ID_1');
}
dpipe_set_rdf_load (dp, 6);
}
dpipe_input (dp, s, p, null, o, g);
not vectored {
if (log_enable (null, 1) in (2,3))
set non_txn_insert = 1;
if (is_local)
{
dpipe_exec_rdf_callback (dp);
}
else
{
dpipe_next (dp, 0);
dpipe_next (dp, 1);
}
}
}
;
create procedure rdf_delete_triple_c (in s any array, in p any array, in o any array, in o_type any array, in o_flags int, in g any array)
{
vectored;
not vectored {
declare is_local int;
is_local := sys_stat ('cl_run_local_only');
if (log_enable (null, 1) in (2,3))
set non_txn_insert = 1;
}
o := DB.DBA.RDF_MAKE_S_O_FROM_PARTS_AND_FLAGS_C (s, o, o_type, o_flags, is_local);
not vectored {
declare dp any array;
if (is_local)
dp := dpipe (1, 'L_IRI_TO_ID', 'L_IRI_TO_ID', 'L_IRI_TO_ID', 'L_MAKE_RO', 'L_IRI_TO_ID');
else
{
dp := dpipe (5, 'IRI_TO_ID_1', 'IRI_TO_ID_1', 'IRI_TO_ID_1', 'MAKE_RO_1', 'IRI_TO_ID_1');
}
dpipe_set_rdf_load (dp, 3);
}
dpipe_input (dp, s, p, null, o, g);
not vectored {
if (log_enable (null, 1) in (2,3))
set non_txn_insert = 1;
if (is_local)
rl_dp_ids (dp, 0);
else
{
dpipe_next (dp, 0);
dpipe_next (dp, 1);
}
}
}
;
create procedure rdf_clear_graphs_c (in graphs any array)
{
for vectored (in in_g any array := graphs)
{
declare g_iid any;
g_iid := iri_to_id (in_g, 0);
delete from RDF_QUAD table option (index G) where G = g_iid;
delete from DB.DBA.RDF_QUAD table option (index RDF_QUAD_GS, index_only) where G = g_iid option (index_only, index RDF_QUAD_GS);
}
}
;
|