#name #gedcom #deserialize #genealogy #json #json-xml #serialization

gedcomx

The core data structures and serialization / deserialization of the GEDCOM X format

13 releases

0.1.5 Jul 21, 2023
0.1.4 Jul 21, 2023
0.1.3 Jan 18, 2022
0.1.1 Jul 7, 2021
0.1.0-alpha.1 May 31, 2021

#474 in Parser implementations

35 downloads per month
Used in gedcomx_file

MIT license

445KB
10K SLoC

gedcomx

The core data structures and serialization / deserialization of the GEDCOM X format.

CI codecov API

Specification Compliance

This crate provides conformance to the following GEDCOM X specs:

Features

  • Well tested: hundreds of unit tests and some large integration tests. Integration tests parsing of all the recipes in the Recipe Book as well as other test data from the Java Gedcomx implementation.
  • Fuzzed and quickchecked.
  • Use the builder pattern to safely build GEDCOM X data models.
  • XML and JSON serialization and deserialization supported.

Documentation

https://docs.rs/gedcomx

Usage

Add this to your Cargo.toml:

[dependencies]
gedcomx = "0.1"

Example

A GEDCOM X document can be deserialized from JSON:

use gedcomx::Gedcomx;

fn main() {
    let json = std::fs::read_to_string("../data/birth.json").unwrap();
    let gx = Gedcomx::from_json_str(&json).unwrap();
    println!(
        "Successfully deserialized GEDCOM X document from JSON with {} people inside!",
        gx.persons.len()
    );

    assert_eq!(gx.persons.len(), 4);
}

Similarly, you can deserialize from XML with the Gedcomx struct's from_xml_str method.

In-memory GEDCOM X documents can be built by instantiating individual components and adding them to an instance of Gedcomx. This can then be serialized to JSON or XML using a family of functions defined on Gedcomx:

use gedcomx::{Gedcomx, Name, NameForm, NameType, Person};

let gx = Gedcomx::builder()
    .person(
        Person::builder()
            .private(true)
            .name(
                Name::builder(
                    NameForm::builder()
                        .full_text("Jim Halpert")
                        .lang("en")
                        .build(),
                )
                .name_type(NameType::BirthName)
                .build(),
            )
            .build(),
    )
    .build();

let json = gx.to_json_string_pretty().unwrap();

assert_eq!(json.len(), 285);

Contributing

See the Design Doc for more information about why various choices were made. PRs welcome!

Dependencies

~6MB
~113K SLoC