/* 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 .
*/
#ifndef _ANALYSIS_LINE_H
#define _ANALYSIS_LINE_H
#include
#include
#include "../arch/processor.h"
#include "../format/exe_format.h"
/* Définitions des types de ligne */
typedef enum _RenderingLineType
{
RLT_PROLOGUE, /* Description de l'analyse */
RLT_PROTOTYPE, /* Prototype de fonction */
RLT_CODE /* Code en langage machine */
} RenderingLineType;
/* Image à afficher en marge de ligne */
typedef enum _RenderingLineFlag
{
RLF_NONE = (0 << 0), /* Ligne commune */
RLF_ENTRY_POINT = (1 << 0), /* Point d'entrée du prgm. */
RLF_BREAK_POINT = (1 << 1), /* Point d'arrêt */
RLF_RUNNING_BP = (1 << 2) /* Point d'arrêt activé */
} RenderingLineFlag;
/* Passage de paramètres compact */
typedef struct _disass_options
{
bool show_address; /* Affichage de l'adresse ? */
bool show_code; /* Affichage du code brut ? */
exe_format *format; /* Format du contenu bianire */
GArchProcessor *proc; /* Architecture utilisée */
} disass_options;
#define G_TYPE_RENDERING_LINE g_rendering_line_get_type()
#define G_RENDERING_LINE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), g_rendering_line_get_type(), GRenderingLine))
#define G_IS_RENDERING_LINE(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), g_rendering_line_get_type()))
#define G_RENDERING_LINE_GET_IFACE(inst) (G_TYPE_INSTANCE_GET_INTERFACE((inst), g_rendering_line_get_type(), GRenderingLineIface))
/* Ligne de représentation générique (instance) */
typedef struct _GRenderingLine GRenderingLine;
/* Ligne de représentation générique (classe) */
typedef struct _GRenderingLineClass GRenderingLineClass;
/* Indique le type définit pour une ligne de représentation. */
GType g_rendering_line_get_type(void);
/* Fournit le type d'une ligne. */
RenderingLineType get_rendering_line_type(const GRenderingLine *);
/* Ajoute une information supplémentaire à une ligne. */
void g_rendering_line_add_flag(GRenderingLine *, RenderingLineFlag);
/* Retire une information supplémentaire d'une ligne. */
void g_rendering_line_remove_flag(GRenderingLine *, RenderingLineFlag);
/* Bascule l'état d'une information sur d'une ligne. */
void g_rendering_line_toggle_flag(GRenderingLine *, RenderingLineFlag);
/* Fournit les informations supplémentaires d'une ligne. */
RenderingLineFlag g_rendering_line_get_flags(const GRenderingLine *);
/* Procède à l'initialisation des bases d'une représentation. */
void g_rendering_line_draw(GRenderingLine *, GdkDrawable *, GdkGC *, gint, gint, gint, gint);
/* ------------------------ TRAITEMENT DES LIGNES PAR GROUPE ------------------------ */
/* Ajoute une ligne à un ensemble existant. */
void g_rendering_line_add_to_lines(GRenderingLine **, GRenderingLine *);
/* Insère une ligne dans un ensemble existant. */
void g_rendering_line_insert_into_lines(GRenderingLine **, GRenderingLine *, bool);
/* Fournit l'élement suivant un autre pour un parcours. */
GRenderingLine *g_rendering_line_get_next_iter(GRenderingLine *, const GRenderingLine *);
/* Met à jour le nombre d'octets maximal par instruction. */
void g_rendering_line_update_bin_len(GRenderingLine *);
/* Fournit les dimensions de lignes de représentation. */
void g_rendering_line_get_size(GRenderingLine *, int *, int *, int *);
/* Recherche une ligne d'après sa position à l'écran. */
GRenderingLine *g_rendering_line_find_by_y(GRenderingLine *, gdouble *);
/* Recherche une ligne d'après sa position en mémoire/physique. */
GRenderingLine *g_rendering_line_find_by_offset(GRenderingLine *, uint64_t);
#endif /* _ANALYSIS_LINE_H */