pluie-yaml/samples/yaml-tag.vala

97 lines
3.8 KiB
Vala
Raw Permalink Normal View History

2018-08-10 00:12:08 +00:00
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
2018-08-18 23:18:55 +00:00
* @software : pluie-yaml <https://git.pluie.org/pluie/lib-yaml>
* @version : 0.5
* @type : library
2018-08-10 00:12:08 +00:00
* @date : 2018
* @licence : GPLv3.0 <http://www.gnu.org/licenses/>
* @author : a-Sansara <[dev]at[pluie]dot[org]>
* @copyright : pluie.org <http://www.pluie.org/>
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
2018-08-18 23:18:55 +00:00
* This file is part of pluie-yaml.
2018-08-10 00:12:08 +00:00
*
2018-08-18 23:18:55 +00:00
* pluie-yaml is free software (free as in speech) : you can redistribute it
2018-08-10 00:12:08 +00:00
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the License,
* or (at your option) any later version.
*
2018-08-18 23:18:55 +00:00
* pluie-yaml is distributed in the hope that it will be useful, but WITHOUT
2018-08-10 00:12:08 +00:00
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License
2018-08-18 23:18:55 +00:00
* along with pluie-yaml. If not, see <http://www.gnu.org/licenses/>.
2018-08-10 00:12:08 +00:00
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*/
2018-08-18 23:18:55 +00:00
2018-08-10 00:12:08 +00:00
using GLib;
using Gee;
using Pluie;
int main (string[] args)
{
Echo.init(false);
var path = Yaml.DATA_PATH + "/tag.yml";
var done = false;
of.title ("Pluie Yaml Library", Pluie.Yaml.VERSION, "a-sansara");
Pluie.Yaml.DEBUG = false;
2018-08-10 00:12:08 +00:00
Yaml.Object? obj = null;
var config = new Yaml.Config (path, true);
var root = config.root_node ();
root.display_childs ();
2018-08-18 21:54:18 +00:00
var list = new Gee.HashMap<string, Yaml.Object> ();
2018-08-10 00:12:08 +00:00
if ((done = root != null)) {
foreach (var node in root) {
of.action ("Yaml.Object from node", node.name);
of.echo (node.to_string (false));
if ((obj = Yaml.Builder.from_node (node)) != null) {
2018-08-10 00:12:08 +00:00
list[node.name] = obj;
}
else {
of.error ("cannot set Yaml.Object from node : %s".printf (node.name), true);
}
node = node.next_sibling ();
}
}
// hard code
2018-08-11 00:28:19 +00:00
Yaml.Example? o = null;
2018-08-10 00:12:08 +00:00
foreach (var entry in list.entries) {
2018-08-11 00:28:19 +00:00
if ((o = (Yaml.Example) entry.value)!=null) {
of.action ("Getting Hard coded values for Yaml.Object %s".printf (of.c (ECHO.MICROTIME).s (o.type_from_self ())), entry.key);
2018-08-10 01:53:04 +00:00
of.keyval("type_int" , "%d" .printf(o.type_int));
of.keyval("type_bool" , "%s" .printf(o.type_bool.to_string ()));
of.keyval("type_char" , "%c" .printf(o.type_char));
of.keyval("type_string", "%s" .printf(o.type_string));
of.keyval("type_uchar" , "%u" .printf(o.type_uchar));
of.keyval("type_uint" , "%u" .printf(o.type_uint));
2018-08-10 01:53:04 +00:00
of.keyval("type_float" , "%f" .printf(o.type_float));
of.keyval("type_double", "%f" .printf(o.type_double));
of.keyval("type_struct", "%s" .printf(o.type_struct.to_string ()));
2018-08-11 00:28:19 +00:00
of.keyval("type_object", "%s" .printf(o.type_object.get_type ().name ()));
of.keyval(" toto" , "%s (string)" .printf(o.type_object.toto));
of.keyval(" tapa" , "%s (string)" .printf(o.type_object.tata));
of.keyval(" titi" , "%d (int)" .printf(o.type_object.titi));
of.keyval(" tutu" , "%s (bool)" .printf(o.type_object.tutu.to_string ()));
2018-08-11 00:28:19 +00:00
o.type_object.method_a ();
if (o.type_gee_al != null) {
of.keyval("type_gee_al", "(%s)" .printf(o.type_gee_al.get_type ().name ()));
foreach (string v in o.type_gee_al) {
of.echo(" - item : %s".printf (v));
}
}
2018-08-10 00:12:08 +00:00
}
}
of.rs (done);
of.echo ();
return (int) done;
}