diff options
Diffstat (limited to 'src/analysis')
-rwxr-xr-x | src/analysis/Makefile.am | 16 | ||||
-rw-r--r-- | src/analysis/line.c | 231 | ||||
-rw-r--r-- | src/analysis/line.h | 68 |
3 files changed, 315 insertions, 0 deletions
diff --git a/src/analysis/Makefile.am b/src/analysis/Makefile.am new file mode 100755 index 0000000..c3b2e64 --- /dev/null +++ b/src/analysis/Makefile.am @@ -0,0 +1,16 @@ + +lib_LIBRARIES = libanalysis.a + +libanalysis_a_SOURCES = \ + line.h line.c + +libanalysis_a_CFLAGS = $(AM_CFLAGS) + + +INCLUDES = $(LIBGTK_CFLAGS) + +AM_CPPFLAGS = + +AM_CFLAGS = $(DEBUG_CFLAGS) $(WARNING_FLAGS) + +SUBDIRS = diff --git a/src/analysis/line.c b/src/analysis/line.c new file mode 100644 index 0000000..7431e94 --- /dev/null +++ b/src/analysis/line.c @@ -0,0 +1,231 @@ + +/* OpenIDA - Outil d'analyse de fichiers binaires + * line.c - représentation des lignes de rendu + * + * Copyright (C) 2008 Cyrille Bagard + * + * This file is part of OpenIDA. + * + * OpenIDA 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. + * + * OpenIDA 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 "line.h" + + +#include <malloc.h> +#include <stdio.h> +#include <string.h> + + +#include "../common/dllist.h" + + + +/* FIXME */ +extern GtkWidget *mywid; + + + +/* Ligne de représentation générique */ +struct _rendering_line +{ + DL_LIST_ITEM; + + RenderingLineType type; /* Type de représentation */ + + PangoLayout *layout; /* Moteur de rendu du code/txt */ + +}; + + +#define RENDERING_LINE(l) ((rendering_line *)l) + + +/* Procède à l'initialisation des bases d'une représentation. */ +void init_rendering_line(rendering_line *); + + + + +/* ------------------------- LIGNE EN TETE DE DESASSEMBLAGE ------------------------- */ + + +/* Ligne de représentation de prologue */ +typedef struct _prologue_line +{ + rendering_line basic; /* A laisser en premier */ + + char *comment; /* Texte à afficher */ + +} prologue_line; + + +/* Met à jour la ligne de représentation de prologue. */ +void refresh_prologue_markup(prologue_line *); + + + + + + + + + + + + + + +/****************************************************************************** +* * +* Paramètres : line = adresse de la structure commune. * +* * +* Description : Procède à l'initialisation des bases d'une représentation. * +* * +* Retour : - * +* * +* Remarques : - * +* * +******************************************************************************/ + +void init_rendering_line(rendering_line *line) +{ + DL_LIST_ITEM_INIT(DLL_CAST(line)); + + line->layout = gtk_widget_create_pango_layout(mywid, NULL); + + + + +} + + + + + + +/****************************************************************************** +* * +* Paramètres : lines = liste de lignes à compléter, ou NULL. * +* line = nouvelle ligne à intégrer à l'ensemble. * +* * +* Description : Ajoute une ligne à un ensemble existant. * +* * +* Retour : - * +* * +* Remarques : - * +* * +******************************************************************************/ + +void add_line_to_rendering_lines(rendering_line **lines, rendering_line *line) +{ + dl_list_add_tail(DLL_CAST(line), (dl_list_item **)lines); + +} + + + +/****************************************************************************** +* * +* Paramètres : line = adresse de la structure à représenter. * +* drawable = support de rendu pour le dessin. * +* gc = contexte graphique à utiliser. * +* x = abscisse de la zone de rendu. * +* y = ordonnée de la zone de rendu. * +* * +* Description : Procède à l'initialisation des bases d'une représentation. * +* * +* Retour : - * +* * +* Remarques : - * +* * +******************************************************************************/ + +void draw_rendering_line(rendering_line *line, GdkDrawable *drawable, GdkGC *gc, gint x, gint y) +{ + gdk_draw_layout(drawable, gc, x, y, line->layout); + +} + + + +/* ---------------------------------------------------------------------------------- */ +/* LIGNE EN TETE DE DESASSEMBLAGE */ +/* ---------------------------------------------------------------------------------- */ + + +/****************************************************************************** +* * +* Paramètres : comment = texte à afficher au final. * +* * +* Description : Choisit d'afficher le code brut ou non. * +* * +* Retour : - * +* * +* Remarques : - * +* * +******************************************************************************/ + +rendering_line *create_prologue_line(const char *comment) +{ + prologue_line *result; /* Structure à retourner */ + + result = (prologue_line *)calloc(1, sizeof(prologue_line)); + + init_rendering_line(RENDERING_LINE(result)); + + RENDERING_LINE(result)->type = RLT_PROLOGUE; + + result->comment = strdup(comment); + + refresh_prologue_markup(result); + + return RENDERING_LINE(result); + +} + + +/****************************************************************************** +* * +* Paramètres : line = ligne de représentation à actualiser. * +* * +* Description : Met à jour la ligne de représentation de prologue. * +* * +* Retour : - * +* * +* Remarques : - * +* * +******************************************************************************/ + +void refresh_prologue_markup(prologue_line *line) +{ + size_t len; /* Taille du contenu */ + char *content; /* Contenu réellement imprimé */ + + len = strlen("<b><span foreground='#003300'>"); + len += strlen("; ") + strlen(line->comment); + len += strlen("</span></b>"); + + content = (char *)calloc(len + 1, sizeof(char)); + + snprintf(content, len + 1, "<b><span foreground='#003300'>; %s</span></b>", line->comment); + + pango_layout_set_markup(RENDERING_LINE(line)->layout, content, len); + + free(content); + +} + + diff --git a/src/analysis/line.h b/src/analysis/line.h new file mode 100644 index 0000000..dd0915c --- /dev/null +++ b/src/analysis/line.h @@ -0,0 +1,68 @@ + +/* OpenIDA - Outil d'analyse de fichiers binaires + * line.h - prototypes pour la représentation des lignes de rendu + * + * Copyright (C) 2008 Cyrille Bagard + * + * This file is part of OpenIDA. + * + * OpenIDA 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. + * + * OpenIDA 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_LINE_H +#define _ANALYSIS_LINE_H + + +#include <gtk/gtk.h> + + +/* Définitions des types de ligne */ +typedef enum _RenderingLineType +{ + RLT_PROLOGUE /* Description de l'analyse */ + + + +} RenderingLineType; + + + + +/* Ligne de représentation générique */ +typedef struct _rendering_line rendering_line; + + + +/* Ajoute une ligne à un ensemble existant. */ +void add_line_to_rendering_lines(rendering_line **, rendering_line *); + + + +/* Procède à l'initialisation des bases d'une représentation. */ +void draw_rendering_line(rendering_line *, GdkDrawable *, GdkGC *, gint, gint); + + + +/* ------------------------- LIGNE EN TETE DE DESASSEMBLAGE ------------------------- */ + + +/* Choisit d'afficher le code brut ou non. */ +rendering_line *create_prologue_line(const char *); + + + + + +#endif /* _ANALYSIS_LINE_H */ |