Skip to content

example plus programmers information #19

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from Aug 4, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Contents:
:maxdepth: 2

user
programmer

.. _Yaml: http://yaml.org

Expand Down
44 changes: 44 additions & 0 deletions doc/programmer.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@

================
Programmer Guide
================

As a programmer you are looking for source code.
You found it, here it is.

.. literalinclude:: ../examples/simple.rs
:language: rust


Key link
========

The key link between configuration file
and the executable programm that you are writen
is the configuration ``struct``.

In the demo source code is that struct named *Config*
and is *cfg* a variable of type Config.


config.yaml
===========

Nothing of ``Config`` or ``cfg`` needs to be in the YAML.
But the field names **must**.

Here the *.yaml* that goes with the above example source code.


.. literalinclude:: ../examples/config.yaml
:language: yaml


See also
========

The documentation of `serde <https://serde.rs/>`_.

Our ``examples`` directory.

`Reverse dependencies <https://crates.io/crates/quire/reverse_dependencies>`_.
10 changes: 10 additions & 0 deletions examples/README.text
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@

Run
cargo build --examples
anywhere to get examples been compiled.

For
cargo run --example simple
be in the top directory of the project.
That is for having the correct start point
to get path to config.yaml right.
8 changes: 8 additions & 0 deletions examples/config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#
---
item1: foo
# comment
item2: bar
_item3: underscore used to comment out a keyword
...
# l l
31 changes: 31 additions & 0 deletions examples/simple.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
extern crate quire;
#[macro_use] extern crate serde_derive;
use quire::{parse_config, Options};
use quire::validate::{Structure, Scalar};

#[derive(Deserialize)]
#[allow(dead_code)]
struct Config {
item1: String,
item2: Option<String>,
}

fn validator() -> Structure<'static> {
Structure::new()
.member("item1", Scalar::new())
.member("item2", Scalar::new().optional())
}

fn work(cfg: &Config) {
println!("item1 is {}.", cfg.item1);
//intln!("item2 is {}.", cfg.item2);
// hey, this is just demonstration code ...
}

fn main() {
let cfg: Config;
cfg = parse_config("examples/config.yaml",
&validator(), &Options::default())
.expect("valid config");
work(&cfg)
}