1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
/* Chrysalide - Outil d'analyse de fichiers binaires
* options.h - prototypes pour le rassemblement des options d'analyse communiquées par le donneur d'ordre
*
* Copyright (C) 2023 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 _ANALYSIS_SCAN_OPTIONS_H
#define _ANALYSIS_SCAN_OPTIONS_H
#include <glib-object.h>
#include <stdbool.h>
#define G_TYPE_SCAN_OPTIONS g_scan_options_get_type()
#define G_SCAN_OPTIONS(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), G_TYPE_SCAN_OPTIONS, GScanOptions))
#define G_IS_SCAN_OPTIONS(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), G_TYPE_SCAN_OPTIONS))
#define G_SCAN_OPTIONS_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), G_TYPE_SCAN_OPTIONS, GScanOptionsClass))
#define G_IS_SCAN_OPTIONS_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), G_TYPE_SCAN_OPTIONS))
#define G_SCAN_OPTIONS_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), G_TYPE_SCAN_OPTIONS, GScanOptionsClass))
/* Rassemblement d'options d'analyses (instance) */
typedef struct _GScanOptions GScanOptions;
/* Rassemblement d'options d'analyses (classe) */
typedef struct _GScanOptionsClass GScanOptionsClass;
/* Indique le type défini pour un ensemble d'options d'analyses. */
GType g_scan_options_get_type(void);
/* Crée un réceptacle pour diverses options d'analyse. */
GScanOptions *g_scan_options_new(void);
/* Indique le type d'un moteur d'analyse de données sélectionné. */
GType g_scan_options_get_backend_for_data(const GScanOptions *);
/* Sélectionne un type de moteur d'analyse pour données brutes. */
void g_scan_options_set_backend_for_data(GScanOptions *, GType);
/* Indique un besoin limité à une validation syntaxique. */
bool g_scan_options_get_check_only(const GScanOptions *);
/* Mémorise un besoin de validation syntaxique uniquement. */
void g_scan_options_set_check_only(GScanOptions *, bool);
/* Impose le format JSON comme type de sortie. */
bool g_scan_options_get_print_json(const GScanOptions *);
/* Mémorise le format JSON comme type de sortie. */
void g_scan_options_set_print_json(GScanOptions *, bool);
/* Indique un besoin d'affichage des correspondances finales. */
bool g_scan_options_get_print_strings(const GScanOptions *);
/* Mémorise un besoin d'affichage des correspondances finales. */
void g_scan_options_set_print_strings(GScanOptions *, bool);
/* Indique un besoin de statistiques en fin de compilation. */
bool g_scan_options_get_print_stats(const GScanOptions *);
/* Mémorise un besoin de statistiques en fin de compilation. */
void g_scan_options_set_print_stats(GScanOptions *, bool);
/* Indique un besoin d'affichage des étiquettes avec résultats. */
bool g_scan_options_get_print_tags(const GScanOptions *);
/* Mémorise un besoin d'affichage des étiquettes avec résultats. */
void g_scan_options_set_print_tags(GScanOptions *, bool);
/* Inscrit une étiquette comme sélection de règles à afficher. */
void g_scan_options_select_tag(GScanOptions *, const char *);
/* Détermine si une étiquette donnée conduit à un affichage. */
bool g_scan_options_has_tag_as_selected(const GScanOptions *, const char *);
#endif /* _ANALYSIS_SCAN_OPTIONS_H */
|