Crate Docs Build Status Language Machines Badge

This is a high-performance Rust library for handling the FoLiA XML format, a rich format for linguistic annotation.

This library is currently in alpha stage, it may already be used to read FoLiA documents and to create documents from scratch. Note that this library does not yet implement validation!. You will have to ensure your FoLiA documents are valid by running another FoLiA validator, as this library does not yet guarantee producing valid FoLiA.

For a comparison of FoLiA libraries and a list of implemented features, see FoLiA Implementations.

Installation

Add folia to your project's Cargo.toml.

Usage

Reading from file and querying all words:

```rust extern crate folia;

use folia;

//load document from file let doc = folia::Document::fromfile(filename, folia::DocumentProperties::default()).expect("parsing folia"); //Build a query, here you can match on any attribute let query = folia::Query::select().element(folia::Cmp::Is(folia::ElementType::Word)); //Turn the query into a specific selector let selector = folia::Selector::fromquery(&doc, &query);

//Run the selector for word in doc.select(selector, folia::Recursion::Always) { //print the ID and the text println!("{}\t{}", word.id().or(Some("No-ID")), word.text(&folia::TextParameters::default()) ); } ```

A common pattern is to query in two stages, methods like get_annotation(), get_annotations() provide shortcut alternatives to select(). Let's output Part-of-Speech tags:

rust //Run the selector for word in doc.select(selector, folia::Recursion::Always) { if let Some(pos) = word.get_annotation(folia::AnnotationType::POS, folia::Cmp::Any, folia::Recursion::No) { println!(pos.class().unwrap()); } }

We can create a document from scratch:

```rust let doc = folia::Document::new("example", folia::DocumentProperties::default()).expect("instantiating folia"); let root: ElementKey = 0; //root element always has key 0 //add a sentence, returns its key let sentence = doc.addelementto(root, folia::ElementData::new(folia::ElementType::Sentence). withattrib(folia::Attribute::Id("s.1".tostring())) ).expect("Adding sentence");

doc.addelementto(sentence, folia::ElementData::new(folia::ElementType::Word). with(folia::DataType::text("hello"))).expect("Adding word 1"); doc.addelementto(sentence, folia::ElementData::new(folia::ElementType::Word). with(folia::DataType::text("world"))).expect("Adding word 2");

```

If you have an element's key (a numerical internal identifier), you can easily obtain a FoliaElement instance:

```rust if let Some(element) = doc.get_element(key) {

} ```

If you have it's official ID, you can do:

```rust if let Some(element) = doc.getelementby_id("example.s.1.w.1") {

} ```

Benchmarks

As the primary goal of this library is to provide a high-performance library, we ran some limited benchmarks against the other more mature and more feature complete FoLiA libraries: FoliaPy, written in Python, and libfolia, written in C++.

Tested on a Intel(R) Core(TM) i7-4770K CPU @ 3.50GHz, Linux 5.3

Note: The folia-rust implementation does only a minimal validation whereas the others do a a complete shallow validation on parsing, including also a text consistency validation.

Benchmarks on a +-100MB FoLiA document

(bosb002gide03_01.nederlab.folia.xml)

Parse from file into a full memory representation (DOM)

| Implementation | CPU | Memory | Peak Memory | |--------------- |-----|--------|-------------| | foliapy v2.2.1 | 60.9 s | 2083 MB | - | | libfolia v2.3 | 14.7 s | 2656 MB | 2681 MB | | folia-rust v0.0.1 | 2.6 s | 531 MB | 622 MB |

Selecting and iterating over all words

| Implementation | CPU | Memory | Peak Memory | |--------------- |-----|--------|-------------| | foliapy v2.2.1 | 1.46 s | - | - | | libfolia v2.3 | 0.84 s | - | - | | folia-rust v0.0.1 | 0.122 s | - | - |

Serialisation (without disk writing)

| Implementation | CPU | Memory | Peak Memory | |--------------- |-----|--------|-------------| | foliapy v2.2.1 | 77.7 s | - | - | | libfolia v2.3 | 5.06s | - | - | | folia-rust v0.0.1 | 1.14s | - | - |