module YAML
Overview
The YAML module provides serialization and deserialization of YAML to/from native Crystal data structures.
Parsing with #parse
and #parse_all
YAML#parse
will return an Any
, which is a convenient wrapper around all possible YAML types,
making it easy to traverse a complex YAML structure but requires some casts from time to time,
mostly via some method invocations.
require "yaml"
data = YAML.parse <<-END
---
foo:
bar:
baz:
- qux
- fox
END
data["foo"]["bar"]["baz"][1].as_s # => "qux"
Parsing with YAML#mapping
YAML#mapping
defines how an object is mapped to YAML. Mapped data is accessible
through generated properties like Foo#bar. It is more type-safe and efficient.
Dumping with YAML.dump
or #to_yaml
YAML.dump
generates the YAML representation for an object. An IO
can be passed and it will be written there,
otherwise it will be returned as a string. Similarly, #to_yaml
(with or without an IO
) on any object does the same.
yaml = YAML.dump({hello: "world"}) # => "--- \nhello: world"
File.open("file.yml", "w") { |f| YAML.dump({hello: "world"}, f) } # => writes it to the file
# or:
yaml = {hello: "world"}.to_yaml # => "--- \nhello: world"
File.open("file.yml", "w") { |f| {hello: "world"}.to_yaml(f) } # => writes it to the file
Defined in:
yaml/any.cryaml/mapping.cr
yaml/to_yaml.cr
yaml/yaml.cr
Class Method Summary
-
.dump(object, io : IO)
Serializes an object to YAML, writing it to
io
. -
.dump(object) : String
Serializes an object to YAML, returning it as a string.
-
.parse(data : String) : Any
Deserializes a YAML document.
-
.parse_all(data : String) : Array(Any)
Deserializes multiple YAML documents.
Macro Summary
-
mapping(properties, strict = false)
The
YAML.mapping
macro defines how an object is mapped to YAML.
Class Method Detail
Serializes an object to YAML, returning it as a string.
Deserializes a YAML document.
# ./foo.yml
data:
string: "foobar"
array:
- John
- Sarah
hash: {key: value}
paragraph: |
foo
bar
require "yaml"
YAML.parse(File.read("./foo.yml"))
# => {
# => "data" => {
# => "string" => "foobar",
# => "array" => ["John", "Sarah"],
# => "hash" => {"key" => "value"},
# => "paragraph" => "foo\nbar\n"
# => }
Deserializes multiple YAML documents.
# ./foo.yml
foo: bar
---
hello: world
require "yaml"
YAML.parse_all(File.read("./foo.yml"))
# => [{"foo" => "bar"}, {"hello" => "world"}]
Macro Detail
The YAML.mapping
macro defines how an object is mapped to YAML.
It takes hash literal as argument, in which attributes and types are defined.
Once defined, Object#from_yaml
populates properties of the class from the
YAML document.
require "yaml"
class Employee
YAML.mapping({
title: String,
name: String,
})
end
employee = Employee.from_yaml("title: Manager\nname: John")
employee.title # => "Manager"
employee.name # => "John"
employee.name = "Jenny"
employee.name # => "Jenny"
Attributes not mapped with YAML.mapping
are not defined as properties.
Also, missing attributes raise a ParseException
.
employee = Employee.from_yaml("title: Manager\nname: John\nage: 30")
employee.age # => undefined method 'age'.
employee = Employee.from_yaml("title: Manager")
# => ParseException: missing yaml attribute: name
You can also define attributes for each property.
class Employee
YAML.mapping({
title: String,
name: {
type: String,
nilable: true,
key: "firstname",
},
})
end
Available attributes:
- type (required) defines its type. In the example above, title: String is a shortcut to title: {type: String}.
- nilable defines if a property can be a
Nil
. - default: value to use if the property is missing in the YAML document, or if it's
null
andnilable
was not set totrue
. If the default value creates a new instance of an object (for example[1, 2, 3]
orSomeObject.new
), a different instance will be used each time a YAML document is parsed. - key defines which key to read from a YAML document. It defaults to the name of the property.
- converter takes an alternate type for parsing. It requires a
#from_yaml
method in that class, and returns an instance of the given type. Examples of converters areTime::Format
andTime::EpochConverter
forTime
.
The mapping also automatically defines Crystal properties (getters and setters) for each of the keys. It doesn't define a constructor accepting those arguments, but you can provide an overload.
The macro basically defines a constructor accepting a YAML::PullParser
that reads from
it and initializes this type's instance variables.
This macro also declares instance variables of the types given in the mapping.