Using database API
If you are a looking for documentation on how to use the Gramps system as a user instead of as a program developer, it can be found on the Gramps documentation web page. |
Explanation of the basics, underlying Gramps database. This is not intended to be a reference manual, but an introductory programmer's guide to using the Gramps database access routines.
Separate API Reference Documentation for current version of Gramps and as well as a simple UML (svg) diagram for 4.1.x and Gramps Data Model overview are available.
Gramps is written in the Python language. A basic familiarity with Python is required before the database objects can be effectively used. If you are new to Python, you may wish to check out the Python 2.x tutorial or Python 3.x tutorial.
Database API
Access to the database is made through Python classes. Exactly what functionality you have is dependent on the properties of the database. For example, if you are accessing a read-only view, then you will only have access to a subset of the methods available.
At the root of any database interface is either DbReadBase and/or DbWriteBase. These define the methods to read and write to a database, respectively.
The SQLite database engine became an optional add-on plugin for Gramps 5.0 and then replaced BSDDB as the default database backend in the 5.1 version. The BSDDB engine is expected to be retired from the standard install for 5.2 release of Gramps.
The full database hierarchy is:
- DbGeneric - general read and write implementations
- DbWriteBase - virtual and implementation-independent methods for reading data (gen/db/base.py)
- DbReadBase - virtual and implementation-independent methods for reading data (gen/db/base.py)
- DbBsddb - read and write implementation to BSDDB databases (gen/db/write.py) (The SQLite database became optional replaced BSDDB as the default database engine in the 5.1 version
- DbWriteBase - virtual and implementation-independent methods for reading data (gen/db/base.py)
- DbBsddbRead - read-only (accessors, getters) implementation to BSDDB databases (gen/db/read.py)
- DbReadBase - virtual and implementation-independent methods for reading data (gen/db/base.py)
- Callback - callback and signal functions (gen/utils/callback.py)
- UpdateCallback - callback functionality (gen/updatecallback.py)
- DbTxn - class for managing Gramps transactions and the undo database (gen/db/txn.py)
DB-API
The DB-API interface uses a generic interface backed with the general Python SQL implementation, called DB-API. The Gramps' generic interface (gramps.gen.db.generic.DbGeneric) has all of the logic for interacting with the database, except for the specific DB access code. Gramps' DB-API (gramps.plugins.db.dbapi.dbapi) implements the details so as to talk to conforming SQL databases. Other database engines could also implement the DbGeneric details, such as a nosql option.
By default, Gramps DB-API uses sqlite. However, you can also configure DB-API to use mysql, postgresql, and perhaps others.
To be compatible with BSDDB, DB-API stores Gramps data in an identical manner (pickled tuples). However, to allow for fast access, DB-API also stores "flat" data (such as strings and integers) in secondary SQL fields. These are indexed so that data can be selected without having to traverse, unpickle, initialize objects, and compare properties.
DbBsddb
The DbBsddb interface defines a hierarchical database (non-relational) written in PyBSDDB. There is no such thing as a database schema, and the meaning of the data is defined in the Python classes above. The data is stored as pickled tuples and unserialized into the primary data types (below).
Using the Database
For most cases, Gramps will have already opened a database for you. This is often embedded in a DbState object. Thus, you might interface the database like:
>>> dbstate.db.get_person_from_gramps_id("I0001")
However, to do any database activity, you need to understand the primary objects.
Primary Objects
Primary objects are the fundamental objects in the Gramps database. These objects are:
- Person - Contains the information specific to an individual person.
- Family - Contains the information specific to relationships between people. This typically contains one or two parents and zero or more children.
- Event - Contains the information related to an event.
- Place - Contains the information related to a specific place.
- Repository - Contains the information related to a repository.
- Source - Contains the information related to a source of information.
- Citation - Contains the information related to a citation into a source.
- Media Object - Contains the information related to a media object. This includes images, documents, or any other type of related files.
- Note - Contains the information related to a note.
Primary objects are treated as tables within the database. Individual components that compose the primary object are stored as individual items in the database.
1. Person:
- handle
- gramps_id
- gender
- primary_name
- alternate_names
- death_ref_index
- birth_ref_index
- event_ref_list
- family_list
- parent_family_list
- media_list
- address_list
- attribute_list
- urls
- lds_ord_list
- citation_list
- note_list
- change
- tag_list
- private
- person_ref_list
2. Family:
- handle
- gramps_id
- father_handle
- mother_handle
- child_ref_list
- the_type
- event_ref_list
- media_list
- attribute_list
- lds_seal_list
- citation_list
- note_list
- change
- tag_list
- private
3. Event:
- handle
- gramps_id
- type
- date
- description
- place
- citation_list
- note_list
- media_list
- attribute_list
- change
- tag_list
- private
4. Place:
- handle
- gramps_id
- title
- long (longitude)
- lat (latitude)
- placeref_list
- name
- alt_names
- place_type
- code
- alt_loc (deprecated)
- media_list
- citation_list
- note_list
- change
- tag_list
- private
5. Source:
- handle
- gramps_id
- title
- author
- pubinfo (publication information)
- note_list
- media_list
- abbrev (abbreviation)
- change
- attribute_list
- reporef_list
- tag_list
- private
6. Citation:
- handle
- gramps_id
- date
- page
- confidence
- source_handle
- note_list
- media_list
- attribute_list
- change
- tag_list
- private
7. Media:
- handle
- gramps_id
- path
- mime
- desc (description)
- checksum
- attribute_list
- citation_list
- note_list
- change
- date
- tag_list
- private
8. Repository
- handle
- gramps_id
- type
- name
- note_list
- address_list
- urls
- change
- tag_list
- private
9. Note
- handle
- gramps_id
- text
- format
- type
- change
- tag_list
- private
Secondary Objects
In addition, there are a number of secondary objects. In the DbBsddb implementation, these are stored in the primary objects. Typically, this means that DbBsddb objects are stored in pickled format. In the DbDjango implemetation, the secondary objects are additional tables.
The secondary objects include dates, addresses, and source references among other objects.
1. Name:
- privacy
- source_list
- note_list
- date
- first_name
- surname
- suffix
- title
- name_type
- prefix
- patronymic
- group_as
- sort_as
- display_as
- call
2. Date
3. Address
- privacy
- source_list
- note_list
- date
- location
4. LDS Ord
- source_list
- note_list
- date
- type
- place
- famc
- temple
- status
- private
Handles
Each primary object has a unique handle associated with it. The handle serves as both a unique identifier and as the key into the database. This handle is generated using the current timestamp along with two 32-bit random numbers. The resulting value is converted to a text string to provide a hashable handle.
The handle can always be retrieved from a primary object using the get_handle function.
handle = person.get_handle()
All relationships between primary objects are in terms of the handle, instead of a reference to an object. This allows objects that are not currently being used to be stored on disk instead of in memory. This adds an additional step of fetching from the database to find related data. For example, to get the Person object marked as the father of a Family, the following must be done:
# find father from a family father_handle = family.get_father_handle() father = database.get_person_from_handle(father_handle)
For this reason, it is always necessary to have reference to the database that contains the objects with which you are working.
The handle should not be visible to the end user, and should not be included in reports or displayed on screen. Instead, the Gramps ID value should be used for this purpose. The Gramps ID is a user defined value for each object, but is not used internally to the database. This allows the user to change the Gramps ID without affecting the database.
Once created, the handle should never be modified.
See also
Discourse forum discussions:
- Reversing an object handle to its creation date
- Question about the Gramps Handle ID
- Creation timestamp from a handle SuperTool script
Line 53 : Creating a Handle gramps/gen/utils/id.py source code
Object lifetime
Care must be taken when working with primary objects. Each instance that is retrieved from the database is unique, and not connected to other instances. The example below exhibits the issue:
# get two person objects using the same handle person1 = database.get_handle(handle) person2 = database.get_handle(handle) person1.set_nickname('Fred')
In this case, even though person1 and person2 represent the same person, they are distinct objects. Changing the nickname of person1 does not affect person2. The person2 object will retain the original nickname.
Changes to the object do not become permanent until the object has been committed to the database. If multiple instances exist in memory at the same time, care must be taken to make sure that data is not lost.
Database Objects
Gramps provides a standard interface for all database objects. The Gramps database object provides the interface to the lower level database. Currently, only one database interface is supported:
- GrampsBSDDB - the default database, providing access to a Berkeley DB database.
Transactions and Commits
In order to support an UNDO feature, the database has the concept of Transactions. Transactions are a group of related database commit operations that need treated as a single unit. If all related commits are not undone as a single unit, the database can be left in a corrupted state. The UNDO operation will undo all the commits in the transaction.
Transactions may be as small as a simple edit of a person or as complex as a GEDCOM import. The developer must decide what the appropriate level of abstraction is for an operation. The developer must also guarantee that the transaction encompasses the entire transaction, so that an undo operation does not leave the database in an inconsistent state.
An example of a transaction is shown below.
# Create a new family and add the spouses # Assume that the father and mother already exist # begin transaction with DbTxn(_("Set Marker"), self.db, batch=True) as transaction # Create new family, add it to the database. The add_family # function will assign the handle family = Family() database.add_family(family,transaction) # Add the family to the father and mother father.add_family_handle(family.get_handle()) mother.add_family_handle(family.get_handle()) # Add parents to the family family.set_father_handle(father.get_handle()) family.set_mother_handle(mother.get_handle()) # Commit the changes to the father, mother, and family database.commit_person(father, transaction) database.commit_person(mother, transaction) database.commit_family(father, transaction)
UNDO
Each commit operation associated with a transaction stores the previous value of the object in the database log file. The transaction keeps track to the start and stop commits in this list. Undoing the last transaction is as simple as:
database.undo()
This operation pops the last transaction off the stack, and restores the previous values that were stored in the transaction log file.
Iterating through the database
Frequently, it is useful to iterate through all the elements of a database. Gramps provides two ways of accomplishing this. The first method involves getting a list of all the handles and looping over the list. This method is the easiest to implement. An example is below:
for handle in database.get_person_handles(): person = database.get_person_from_handle(handle)
A more efficient method exists, but is more complicated to use. The database can provide a cursor that will iterate through the database without having to load all handles into memory. The cursor returns a handle, data pair. The data represents the serialized data directly from the database. It is the users responsibility to unserialize the data. An example is below:
cursor = database.get_person_cursor() pair = cursor.first() while pair: (handle,data) = pair person = Person() person.unserialize(data) pair = cursor.next() cursor.close()
Finding references
Primary objects can reference each other in two ways.
A primary object may reference another directly, for instance a Person object may link to a Source object that has information about where some information about the person came from. Finding all of the primary (or forward links) can be done like this:
# get references directly from the primary object references = person.get_referenced_handles() # get all references from the primary object and # all secondary objects that are linked to it. references = person.get_referenced_handles_recursively()
The second type of reference is an implicit backlink, this is the reverse of the forward-link above. To find all the backlinks for a primary object you have to ask the database to search all the primary objects to see which ones have a reference to the primary object you are looking for. You can do this by using the find_backlink_handles() method. e.g.
for reference in db.find_backlink_handles(person.get_handle()): reference_class_name, reference_handle = reference if reference_class_name == 'Person': person = db.get_person_from_handle(reference_handle)
Getting notification of changes to the database
If you have widgets that are displaying the content of the database tables you need to be aware that the database can change. Records may be added, removed or updated by other parts of Gramps and your widget must show these changes. The Gramps database provides a signalling mechanism that can be used to notify your widget of changes to the database. The documentation for the ((GrampsDBCallback)) class provides a description of the signalling mechanism. For most code that uses the Gramps database all that is required is for callback functions to be connected to the correct signals. For example:
database.connect('person-add',self.update_view) database.connect('person-update',self.update_view) database.connect('person-rebuild',self.update_view)
A full list of the signals that are emitted from the database can be found at the top of the GrampsDbBase class in the gramps/gen/db/base.py module.