Subject: CVS commit: pkgsrc/databases
From: Adam Ciarcinski
Date: 2017-03-20 07:02:27
Message id: 20170320060227.4A9C2FBE4@cvs.NetBSD.org

Log Message:
Version 1.13 - 2017-03-11

* gdbm_fetch, gdbm_firstkey, and gdbm_nextkey behavior

If the requested key was not found, these functions return datum with
dptr pointing to NULL and set gdbm_errno to GDBM_ITEM_NOT_FOUND (in
prior releases, gdbm_errno was set to GDBM_NO_ERROR),

If an error occurred, dptr is set to NULL, and gdbm_errno to
the error code.

In any case gdbm_errno is guaranteed to have meaningful value upon
return.

* Error handling

In previous versions of GDBM, fatal errors (such as write error while
storing the key/data pair or bucket) caused immediate termination of
the program via call to exit(3).  This is no longer the case.

Starting from this version, if a fatal error occurrs while modifying
the database file, that database is marked as needing recovery and
gdbm_errno is set to GDBM_NEED_RECOVERY.  Calls to any GDBM functions,
except gdbm_recover, will then return immediately with the same error
code.

The function gdbm_recover examines the database file and fixes
eventual inconsistencies.  Upon successful return it clears the error
state and makes the database operational again.

For backward compatibility, the fatal_func argument to gdbm_open is
retained and its functionality is not changed.  If it is not NULL, the
new error handling procedures are disabled, the function it points to
will be called upon fatal errors.  When it returns, exit(1) will be
called.

* Per-database error codes

In addition to gdbm_error global variable, the most recent error state
is saved in the GDBM_FILE structure.  This facilitates error handling
when operating multiple GDBM databases simultaneously.

Files:
RevisionActionfile
1.52modifypkgsrc/databases/gdbm/Makefile
1.5modifypkgsrc/databases/gdbm/Makefile.common
1.13modifypkgsrc/databases/gdbm/PLIST
1.12modifypkgsrc/databases/gdbm/buildlink3.mk
1.3modifypkgsrc/databases/gdbm/builtin.mk
1.12modifypkgsrc/databases/gdbm/distinfo
1.8modifypkgsrc/databases/gdbm_compat/Makefile
1.5modifypkgsrc/databases/gdbm_compat/builtin.mk
1.1addpkgsrc/databases/gdbm/patches/patch-src_Makefile.in