/usr/lib/swi-prolog/library/persistency.pl is in swi-prolog-nox 5.10.4-3ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /* Part of SWI-Prolog
Author: Jan Wielemaker
E-mail: J.Wielemaker@uva.nl
WWW: http://www.swi-prolog.org
Copyright (C): 2009, 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 General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 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(persistency,
[ (persistent)/1, % +Declarations
db_attach/2, % :File, +Options
db_sync/1, % :What
db_sync_all/1, % +What
op(1150, fx, (persistent))
]).
:- use_module(library(debug)).
:- use_module(library(error)).
/** <module> Provide persistent dynamic predicates
This module provides simple persistent storage for one or more dynamic
predicates. A database is always associated with a module. A module that
wishes to maintain a database must declare the terms that can be placed
in the database using the directive persistent/1.
The persistent/1 expands each declaration into four predicates:
* name(Arg, ...)
* assert_name(Arg, ...)
* retract_name(Arg, ...)
* retractall_name(Arg, ...)
As mentioned, a database can only be accessed from within a single
module. This limitation is on purpose, forcing the user to provide a
proper API for accessing the shared persistent data.
Below is a simple example:
==
:- module(user_db,
[ attach_user_db/1, % +File
user_role/2, % ?User, ?Role
add_user/2, % +User, +Role
set_user_role/2 % +User, +Role
]).
:- persistent
user_role(name:atom, role:oneof([user,administrator])).
attach_user_db(File) :-
db_attach(File, []).
%% user_role(+Name, -Role) is semidet.
user_role(Name, Role) :-
with_mutex(user_db, user_role(Name, Role)).
add_user(Name, Role) :-
assert_user_role(Name, Role).
set_user_role(Name, Role) :-
user_role(Name, Role), !.
set_user_role(Name, Role) :-
with_mutex(user_db,
( retractall_user_rule(Name, _),
assert_user_role(Name, Role))).
==
@tbd Provide type safety while loading
@tbd Thread safety must now be provided at the user-level. Can we
provide generic thread safety? Basically, this means that we
must wrap all exported predicates. That might better be done
outside this library.
@tbd Transaction management?
@tbd Should assert_<name> only assert if the database does not
contain a variant?
*/
:- meta_predicate
db_attach(:, +),
db_sync(:).
/*******************************
* DB *
*******************************/
:- dynamic
db_file/3, % Module, File, Modified
db_stream/2, % Module, Stream
db_dirty/2, % Module, Deleted
db_option/2. % Module, Name(Value)
:- volatile
db_stream/2.
:- multifile
(persistent)/3. % Module, Generic, Term
/*******************************
* DECLARATIONS *
*******************************/
%% persistent(+Spec)
%
% Declare dynamic database terms. Declarations appear in a
% directive and have the following format:
%
% ==
% :- persistent
% <callable>,
% <callable>,
% ...
% ==
%
% Each specification is a callable term, following the conventions
% of library(record), where each argument is of the form
%
% name:type
%
% Types are defined by library(error).
persistent(Spec) :-
throw(error(context_error(nodirective, persistent(Spec)), _)).
compile_persistent(Var, _) -->
{ var(Var), !,
instantiation_error(Var)
}.
compile_persistent((A,B), Module) --> !,
compile_persistent(A, Module),
compile_persistent(B, Module).
compile_persistent(Term, Module) -->
{ functor(Term, Name, Arity), % Validates Term as callable
functor(Generic, Name, Arity)
},
[ :- dynamic(Name/Arity),
persistency:persistent(Module, Generic, Term)
],
assert_clause(Term, Module),
retract_clause(Term, Module),
retractall_clause(Term, Module).
assert_clause(Term, Module) -->
{ functor(Term, Name, Arity),
atom_concat(assert_, Name, PredName),
length(Args, Arity),
Head =.. [PredName|Args],
Assert =.. [Name|Args],
type_checkers(Args, 1, Term, Check),
Clause = (Head :- Check, persistency:db_assert(Module:Assert))
},
[ Clause ].
type_checkers([], _, _, true).
type_checkers([A0|AL], I, Spec, Check) :-
arg(I, Spec, ArgSpec),
( ArgSpec = _Name:Type,
nonvar(Type),
Type \== any
-> Check = (must_be(Type, A0),More)
; More = Check
),
I2 is I + 1,
type_checkers(AL, I2, Spec, More).
retract_clause(Term, Module) -->
{ functor(Term, Name, Arity),
atom_concat(retract_, Name, PredName),
length(Args, Arity),
Head =.. [PredName|Args],
Retract =.. [Name|Args],
Clause = (Head :- persistency:db_retract(Module:Retract))
},
[ Clause ].
retractall_clause(Term, Module) -->
{ functor(Term, Name, Arity),
atom_concat(retractall_, Name, PredName),
length(Args, Arity),
Head =.. [PredName|Args],
Retract =.. [Name|Args],
Clause = (Head :- persistency:db_retractall(Module:Retract))
},
[ Clause ].
:- multifile
user:term_expansion/2.
user:term_expansion((:- persistent(Spec)), Clauses) :-
prolog_load_context(module, Module),
phrase(compile_persistent(Spec, Module), Clauses).
/*******************************
* ATTACH *
*******************************/
%% db_attach(:File, +Options)
%
% Use File as persistent database for the calling module. The
% calling module must defined persistent/1 to declare the database
% terms. Defined options:
%
% * sync(+Sync)
% One of =close= (close journal after write), =flush=
% (default, flush journal after write) or =none=
% (handle as fully buffered stream).
db_attach(Module:File, Options) :-
db_set_options(Module, Options),
db_attach_file(Module, File).
db_set_options(Module, Options) :-
retractall(db_option(Module, _)),
option(sync(Sync), Options, flush),
must_be(oneof([close,flush,none]), Sync),
assert(db_option(Module, sync(Sync))).
db_attach_file(Module, File) :-
db_file(Module, Old, _), !, % we already have a db
( Old == File
-> true
; permission_error(attach, db, File)
).
db_attach_file(Module, File) :-
db_load(Module, File), !.
db_attach_file(Module, File) :-
assert(db_file(Module, File, 0)).
db_load(Module, File) :-
retractall(db_file(Module, _, _)),
catch(open(File, read, In, [encoding(utf8)]), _, fail), !,
debug(db, 'Loading database ~w', [File]),
call_cleanup((read_action(In, T0),
load_db(T0, In, Module)),
close(In)),
debug(db, 'Loaded ~w', [File]),
time_file(File, Modified),
assert(db_file(Module, File, Modified)).
load_db(end_of_file, _, _) :- !.
load_db(assert(Term), In, Module) :-
persistent(Module, Term, _Types), !,
assert(Module:Term),
read_action(In, T1),
load_db(T1, In, Module).
load_db(retractall(Term, Count), In, Module) :-
persistent(Module, Term, _Types), !,
retractall(Module:Term),
set_dirty(Module, Count),
read_action(In, T1),
load_db(T1, In, Module).
load_db(retract(Term), In, Module) :-
persistent(Module, Term, _Types), !,
( retract(Module:Term)
-> set_dirty(Module, 1)
; true
),
read_action(In, T1),
load_db(T1, In, Module).
load_db(Term, In, Module) :-
print_message(error, illegal_term(Term)),
read_action(In, T1),
load_db(T1, In, Module).
db_clean(Module) :-
retractall(db_dirty(Module, _)),
( persistent(Module, Term, _Types),
retractall(Module:Term),
fail
; true
).
%% db_size(+Module, -Terms) is det.
%
% Terms is the total number of terms in the DB for Module.
db_size(Module, Total) :-
aggregate_all(sum(Count), persistent_size(Module, Count), Total).
persistent_size(Module, Count) :-
persistent(Module, Term, _Types),
predicate_property(Module:Term, number_of_clauses(Count)).
%% db_assert(:Term) is det.
%
% Assert Term into the database and record it for persistency.
% Note that if the on-disk file has been modified it is first
% reloaded.
db_assert(Module:Term) :-
assert(Module:Term),
persistent(Module, assert(Term)).
persistent(Module, Action) :-
( db_stream(Module, Stream)
-> true
; db_file(Module, File, _Modified)
-> db_sync(Module, reload), % Is this correct?
open(File, append, Stream,
[ close_on_abort(false),
encoding(utf8),
lock(write)
]),
assert(db_stream(Module, Stream))
; existence_error(db_file, Module)
),
write_action(Stream, Action),
sync(Module, Stream).
%% sync(+Module, +Stream) is det.
%
% Synchronise journal after a write. Using =close=, the journal
% file is closed, making it easier to edit the file externally.
% Using =flush= flushes the stream but does not close it. This
% provides better performance. Using =none=, the stream is not
% even flushed. This makes the journal sensitive to crashes, but
% much faster.
sync(Module, Stream) :-
db_option(Module, sync(Sync)),
( Sync == close
-> db_sync(Module, close)
; Sync == flush
-> flush_output(Stream)
; true
).
read_action(Stream, Action) :-
read_term(Stream, Action, [module(db)]).
write_action(Stream, Action) :-
\+ \+ ( numbervars(Action, 0, _, [singletons(true)]),
format(Stream, '~W.~n',
[ Action,
[ quoted(true),
numbervars(true),
module(db)
]
])
).
%% db_retractall(:Term) is det.
%
% Retract all matching facts and do the same in the database. If
% Term is unbound, persistent/1 from the calling module is used as
% generator.
db_retractall(Module:Term) :-
( var(Term)
-> forall(persistent(Module, Term, _Types),
db_retractall(Module:Term))
; State = count(0),
( retract(Module:Term),
arg(1, State, C0),
C1 is C0+1,
nb_setarg(1, State, C1),
fail
; arg(1, State, Count)
),
( Count > 0
-> set_dirty(Module, Count),
persistent(Module, retractall(Term, Count))
; true
)
).
%% db_retract(:Term) is nondet.
%
% Retract terms from the database one-by-one.
db_retract(Module:Term) :-
( var(Term)
-> instantiation_error(Term)
; retract(Module:Term),
set_dirty(Module, 1),
persistent(Module, retract(Term))
).
set_dirty(_, 0) :- !.
set_dirty(Module, Count) :-
( retract(db_dirty(Module, C0))
-> true
; C0 = 0
),
C1 is C0 + Count,
assert(db_dirty(Module, C1)).
%% db_sync(:What)
%
% Synchronise database with the associated file. What is one of:
%
% * reload
% Database is reloaded from file
% * gc
% Database was re-written, deleting all retractall
% statements. This is the same as gc(50).
% * gc(Percentage)
% GC DB if the number of deleted terms is the given
% percentage of the total number of terms.
% * close
% Database stream was closed
% * nop
% No-operation performed
%
% With unbound What, db_sync/1 reloads the database if it was
% modified on disk, gc it if it is dirty and close it if it is
% opened.
db_sync(Module:What) :-
db_sync(Module, What).
db_sync(Module, reload) :-
\+ db_stream(Module, _), % not open
db_file(Module, File, ModifiedWhenLoaded),
catch(time_file(File, Modified), _, fail),
Modified > ModifiedWhenLoaded, !, % Externally modified
debug(db, 'Database ~w was externally modified; reloading', [File]),
db_clean(Module),
db_load(Module, File).
db_sync(Module, gc) :-
db_sync(Module, gc(50)).
db_sync(Module, gc(When)) :-
db_dirty(Module, Dirty),
( When == always
-> true
; db_size(Module, Total),
Perc is (100*Dirty)/Total,
Perc > When
),
db_sync(Module, close),
db_file(Module, File, Modified),
atom_concat(File, '.new', NewFile),
debug(db, 'Database ~w is dirty; cleaning', [File]),
open(NewFile, write, Out, [encoding(utf8)]),
( persistent(Module, Term, _Types),
Module:Term,
write_action(Out, assert(Term)),
fail
; true
),
close(Out),
retractall(db_file(Module, File, Modified)),
rename_file(NewFile, File),
time_file(File, NewModified),
assert(db_file(Module, File, NewModified)).
db_sync(Module, close) :-
retract(db_stream(Module, Stream)), !,
db_file(Module, File, _),
debug(db, 'Database ~w is open; closing', [File]),
close(Stream),
time_file(File, Modified),
retractall(db_file(Module, File, _)),
assert(db_file(Module, File, Modified)).
db_sync(_, nop) :- !.
db_sync(_, _).
%% db_sync_all(+What)
%
% Sync all registered databases.
db_sync_all(What) :-
must_be(oneof([reload,gc,gc(_),close]), What),
forall(db_file(Module, _, _),
db_sync(Module:What)).
/*******************************
* CLOSE *
*******************************/
close_dbs :-
forall(retract(db_stream(_Module, Stream)),
close(Stream)).
:- at_halt(close_dbs).
|