🎯 hit

Build Status codecov

hit is a Rust library to handle data structured in tree-like documents with these features:

This library was intended to manage, in memory, deeply nested documents with strictly typed data structures and multiple inner links. That could be the representation of a word processor document, a directory and its files and subfolders with symbolic links...

Hierarchical

Every document is structured like a document tree, in a similar way to MongoDB documents. That means a document always start with a root object. In hit an object is defined as a key/value list.

The values can be either be

(TODO : link to property types)

Indexed

Every object is indexed. That implies :

The indexation allows hit to provide (TODO LINK) reference and reference_array type fields. They are inspired by foreign keys in relation databases, and hit enforces consistency rules : you cannot delete an object as long as there are references to it in the document.

The index also allows you to easily find all the references to an object. (TODO: link to method)

Typed

Every object in a document must have a (TODO: Link) Model. A model is identified by a string id, and is referenced in the type property of the object. To resolve model definitions from the ids, every instance of hit must be initialized with a (TODO: link) Kernel that contains the definitions.

The models :

Get started

hit is a rust library. You can add it to your project by adding this line to your Cargo.toml file :

TODO

Guide : How to create and use a hit instance

Creating a hit instance

To create a hit data instance, you need a (TODO: link) Kernel with model definitions. One of the core kernels, officially supported by me, is the recursively designed (TODO: link) hit_model, which allows you to modelize models for hit.

To make it more simple, let's start with the basic, although completely useless (TODO: link) hit_test_file_model, that represents a directory/file structure, with links.

We will use ( TODO : link ) Hit::new_with_values to create the model. If you do not have initial values, you can instead use the (TODO : link ) Hit::new function.

```rust use hitfilemodel::create_kernel; use hit::{ Hit, ObjectValue, IndexEntryProperty }; use std::collections::HashMap;

// create the kernel let kernel = create_kernel();

// create a string id for the object let id = "my_id".into();

// initiate the name value for our root object let mut values = HashMap::new(); values.insert("name".into(), ObjectValue::String("name".into()));

// we can now create the hit instance let hitinstance = Hit::newwith_values( id, kernel, values, // you must specify the main model name "file/filesystem" ); ```

Property types

hit allows the following property types as values. The (TODO: link) ObjectValue enum handles this type system.

Simple values

These values are set using the (TODO: link) Hit::set value.

Complex values

These fields can only be populated using specific methods from the Hit struct.

The following sub-chapters will explain how to use these value types. The examples will use the previously created hit_test_file_model instance.

Setting a simple/scalar value

You can set a simple value using the (TODO : link) Hit::set method.

Example :

rust hit_instance::set( "my_id".into(), "name".into(), ObjectValue::String("my_instance_name".into()) ).expect("This should set the root object name");

The action may return an error :

Adding an object

You can add a subobject to an existing object using the Hit::insert method. You will need to provide :

Example :

rust hit_instance::insert( "file/folder".into(), "id2".into(), Hashmap::new(), IndexEntryProperty { id: "my_id".into(), property: "folders".into(), }, None, ).expect("Insertion has failed");

Removing an object

Referencing an object

Removing an object reference

Guide : validation

hit provides validation for your data. There are two level of validation:

Mandatory validation

There are some basic data integrity rules that hit models will not let you break. When you set a value or do an operation, if what you're doing violates these rules, the operation will return an error. hit is designed to have only a minimal amount of these errors. These errors are :

(TODO) : be able to add mandatory validation to a model.

Non-blocking validation

The main validation model is non-blocking : that means you can assign invalid values to properties of your objects.

Persisting hit data

JSON import/export

HitImporter/Exporter : create your own serializer/deserializer

Plugins / Event handlers

TODO: write this chapter

Guide: creating models

hit relies on Models. Similar to SQL table definitions, Models are instances of the Model struct. A Hit instance relies on a Kernel which is a collection of models (and of plugins too as we'll see later). As a Hit instance has a hierarchical, tree-like structure, it must have a root object, which, like all of its sub-objects, is structured by a Model.

In our (TODO: link to github) hit_test_file_model example, the file/filesystem model is the root object, and contains files and folders sub-objects.

In that part of the guide we will introduce how to create your own kernel, models, as well as plugins.

Model definitions

A model has the following properties:

Model macro

Validators

Field validators

Object validators

Standard library

Creating custom field types

Kernel

Kernel macro

TODO : create the macro ^^

TODO : stabilization

TODO : After stabilization

TODO : less prioritary

```

```