yum
Installation
gleam add yum@1
Usage
import gleam/option
import yum/yaml
import yum/yaml/node
pub fn parse_yaml() {
let assert Ok(document) = yaml.parse("name: yum")
let name =
document
|> yaml.get([node.Key("name")])
|> option.map(node.as_string)
assert name == option.Some(Ok("yum"))
}
yaml.parse returns an opaque YAML document. You can inspect it directly or
pipe it through yaml.resolve to run semantic YAML checks:
import gleam/option.{type Option, None, Some}
import gleam/result
import yum/yaml
import yum/yaml/node.{type Node}
pub fn image(input: String) -> Option(Node) {
case yaml.parse(input) {
Ok(document) -> document |> yaml.get([node.Key("image")])
Error(_) -> None
}
}
pub fn image_example() {
let assert Some(image) = image("image: gleam:latest")
assert node.as_string(image) == Ok("gleam:latest")
}
pub fn check(input: String) {
input
|> yaml.parse()
|> result.then(yaml.resolve)
}
YAML can also be decoded with gleam/dynamic/decode, or built and emitted with
yum/yaml/builder:
import gleam/dynamic/decode
import yum/yaml
import yum/yaml/builder
const input = "name: yum"
pub fn decode_name() {
let decoder = {
use name <- decode.field("name", decode.string)
decode.success(name)
}
assert yaml.decode(input, using: decoder) == Ok("yum")
}
pub fn build_document() {
let output =
builder.mapping([
#(builder.string("name"), builder.string("yum")),
])
|> yaml.from_node()
|> yaml.to_string()
assert output == "name: yum"
}
The resolver keeps non-fatal warnings such as duplicate mapping keys as easy to check, typed diagnostics:
import gleam/list
import yum/yaml
import yum/yaml/diagnostic
const input = "
name: yum
name: yaml
"
pub fn diagnostics() {
let assert Ok(document) = yaml.parse(input)
let assert Ok(document) = yaml.resolve(document)
let messages =
document
|> yaml.diagnostics()
|> list.map(diagnostic.message)
assert messages == ["Duplicate mapping key `name`"]
}
YAML support
yum targets YAML 1.2 files with a tooling-oriented API. It
is suitable for parsing and inspecting common configuration files such as GitHub
Actions workflows, package metadata, and Kubernetes-style manifests.
The 1.0 support surface includes:
- Block and flow sequences and mappings
- Plain, single-quoted, double-quoted, literal block, and folded block scalars
- Document streams with
---and...markers - Comments in parsed input
- Anchors, aliases, local tags, verbatim tags, and
%TAGdirectives - Merge keys (
<<) - Source spans and source styles
- Typed parse errors and typed resolver diagnostics
- Lookup by mapping key or sequence index
- Mapping key/value extraction
- Decoding through
gleam/dynamic/decode - Builder functions and deterministic emission
The semantic resolver is intentionally separate from syntax parsing:
let assert Ok(_) =
input
|> yaml.parse()
|> result.then(yaml.resolve)
Current limits:
yumdoes not claim full YAML Test Suite compliance yet.- Comments are accepted in input, but not preserved for round-trip editing.
- Tags are expanded and exposed, but tags do not currently force scalar casts.
- Selectable schemas such as failsafe, JSON, and core are not exposed yet.
- The emitter is deterministic, but it is not a formatter and does not preserve the original source layout.
Development
gleam test --target erlang
gleam test --target javascript
gleam format --check
gleam docs build