-
Notifications
You must be signed in to change notification settings - Fork 15
/
rdf_edit.pl
1146 lines (973 loc) · 33.6 KB
/
rdf_edit.pl
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
/* Part of SWI-Prolog
Author: Jan Wielemaker
E-mail: [email protected]
WWW: http://www.swi-prolog.org
Copyright (c) 2003-2013, University of Amsterdam
VU University Amsterdam
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
:- module(rdf_edit,
[ rdfe_assert/3, % Sub, Pred, Obj
rdfe_assert/4, % Sub, Pred, Obj, PayLoad
rdfe_retractall/3, % Sub, Pred, Obj
rdfe_retractall/4, % Sub, Pred, Obj, PayLoad
rdfe_update/4, % Sub, Pred, Obj, +Action
rdfe_update/5, % Sub, Pred, Obj, +PayLoad, +Action
rdfe_load/1, % +File
rdfe_load/2, % +File, +Options
rdfe_delete/1, % +Resource
rdfe_register_ns/2, % +Id, +URI
rdfe_unregister_ns/2, % +Id, +URI
rdfe_reset/0, % clear everything
rdfe_transaction/1, % :Goal
rdfe_transaction/2, % :Goal, +Name
rdfe_transaction_member/2, % +Transactions, -Action
rdfe_transaction_name/2, % +Transactions, -Name
rdfe_set_transaction_name/1,% +Name
rdfe_set_watermark/1, % +Name
rdfe_undo/0, %
rdfe_redo/0,
rdfe_can_undo/1, % -TID
rdfe_can_redo/1, % -TID
rdfe_set_file_property/2, % +File, +Property
rdfe_get_file_property/2, % ?File, ?Property
rdfe_is_modified/1, % ?File
rdfe_clear_modified/1, % +File
rdfe_open_journal/2, % +File, +Mode
rdfe_close_journal/0,
rdfe_replay_journal/1, % +File
rdfe_current_journal/1, % -Path
rdfe_snapshot_file/1 % -File
]).
:- use_module(library(semweb/rdf_prefixes),
[ (rdf_meta)/1,
op(_,_,rdf_meta)
]).
:- autoload(rdf_db,
[ rdf_assert/4, rdf/4, rdf_retractall/4, rdf_update/4,
rdf_update/5, rdf_load/2, rdf_statistics/1, rdf_md5/2,
rdf_unload/1, rdf_save_db/2, rdf_load_db/1, rdf_register_ns/2,
rdf_source/2, rdf_graph_property/2, rdf_graph/1, rdf_set_graph/2,
rdf_reset_db/0, rdf_load/1
]).
:- autoload(library(broadcast),[broadcast/1]).
:- use_module(library(debug),[debug/3,debugging/1]).
:- autoload(library(gui_tracer),[gtrace/0]).
:- autoload(library(lists),[append/3]).
:- autoload(library(uri),[uri_file_name/2,uri_components/2,uri_data/3]).
:- meta_predicate
rdfe_transaction(0),
rdfe_transaction(0, +).
:- predicate_options(rdfe_load/2, 2,
[pass_to(rdf_db:rdf_load/2, 2)]).
:- dynamic
undo_log/5, % TID, Action, Subj, Pred, Obj
current_transaction/1, % TID
transaction_name/2, % TID, Name
undo_marker/2, % Mode, TID
journal/3, % Path, Mode, Stream
snapshot_file/1. % File
/** <module> RDF edit layer
This library provides a number of functions on top of the rdf_db module:
* Broadcast modifications
* Provide undo/redo
@tbd This library must be rewritten using rdf_monitor/3. This allows
using edit layer without having to choose between rdf_ and rdfe_
predicates.
@see rdf_persistency.pl provides reliable persistency, but without
changes boardcasting and undo/redo.
*/
:- rdf_meta
rdfe_assert(r,r,o),
rdfe_assert(r,r,o,+),
rdfe_retractall(r,r,o),
rdfe_update(r,r,o,t),
rdfe_delete(r),
rdfe_transaction(:),
rdfe_transaction(:, +).
/*******************************
* BASIC EDIT OPERATIONS *
*******************************/
rdfe_assert(Subject, Predicate, Object) :-
rdfe_assert(Subject, Predicate, Object, user).
rdfe_assert(Subject, Predicate, Object, PayLoad) :-
rdf_assert(Subject, Predicate, Object, PayLoad),
rdfe_current_transaction(TID),
assert_action(TID, assert(PayLoad), Subject, Predicate, Object),
journal(assert(TID, Subject, Predicate, Object, PayLoad)).
rdfe_retractall(Subject, Predicate, Object) :-
rdfe_retractall(Subject, Predicate, Object, _).
rdfe_retractall(Subject, Predicate, Object, PayLoad) :-
rdfe_current_transaction(TID),
( rdf(Subject, Predicate, Object, PayLoad),
assert_action(TID, retract(PayLoad), Subject, Predicate, Object),
journal(retract(TID, Subject, Predicate, Object, PayLoad)),
fail
; true
),
rdf_retractall(Subject, Predicate, Object, PayLoad).
%! rdfe_update(+Subject, +Predicate, +Object, +Action)
%
% Update an existing triple. Possible actions are:
%
%! subject(+Subject)
%! predicate(+Predicate)
%! object(+Object)
%! source(+Source)
rdfe_update(Subject, Predicate, Object, Action) :-
rdfe_current_transaction(TID),
rdf_update(Subject, Predicate, Object, Action),
( Action = object(New)
-> assert_action(TID, object(Object), Subject, Predicate, New)
; Action = predicate(New)
-> assert_action(TID, predicate(Predicate), Subject, New, Object)
; Action = subject(New)
-> assert_action(TID, subject(Subject), New, Predicate, Object)
; Action = source(New)
-> forall(rdf(Subject, Predicate, Object, PayLoad),
assert_action(TID, source(PayLoad, New),
Subject, Predicate, Object))
),
journal(update(TID, Subject, Predicate, Object, Action)).
rdfe_update(Subject, Predicate, Object, PayLoad, Action) :-
rdfe_current_transaction(TID),
rdf_update(Subject, Predicate, Object, PayLoad, Action),
( Action = source(New)
-> assert_action(TID, source(PayLoad, New),
Subject, Predicate, Object)
; throw(tbd) % source is used internally
),
journal(update(TID, Subject, Predicate, Object, PayLoad, Action)).
%! rdfe_delete(+Subject)
%
% Delete a subject and all we know about it. This is a bit tricky.
% If we are involved in transitive relations, should we re-joint
% these in this module?
rdfe_delete(Subject) :-
rdfe_transaction(delete(Subject)).
delete(Subject) :-
rdfe_retractall(Subject, _, _),
rdfe_retractall(_, Subject, _),
rdfe_retractall(_, _, Subject).
/*******************************
* FILE HANDLING *
*******************************/
%! rdfe_load(+File) is det.
%! rdfe_load(+File, +Options) is det.
%
% Load an RDF file and record this action including version information
% to facilitate reliable reload.
rdfe_load(File) :-
rdfe_load(File, []).
rdfe_load(File, Options) :-
rdfe_current_transaction(TID),
absolute_file_name(File,
[ access(read),
extensions([rdf,rdfs,owl,ttl,nt,''])
], Path),
rdf_load(Path,
[ graph(Graph),
modified(Modified)
| Options
]),
( Modified == not_modified
-> true
; absolute_file_name('.', PWD),
size_file(Path, Size),
( Modified = last_modified(Stamp)
-> true
; time_file(Path, Stamp)
),
SecTime is round(Stamp),
rdf_statistics(triples_by_graph(Graph, Triples)),
rdf_md5(Graph, MD5),
assert_action(TID, load_file(Path), -, -, -),
journal(rdf_load(TID,
Path,
[ pwd(PWD),
size(Size),
modified(SecTime),
triples(Triples),
md5(MD5),
from(File)
])),
ensure_snapshot(Path)
).
rdfe_unload(Path) :-
rdfe_current_transaction(TID),
rdf_unload(Path),
assert_action(TID, unload_file(Path), -, -, -),
journal(rdf_unload(TID, Path)).
%! ensure_snapshot(+Path)
%
% Ensure we have a snapshot of Path if we are making a journal, so
% we can always reload the snapshot to ensure exactly the same
% state.
ensure_snapshot(Path) :-
rdfe_current_journal(_),
rdf_md5(Path, MD5),
( snapshot_file(Path, MD5,
[ access(read),
file_errors(fail)
],
File)
-> debug(snapshot, 'Existing snapshot for ~w on ~w', [Path, File])
; snapshot_file(Path, MD5,
[ access(write)
],
File),
debug(snapshot, 'Saving snapshot for ~w to ~w', [Path, File]),
rdf_save_db(File, Path)
),
assert(snapshot_file(File)).
ensure_snapshot(_).
%! load_snapshot(+Source, +Path)
%
% Load triples from the given snapshot file. One of the troubles
% is the time-stamp to avoid rdf_make/0 from reloading the file.
% for the time being we use 1e12, which is a lot further in the
% future than this system is going to live.
load_snapshot(Source, Path) :-
statistics(cputime, T0),
rdf_load_db(Path),
statistics(cputime, T1),
Time is T1 - T0,
rdf_statistics(triples_by_graph(Source, Triples)),
rdf_md5(Source, MD5),
% 1e10: modified far in the future
assert(rdf_db:rdf_source(Source, 1e12, Triples, MD5)),
print_message(informational,
rdf(loaded(Source, Triples, snapshot(Time)))),
assert(snapshot_file(Path)).
%! snapshot_file(+Path, +MD5, +Access, -File)
%
% Find existing snapsnot file or location to save a new one.
snapshot_file(Path, MD5, Options, SnapShot) :-
file_base_name(Path, Base),
atomic_list_concat([Base, @, MD5], File),
absolute_file_name(snapshot(File),
[ extensions([trp])
| Options
],
SnapShot).
%! rdfe_snapshot_file(-File)
%
% Enumerate the MD5 snapshot files required to restore the current
% journal file. Using this call we can write a routine that
% packages the journal file with all required snapshots to restore
% the journal on another computer.
rdfe_snapshot_file(File) :-
snapshot_file(File).
/*******************************
* NAMESPACE HANDLING *
*******************************/
:- dynamic
system_ns/2.
:- volatile
system_ns/2.
%! rdfe_register_ns(Id, URI)
%
% Encapsulation of rdf_register_ns(Id, URI)
rdfe_register_ns(Id, URI) :-
rdf_db:ns(Id, URI),
!.
rdfe_register_ns(Id, URI) :-
save_system_ns,
rdfe_current_transaction(TID),
rdf_register_ns(Id, URI),
broadcast(rdf_ns(register(Id, URI))),
assert_action(TID, ns(register(Id, URI)), -, -, -),
journal(ns(TID, register(Id, URI))).
rdfe_unregister_ns(Id, URI) :-
save_system_ns,
rdfe_current_transaction(TID),
retractall(rdf_db:ns(Id, URI)),
broadcast(rdf_ns(unregister(Id, URI))),
assert_action(TID, ns(unregister(Id, URI)), -, -, -),
journal(ns(TID, unregister(Id, URI))).
% rdfe_register_ns/0
%
% Reset namespaces to the state they were before usage of the
% rdf_edit layer.
rdfe_reset_ns :-
( system_ns(_, _)
-> retractall(rdf_db:ns(Id, URI)),
forall(system_ns(Id, URI), assert(rdf_db:ns(Id, URI)))
; true
).
save_system_ns :-
system_ns(_, _),
!. % already done
save_system_ns :-
forall(rdf_db:ns(Id, URI), assert(system_ns(Id, URI))).
/*******************************
* TRANSACTIONS *
*******************************/
%! rdfe_transaction(:Goal)
%
% Run Goal, recording all modifications as a single transaction.
% If Goal raises an exception or fails, all changes are
% rolled-back.
rdfe_transaction(Goal) :-
rdfe_transaction(Goal, []).
rdfe_transaction(Goal, Name) :-
rdfe_begin_transaction(Name),
( catch(Goal, E, true)
-> ( var(E)
-> check_file_protection(Error),
( var(Error)
-> rdfe_commit
; rdfe_rollback,
throw(Error)
)
; rdfe_rollback,
throw(E)
)
; rdfe_rollback,
fail
).
%! rdfe_begin_transaction
%
% Start a transaction. This is followed by either rdfe_end_transaction
% or rdfe_rollback. Transactions may be nested.
rdfe_begin_transaction(Name) :-
current_transaction(TID), % nested transaction
!,
append(TID, [1], TID2),
asserta(current_transaction(TID2)),
assert(transaction_name(TID2, Name)).
rdfe_begin_transaction(Name) :- % toplevel transaction
flag(rdf_edit_tid, TID, TID+1),
asserta(current_transaction([TID])),
assert(transaction_name(TID, Name)).
rdfe_current_transaction(TID) :-
current_transaction(TID),
!.
rdfe_current_transaction(_) :-
throw(error(existence_error(rdf_transaction, _), _)).
rdfe_commit :-
retract(current_transaction(TID)),
!,
retractall(undo_marker(_, _)),
( rdfe_transaction_member(TID, _)
-> get_time(Time), % transaction is not empty
journal(commit(TID, Time)),
( TID = [Id]
-> broadcast(rdf_transaction(Id))
; true
)
; true
).
rdfe_rollback :-
retract(current_transaction(TID)),
!,
journal(rollback(TID)),
rollback(TID).
%! rollback(+TID)
%
% This is the same as undo/1, but it must not record the undone
% actions as rollbacks cannot be `redone'. Somehow there should
% be a cleaner way to distinguish between transactional operations
% and plain operations.
rollback(TID) :-
append(TID, _, Id),
( retract(undo_log(Id, Action, Subject, Predicate, Object)),
( rollback(Action, Subject, Predicate, Object)
-> fail
; print_message(error,
rdf_undo_failed(undo(Action, Subject,
Predicate, Object))),
fail
)
; true
).
rollback(assert(PayLoad), Subject, Predicate, Object) :-
!,
rdf_retractall(Subject, Predicate, Object, PayLoad).
rollback(retract(PayLoad), Subject, Predicate, Object) :-
!,
rdf_assert(Subject, Predicate, Object, PayLoad).
rollback(Action, Subject, Predicate, Object) :-
action(Action),
!,
rdf_update(Subject, Predicate, Object, Action).
assert_action(TID, Action, Subject, Predicate, Object) :-
asserta(undo_log(TID, Action, Subject, Predicate, Object)).
%! undo(+TID)
%
% Undo a transaction as well as possible transactions nested into
% it.
undo(TID) :-
append(TID, _, Id),
( retract(undo_log(Id, Action, Subject, Predicate, Object)),
( undo(Action, Subject, Predicate, Object)
-> fail
; print_message(warning,
rdf_undo_failed(undo(Action, Subject,
Predicate, Object))),
fail
)
; true
).
undo(assert(PayLoad), Subject, Predicate, Object) :-
!,
rdfe_retractall(Subject, Predicate, Object, PayLoad).
undo(retract(PayLoad), Subject, Predicate, Object) :-
!,
rdfe_assert(Subject, Predicate, Object, PayLoad).
undo(source(Old, New), Subject, Predicate, Object) :-
!,
rdfe_update(Subject, Predicate, Object, Old, source(New)).
undo(ns(Action), -, -, -) :-
!,
( Action = register(Id, URI)
-> rdfe_unregister_ns(Id, URI)
; Action = unregister(Id, URI)
-> rdfe_register_ns(Id, URI)
).
undo(load_file(Path), -, -, -) :-
!,
rdfe_unload(Path).
undo(unload_file(Path), -, -, -) :-
!,
rdfe_load(Path).
undo(Action, Subject, Predicate, Object) :-
action(Action),
!,
rdfe_update(Subject, Predicate, Object, Action).
action(subject(_)).
action(predicate(_)).
action(object(_)).
%! rdfe_undo
%
% Undo a (toplevel) transaction. More calls do further undo. The
% `Undone' actions are re-added to the undo log, so the user can
% redo them. Fails if there are no more undo/redo transactions.
rdfe_undo :-
undo_marker(undo, TID),
!,
( undo_previous(TID, UnDone)
-> retractall(undo_marker(_, _)),
assert(undo_marker(undo, UnDone)),
broadcast(rdf_undo(undo, UnDone))
; fail % start of undo log
).
rdfe_undo :-
retract(undo_marker(redo, _)),
!,
last_transaction(TID),
undo_previous(TID, UnDone),
assert(undo_marker(undo, UnDone)),
broadcast(rdf_undo(undo, UnDone)).
rdfe_undo :-
last_transaction(TID),
undo_previous(TID, UnDone),
assert(undo_marker(undo, UnDone)),
broadcast(rdf_undo(undo, UnDone)).
find_previous_undo(-1, _) :-
!,
fail.
find_previous_undo(TID, TID) :-
undo_log([TID|_], _, _, _, _),
!.
find_previous_undo(TID0, TID) :-
TID1 is TID0 - 1,
find_previous_undo(TID1, TID).
undo_previous(TID, Undone) :-
find_previous_undo(TID, Undone),
rdfe_transaction(undo([Undone])).
last_transaction(TID) :-
undo_log([TID|_], _, _, _, _),
!.
%! rdfe_redo
%
% Start a redo-session
rdfe_redo :-
( retract(undo_marker(undo, _))
-> last_transaction(TID),
undo_previous(TID, UnDone),
assert(undo_marker(redo, UnDone)),
broadcast(rdf_undo(redo, UnDone))
; retract(undo_marker(redo, TID))
-> undo_previous(TID, UnDone),
assert(undo_marker(redo, UnDone)),
broadcast(rdf_undo(redo, UnDone))
; true
).
%! rdfe_can_redo(-TID) is semidet.
%! rdfe_can_undo(-TID) is semidet.
%
% Check if we can undo and if so return the id of the transaction
% that will be un/re-done. A subsequent call to rdfe_transaction_name
% can be used to give a hint in the UI.
rdfe_can_redo(Redo) :-
undo_marker(undo, _),
!,
last_transaction(TID),
find_previous_undo(TID, Redo).
rdfe_can_redo(Redo) :-
undo_marker(redo, TID),
find_previous_undo(TID, Redo).
rdfe_can_undo(Undo) :- % continue undo
undo_marker(undo, TID),
!,
find_previous_undo(TID, Undo).
rdfe_can_undo(Undo) :- % start undo
last_transaction(TID),
find_previous_undo(TID, Undo).
%! rdfe_transaction_name(+TID, -Name)
%
% Return name if the transaction is named.
rdfe_transaction_name(TID, Name) :-
transaction_name(TID, Name),
Name \== [].
%! rdfe_set_transaction_name(+Name)
%
% Set name of the current transaction
rdfe_set_transaction_name(Name) :-
current_transaction(TID),
!,
assert(transaction_name(TID, Name)).
%! rdfe_transaction_member(+TID, -Action)
%
% Query actions inside a transaction to allow for quick update
% of visualisers.
rdfe_transaction_member(TID, Member) :-
( integer(TID)
-> Id = [TID|_]
; append(TID, _, Id)
),
undo_log(Id, Action, Subject, Predicate, Object),
user_transaction_member(Action, Subject, Predicate, Object, Member).
user_transaction_member(assert(_), Subject, Predicate, Object,
assert(Subject, Predicate, Object)) :- !.
user_transaction_member(retract(_), Subject, Predicate, Object,
retract(Subject, Predicate, Object)) :- !.
user_transaction_member(load_file(Path), -, -, -,
file(load(Path))) :- !.
user_transaction_member(unload_file(Path), -, -, -,
file(unload(Path))) :- !.
user_transaction_member(Update, Subject, Predicate, Object,
update(Subject, Predicate, Object, Update)).
/*******************************
* PROTECTION *
*******************************/
:- dynamic
rdf_source_permission/2, % file, ro/rw
rdf_current_default_file/2. % file, all/fallback
%! rdfe_set_file_property(+File, +Options)
%
% Set properties on the file. Options is one of
%
% * access(ro/rw)
% * default(all/fallback)
rdfe_set_file_property(File, access(Access)) :-
!,
to_uri(File, URL),
retractall(rdf_source_permission(URL, _)),
assert(rdf_source_permission(URL, Access)),
broadcast(rdf_file_property(URL, access(Access))).
rdfe_set_file_property(File, default(Type)) :-
to_uri(File, URL),
rdfe_set_file_property(URL, access(rw)), % must be writeable
retractall(rdf_current_default_file(_,_)),
assert(rdf_current_default_file(URL, Type)),
broadcast(rdf_file_property(URL, default(Type))).
%! rdfe_get_file_property(+FileOrURL, ?Option).
%! rdfe_get_file_property(-URL, ?Option).
%
% Fetch file properties set with rdfe_set_file_property/2.
rdfe_get_file_property(FileOrURL, access(Access)) :-
( ground(FileOrURL)
-> to_uri(FileOrURL, URL)
; rdf_source(_DB, URL),
FileOrURL = URL
),
( rdf_source_permission(URL, Access0)
-> Access0 = Access
; uri_file_name(URL, File),
access_file(File, write)
-> assert(rdf_source_permission(URL, rw)),
Access = rw
; assert(rdf_source_permission(URL, ro)),
Access = ro
).
rdfe_get_file_property(FileOrURL, default(Default)) :-
ground(FileOrURL),
to_uri(FileOrURL, URL),
( rdf_current_default_file(URL, Default)
-> true
; FileOrURL = user,
Default = fallback
).
rdfe_get_file_property(URL, default(Default)) :-
( rdf_current_default_file(URL, Default)
-> true
; URL = user,
Default = fallback
).
%! check_file_protection(-Error)
%
% Check modification of all protected files
check_file_protection(Error) :-
( rdfe_get_file_property(File, access(ro)),
rdfe_is_modified(File)
-> Error = error(permission_error(modify, source, File), triple20)
; true
).
%! to_uri(+Spec, -URL) is det.
%
% Convert a specification into a URL.
to_uri(URL, URL) :-
uri_components(URL, Components),
uri_data(scheme, Components, Scheme),
nonvar(Scheme),
uri_scheme(Scheme),
!.
to_uri(File, URL) :-
uri_file_name(URL, File).
uri_scheme(file).
uri_scheme(http).
uri_scheme(https).
uri_scheme(ftp).
uri_scheme(ftps).
/*******************************
* MODIFIED *
*******************************/
%! rdfe_is_modified(?Source)
%
% True if facts have been added, deleted or updated that have
% Source as `payload'.
rdfe_is_modified(Source) :-
rdf_source(Graph, Source),
rdf_graph_property(Graph, modified(true)).
rdfe_clear_modified :-
forall(rdf_graph(File),
rdfe_clear_modified(File)).
%! rdfe_clear_modified(+Graph) is det.
%
% Consider the current state of Graph as _unmodified_.
rdfe_clear_modified(Graph) :-
rdf_set_graph(Graph, modified(false)).
/*******************************
* WATERMARKS *
*******************************/
%! rdfe_set_watermark(Name)
%
% Create a watermark for undo and replay journal upto this point.
% The rest of the logic needs to be written later.
rdfe_set_watermark(Name) :-
rdfe_current_transaction(TID),
assert_action(TID, watermark(Name), -, -, -),
journal(watermark(TID, Name)).
/*******************************
* RESET *
*******************************/
%! rdfe_reset
%
% Clear database, undo, namespaces and journalling info.
rdfe_reset :-
rdfe_reset_journal,
rdfe_reset_ns,
rdfe_reset_undo,
rdf_reset_db,
broadcast(rdf_reset).
%! rdfe_reset_journal
%
% If a journal is open, close it using rdfe_close_journal/0
rdfe_reset_journal :-
( rdfe_current_journal(_)
-> rdfe_close_journal
; true
).
rdfe_reset_undo :-
retractall(undo_log(_,_,_,_,_)),
retractall(current_transaction(_)),
retractall(transaction_name(_,_)),
retractall(undo_marker(_,_)),
retractall(snapshot_file(_)).
% close possible open journal at exit. Using a Prolog hook
% guarantees closure, even for most crashes.
:- at_halt(rdfe_reset_journal).
/*******************************
* JOURNALLING *
*******************************/
journal_version(1).
%! rdfe_open_journal(+File, +Mode) is det.
%
% Open a journal writing to File in Mode. Mode is one of
%
% * read
% Open and replay the journal
%
% * write
% Delete current journal and create a fresh one
%
% * append
% Read and replay the existing journal and append new
% modifications to the File.
rdfe_open_journal(_, _) :- % already open
journal(_, _, _),
!.
rdfe_open_journal(File, read) :-
!,
absolute_file_name(File,
[ extensions([rdfj, '']),
access(read)
],
Path),
rdfe_replay_journal(Path),
rdfe_clear_modified.
rdfe_open_journal(File, write) :-
!,
absolute_file_name(File,
[ extensions([rdfj, '']),
access(write)
],
Path),
open(Path, write, Stream, [close_on_abort(false)]),
assert(journal(Path, write, Stream)),
get_time(T),
journal_open(start, T).
rdfe_open_journal(File, append) :-
working_directory(CWD, CWD),
absolute_file_name(File,
[ extensions([rdfj, '']),
relative_to(CWD),
access(write)
],
Path),
( exists_file(Path)
-> rdfe_replay_journal(Path),
rdfe_clear_modified,
get_time(T),
assert(journal(Path, append(T), []))
; rdfe_open_journal(Path, write)
).
journal_open(Type, Time) :-
journal_comment(Type, Time),
SecTime is round(Time),
journal_version(Version),
Start =.. [ Type, [ time(SecTime),
version(Version)
]
],
journal(Start),
broadcast(rdf_journal(Start)).
journal_comment(start, Time) :-
journal(_, _, Stream),
format_time(string(String), '%+', Time),
format(Stream,
'/* Triple20 Journal File\n\n \c
Created: ~w\n \c
Triple20 by Jan Wielemaker <[email protected]>\n\n \c
EDIT WITH CARE!\n\c
*/~n~n', [String]).
journal_comment(resume, Time) :-
journal(_, _, Stream),
format_time(string(String), '%+', Time),
format(Stream,
'\n\c
/* Resumed: ~w\n\c
*/~n~n', [String]).
%! rdfe_close_journal
%
% Close the journal. Automatically called from at program
% termination from at_halt/1.
rdfe_close_journal :-
get_time(T),
SecTime is round(T),
journal(end([ time(SecTime)
])),
retract(journal(_, Mode, Stream)),
( Mode = append(_)
-> true
; close(Stream)
).
%! rdfe_current_journal(-Path)
%
% Query the currently open journal
rdfe_current_journal(Path) :-
journal(Path, _Mode, _Stream).
journal(Term) :-
journal(Path, append(T), _),
!,
( Term = end(_)
-> true
; open(Path, append, Stream, [close_on_abort(false)]),
retractall(journal(Path, _, _)),
assert(journal(Path, append, Stream)),
journal_open(resume, T),
journal(Term)
).
journal(Term) :-
( journal(_, _, Stream)
-> write_journal(Term, Stream),
flush_output(Stream)
; broadcast(rdf_no_journal(Term))
).
write_journal(commit(TID, Time), Stream) :-
!,
format(Stream, 'commit(~q, ~2f).~n~n', [TID, Time]).
write_journal(Term, Stream) :-
format(Stream, '~q.~n', [Term]).
%! rdfe_replay_journal(+File)
%
% Replay a journal file. For now this is our cheap way to deal
% with save/load. Future versions may be more clever when dealing
% with the version information stored in the journal.
rdfe_replay_journal(File) :-
absolute_file_name(File,
[ extensions([rdfj, '']),
access(read)
],
Path),