/usr/lib/swi-prolog/library/bdb.pl is in swi-prolog-bdb 7.6.4+dfsg-1build1.
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 508 509 | /* Part of SWI-Prolog
Author: Jan Wielemaker
E-mail: J.Wielemaker@vu.nl
WWW: http://www.swi-prolog.org
Copyright (c) 2015, 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(bdb,
[ bdb_init/1, % +Options
bdb_init/2, % -Environment, +Options
bdb_close_environment/1, % +Environment
bdb_current_environment/1, % -Environment
bdb_environment_property/2, % ?Environment, ?Property
bdb_open/4, % +File, +Mode, -Handle, +Options
bdb_close/1, % +Handle
bdb_closeall/0, %
bdb_current/1, % -DB
bdb_put/3, % +DB, +Key, +Value
bdb_del/3, % +DB, +Key, ?Value
bdb_delall/3, % +DB, +Key, +Value
bdb_enum/3, % +DB, -Key, -Value
bdb_get/3, % +DB, +Key, -Value
bdb_getall/3, % +DB, +Key, -ValueList
bdb_transaction/1, % :Goal
bdb_transaction/2, % :Goal, +Environment
bdb_version/1 % -Version
]).
:- use_foreign_library(foreign(bdb4pl)).
:- meta_predicate
bdb_transaction(0),
bdb_transaction(+, 0).
/** <module> Berkeley DB interface
This package realises a binding to _Berkeley DB_, originally by
[Sleepycat Software](http://www.sleepycat.com/), now managed by
[Oracle](http://www.oracle.com/technetwork/database/database-technologies/berkeleydb/downloads/index.html).
The DB library implements modular support for the bottom layers of a
database. In can be configured for single-threaded access to a file,
multi-threaded access with transactions, remote access as well as
database replication.
Berkeley DB is an _embedded_ database. This implies the library provides
access to a file containing one or more database tables. The Berkeley DB
database tables are always _binary_, mapping a _key_ to a _value_. The
SWI-Prolog interface to Berkeley DB allows for fast storage of arbitrary
Prolog terms including cycles and constraints in the database.
Accessing a database consists of four steps:
1. Initialise the default DB environment using bdb_init/1 or
create an explicit DB environment using bdb_init/2. This
step is optional, providing simple non-transactional file access
when omitted.
2. Open a database using bdb_open/4, returning a handle to the
database.
3. Accessing the data using bdb_put/3, bdb_get/3, etc.
4. Closing a database using bdb_close/1. When omitted, all open
databases are closed on program halt (see at_halt/1).
*Errors* reported by the underlying database are mapped to an exception
of the form error(bdb(Code,Message,Object), _), where `Code` is an atom
for well known errors and an integer for less known ones. `Message` is
the return from the db_strerror() function and `Object` is the most
related Prolog object, typically a database or database environment
handle. If `Code` is an atom, it is the lowercase version of the
associated C macro after string the =|DB_|= prefix. Currently the
following atom-typed codes are defined: `lock_deadlock`, `runrecovery`,
`notfound`, `keyempty`, `keyexist`, `lock_notgranted` and
`secondary_bad`.
*/
%! bdb_init(+Options) is det.
%! bdb_init(-Environment, +Options) is det.
%
% Initialise a DB _environment_. The predicate bdb_init/1
% initialises the _default_ environment, while bdb_init/2 creates
% an explicit environment that can be passed to bdb_open/4 using
% the environment(+Environment) option. If bdb_init/1 is called,
% it must be called before the first call to bdb_open/4 that uses
% the default environment. If bdb_init/1 is not called, the
% default environment can only handle plain files and does not
% support multiple threads, locking, crash recovery, etc.
%
% Initializing a BDB environment always requires the home(+Dir)
% option. If the environment contains no databases, the argument
% create(true) must be supplied as well.
%
% The currently supported options are listed below. The name of
% the boolean options are derived from the DB flags by dropping
% the =DB_= prefix and using lowercase, e.g. =DB_INIT_LOCK=
% becomes `init_lock`. For details, please refer to the DB manual.
%
% - create(+Bool)
% If `true`, create any underlying file as required. By
% default, no new files are created. This option should be
% set for prograns that create new databases.
% - failchk(+Bool)
% - home(+Home)
% Specify the DB home directory, the directory holding the
% database files. The directory must exist prior to calling
% these predicates.
% - init_lock(+Bool)
% Enable locking (=DB_INIT_LOCK=). Implied if transactions
% are used.
% - init_log(+Bool)
% Enable logging the DB modifications (=DB_INIT_LOG=). Logging
% enables recovery of databases in case of system failure.
% Normally it is used in combination with transactions.
% - init_mpool(+Bool)
% Initialize memory pool. Impicit if mp_size(+Size) or
% mp_mmapsize(+Size) is specified.
% - init_rep(+Bool)
% Init database replication. The rest of the replication
% logic is not yet supported.
% - init_txn(+Bool)
% Init transactions. Implies init_log(true).
% - lockdown(+Bool)
% - mp_size(+Integer)
% - mp_mmapsize(+Integer)
% Control memory pool handling (=DB_INIT_MPOOL=). The
% `mp_size` option sets the memory-pool used for
% caching, while the `mp_mmapsize` controls the maximum size
% of a DB file mapped entirely into memory.
% - private(+Bool)
% - recover(+Bool)
% Perform recovery before opening the database.
% - recover_fatal(+Bool)
% Perform fatal recovery before opening the database.
% - register(+Bool)
% - server(+Host, [+ServerOptions])
% Initialise the DB package for accessing a remote
% database. Host specifies the name of the machine running
% `berkeley_db_svc`. Optionally additional options may be
% specified:
% - server_timeout(+Seconds)
% Specify the timeout time the server uses to determine
% that the client has gone. This implies the server will
% terminate the connection to this client if this client
% does not issue any requests for the indicated time.
% - client_timeout(+Seconds)
% Specify the time the client waits for the server to
% handle a request.
% - system_mem(+Bool)
% - transactions(+Bool)
% Enable transactions, providing atomicy of changes and
% security. Implies logging and locking. See
% bdb_transaction/1.
% - thread(+Bool)
% Make the environment accessible from multiple threads.
% - thread_count(+Integer)
% Declare an approximate number of threads in the database
% environment. See =|DB_ENV->set_thread_count()|=.
% - use_environ(+Bool)
% - use_environ_root(+Bool)
% - config(+ListOfConfig)
% Specify a list of configuration options, each option is of
% the form Name(Value). Currently unused.
%! bdb_close_environment(+Environment) is det.
%
% Close a database environment that was explicitly created using
% bdb_init/2.
%! bdb_current_environment(-Environment) is nondet.
%
% True when Environment is a currently known environment.
bdb_current_environment(Environment) :-
bdb_current_environment_(Environment),
bdb_is_open_env(Environment).
bdb_current_environment_(Env) :-
( var(Env)
-> ( Env = default
; current_blob(Env, bdb_env)
)
; ( Env == default
-> true
; current_blob(Env, bdb_env)
)
).
%! bdb_environment_property(?Environment, ?Property) is nondet.
%
% True when Property is a property of Environment. Defined
% properties are all boolean options defined with bdb_init/2
% and the following options:
%
% - home(-Path)
% Path is the absolute path name for the directory used
% as database environment.
% - open(-Boolean)
% True if the environment is open.
bdb_environment_property(Env, Property) :-
bdb_current_environment_(Env),
( bdb_is_open_env(Env)
-> ( var(Property)
-> env_property(Property),
bdb_env_property_(Env, Property)
; bdb_env_property_(Env, Property)
)
; Property = open(false)
).
bdb_env_property_(Env, home(Home)) :-
!,
bdb_env_property(Env, home(Home0)),
prolog_to_os_filename(Home, Home0).
bdb_env_property_(Env, Prop) :-
bdb_env_property(Env, Prop).
env_property(open(true)).
env_property(home(_)).
env_property(init_lock(_)).
env_property(init_log(_)).
env_property(init_mpool(_)).
env_property(init_rep(_)).
env_property(init_txn(_)).
env_property(recover(_)).
env_property(recover_fatal(_)).
env_property(use_environ(_)).
env_property(use_environ_root(_)).
env_property(create(_)).
env_property(lockdown(_)).
env_property(failchk(_)).
env_property(private(_)).
env_property(register(_)).
env_property(system_mem(_)).
env_property(thread(_)).
%! bdb_open(+File, +Mode, -DB, +Options) is det.
%
% Open File holding a database. Mode is one of `read`, providing
% read-only access or `update`, providing read/write access.
% Options is a list of options. Supported options are below. The
% boolean options are passed as flags to =|DB->open()|=. The
% option name is derived from the flag name by stripping the
% =|DB_|= prefix and converting to lower case. Consult the
% Berkeley DB documentation for details.
%
% - auto_commit(+Boolean)
% Open the database in a transaction. Ensures no database
% is created in case of failure.
% - create(+Boolean)
% Create a new database of the database does not exist.
% - dup(+Boolean)
% Do/do not allow for duplicate values on the same key.
% Default is not to allow for duplicates.
% - excl(+Boolean)
% Combined with create(true), fail if the database already
% exists.
% - multiversion(+Boolean)
% Open the database with support for multiversion concurrency
% control. The flag is passed, but no further support is
% provided yet.
% - nommap(+Boolean)
% Do not map this database into process memory.
% - rdonly(+Boolean)
% Open the database for reading only.
% - read_uncommitted(+Boolean)
% Read operations on the database may request the return of
% modified but not yet committed data. This flag must be
% specified on all DB handles used to perform dirty reads or
% database updates, otherwise requests for dirty reads may not
% be honored and the read may block.
% - thread(+Boolean)
% Enable access to the database handle from multiple threads.
% This is default if the corresponding flag is specified for
% the environment.
% - truncate(+Boolean)
% When specified, truncate the underlying file, i.e., start
% with an empty database.
% - database(+Name)
% If File contains multiple databases, address the named
% database in the file. A DB file can only consist of multiple
% databases if the bdb_open/4 call that created it specified
% this argument. Each database in the file has its own
% characteristics.
% - environment(+Environment)
% Specify a database environment created using bdb_init/2.
% - key(+Type)
% - value(+Type)
% Specify the type of the key or value. Allowed values are:
% - term
% Key/Value is a Prolog term (default). This type allows for
% representing arbitrary Prolog data in both keys and value.
% The representation is space-efficient, but Prolog
% specific. See PL_record_external() in the SWI-Prolog
% Reference Manual for details on the representation. The
% other representations are more neutral. This implies they
% are more stable and sharing the DB with other languages is
% feasible.
% - atom
% Key/Value is an atom. The text is represented as a
% UTF-8 string and its length.
% - c_blob
% Key/Value is a blob (sequence of bytes). On output,
% a Prolog string is used. The input is either a Prolog
% string or an atom holding only characters in the range
% [0..255].
% - c_string
% Key/Value is an atom. The text is represented as a C
% 0-terminated UTF-8 string.
% - c_long
% Key/Value is an integer. The value is represented as a
% native C long in machine byte-order.
%
% @arg DB is unified with a _blob_ of type `db`. Database handles
% are subject to atom garbage collection.
% @error permission_error(access, bdb_environment, Env) if an
% environment is not thread-enabled and accessed from multiple
% threads.
%! bdb_close(+DB) is det.
%
% Close BerkeleyDB database indicated by DB. DB becomes invalid
% after this operation. An attempt to access a closed database
% is detected reliably and results in a permission_error
% exception.
%! bdb_put(+DB, +Key, +Value) is det.
%
% Add a new key-value pair to the database. If the database does
% not allow for duplicates the possible previous associated with
% Key is replaced by Value.
%! bdb_del(+DB, ?Key, ?Value) is nondet.
%
% Delete the first matching key-value pair from the database. If
% the database allows for duplicates, this predicate is
% non-deterministic, otherwise it is _semidet_. The enumeration
% performed by this predicate is the same as for bdb_get/3. See
% also bdb_delall/3.
%! bdb_delall(+DB, +Key, ?Value) is det.
%
% Delete all matching key-value pairs from the database. With
% unbound Value the key and all values are removed efficiently.
bdb_delall(DB, Key, Value) :-
var(Value),
!,
bdb_del(DB, Key). % this is much faster
bdb_delall(DB, Key, Value) :-
( bdb_del(DB, Key, Value),
fail
; true
).
%! bdb_get(+DB, ?Key, -Value) is nondet.
%
% Query the database. If the database allows for duplicates this
% predicate is non-deterministic, otherwise it is _semidet_. Note
% that if Key is a term this matches stored keys that are
% _variants_ of Key, *not* unification. See =@=/2. Thus, after
% bdb_put(DB, f(X), 42), we get the following query results:
%
% - bdb_get(DB, f(Y), V) binds Value to `42`, while `Y` is left
% unbound.
% - bdb_get(DB, f(a), V) _fails_.
% - bdb_enum(DB, f(a), V) succeeds, but does not perform any
% indexing, i.e., it enumerates all key-value pairs and
% performs the unification.
%! bdb_enum(+DB, -Key, -Value)
%
% Enumerate the whole database, unifying the key-value pairs to
% Key and Value. Though this predicate can be used with an
% instantiated Key to enumerate only the keys unifying with Key,
% no indexing is used by bdb_enum/3.
%! bdb_getall(+DB, +Key, -Values) is semidet.
%
% Get all values associated with Key. Fails if the key does not
% exist (as bagof/3).
%! bdb_current(?DB) is nondet.
%
% True when DB is a handle to a currently open database.
bdb_current(DB) :-
current_blob(DB, bdb),
bdb_is_open(DB).
%! bdb_closeall is det.
%
% Close all currently open databases and environments. This is
% called automatically after loading this library on process
% terminatation using at_halt/1.
bdb_closeall :-
close_databases,
close_environments.
close_databases :-
forall(bdb_current(DB),
catch(bdb_close(DB),
E,
print_message(warning, E))).
close_environments :-
forall(bdb_current_environment(DB),
catch(bdb_close_environment(DB),
E,
print_message(warning, E))).
terminate_bdb :-
( current_predicate(bdb_init/1) % library was loaded ok
-> bdb_closeall
; true
).
:- at_halt(terminate_bdb).
%! bdb_transaction(:Goal) is semidet.
%! bdb_transaction(+Environment, :Goal) is semidet.
%
% Start a transaction, execute Goal and terminate the transaction.
% Only if Goal succeeds, the transaction is commited. If Goal
% fails or raises an exception, the transaction is aborted and
% bdb_transaction/1 either fails or rethrows the exception. Of
% special interest is the exception
%
% ==
% error(package(db, deadlock), _)
% ==
%
% This exception indicates a deadlock was raised by one of the DB
% predicates. Deadlocks may arise if multiple processes or threads
% access the same keys in a different order. The DB
% infra-structure causes one of the processes involved in the
% deadlock to abort its transaction. This process may choose to
% restart the transaction.
%
% For example, a DB application may define `{Goal}` to realise
% transactions and restart these automatically is a deadlock is
% raised:
%
% ==
% {Goal} :-
% catch(bdb_transaction(Goal), E, true),
% ( var(E)
% -> true
% ; E = error(package(db, deadlock), _)
% -> {Goal}
% ; throw(E)
% ).
% ==
%
% @arg Environment defines the environment to which the
% transaction applies. If omitted, the default environment
% is used. See bdb_init/1 and bdb_init/2.
%! bdb_version(-Version:integer) is det.
%
% True when Version identifies the database version. Version
% is an integer defined as:
%
% ==
% DB_VERSION_MAJOR*10000 +
% DB_VERSION_MINOR*100 +
% DB_VERSION_PATCH
% ==
/*******************************
* MESSAGES *
*******************************/
:- multifile
prolog:message/3.
prolog:message(error(bdb(Code, Message, Obj), _)) -->
[ 'BDB: Error ~w on ~p: ~w'-[Code, Obj, Message] ].
|