diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2010-03-31 21:12:35 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2010-03-31 21:12:35 (GMT) |
commit | 7cbdd17b441b35d48624956aa438bde69f18bc37 (patch) | |
tree | 438af8d0a994d6e203cf66ea91cf336bb071ee44 /src/analysis | |
parent | d5e55f2ad015781bd7bee0e3216e47d6218e0841 (diff) |
Implemented first steps to a Python plugins support.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@146 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/analysis')
-rw-r--r-- | src/analysis/exporter-int.h | 2 | ||||
-rw-r--r-- | src/analysis/line-int.h | 3 | ||||
-rw-r--r-- | src/analysis/line.c | 75 | ||||
-rw-r--r-- | src/analysis/line.h | 9 | ||||
-rw-r--r-- | src/analysis/line_code.c | 37 |
5 files changed, 120 insertions, 6 deletions
diff --git a/src/analysis/exporter-int.h b/src/analysis/exporter-int.h index 4219be2..3218bcf 100644 --- a/src/analysis/exporter-int.h +++ b/src/analysis/exporter-int.h @@ -1,6 +1,6 @@ /* OpenIDA - Outil d'analyse de fichiers binaires - * line-int.h - prototypes pour la traduction humaine des lignes de rendus + * exporter-int.h - prototypes pour la traduction humaine des lignes de rendus * * Copyright (C) 2009 Cyrille Bagard * diff --git a/src/analysis/line-int.h b/src/analysis/line-int.h index 9c8e52a..e240815 100644 --- a/src/analysis/line-int.h +++ b/src/analysis/line-int.h @@ -43,6 +43,8 @@ struct _GRenderingLine vmpa_t offset; /* Position en mémoire/physique*/ off_t length; /* Nombre d'adresses associées */ + char *comment; /* Texte à afficher */ + RenderingLineType type; /* Type de représentation */ RenderingLineFlag flags; /* Extension d'informations */ @@ -57,6 +59,7 @@ struct _GRenderingLine #define lines_list_last(head) dl_list_last(head, GRenderingLine, link) #define lines_list_next_iter(iter, head) dl_list_next_iter(iter, head, GRenderingLine, link) +#define lines_list_prev_iter(iter, head) dl_list_prev_iter(iter, head, GRenderingLine, link) #define lines_list_add_before(new, head, pos) dl_list_add_before(new, head, pos, link) #define lines_list_add_tail(new, head) dl_list_add_tail(new, head, GRenderingLine, link) #define lines_list_for_each(pos, head) dl_list_for_each(pos, head, GRenderingLine, link) diff --git a/src/analysis/line.c b/src/analysis/line.c index 24a107b..a3ba7a5 100644 --- a/src/analysis/line.c +++ b/src/analysis/line.c @@ -150,6 +150,49 @@ off_t get_rendering_line_length(const GRenderingLine *line) * * * Paramètres : line = ligne dont les informations sont à consulter. * * * +* Description : Fournit le commentaire associé à la ligne s'il existe. * +* * +* Retour : Chaîne de caractères ou NULL. * +* * +* Remarques : - * +* * +******************************************************************************/ + +const char *get_rendering_line_comment(const GRenderingLine *line) +{ + return line->comment; + +} + + +/****************************************************************************** +* * +* Paramètres : line = ligne dont les informations sont à consulter. * +* comment = nouveau commentaire à insérer ou NULL. * +* * +* Description : Définit ou supprime un commentaire pour la ligne indiquée. * +* * +* Retour : - * +* * +* Remarques : - * +* * +******************************************************************************/ + +void set_rendering_line_comment(GRenderingLine *line, const char *comment) +{ + if (line->comment != NULL) + free(line->comment); + + if (comment == NULL) line->comment = NULL; + else line->comment = strdup(comment); + +} + + +/****************************************************************************** +* * +* Paramètres : line = ligne dont les informations sont à consulter. * +* * * Description : Fournit le type d'une ligne. * * * * Retour : Type de la ligne fournie. * @@ -463,6 +506,38 @@ GRenderingLine *g_rendering_line_get_next_iter(GRenderingLine *lines, const GRen /****************************************************************************** * * * Paramètres : lines = liste de lignes de représentation à actualiser. * +* : iter = position actuelle dans la liste. * +* last = dernière élément imposé du parcours ou NULL. * +* * +* Description : Fournit l'élement précédant un autre pour un parcours. * +* * +* Retour : Elément suivant ou NULL si aucun. * +* * +* Remarques : - * +* * +******************************************************************************/ + +GRenderingLine *g_rendering_line_get_prev_iter(GRenderingLine *lines, const GRenderingLine *iter, const GRenderingLine *last) +{ + GRenderingLine *result; /* Elément suivant à renvoyer */ + + if (iter == NULL) + { + if (last != NULL) iter = last; + else iter = lines_list_last(lines); + } + + if (iter == lines) result = NULL; + else result = lines_list_prev_iter(iter, lines); + + return result; + +} + + +/****************************************************************************** +* * +* Paramètres : lines = liste de lignes de représentation à actualiser. * * last = dernière élément imposé du parcours ou NULL. * * * * Description : Fournit le dernier élément d'une liste de lignes. * diff --git a/src/analysis/line.h b/src/analysis/line.h index 20d6234..5061dcd 100644 --- a/src/analysis/line.h +++ b/src/analysis/line.h @@ -78,6 +78,12 @@ vmpa_t get_rendering_line_address(const GRenderingLine *); /* Fournit la longueur du code représenté par une ligne. */ off_t get_rendering_line_length(const GRenderingLine *); +/* Fournit le commentaire associé à la ligne s'il existe. */ +const char *get_rendering_line_comment(const GRenderingLine *); + +/* Définit ou supprime un commentaire pour la ligne indiquée. */ +void set_rendering_line_comment(GRenderingLine *, const char *); + /* Fournit le type d'une ligne. */ RenderingLineType get_rendering_line_type(const GRenderingLine *); @@ -119,6 +125,9 @@ void g_rendering_line_insert_into_lines(GRenderingLine **, GRenderingLine *, boo /* Fournit l'élement suivant un autre pour un parcours. */ GRenderingLine *g_rendering_line_get_next_iter(GRenderingLine *, const GRenderingLine *, const GRenderingLine *); +/* Fournit l'élement précédant un autre pour un parcours. */ +GRenderingLine *g_rendering_line_get_prev_iter(GRenderingLine *, const GRenderingLine *, const GRenderingLine *); + /* Fournit le dernier élément d'une liste de lignes. */ GRenderingLine *g_rendering_line_get_last_iter(GRenderingLine *, GRenderingLine *); diff --git a/src/analysis/line_code.c b/src/analysis/line_code.c index 24f3ec9..7c80074 100644 --- a/src/analysis/line_code.c +++ b/src/analysis/line_code.c @@ -136,7 +136,8 @@ static void g_code_line_init(GCodeLine *line) static void g_code_line_add_text(GCodeLine *line, GRenderingOptions *options, MainRendering rendering, FILE *stream) { - GContentExporter *exporter; /* Autre vision de la ligne */ + GContentExporter *exporter; /* Autre vision de la ligne #1 */ + GRenderingLine *basic; /* Autre vision de la ligne #2 */ bool show_address; /* Affichage de l'adresse ? */ bool show_code; /* Affichage du code brut ? */ MemoryDataSize msize; /* Taille du bus d'adresses */ @@ -149,6 +150,7 @@ static void g_code_line_add_text(GCodeLine *line, GRenderingOptions *options, Ma off_t i; /* Boucle de parcours */ exporter = G_CONTENT_EXPORTER(line); + basic = G_RENDERING_LINE(line); show_address = g_rendering_options_has_to_show_address(options, rendering); show_code = g_rendering_options_has_to_show_code(options, rendering); @@ -195,6 +197,16 @@ static void g_code_line_add_text(GCodeLine *line, GRenderingOptions *options, Ma g_content_exporter_add_text(G_CONTENT_EXPORTER(line->instr), options, rendering, stream); + /* Commentaire ? */ + + if (basic->comment != NULL) + { + g_content_exporter_insert_text(exporter, stream, "\t", 1, RTT_NONE); + g_content_exporter_insert_text(exporter, stream, "; ", 2, RTT_COMMENT); + g_content_exporter_insert_text(exporter, stream, basic->comment, + strlen(basic->comment), RTT_COMMENT); + } + } @@ -216,6 +228,8 @@ static void g_code_line_add_text(GCodeLine *line, GRenderingOptions *options, Ma static void g_code_line_add_to_gtk_buffer(GCodeLine *line, MainRendering rendering, GtkTextBuffer *buffer, GtkTextIter *iter, size_t lengths[SAR_COUNT]) { + GContentExporter *exporter; /* Autre vision de la ligne #1 */ + GRenderingLine *basic; /* Autre vision de la ligne #2 */ bool show_address; /* Affichage de l'adresse ? */ bool show_code; /* Affichage du code brut ? */ MemoryDataSize msize; /* Taille du bus d'adresses */ @@ -227,6 +241,9 @@ static void g_code_line_add_to_gtk_buffer(GCodeLine *line, MainRendering renderi char *bin_code; /* Tampon du code binaire */ off_t i; /* Boucle de parcours */ + exporter = G_CONTENT_EXPORTER(line); + basic = G_RENDERING_LINE(line); + show_address = g_rendering_options_has_to_show_address(line->options, rendering); show_code = g_rendering_options_has_to_show_code(line->options, rendering); @@ -239,10 +256,10 @@ static void g_code_line_add_to_gtk_buffer(GCodeLine *line, MainRendering renderi len = vmpa_to_string(G_RENDERING_LINE(line)->offset, msize, address); lengths[SAR_ADDRESS] = len; - g_content_exporter_insert_with_gtk_tag(G_CONTENT_EXPORTER(line), buffer, iter, + g_content_exporter_insert_with_gtk_tag(exporter, buffer, iter, address, len, RTT_NONE); - g_content_exporter_insert_with_gtk_tag(G_CONTENT_EXPORTER(line), buffer, iter, + g_content_exporter_insert_with_gtk_tag(exporter, buffer, iter, "\t", 1, RTT_NONE); } @@ -266,12 +283,12 @@ static void g_code_line_add_to_gtk_buffer(GCodeLine *line, MainRendering renderi snprintf(&bin_code[i * (2 + 1)], 3, "%02hhx", content[bin_offset + i]); } - g_content_exporter_insert_with_gtk_tag(G_CONTENT_EXPORTER(line), buffer, iter, + g_content_exporter_insert_with_gtk_tag(exporter, buffer, iter, bin_code, bin_len * 3 - 1, RTT_RAW_CODE); free(bin_code); - g_content_exporter_insert_with_gtk_tag(G_CONTENT_EXPORTER(line), buffer, iter, + g_content_exporter_insert_with_gtk_tag(exporter, buffer, iter, "\t", 1, RTT_NONE); } @@ -284,6 +301,16 @@ static void g_code_line_add_to_gtk_buffer(GCodeLine *line, MainRendering renderi lengths[SAR_INSTRUCTION] = MAX(lengths[SAR_INSTRUCTION], 4 /* FIXME */); + /* Commentaire ? */ + + if (basic->comment != NULL) + { + g_content_exporter_insert_with_gtk_tag(exporter, buffer, iter, "\t", 1, RTT_NONE); + g_content_exporter_insert_with_gtk_tag(exporter, buffer, iter, "; ", 2, RTT_COMMENT); + g_content_exporter_insert_with_gtk_tag(exporter, buffer, iter, basic->comment, + strlen(basic->comment), RTT_COMMENT); + } + } |