#yaml #merge #yaml-parser #serde-yaml #key #mapping #document

yaml-merge-keys

Implementation of the YAML merge key extension. http://yaml.org/type/merge.html

10 releases (6 breaking)

0.7.0 Mar 26, 2024
0.6.0 May 30, 2023
0.5.1 Dec 6, 2021
0.5.0 Nov 22, 2021
0.1.0 Mar 30, 2017

#129 in Encoding

Download history 12938/week @ 2024-01-01 15970/week @ 2024-01-08 12756/week @ 2024-01-15 14280/week @ 2024-01-22 15711/week @ 2024-01-29 15616/week @ 2024-02-05 17103/week @ 2024-02-12 15743/week @ 2024-02-19 16497/week @ 2024-02-26 17225/week @ 2024-03-04 18468/week @ 2024-03-11 19564/week @ 2024-03-18 18320/week @ 2024-03-25 16472/week @ 2024-04-01 17887/week @ 2024-04-08 17573/week @ 2024-04-15

71,080 downloads per month
Used in 11 crates (9 directly)

MIT/Apache

43KB
969 lines

Yaml merge keys

This crate implements support for the Merge Key Language-Independent Type for YAML draft specification for YAML documents from the yaml-rust and serde_yaml (with the serde_yaml feature) crates.

When a mapping in a YAML document contains a << key, its value should be either a mapping or a sequence of mappings. For each mapping, it is merged into the parent mapping where the parent mapping wins conflicts (so that it may override keys from the merge set).


lib.rs:

YAML Merge Keys

The YAML Merge Key extension is not supported by the core YAML crate, but can be implemented after parsing. This crate transforms a parsed YAML document and merges dictionaries together.

Usage

This crate provides a function which implements the YAML Merge Key extension. Given a YAML document from yaml-rust (or serde_yaml with the serde_yaml feature), it will return a YAML document with the merge keys removed and merged into their owning dictionaries.

use yaml_rust::YamlLoader;
use yaml_merge_keys::merge_keys;

// YAML document contents.
let raw = "\
ref: &ref
    merged_key: merged
    added_key: merged
dict:
    <<: *ref
    top_key: given
    merged_key: given
";
let merged = "\
ref:
    merged_key: merged
    added_key: merged
dict:
    top_key: given
    merged_key: given
    added_key: merged
";

// Parse the YAML documents.
let raw_yaml = YamlLoader::load_from_str(raw).unwrap().remove(0);
let merged_yaml = YamlLoader::load_from_str(merged).unwrap().remove(0);

// Merge the keys.
let merged_keys = merge_keys(raw_yaml).unwrap();

// The keys have been merged.
assert_eq!(merged_keys, merged_yaml);

// Using `serde_yaml` is also supported with the feature.
#[cfg(feature = "serde_yaml")]
{
    use yaml_merge_keys::merge_keys_serde;

    let raw_yaml = serde_yaml::from_str(raw).unwrap();
    let merged_yaml: serde_yaml::Value = serde_yaml::from_str(merged).unwrap();

    let merged_keys = merge_keys_serde(raw_yaml).unwrap();

    assert_eq!(merged_keys, merged_yaml);
}

Example

---
- &CENTER { x: 1, y: 2 }
- &LEFT { x: 0, y: 2 }
- &BIG { r: 10 }
- &SMALL { r: 1 }

# All the following maps are equal:

- # Explicit keys
  x: 1
  y: 2
  r: 10
  label: center/big

- # Merge one map
  << : *CENTER
  r: 10
  label: center/big

- # Merge multiple maps
  << : [ *CENTER, *BIG ]
  label: center/big

- # Override
  << : [ *BIG, *LEFT, *SMALL ]
  x: 1
  label: center/big

Dependencies

~9MB
~173K SLoC