summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-01-13 00:35:33 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-01-13 00:35:33 (GMT)
commita6975c1d754a1ba5bfb9e23f0b26692c746e6f9c (patch)
tree7ec962129ebbce6cd210b449443afc91ced72719 /src/core
parent5adcf950f1f928c7127f2d694b52addf54cc04ca (diff)
Handled the logs from the GUI, the command line and the Python bindings.
Diffstat (limited to 'src/core')
-rwxr-xr-xsrc/core/Makefile.am1
-rw-r--r--src/core/logs.c188
-rw-r--r--src/core/logs.h60
3 files changed, 249 insertions, 0 deletions
diff --git a/src/core/Makefile.am b/src/core/Makefile.am
index 26d43a5..c7700a6 100755
--- a/src/core/Makefile.am
+++ b/src/core/Makefile.am
@@ -6,6 +6,7 @@ libcore_la_SOURCES = \
core.h core.c \
formats.h formats.c \
global.h global.c \
+ logs.h logs.c \
params.h params.c \
processors.h processors.c
diff --git a/src/core/logs.c b/src/core/logs.c
new file mode 100644
index 0000000..f92e581
--- /dev/null
+++ b/src/core/logs.c
@@ -0,0 +1,188 @@
+
+/* Chrysalide - Outil d'analyse de fichiers binaires
+ * logs.c - diffusion de messages d'alerte ou informatifs
+ *
+ * Copyright (C) 2017 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 Foobar. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+
+#include "logs.h"
+
+
+#include "../gui/core/panels.h"
+#include "../gui/panels/log.h"
+
+
+
+/* Conserve le niveau de filtre des messages */
+static LogMessageType _verbosity = LMT_COUNT;
+
+
+/* Affiche un message dans le terminal courant. */
+static void print_message_without_gui(LogMessageType, const char *);
+
+
+
+/******************************************************************************
+* *
+* Paramètres : - *
+* *
+* Description : Fournit la verbosité des messages système. *
+* *
+* Retour : Plus faible niveau des types de message affichés. *
+* *
+* Remarques : - *
+* *
+******************************************************************************/
+
+LogMessageType get_log_verbosity(void)
+{
+ return _verbosity;
+
+}
+
+
+/******************************************************************************
+* *
+* Paramètres : level = plus faible niveau des types de message affichés. *
+* *
+* Description : Définit la verbosité des messages système. *
+* *
+* Retour : - *
+* *
+* Remarques : - *
+* *
+******************************************************************************/
+
+void set_log_verbosity(LogMessageType level)
+{
+ _verbosity = level;
+
+}
+
+
+/******************************************************************************
+* *
+* Paramètres : type = espèce du message à ajouter. *
+* msg = message à faire apparaître à l'écran. *
+* *
+* Description : Affiche un message dans le journal des messages système. *
+* *
+* Retour : - *
+* *
+* Remarques : - *
+* *
+******************************************************************************/
+
+void log_simple_message(LogMessageType type, const char *msg)
+{
+ GPanelItem *item; /* Eventuel affichage présent */
+
+ if (type >= _verbosity)
+ {
+ item = get_panel_item_by_name(PANEL_LOG_ID);
+
+ if (item != NULL)
+ g_log_panel_add_message(G_LOG_PANEL(item), type, msg);
+
+ else
+ print_message_without_gui(type, msg);
+
+ }
+
+}
+
+
+/******************************************************************************
+* *
+* Paramètres : type = espèce du message à ajouter. *
+* fmt = format du message à faire apparaître à l'écran. *
+* ... = éventuels arguments venant compléter le message. *
+* *
+* Description : Affiche un message dans le journal des messages système. *
+* *
+* Retour : - *
+* *
+* Remarques : - *
+* *
+******************************************************************************/
+
+void log_variadic_message(LogMessageType type, const char *fmt, ...)
+{
+ size_t len; /* Taille tampon disponible */
+ char *buffer; /* Tampon du msg reconstitué */
+ int ret; /* Bilan d'une impression */
+ char *ptr; /* Nouvelle allocation */
+ va_list ap; /* Liste d'arguments variable */
+
+ len = VARIADIC_LOG_BUFSIZE;
+ buffer = calloc(len, sizeof(char));
+
+ while (buffer != NULL)
+ {
+ va_start(ap, fmt);
+ ret = vsnprintf(buffer, len, fmt, ap);
+ va_end(ap);
+
+ if (ret >= 0 && ret < len) break;
+
+ else
+ {
+ if (ret > -1) len += 1; /* glibc 2.1 */
+ else len *= 2; /* glibc 2.0 */
+
+ if ((ptr = realloc(buffer, len)) == NULL)
+ {
+ free(buffer);
+ buffer = NULL;
+ }
+ else buffer = ptr;
+
+ }
+
+ }
+
+ if (buffer != NULL)
+ {
+ log_simple_message(type, buffer);
+
+ free(buffer);
+
+ }
+
+}
+
+
+/******************************************************************************
+* *
+* Paramètres : type = espèce du message à ajouter. *
+* msg = message à faire apparaître à l'écran. *
+* *
+* Description : Affiche un message dans le terminal courant. *
+* *
+* Retour : - *
+* *
+* Remarques : - *
+* *
+******************************************************************************/
+
+static void print_message_without_gui(LogMessageType type, const char *msg)
+{
+ printf("!! MSG :: %s\n", msg);
+
+}
diff --git a/src/core/logs.h b/src/core/logs.h
new file mode 100644
index 0000000..2199cc1
--- /dev/null
+++ b/src/core/logs.h
@@ -0,0 +1,60 @@
+
+/* Chrysalide - Outil d'analyse de fichiers binaires
+ * logs.h - prototypes pour la diffusion de messages d'alerte ou informatifs
+ *
+ * Copyright (C) 2017 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 Foobar. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+
+#ifndef _CORE_LOGS_H
+#define _CORE_LOGS_H
+
+
+#include <i18n.h>
+
+
+
+/* Type de messages disponibles */
+typedef enum _LogMessageType
+{
+ LMT_INFO, /* Information sur l'exécution */
+ LMT_PROCESS, /* Début de tâche quelconque */
+ LMT_WARNING, /* Avertissment à remonter */
+ LMT_ERROR, /* Erreur de traitement */
+ LMT_BAD_BINARY, /* Binaire malformé */
+
+ LMT_COUNT
+
+} LogMessageType;
+
+
+/* Fournit la verbosité des messages système. */
+LogMessageType get_log_verbosity(void);
+
+/* Définit la verbosité des messages système. */
+void set_log_verbosity(LogMessageType);
+
+/* Affiche un message dans le journal des messages système. */
+void log_simple_message(LogMessageType, const char *);
+
+/* Affiche un message dans le journal des messages système. */
+void log_variadic_message(LogMessageType, const char *, ...);
+
+
+
+#endif /* _CORE_LOGS_H */