2024-10-14 19:17:44 +02:00
Preliminaries
================
2024-10-21 15:03:34 +02:00
.. objectives :: Objectives
2024-10-14 19:17:44 +02:00
2024-10-21 15:03:34 +02:00
We will learn how to:
2024-10-14 19:17:44 +02:00
2024-10-21 19:50:26 +02:00
- create a Rougail :term: `structure description file <dictionary>`
2025-02-04 15:48:49 +01:00
- define a Rougail :term: `structure description file <dictionary>` format version
2024-10-21 15:03:34 +02:00
- define a Rougail :term: `variable` and set its :term: `value`
2024-10-15 15:50:01 +02:00
2025-02-04 15:48:49 +01:00
.. prerequisites :: Prerequisites
2024-10-21 15:03:34 +02:00
2025-02-04 15:48:49 +01:00
We assume that Rougail's library is :ref: `already installed <installation>` on your computer (or in a virtual environment).
2024-10-15 15:50:01 +02:00
2025-02-04 16:38:07 +01:00
.. type-along :: an empty dictionary
An empty structure description file
2025-02-04 15:48:49 +01:00
.. exercise :: The folder structure
2024-10-15 15:50:01 +02:00
2025-02-04 15:48:49 +01:00
Here is the tree structure we want to have::
2024-10-15 15:50:01 +02:00
2025-02-04 15:48:49 +01:00
workplace
├── firefox
2025-02-05 07:18:50 +01:00
│ └── dictionary.yml
2024-10-15 15:50:01 +02:00
2025-02-04 16:38:07 +01:00
- Let's make a :file: `workplace` directory, with a :file: `firefox` subfolder.
- First, we wil make a :term: `dictionary` , so let's create a :file: `dictionary.yml` file
located in the :file: `firefox` subfolder.
2025-02-04 15:48:49 +01:00
The dictionary
----------------
This is an empty Rougail dictionnary
.. extinclude :: https://forge.cloud.silique.fr/stove/rougail-tutorials/raw/tag/v1.1_000/firefox/00-proxy.yml
:language: yaml
2025-02-04 16:38:07 +01:00
:caption: An empty rougail dictionnary file with the version number only
2025-02-04 15:48:49 +01:00
:name: RougailDictionaryEmptyFile
..
---
version: 1.1
2025-02-04 16:38:07 +01:00
.. type-along :: a first variable
Let's put a variable in the Rougail :term: `structure description file <dictionary>`
2025-02-04 15:48:49 +01:00
Defining a variable and its default value
----------------------------------------------
This is a first Rougail variable in a Rougail dictionnary.
.. extinclude :: https://forge.cloud.silique.fr/stove/rougail-tutorials/raw/tag/v1.1_010/firefox/00-proxy.yml
:language: yaml
:caption: A Rougail dictionnary file with only one variable
:name: RougailDictionaryFirstVariableName
..
---
proxy_mode:
2024-10-15 15:50:01 +02:00
2025-02-05 07:18:50 +01:00
- Then if we run the Rougail CLI utility command
2025-02-04 16:38:07 +01:00
2025-02-04 21:35:42 +01:00
.. code-block :: text
:class: terminal
2025-02-04 16:38:07 +01:00
rougail -v 1.1 -m firefox/
2025-02-05 07:18:50 +01:00
we will actually have an error:
2025-02-04 16:38:07 +01:00
.. raw :: html
:url: https://forge.cloud.silique.fr/stove/rougail-tutorials/raw/tag/v1.1_010/config/01/output_ro.html
2025-02-04 21:35:42 +01:00
:class: error-box
2025-02-04 16:38:07 +01:00
..
🛑 ERRORS
┣━━ The following variables are mandatory but have no value:
┗━━ - proxy_mode
Because this variable is :term: `mandatory` and needs to be set **but** there's no value yet.
2025-02-05 07:18:50 +01:00
So we can therefore see this consequence:
.. important :: Once defined, an option configuration :term: `value` is :term: `mandatory` .
Rougail waits for the `proxy_mode` configuration option's value to be set.
.. seealso :: To go further, have a look at the :tiramisu: `mandatory option <glossary.html#term-mandatory-option>` Tiramisu's definition.
2025-02-04 16:38:07 +01:00
2025-02-05 07:18:50 +01:00
.. glossary ::
mandatory
A variable is mandatory when a value is required, that is, `None` is not an option.
Then we just add a variable's description, which is a good practice.
2025-02-04 16:38:07 +01:00
.. extinclude :: https://forge.cloud.silique.fr/stove/rougail-tutorials/raw/tag/v1.1_011/firefox/00-proxy.yml
:language: yaml
:caption: A Rougail dictionnary file with a variable and a description
:name: RougailDictionaryFirstVariableDescription
..
---
proxy_mode:
description: Configure Proxy Access to the Internet
We need a **default value** .
.. glossary ::
default values
A default value is a variable value that is predefined, that is, this value is placed
right in the structure file.
2024-10-15 15:50:01 +02:00
2025-02-04 16:38:07 +01:00
So let's define a variable with a description -- **and a default value**
2024-10-15 15:50:01 +02:00
2025-02-04 21:35:42 +01:00
.. FIXME trouver une url qui corresponde à une valeur par défaut **dans le dictionnaire**
.. code-block :: yaml
2025-02-04 21:52:54 +01:00
:caption: A rougail dictionnary file with a default value for the variable
:name: RougailDictionaryVariableDefault
2025-02-04 21:35:42 +01:00
---
proxy_mode:
description: Configure Proxy Access to the Internet
default: No proxy
2025-02-03 20:20:15 +01:00
2025-02-04 21:35:42 +01:00
.. type-along :: how to set a value
2025-02-04 16:38:07 +01:00
2025-02-04 21:35:42 +01:00
A default value has been set, great. Now how do I assign a value to a variable?
2025-02-04 16:38:07 +01:00
2025-02-04 21:52:54 +01:00
How to set a value
2024-10-15 15:50:01 +02:00
----------------------
2025-02-04 21:52:54 +01:00
So far we have only talked about the one that writes the structure files. It is called the integrator.
2024-10-15 15:50:01 +02:00
.. glossary ::
integrator
2024-10-21 19:50:26 +02:00
An integrator in the Rougail logic is the person who writes the :term: `structure files <dictionaries>` \ .
2024-10-15 15:50:01 +02:00
He has the responsibilité of the integration process, that is,
defines the variables and the relationship between them, the variables that are allowed
(or not) to be set, and so on. His responsabilites are the **structuration** and the **consistency**
of the variables.
2025-02-04 21:52:54 +01:00
Now we will talk about the one that defines the values. It is called the operator.
2024-10-15 15:50:01 +02:00
.. glossary ::
operator
2024-10-21 15:03:34 +02:00
An operator ih the Rougail logic is the person who gives :term: `value` \ s to the pre-defined variables,
2024-10-15 15:50:01 +02:00
his responsabilities are to set variable values correctly.
2025-02-04 21:52:54 +01:00
The user :term: `value` \ s, that is the values that have been set by the operator, are of course type validated by the :term: `structure file definition <dictionary>` .
2024-10-15 15:50:01 +02:00
2025-02-05 07:18:50 +01:00
Values are mandatory
-------------------------
2024-10-15 17:49:26 +02:00
2025-02-05 07:18:50 +01:00
It is the operator's responsibility to set configuration options values.
He does not work with the dictionary (the structure file),
he is responsible for other files, called the configuration files.
2024-10-15 17:49:26 +02:00
2025-02-05 07:18:50 +01:00
.. glossary ::
2024-10-15 17:49:26 +02:00
2025-02-05 07:18:50 +01:00
configuration file
A configuration file is a file where only the values of the configuration options are assigned. The structure, the consistency of the variables between them is not the responsibility of these files (but of the dictionary files).
2024-10-21 15:03:34 +02:00
2025-02-05 07:18:50 +01:00
.. exercise :: Folder structure update
2025-02-04 22:01:19 +01:00
2025-02-05 07:18:50 +01:00
Now we add a :file: `config/config.yml` file in our project::
2024-10-21 19:50:26 +02:00
2025-02-05 07:18:50 +01:00
workplace
├── firefox
│ ├── dictionary.yml
└── config
└── config.yml
2024-10-21 19:50:26 +02:00
2025-02-05 07:18:50 +01:00
.. type-along :: how to set a default value in a configuration file
2024-10-21 19:50:26 +02:00
2025-02-05 07:18:50 +01:00
So for example if the integrator has not set any default value in his structure file,
the operator can do it like this:
2024-10-21 19:50:26 +02:00
2025-02-05 07:18:50 +01:00
.. extinclude :: https://forge.cloud.silique.fr/stove/rougail-tutorials/raw/tag/v1.1_011/config/02/config.yaml
2024-10-21 19:50:26 +02:00
:language: yaml
2025-02-05 07:18:50 +01:00
:caption: The Rougail configuration file :file:`config/config.yml`, with a default value set.
:name: RougailConfigDefaultValue
2024-10-28 15:29:11 +01:00
2025-02-05 07:18:50 +01:00
..
2024-10-28 15:29:11 +01:00
---
2025-02-05 07:18:50 +01:00
proxy_mode: No proxy
2024-10-21 19:50:26 +02:00
2025-02-05 07:18:50 +01:00
With the rougail CLI the operator has to add the `-u file -ff config/config.yml` options:
2024-10-21 19:50:26 +02:00
2025-02-04 22:01:19 +01:00
.. code-block :: text
:class: terminal
2025-02-05 07:18:50 +01:00
:caption: A rougail Command Line Utility call with the :file:`config/config.yml` Rougail configuration file
2024-10-21 19:50:26 +02:00
2025-02-04 16:38:07 +01:00
rougail -v 1.1 -m firefox -u file -ff config/01/config.yaml
2024-10-21 19:50:26 +02:00
2025-02-05 07:18:50 +01:00
Let us clarify this essential point:
2024-10-28 21:08:22 +01:00
2025-02-05 07:18:50 +01:00
- the integrator works on dictionaries
- the operator works on configuration files
.. note :: Most of the time, the integrator and the operator are one and the same person, here we are talking about roles and not necessarily about people.
2024-10-28 21:08:22 +01:00
2025-02-03 20:20:15 +01:00
Variable's type
2024-10-21 19:50:26 +02:00
-----------------
2025-02-04 15:48:49 +01:00
If the `type` attribute is not set, Rougail infers a `string` type for the `proxy_mode` configuration option variable type as defined in the structure file.
2024-10-28 21:08:22 +01:00
2024-10-28 15:29:11 +01:00
If the operator sets an option value for example with the `number` type, like this:
.. code-block :: yaml
---
example_var:
description: Configure Proxy Access to the Internet
type: number
2025-02-04 15:48:49 +01:00
Then Rougail will expect a `int` or a `float` as a value for the `example_var` variable.
2025-02-05 07:18:50 +01:00
In our firefox use case, the real type of the `proxy_mode` variable will be now set as a `choice` type:
.. type-along :: Defining a choice type
A choice type variable is a variable where the content is constrained by a list
2024-10-21 19:50:26 +02:00
2024-10-28 21:08:22 +01:00
.. extinclude :: https://forge.cloud.silique.fr/stove/rougail-tutorials/raw/tag/v1.1_013/firefox/00-proxy.yml
2024-10-21 19:50:26 +02:00
:linenos:
:language: yaml
2025-02-05 07:18:50 +01:00
:caption: The real :file:`firefox/proxy.yml` Rougail dictionnary file with a choice type
:name: RougailDictionaryChoiceType
2024-10-28 15:29:11 +01:00
..
---
proxy_mode:
description: Configure Proxy Access to the Internet
type: choice
choices:
- No proxy
- Auto-detect proxy settings for this network
- Use system proxy settings
- Manual proxy configuration
- Automatic proxy configuration URL
default: No proxy
2024-10-21 19:50:26 +02:00
2025-02-05 07:18:50 +01:00
- Then if we run the Rougail CLI
.. code-block :: text
:class: terminal
rougail -v 1.1 -m firefox/
We will have an output like this:
2024-10-21 19:50:26 +02:00
.. raw :: html
2024-10-28 15:29:11 +01:00
:url: https://forge.cloud.silique.fr/stove/rougail-tutorials/raw/commit/v1.1_013/config/01/output_ro.html
2025-02-04 21:35:42 +01:00
:class: output
2025-02-04 21:52:54 +01:00
2024-10-28 15:29:11 +01:00
..
<pre>╭────────────────────────── Caption ──────────────────────────╮
│ Variable <span style="color: #ffd700">Default value</span> │
│ <span style="color: #5c5cff">Undocumented variable</span> Modified value │
│ <span style="color: #ff0000">Undocumented but modified variable</span> (<span style="color: #00aa00">Original default value</span>) │
│ <span style="color: #ffaf00">Unmodifiable variable</span> │
╰─────────────────────────────────────────────────────────────╯
Variables:
<span style="color: #5c5cff">┗━━ </span>📓 proxy_mode: <span style="color: #ffd700">No proxy</span>
</pre>
2024-10-28 21:08:22 +01:00
The `proxy_mode` variable here, implicitely requires a value. It is a :term: `mandatory` variable.
2025-02-05 07:18:50 +01:00
As we set the `proxy_mode` variable as `No proxy` by default, we actually have specified a value, and the value appears in yellow, which means : "set by default".
2024-10-28 21:08:22 +01:00
Container type
-----------------
We say that the `proxy_mode` variable is *constrained* (by the `choice` type).
We have the list of the possible (authorized) values:
- `No proxy`
- `Auto-detect proxy settings for this network`
- `Use system proxy settings`
- `Manual proxy configuration`
- `Automatic proxy configuration URL`
.. glossary ::
choice type
The `proxy_mode` setting is "choice" (`type: choice` ) means that
there is a list of available values that can be selected.
2024-10-21 18:28:34 +02:00
.. keypoints :: Key points progress
2025-02-05 07:18:50 +01:00
Indeed, in the Firefox configuration, it is possible to define several configuration modes, from no proxy at all (`no proxy` ) to a kind of automatic configuration mode from a file (`set up proxy configuration from a file` ).
2024-10-21 18:28:34 +02:00
**Keywords**
2024-10-21 19:50:26 +02:00
- :term: `structure file <dictionary>` : structure description file
2024-10-21 18:28:34 +02:00
- :term: `variable` : an option's name which has a value
- a variable's description
2024-10-28 15:29:11 +01:00
- a variable's type
2024-10-21 18:28:34 +02:00
- a variable's default value
- the :term: `integrator` and :term: `operator` roles
2024-10-28 15:29:11 +01:00
- a mandatory value
2024-10-28 21:08:22 +01:00
- a choice type
2024-10-21 18:28:34 +02:00
2025-02-04 22:01:19 +01:00
To sum up, we have arrived at this point in writing a structure file like this:
2024-10-21 18:28:34 +02:00
2024-10-21 19:58:35 +02:00
**Structure description file**
2024-10-21 18:28:34 +02:00
2024-10-28 15:29:11 +01:00
.. extinclude :: https://forge.cloud.silique.fr/stove/rougail-tutorials/raw/tag/v1.1_013/firefox/00-proxy.yml
2024-10-21 18:28:34 +02:00
:linenos:
:language: yaml
2025-02-04 15:48:49 +01:00
:caption: A Rougail dictionnary file with a variable named `proxy_mode`, with a default value.
2024-10-28 15:29:11 +01:00
..
.. raw :: text
---
proxy_mode:
description: Configure Proxy Access to the Internet
type: choice
choices:
- No proxy
- Auto-detect proxy settings for this network
- Use system proxy settings
- Manual proxy configuration
- Automatic proxy configuration URL
default: No proxy
2024-10-21 15:03:34 +02:00