summaryrefslogtreecommitdiff
path: root/plugins/yaml/collection.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/yaml/collection.c')
-rw-r--r--plugins/yaml/collection.c312
1 files changed, 312 insertions, 0 deletions
diff --git a/plugins/yaml/collection.c b/plugins/yaml/collection.c
new file mode 100644
index 0000000..1615fa8
--- /dev/null
+++ b/plugins/yaml/collection.c
@@ -0,0 +1,312 @@
+
+/* Chrysalide - Outil d'analyse de fichiers binaires
+ * collection.h - collection de noeuds Yaml
+ *
+ * Copyright (C) 2019 Cyrille Bagard
+ *
+ * This file is part of Chrysalide.
+ *
+ * Chrysalide is free software; you can redistribute it 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.
+ *
+ * Chrysalide is distributed in the hope that it will be useful,
+ * but WITHOUT 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
+ * along with Chrysalide. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+
+#include "collection.h"
+
+
+#include <malloc.h>
+
+
+
+/* Collection de noeuds au format Yaml (instance) */
+struct _GYamlCollection
+{
+ GObject parent; /* A laisser en premier */
+
+ bool is_seq; /* Nature de la collection */
+
+ GYamlNode **nodes; /* Sous-noeuds intégrés */
+ size_t count; /* Nombre de ces enfants */
+
+};
+
+/* Collection de noeuds au format Yaml (classe) */
+struct _GYamlCollectionClass
+{
+ GObjectClass parent; /* A laisser en premier */
+
+};
+
+
+/* Initialise la classe des collections de noeuds Yaml. */
+static void g_yaml_collection_class_init(GYamlCollectionClass *);
+
+/* Initialise une instance de collection de noeuds Yaml. */
+static void g_yaml_collection_init(GYamlCollection *);
+
+/* Supprime toutes les références externes. */
+static void g_yaml_collection_dispose(GYamlCollection *);
+
+/* Procède à la libération totale de la mémoire. */
+static void g_yaml_collection_finalize(GYamlCollection *);
+
+
+
+/* Indique le type défini pour une collection de noeuds Yaml. */
+G_DEFINE_TYPE(GYamlCollection, g_yaml_collection, G_TYPE_OBJECT);
+
+
+/******************************************************************************
+* *
+* Paramètres : klass = classe à initialiser. *
+* *
+* Description : Initialise la classe des collections de noeuds Yaml. *
+* *
+* Retour : - *
+* *
+* Remarques : - *
+* *
+******************************************************************************/
+
+static void g_yaml_collection_class_init(GYamlCollectionClass *klass)
+{
+ GObjectClass *object; /* Autre version de la classe */
+
+ object = G_OBJECT_CLASS(klass);
+
+ object->dispose = (GObjectFinalizeFunc/* ! */)g_yaml_collection_dispose;
+ object->finalize = (GObjectFinalizeFunc)g_yaml_collection_finalize;
+
+}
+
+
+/******************************************************************************
+* *
+* Paramètres : collec = instance à initialiser. *
+* *
+* Description : Initialise une instance de collection de noeuds Yaml. *
+* *
+* Retour : - *
+* *
+* Remarques : - *
+* *
+******************************************************************************/
+
+static void g_yaml_collection_init(GYamlCollection *collec)
+{
+ collec->is_seq = false;
+
+ collec->nodes = NULL;
+ collec->count = 0;
+
+}
+
+
+/******************************************************************************
+* *
+* Paramètres : collec = instance d'objet GLib à traiter. *
+* *
+* Description : Supprime toutes les références externes. *
+* *
+* Retour : - *
+* *
+* Remarques : - *
+* *
+******************************************************************************/
+
+static void g_yaml_collection_dispose(GYamlCollection *collec)
+{
+ size_t i; /* Boucle de parcours */
+
+ for (i = 0; i < collec->count; i++)
+ g_clear_object(&collec->nodes[i]);
+
+ G_OBJECT_CLASS(g_yaml_collection_parent_class)->dispose(G_OBJECT(collec));
+
+}
+
+
+/******************************************************************************
+* *
+* Paramètres : collec = instance d'objet GLib à traiter. *
+* *
+* Description : Procède à la libération totale de la mémoire. *
+* *
+* Retour : - *
+* *
+* Remarques : - *
+* *
+******************************************************************************/
+
+static void g_yaml_collection_finalize(GYamlCollection *collec)
+{
+ if (collec->nodes != NULL)
+ free(collec->nodes);
+
+ G_OBJECT_CLASS(g_yaml_collection_parent_class)->finalize(G_OBJECT(collec));
+
+}
+
+
+/******************************************************************************
+* *
+* Paramètres : seq = indique la nature de la future collection. *
+* *
+* Description : Construit une collection de noeuds Yaml. *
+* *
+* Retour : Instance mise en place ou NULL en cas d'échec. *
+* *
+* Remarques : - *
+* *
+******************************************************************************/
+
+GYamlCollection *g_yaml_collection_new(bool seq)
+{
+ GYamlCollection *result; /* Structure à retourner */
+
+ result = g_object_new(G_TYPE_YAML_COLLEC, NULL);
+
+ result->is_seq = seq;
+
+ return result;
+
+}
+
+
+/******************************************************************************
+* *
+* Paramètres : collec = noeud d'arborescence Yaml à consulter. *
+* *
+* Description : Indique la nature d'une collection Yaml. *
+* *
+* Retour : Nature de la collection. *
+* *
+* Remarques : - *
+* *
+******************************************************************************/
+
+bool g_yaml_collection_is_sequence(const GYamlCollection *collec)
+{
+ bool result; /* Statut à retourner */
+
+ result = collec->is_seq;
+
+ return result;
+
+}
+
+
+/******************************************************************************
+* *
+* Paramètres : collec = collection de noeuds Yaml à compléter. *
+* node = noeud à rattacher. *
+* *
+* Description : Ajoute un noeud à une collection de noeuds Yaml. *
+* *
+* Retour : - *
+* *
+* Remarques : - *
+* *
+******************************************************************************/
+
+void g_yaml_collection_add_node(GYamlCollection *collec, GYamlNode *node)
+{
+ collec->nodes = realloc(collec->nodes, ++collec->count * sizeof(GYamlNode *));
+
+ collec->nodes[collec->count - 1] = node;
+ g_object_ref_sink(G_OBJECT(node));
+
+}
+
+
+/******************************************************************************
+* *
+* Paramètres : collec = noeud d'arborescence Yaml à consulter. *
+* count = taille de la liste constituée. [OUT] *
+* *
+* Description : Fournit la liste des noeuds intégrés dans une collection. *
+* *
+* Retour : Enfants d'un noeud issu d'une collection Yaml. *
+* *
+* Remarques : - *
+* *
+******************************************************************************/
+
+GYamlNode **g_yaml_collection_get_nodes(const GYamlCollection *collec, size_t *count)
+{
+ GYamlNode **result; /* Liste à retourner */
+ size_t i; /* Boucle de parcours */
+
+ *count = collec->count;
+
+ result = malloc(*count * sizeof(GYamlNode *));
+
+ for (i = 0; i < *count; i++)
+ {
+ result[i] = collec->nodes[i];
+ g_object_ref(G_OBJECT(result[i]));
+ }
+
+ return result;
+
+}
+
+
+/******************************************************************************
+* *
+* Paramètres : collec = noeud d'arborescence Yaml à consulter. *
+* path = chemin d'accès à parcourir. *
+* nodes = liste de noeuds avec correspondance établie. [OUT] *
+* count = quantité de ces noeuds. [OUT] *
+* *
+* Description : Recherche les noeuds correspondant à un chemin. *
+* *
+* Retour : - *
+* *
+* Remarques : - *
+* *
+******************************************************************************/
+
+void _g_yaml_collection_find_by_path(const GYamlCollection *collec, const char *path, GYamlNode ***nodes, size_t *count)
+{
+ size_t i; /* Boucle de parcours */
+
+ for (i = 0; i < collec->count; i++)
+ _g_yaml_node_find_by_path(collec->nodes[i], path, nodes, count);
+
+}
+
+
+/******************************************************************************
+* *
+* Paramètres : collec = noeud d'arborescence Yaml à consulter. *
+* path = chemin d'accès à parcourir. *
+* nodes = liste de noeuds avec correspondance établie. [OUT] *
+* count = quantité de ces noeuds. [OUT] *
+* *
+* Description : Recherche les noeuds correspondant à un chemin. *
+* *
+* Retour : - *
+* *
+* Remarques : - *
+* *
+******************************************************************************/
+
+void g_yaml_collection_find_by_path(const GYamlCollection *collec, const char *path, GYamlNode ***nodes, size_t *count)
+{
+ *nodes = NULL;
+ *count = 0;
+
+ _g_yaml_collection_find_by_path(collec, path, nodes, count);
+
+}