cl-genealogy.org 10 KB

Common Lisp Genealogical Database Manager

TODO Introduction   nonum

TOC   ignoreheading

WORKING Data Storage [6/8]

One of the key components of genealogical software is the ability to effectively store information related to members of a family. This will include things such as people, birth records, death records, marriage records, divorce records and notes.

To accomplish the storage of this information, I'm using a schema-less relational database management system called LambdaLite, which is written entirely in lisp, and uses the local file system to store data effectively.

DONE Macros

To accomplish the goal of storing data within the database system that is LambdaLite, I need to be able to constrain various attributes to be certain values. To do this, instead of having to manually write code to constrain them each time, I use a few macros to do this. These macros include:

constrain-values

Constrains to be one of several values. This macro takes one or more arguments, and generates a function that checks to see if the argument passed to it is in any of the given values.

in-table-column

Checks to see if the value is one of the values in a specific column. This macro takes two arguments, a table name and a column name, then generates a function which will calculate all possible values, iterating for each row in the table, getting the values in the specified column, and then testing the value passed to the function to see if it is a member of the possible values.

ids-in-table-column

Checks to see if this is one of the possible IDs in a table column. This is done through the same mechanism as in-table-column, but simply ensuring that the passed object is a) a list, and b) the elements in the list are mapped through the in-table-column result, with the values of a and be being reduced using and to produce a single boolean.

unique-in-column

This checks to see whether or not the passed value is within the specified column, ensuring that it is not within it. This function takes three things, a table, a column and a type. It first ensures that the passed object is of the specified type, and if it is, calculates all values currently in the specified table and column, and then checks to see that the passed object is not within the list.

  (defmacro constrain-values (&rest values)
    `(lambda (object)
       (the boolean
            (member object (list ,@values)))))

  (defmacro in-table-column (table column)
    `(lambda (object)
       (let ((possible-values (iter
                                (for row in (select ,table))
                                (collect (,column row)))))
         (the boolean (member object possible-values)))))

  (defmacro ids-in-table-column (table column)
    `(lambda (object)
       (let ((possible-values (iter
                                (for row in (select ,table))
                                (collect (,column row)))))
         (and (listp object)
            (reduce #'and (map 'list ,(in-table-column table column)
                             object))))))

  (defmacro unique-in-column (table column type)
    `(lambda (object)
       (if (typep object ',type)
           (let ((possible-values (iter
                                    (for row in (select ,table))
                                    (collect (,column row)))))
             (not (the boolean (member object possible-values)))))))

  (defun generate-table-id (table)
    (check-type table keyword)
    (1+ (length (select table))))

DONE People

This is the People table, used to store the most bare information about a person. This includes the following:

ID

The ID used to identify the person within the database.

Name

The name of the person.

Gender

The gender of the person. Can be one of:

  • M

  • F

  • T

Father

The person's father. This is either an person ID, or 0 if we don't know who the father is.

Mother

The person's mother. As with father, this can be either a person ID or 0.

  (defattributes
    :/person-id (unique-in-column :people :/person-id integer)
    :/person-name #'stringp
    :/gender (constrain-values "M" "F" "T")
    :/father (lambda (object)
               (or (= 0 object)
                  (funcall (in-table-column :people :/person-id) object)))
    :/mother (lambda (object)
               (or (= 0 object)
                  (funcall (in-table-column :people :/person-id) object))))

DONE Births

Another important thing is to be able to log births, or possible birth dates. To do this, you need four pieces of information:

Birth ID

The ID used to reference the person's birth.

Person

The ID of the person born.

Birth Date

When the person was born.

Birth Location

Where the person was born.

  (defattributes
    :/birth-id (unique-in-column :births :/birth-id integer)
    :/birth-person (in-table-column :people :/person-id)
    :/birth-date #'stringp
    :/birth-location #'stringp)

DONE Deaths

Furthermore, to be as complete as possible, you need to be able to store and query death information. This includes things such as:

Death ID

The ID used to track this death record.

Person

The ID of the person who died.

Date

When the person died.

Location

Where the person died.

  (defattributes
    :/death-id (unique-in-column :deaths :/death-id integer)
    :/death-person (in-table-column :people :/person-id)
    :/death-date #'stringp
    :/death-location #'stringp)

DONE Marriages

Further, to be able to keep track of relationships (and thus families), you need to be able to track marriages. This entails keeping track of the following information:

Marriage ID

ID used to track the marriage within this system.

Husband

ID of the husband in the marriage.

Wife

ID of the wife in the marriage.

Wedding Date

Date the marriage was considered to have started.

End Date

Date the marriage ended (Divorce, death, annulment).

  (defattributes
    :/marriage-id (unique-in-column :marriages :/marriage-id integer)
    :/husband (in-table-column :people :/person-id)
    :/wife (in-table-column :people :/person-id)
    :/wedding-date #'stringp
    :/end-date #'stringp)

DONE Divorces

To keep track of the dissolution of marriages, and to enable correct report generation, we must keep track of divorces. To do this, we store the following information:

Divorce ID

How the divorce is referred to within the database.

Marriage

The ID of the marriage the divorce terminates

Divorce Date

The date the Divorce is effective.

  (defattributes
    :/divorce-id (unique-in-column :divorces :/divorce-id integer)
    :/marriage (in-table-column :marriages :/marriage-id)
    :/divorce-date #'stringp)

TODO Notes

TODO Common Attributes

WORKING Data Interface [0/10]

TODO Create Person

TODO Create Birth

TODO Create Death

TODO Create Marriages

TODO Create Divorce

TODO Get Person

TODO Get Birth

TODO Get Death

TODO Get Mariage

TODO Get Divorce

TODO Family Tree Display

TODO Ahnentafel Generation

TODO GEDCOM Parsing

WORKING Packaging [0/6]

TODO Data Storage

TODO Data Interface

TODO Family Tree

TODO Ahnentafel

TODO Gedcom Parsing

TODO ASDF