All Projects β†’ processone β†’ Fast_yaml

processone / Fast_yaml

Licence: apache-2.0
Fast YAML native library for Erlang / Elixir

Programming Languages

erlang
1774 projects

Labels

Projects that are alternatives of or similar to Fast yaml

Fastmatter
πŸ‘€ A fast frontmatter parser. Supports both string and stream inputs.
Stars: ✭ 25 (-37.5%)
Mutual labels:  yaml
Yamlsettings
Yaml Settings Configuration Module
Stars: ✭ 12 (-70%)
Mutual labels:  yaml
Kafka Specs
Tool to ease and automate Apache Kafka cluster configuration management
Stars: ✭ 36 (-10%)
Mutual labels:  yaml
Khayyam
106 Omar Khayyam quatrains in YAML format.
Stars: ✭ 8 (-80%)
Mutual labels:  yaml
Metta
An information security preparedness tool to do adversarial simulation.
Stars: ✭ 867 (+2067.5%)
Mutual labels:  yaml
Mconfig
MCONFIG is a lightweight Golang library for integrating configs files like (json, yml, toml) and environment variables into one config struct.
Stars: ✭ 28 (-30%)
Mutual labels:  yaml
Home Assistant Config
Home Assistant config files, rewritten to use the latest features, 100+ documented automations, automatically generated ToC 🏠 πŸ€–
Stars: ✭ 926 (+2215%)
Mutual labels:  yaml
Manifests
kubernetes manifests and documentation
Stars: ✭ 39 (-2.5%)
Mutual labels:  yaml
Blockcmd
A PocketMine-MP plugin to block certain commands from being used by players in your server
Stars: ✭ 12 (-70%)
Mutual labels:  yaml
Cv Boilerplate
Programmatic generation of high-quality CVs
Stars: ✭ 967 (+2317.5%)
Mutual labels:  yaml
Homeassistant
Example Home Assistant Configs
Stars: ✭ 846 (+2015%)
Mutual labels:  yaml
Ansible Directadmin
Deploy Directadmin with Ansible
Stars: ✭ 9 (-77.5%)
Mutual labels:  yaml
Systemdclash
Clash δ»₯ systemd ζœεŠ‘ηš„ζ–ΉεΌεΌ€ζœΊθ‡ͺ启
Stars: ✭ 31 (-22.5%)
Mutual labels:  yaml
Laravelyaml
Laravel ServiceProvider for using YAML configuration files
Stars: ✭ 8 (-80%)
Mutual labels:  yaml
Configr
Implements the JSON, INI, YAML and TOML parser, for R setting and writing of configuration file.
Stars: ✭ 38 (-5%)
Mutual labels:  yaml
Migrify
Futuristic Grinder for Legacy Code with Effortles Confidence
Stars: ✭ 25 (-37.5%)
Mutual labels:  yaml
Streetcomplete Mapstyle
🌎 Simple, minimalist yet modern mapstyle
Stars: ✭ 21 (-47.5%)
Mutual labels:  yaml
Emrichen
A Template engine for YAML & JSON
Stars: ✭ 40 (+0%)
Mutual labels:  yaml
Hyperpotamus
πŸ₯‹ YAML/JSON automation scripting 🀺
Stars: ✭ 38 (-5%)
Mutual labels:  yaml
Chatterbot Corpus
A multilingual dialog corpus
Stars: ✭ 964 (+2310%)
Mutual labels:  yaml

Fast YAML

Erlang CI Hex version

Fast YAML is an Erlang wrapper for libyaml "C" library.

It is designed to be fast and efficient.

Installation

Dependencies

Fast YAML depends on native LibYaml library. You need development headers for LibYaml library to build it.

The minimum required Erlang/OTP version is 18.0

Generic build

You can trigger build with:

./configure && make

OSX build example

You can install LibYaml and with Homebrew:

brew install libyaml

You can then export environment variable to use LibYaml as installed by Homebrew, before issuing compilation commands:

export LDFLAGS="-L/usr/local/lib"
export CFLAGS="-I/usr/local/include"
export CPPFLAGS="-I/usr/local/include"

./configure && make

Example usage

erl -pa ebin -pa deps/*/ebin
Erlang/OTP 18 [erts-7.1] [source] [64-bit] [smp:4:4] [async-threads:10] [hipe] [kernel-poll:false] [dtrace]

Eshell V7.1  (abort with ^G)

1> application:start(fast_yaml).
ok

2> fast_yaml:decode(<<"a: 1\nb: -3.0">>).
{ok,[[{<<"a">>,1},{<<"b">>,-3.0}]]}

Option plain_as_atom

Converts all unquoted YAML values to atoms

3> fast_yaml:decode(<<"a: 1\nb: -3.0">>, [{plain_as_atom, true}]).
{ok,[[{a,1},{b,-3.0}]]}

4> fast_yaml:decode(<<"a: b\nc">>).
{error,{scanner_error,<<"could not find expected ':'">>,2,
                      0}}.

5> fast_yaml:decode_from_file("test/test2.yml", [plain_as_atom]).
{ok,[[[{step,[{instrument,<<"Lasik 2000">>},
              {pulseEnergy,5.4},
              {pulseDuration,12},
              {repetition,1000},
              {spotSize,<<"1mm">>}]}],
      [{step,[{instrument,<<"Lasik 2000">>},
              {pulseEnergy,5.0},
              {pulseDuration,10},
              {repetition,500},
              {spotSize,<<"2mm">>}]}],
      [{step,<<"id001">>}],
      [{step,<<"id002">>}],
      [{step,<<"id001">>}],
      [{step,<<"id002">>}]]]}

Option sane_scalars

Converts the following scalar values to their Erlang-native data type:

"null" β†’ undefined "true" β†’ true "false" β†’ false

Integer and float values also get converted. All other scalar values stay binaries. Key in mappings also stay binary and never get coerced into int / float / atom .

An unquoted mapping value that is an empty string gets converted into undefined. (e.g. the string "foo:" decodes as [{<<"foo">>, undefined}])

Option maps

Convert YAML mappings into Erlang maps.

7> fast_yaml:decode(<<"a: true\nb: -3.0\nc: string">>, [{maps, true}]).
{ok, [#{"a" => "true", "b" => -3.0, "c" => "string"}]}

For compatibility with the yamerl and YamlElixir libraries, use the [sane_scalars, maps] options.

Development

Test

Unit test

You can run eunit test with the command:

make test
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].