diff options
Diffstat (limited to 'src/glibext')
-rw-r--r-- | src/glibext/Makefile.am | 3 | ||||
-rw-r--r-- | src/glibext/gbinportion.c | 14 | ||||
-rw-r--r-- | src/glibext/gbufferline.c | 806 | ||||
-rw-r--r-- | src/glibext/gbufferline.h | 31 | ||||
-rw-r--r-- | src/glibext/gbufferview.c | 112 | ||||
-rw-r--r-- | src/glibext/gbufferview.h | 2 | ||||
-rw-r--r-- | src/glibext/gcodebuffer.c | 8 | ||||
-rw-r--r-- | src/glibext/linecolumn.c | 480 | ||||
-rw-r--r-- | src/glibext/linecolumn.h | 93 | ||||
-rw-r--r-- | src/glibext/linesegment.c (renamed from src/glibext/gbuffersegment.c) | 698 | ||||
-rw-r--r-- | src/glibext/linesegment.h (renamed from src/glibext/gbuffersegment.h) | 67 |
11 files changed, 1042 insertions, 1272 deletions
diff --git a/src/glibext/Makefile.am b/src/glibext/Makefile.am index a88b7d9..aa7a9a3 100644 --- a/src/glibext/Makefile.am +++ b/src/glibext/Makefile.am @@ -10,11 +10,12 @@ libglibext_la_SOURCES = \ delayed.h delayed.c \ gbinportion.h gbinportion.c \ gbufferline.h gbufferline.c \ - gbuffersegment.h gbuffersegment.c \ gbufferview.h gbufferview.c \ gcodebuffer.h gcodebuffer.c \ gnhash.h gnhash.c \ gwidthtracker.h gwidthtracker.c \ + linecolumn.h linecolumn.c \ + linesegment.h linesegment.c \ proto.h \ signal.h signal.c diff --git a/src/glibext/gbinportion.c b/src/glibext/gbinportion.c index 454fc6b..4851a08 100644 --- a/src/glibext/gbinportion.c +++ b/src/glibext/gbinportion.c @@ -549,8 +549,8 @@ void g_binary_portion_print(const GBinPortion *portion, GCodeBuffer *buffer, Mem g_buffer_line_fill_mrange(line, msize, msize); g_buffer_line_start_merge_at(line, BLC_ASSEMBLY_HEAD); - g_buffer_line_insert_text(line, BLC_ASSEMBLY_HEAD, - "; ======================================================", 56, RTT_COMMENT); + g_buffer_line_append_text(line, BLC_ASSEMBLY_HEAD, + "; ======================================================", 56, RTT_COMMENT, NULL); g_code_buffer_append_new_line(buffer, line); @@ -560,7 +560,7 @@ void g_binary_portion_print(const GBinPortion *portion, GCodeBuffer *buffer, Mem g_buffer_line_fill_mrange(line, msize, msize); g_buffer_line_start_merge_at(line, BLC_ASSEMBLY_HEAD); - g_buffer_line_insert_text(line, BLC_ASSEMBLY_HEAD, "; ", 2, RTT_COMMENT); + g_buffer_line_append_text(line, BLC_ASSEMBLY_HEAD, "; ", 2, RTT_COMMENT, NULL); g_code_buffer_append_new_line(buffer, line); @@ -571,9 +571,9 @@ void g_binary_portion_print(const GBinPortion *portion, GCodeBuffer *buffer, Mem g_buffer_line_start_merge_at(line, BLC_ASSEMBLY_HEAD); - g_buffer_line_insert_text(line, BLC_ASSEMBLY_HEAD, "; ", 2, RTT_COMMENT); + g_buffer_line_append_text(line, BLC_ASSEMBLY_HEAD, "; ", 2, RTT_COMMENT, NULL); - g_buffer_line_insert_text(line, BLC_ASSEMBLY_HEAD, portion->desc, strlen(portion->desc), RTT_COMMENT); + g_buffer_line_append_text(line, BLC_ASSEMBLY_HEAD, portion->desc, strlen(portion->desc), RTT_COMMENT, NULL); snprintf(rights, sizeof(rights), " (%s%s%s%s)", _("rights: "), @@ -581,7 +581,7 @@ void g_binary_portion_print(const GBinPortion *portion, GCodeBuffer *buffer, Mem portion->rights & PAC_WRITE ? "w" : "-", portion->rights & PAC_EXEC ? "x" : "-"); - g_buffer_line_insert_text(line, BLC_ASSEMBLY_HEAD, rights, strlen(rights), RTT_COMMENT); + g_buffer_line_append_text(line, BLC_ASSEMBLY_HEAD, rights, strlen(rights), RTT_COMMENT, NULL); g_code_buffer_append_new_line(buffer, line); @@ -591,7 +591,7 @@ void g_binary_portion_print(const GBinPortion *portion, GCodeBuffer *buffer, Mem g_buffer_line_fill_mrange(line, msize, msize); g_buffer_line_start_merge_at(line, BLC_ASSEMBLY_HEAD); - g_buffer_line_insert_text(line, BLC_ASSEMBLY_HEAD, "; ", 2, RTT_COMMENT); + g_buffer_line_append_text(line, BLC_ASSEMBLY_HEAD, "; ", 2, RTT_COMMENT, NULL); g_code_buffer_append_new_line(buffer, line); diff --git a/src/glibext/gbufferline.c b/src/glibext/gbufferline.c index a33817b..d03dfaf 100644 --- a/src/glibext/gbufferline.c +++ b/src/glibext/gbufferline.c @@ -27,84 +27,18 @@ #include <assert.h> #include <malloc.h> #include <string.h> -#include <gtk/gtk.h> /* Récupération du langage par défaut ; FIXME ? */ #include "chrysamarshal.h" +#include "linecolumn.h" #include "../common/extstr.h" #include "../gtkext/support.h" -/* ---------------------------- REGROUPEMENT PAR COLONNE ---------------------------- */ - - -/* Informations sur le contenu d'une colonne */ -typedef struct _buffer_line_column -{ - GBufferSegment **segments; - size_t count; - - int max_width; /* Largeur max. de l'espace */ - -} buffer_line_column; - - -/* Réinitialise une colonne de ligne. */ -static void reset_column(buffer_line_column *); - -/* Recalcule la largeur d'une colonne de segments. */ -static void refresh_column_width(buffer_line_column *); - -/* Fournit la quantité de pixels requise pour l'impression. */ -static gint get_column_width(const buffer_line_column *); - -/* Ajoute un fragment de texte à une colonne de ligne. */ -static void add_segment_to_column(buffer_line_column *, GBufferSegment *) __attribute__ ((deprecated)); - -/* Ajoute un fragment de texte à une colonne de ligne. */ -static size_t append_text_to_line_column(buffer_line_column *, const char *, size_t, RenderingTagType); - -/* Valide ou non la présence d'un segment dans une colonne. */ -static bool column_has_segment(const buffer_line_column *, const GBufferSegment *, size_t *); - -/* Indique l'indice du premier contenu de la colonne. */ -static bool get_column_first_content_index(const buffer_line_column *, size_t *); - -/* Indique l'indice du dernier contenu de la colonne. */ -static bool get_column_last_content_index(const buffer_line_column *, size_t *); - -#define get_first_segment(col) ((col)->count > 0 ? (col)->segments[0] : NULL) -#define get_last_segment(col) ((col)->count > 0 ? (col)->segments[(col)->count - 1] : NULL) - -/* Indique l'indice du contenu de colonne à une abscisse donnée. */ -static bool get_column_content_index_at(const buffer_line_column *, gint *, GdkScrollDirection, gint *, size_t *); - -/* Donne le segment d'une colonne présent à un indice donné. */ -static GBufferSegment *get_column_content_from_index(const buffer_line_column *, size_t); - -/* Fournit le segment voisin d'un autre segment identifié. */ -static GBufferSegment *find_near_segment(const buffer_line_column *, GBufferSegment *, GdkScrollDirection); - -/* Imprime le contenu d'une colonne de ligne de texte. */ -static void draw_segments_of_column(buffer_line_column *, cairo_t *, gint, gint, const segcnt_list *); - -/* Exporte la ligne de texte représentée. */ -static void export_segments_of_column(buffer_line_column *, buffer_export_context *, BufferExportType, int); - - - /* ---------------------------- GESTION DE LINE COMPLETE ---------------------------- */ -/* Identification d'un contenu de colonne */ -typedef struct _col_coord_t -{ - BufferLineColumn column; /* Colonne concernée */ - size_t index; /* Indice d'insertion */ - -} col_coord_t; - /* Mémorisation des origines de texte */ typedef struct _content_origin { @@ -122,7 +56,7 @@ struct _GBufferLine mrange_t range; /* Couverture geographique */ BufferLineColumn main_column; /* Colonne principale */ - buffer_line_column columns[BLC_COUNT]; /* Répartition du texte */ + line_column columns[BLC_COUNT]; /* Répartition du texte */ BufferLineColumn merge_start; /* Début de la zone globale */ BufferLineColumn last_used; /* Dernière colonne utilisée */ @@ -153,7 +87,7 @@ struct _GBufferLineClass /* Signaux */ - void (* content_changed) (GBufferLine *, GBufferSegment *); + void (* content_changed) (GBufferLine *, line_segment *); void (* flip_flag) (GBufferLine *, BufferLineFlags, BufferLineFlags); @@ -172,465 +106,6 @@ static void g_buffer_line_dispose(GBufferLine *); /* Procède à la libération totale de la mémoire. */ static void g_buffer_line_finalize(GBufferLine *); -/* Réagit au changement de contenu d'un segment encapsulé. */ -static void on_line_segment_changed(GBufferSegment *, GBufferLine *); - -/* Fournit les coordonnées correspondant à une abscisse donnée. */ -static bool g_buffer_line_get_coord_at(const GBufferLine *, const line_width_summary *, const bool *, gint *, gint *, GdkScrollDirection, bool, col_coord_t *); - - - -/* ---------------------------------------------------------------------------------- */ -/* REGROUPEMENT PAR COLONNE */ -/* ---------------------------------------------------------------------------------- */ - - -/****************************************************************************** -* * -* Paramètres : column = colonne de ligne à mettre à jour. * -* * -* Description : Réinitialise une colonne de ligne. * -* * -* Retour : - * -* * -* Remarques : - * -* * -******************************************************************************/ - -static void reset_column(buffer_line_column *column) -{ - size_t i; /* Boucle de parcours */ - - for (i = 0; i < column->count; i++) - g_object_unref(G_OBJECT(column->segments[i])); - - if (column->segments != NULL) - { - free(column->segments); - column->segments = NULL; - } - - column->count = 0; - - column->max_width = 0; - -} - - -/****************************************************************************** -* * -* Paramètres : column = colonne de ligne à mettre à jour. * -* * -* Description : Recalcule la largeur d'une colonne de segments. * -* * -* Retour : - * -* * -* Remarques : - * -* * -******************************************************************************/ - -static void refresh_column_width(buffer_line_column *column) -{ - size_t i; /* Boucle de parcours */ - - column->max_width = 0; - - for (i = 0; i < column->count; i++) - column->max_width += g_buffer_segment_get_width(column->segments[i]); - -} - - -/****************************************************************************** -* * -* Paramètres : column = colonne de ligne à consulter. * -* * -* Description : Fournit la quantité de pixels requise pour l'impression. * -* * -* Retour : Largeur requise par la colonne, en pixel. * -* * -* Remarques : - * -* * -******************************************************************************/ - -static gint get_column_width(const buffer_line_column *column) -{ - return column->max_width; - -} - - -/****************************************************************************** -* * -* Paramètres : column = colonne de ligne à venir compléter. * -* segment = fragment de texte à ajouter à la colonne. * -* * -* Description : Ajoute un fragment de texte à une colonne de ligne. * -* * -* Retour : - * -* * -* Remarques : - * -* * -******************************************************************************/ - -static void add_segment_to_column(buffer_line_column *column, GBufferSegment *segment) -{ - - /* FIXME : à remplacer */ - - - column->segments = (GBufferSegment **)realloc(column->segments, ++column->count * sizeof(GBufferSegment *)); - - - column->segments[column->count - 1] = segment; - - - column->max_width += g_buffer_segment_get_width(segment); - -} - - -/****************************************************************************** -* * -* Paramètres : column = colonne de ligne à venir compléter. * -* text = texte à insérer dans l'existant. * -* length = taille du texte à traiter. * -* type = type de décorateur à utiliser. * -* * -* Description : Ajoute un fragment de texte à une colonne de ligne. * -* * -* Retour : Indice du point d'insertion. * -* * -* Remarques : - * -* * -******************************************************************************/ - -static size_t append_text_to_line_column(buffer_line_column *column, const char *text, size_t length, RenderingTagType type) -{ - size_t result; /* Indice à retourner */ - GBufferSegment *content; /* Contenu à représenter */ - - result = column->count; - - content = g_buffer_segment_new(type, text, length); - - column->segments = (GBufferSegment **)realloc(column->segments, ++column->count * sizeof(GBufferSegment *)); - - column->segments[result] = content; - - column->max_width += g_buffer_segment_get_width(content); - - return result; - -} - - -/****************************************************************************** -* * -* Paramètres : column = colonne de ligne à venir consulter. * -* segment = fragment de texte à trouver dans la colonne. * -* index = indice du segment retrouvé ou NULL. [OUT] * -* * -* Description : Valide ou non la présence d'un segment dans une colonne. * -* * -* Retour : Statut de présence du segment indiqué. * -* * -* Remarques : - * -* * -******************************************************************************/ - -static bool column_has_segment(const buffer_line_column *column, const GBufferSegment *segment, size_t *index) -{ - size_t i; /* Boucle de parcours */ - - for (i = 0; i < column->count; i++) - if (column->segments[i] == segment) - { - if (index != NULL) *index = i; - break; - } - - return (i < column->count); - -} - - -/****************************************************************************** -* * -* Paramètres : column = colonne de ligne de texte à consulter. * -* index = indice du contenu enregistré à la position. [OUT] * -* * -* Description : Indique l'indice du premier contenu de la colonne. * -* * -* Retour : Validité de l'indice renseigné. * -* * -* Remarques : - * -* * -******************************************************************************/ - -static bool get_column_first_content_index(const buffer_line_column *column, size_t *index) -{ - bool result; /* Bilan à retourner */ - - result = (column->count > 0); - - if (result) - *index = 0; - - return result; - -} - - -/****************************************************************************** -* * -* Paramètres : column = colonne de ligne de texte à consulter. * -* index = indice du contenu enregistré à la position. [OUT] * -* * -* Description : Indique l'indice du dernier contenu de la colonne. * -* * -* Retour : Validité de l'indice renseigné. * -* * -* Remarques : - * -* * -******************************************************************************/ - -static bool get_column_last_content_index(const buffer_line_column *column, size_t *index) -{ - bool result; /* Bilan à retourner */ - - result = (column->count > 0); - - if (result) - *index = column->count - 1; - - return result; - -} - - -/****************************************************************************** -* * -* Paramètres : column = colonne de ligne de texte à consulter. * -* x = position de recherche, puis position locale. [OUT]* -* dir = direction d'un éventuel déplacement en cours. * -* consumed = distance pour arriver à la base du segment. [OUT] * -* index = indice du contenu enregistré à la position. [OUT] * -* * -* Description : Indique l'indice du contenu de colonne à une abscisse donnée.* -* * -* Retour : Validité de l'indice renseigné. * -* * -* Remarques : - * -* * -******************************************************************************/ - -static bool get_column_content_index_at(const buffer_line_column *column, gint *x, GdkScrollDirection dir, gint *consumed, size_t *index) -{ - bool result; /* Bilan à retourner */ - size_t i; /* Boucle de parcours */ - gint width; /* Largeur à retirer */ - bool included; /* Appartenance à une largeur ?*/ - - result = false; - *consumed = 0; - - for (i = 0; i < column->count && !result; i++) - { - width = g_buffer_segment_get_width(column->segments[i]); - - /** - * Soit une limite entre deux segments A et B : - * - * - dans le cas d'un déplacement vers la gauche, on part de cette limite - * pour progresser à l'intérieur de A. Donc la limite fait partie de A. - * - * - dans le cas d'un déplacement vers la droite, on part de cette limite - * pour progresser à l'intérieur de B. Donc la limite ne fait pas partie de A. - */ - if (dir == GDK_SCROLL_LEFT) included = (width >= *x); - else included = (width > *x); - - if (included) - { - *index = i; - result = true; - } - - else if ((i + 1) == column->count) - { - *index = i; - result = true; - *x = width; - } - - else - { - *x -= width; - *consumed += width; - } - - } - - return result; - -} - - -/****************************************************************************** -* * -* Paramètres : column = colonne de ligne de texte à consulter. * -* index = indice du contenu à fournir. * -* * -* Description : Donne le segment d'une colonne présent à un indice donné. * -* * -* Retour : Segment trouvé ou NULL si hors borne. * -* * -* Remarques : - * -* * -******************************************************************************/ - -static GBufferSegment *get_column_content_from_index(const buffer_line_column *column, size_t index) -{ - GBufferSegment *result; /* Trouvaille à retourner */ - - assert(index < column->count); - - result = column->segments[index]; - - return result; - -} - - -/****************************************************************************** -* * -* Paramètres : column = colonne de ligne de texte à consulter. * -* target = segment dont un voisin est à retourner. * -* dir = orientation des recherches. * -* * -* Description : Fournit le segment voisin d'un autre segment identifié. * -* * -* Retour : Segment trouvé ou NULL si hors borne ou inconnu. * -* * -* Remarques : - * -* * -******************************************************************************/ - -static GBufferSegment *find_near_segment(const buffer_line_column *column, GBufferSegment *target, GdkScrollDirection dir) -{ - GBufferSegment *result; /* Trouvaille à retourner */ - bool found; /* Le segment est bien présent */ - size_t i; /* Boucle de parcours */ - - result = NULL; - - found = column_has_segment(column, target, &i); - - if (found) - switch (dir) - { - case GDK_SCROLL_LEFT: - if (i > 0) - result = column->segments[i - 1]; - break; - - case GDK_SCROLL_RIGHT: - if ((i + 1) < column->count) - result = column->segments[i + 1]; - break; - - default: - break; - - } - - return result; - -} - - -/****************************************************************************** -* * -* Paramètres : column = colonne de ligne de texte à manipuler. * -* cairo = contexte graphique à utiliser pour les pinceaux. * -* x_init = abscisse du point d'impression de départ. * -* y = ordonnée du point d'impression. * -* list = liste de contenus à mettre en évidence. * -* * -* Description : Imprime le contenu d'une colonne de ligne de texte. * -* * -* Retour : - * -* * -* Remarques : - * -* * -******************************************************************************/ - -static void draw_segments_of_column(buffer_line_column *column, cairo_t *cairo, gint x_init, gint y, const segcnt_list *list) -{ - gint x; /* Abscisse d'impression */ - size_t i; /* Boucle de parcours */ - - x = x_init; - - for (i = 0; i < column->count; i++) - g_buffer_segment_draw(column->segments[i], cairo, &x, y, list); - -} - - -/****************************************************************************** -* * -* Paramètres : column = colonne de ligne de texte à manipuler. * -* ctx = éléments à disposition pour l'exportation. * -* type = type d'exportation attendue. * -* span = fusion de colonnes au sein des cellules ? * -* * -* Description : Exporte la ligne de texte représentée. * -* * -* Retour : - * -* * -* Remarques : - * -* * -******************************************************************************/ - -static void export_segments_of_column(buffer_line_column *column, buffer_export_context *ctx, BufferExportType type, int span) -{ - size_t i; /* Boucle de parcours */ - - switch (type) - { - case BET_HTML: - switch (span) - { - case 0: - break; - case 1: - dprintf(ctx->fd, "\t\t<TD>"); - break; - default: - if (span > 0) dprintf(ctx->fd, "\t\t<TD colspan=\"%d\">", span); - break; - } - break; - default: - break; - } - - for (i = 0; i < column->count; i++) - g_buffer_segment_export(column->segments[i], ctx, type); - - switch (type) - { - case BET_HTML: - if (span < 0 || span == 1) dprintf(ctx->fd, "</TD>\n"); - break; - default: - break; - } - -} - /* ---------------------------------------------------------------------------------- */ @@ -715,7 +190,7 @@ static void g_buffer_line_init(GBufferLine *line) BufferLineColumn i; /* Boucle de parcours */ for (i = 0; i < BLC_COUNT; i++) - reset_column(&line->columns[i]); + init_line_column(&line->columns[i]); line->merge_start = BLC_COUNT; line->last_used = BLC_COUNT; @@ -851,16 +326,16 @@ void g_buffer_line_fill_mrange(GBufferLine *line, MemoryDataSize psize, MemoryDa if (address[i] != '0') break; if (i == len) - g_buffer_line_insert_text(line, BLC_PHYSICAL, address, len, RTT_PHYS_ADDR_PAD); + g_buffer_line_append_text(line, BLC_PHYSICAL, address, len, RTT_PHYS_ADDR_PAD, NULL); else { - g_buffer_line_insert_text(line, BLC_PHYSICAL, address, 2, RTT_PHYS_ADDR); + g_buffer_line_append_text(line, BLC_PHYSICAL, address, 2, RTT_PHYS_ADDR, NULL); if (i > 2) - g_buffer_line_insert_text(line, BLC_PHYSICAL, &address[2], i - 2, RTT_PHYS_ADDR_PAD); + g_buffer_line_append_text(line, BLC_PHYSICAL, &address[2], i - 2, RTT_PHYS_ADDR_PAD, NULL); - g_buffer_line_insert_text(line, BLC_PHYSICAL, &address[i], len - i, RTT_PHYS_ADDR); + g_buffer_line_append_text(line, BLC_PHYSICAL, &address[i], len - i, RTT_PHYS_ADDR, NULL); } @@ -876,16 +351,16 @@ void g_buffer_line_fill_mrange(GBufferLine *line, MemoryDataSize psize, MemoryDa if (address[i] != '0') break; if (i == len) - g_buffer_line_insert_text(line, BLC_VIRTUAL, address, len, RTT_VIRT_ADDR_PAD); + g_buffer_line_append_text(line, BLC_VIRTUAL, address, len, RTT_VIRT_ADDR_PAD, NULL); else { - g_buffer_line_insert_text(line, BLC_VIRTUAL, address, 2, RTT_VIRT_ADDR); + g_buffer_line_append_text(line, BLC_VIRTUAL, address, 2, RTT_VIRT_ADDR, NULL); if (i > 2) - g_buffer_line_insert_text(line, BLC_VIRTUAL, &address[2], i - 2, RTT_VIRT_ADDR_PAD); + g_buffer_line_append_text(line, BLC_VIRTUAL, &address[2], i - 2, RTT_VIRT_ADDR_PAD, NULL); - g_buffer_line_insert_text(line, BLC_VIRTUAL, &address[i], len - i, RTT_VIRT_ADDR); + g_buffer_line_append_text(line, BLC_VIRTUAL, &address[i], len - i, RTT_VIRT_ADDR, NULL); } @@ -987,7 +462,7 @@ void g_buffer_line_fill_for_instr(GBufferLine *line, MemoryDataSize psize, Memor /* Conclusion */ - g_buffer_line_insert_text(line, BLC_BINARY, bin_code, iter - bin_code, RTT_RAW_CODE); + g_buffer_line_append_text(line, BLC_BINARY, bin_code, iter - bin_code, RTT_RAW_CODE, NULL); if (bin_code != static_buffer) free(bin_code); @@ -1033,91 +508,12 @@ GObject *g_buffer_line_find_first_segment_creator(const GBufferLine *line, Buffe /****************************************************************************** * * -* Paramètres : line = ligne à venir consulter. * -* creator = créateur à l'origine du segment recherché. * -* * -* Description : Fournit le segment créé par un objet particulier. * -* * -* Retour : Segment trouvé dans la ligne ou NULL. * -* * -* Remarques : - * -* * -******************************************************************************/ - -GBufferSegment *g_buffer_line_find_segment_from_creator(const GBufferLine *line, GObject *creator) -{ - GBufferSegment *result; /* Trouvaille à retourner */ - size_t i; /* Boucle de parcours */ - const col_coord_t *coord; /* Emplacement du contenu visé */ - - result = NULL; - - for (i = 0; i < line->ocount; i++) - { - if (line->origins[i].creator == creator) - { - coord = &line->origins[i].coord; - - result = get_column_content_from_index(&line->columns[coord->column], coord->index); - - break; - - } - - } - - if (result != NULL) - g_object_ref(G_OBJECT(result)); - - return result; - -} - - -/****************************************************************************** -* * -* Paramètres : segment = segment de texte dont le contenu vient de changer. * -* line = ligne contenant ce segment. * -* * -* Description : Réagit au changement de contenu d'un segment encapsulé. * -* * -* Retour : - * -* * -* Remarques : - * -* * -******************************************************************************/ - -static void on_line_segment_changed(GBufferSegment *segment, GBufferLine *line) -{ - BufferLineColumn i; /* Boucle de parcours */ - buffer_line_column *column; - - /* Actualisation de la largeur de la colonne */ - - for (i = 0; i < BLC_COUNT; i++) - { - column = &line->columns[i]; - - if (column_has_segment(column, segment, NULL)) - { - refresh_column_width(column); - break; - } - - } - - g_signal_emit_by_name(line, "content-changed", segment); - -} - - -/****************************************************************************** -* * -* Paramètres : line = ligne à venir compléter. * -* column = colonne de la ligne visée par l'insertion. * -* text = texte à insérer dans l'existant. * -* length = taille du texte à traiter. * -* type = type de décorateur à utiliser. * +* Paramètres : line = ligne à venir compléter. * +* column = colonne de la ligne visée par l'insertion. * +* text = texte à insérer dans l'existant. * +* length = taille du texte à traiter. * +* type = type de décorateur à utiliser. * +* creator = instance GLib quelconque à associer. * * * * Description : Ajoute du texte à formater dans une ligne donnée. * * * @@ -1127,9 +523,10 @@ static void on_line_segment_changed(GBufferSegment *segment, GBufferLine *line) * * ******************************************************************************/ -GBufferSegment *g_buffer_line_insert_text(GBufferLine *line, BufferLineColumn column, const char *text, size_t length, RenderingTagType type) +void g_buffer_line_append_text(GBufferLine *line, BufferLineColumn column, const char *text, size_t length, RenderingTagType type, GObject *creator) { - GBufferSegment *result; /* Portion de texte à renvoyer */ + size_t index; /* Indice d'insertion */ + content_origin *origin; /* Définition d'une origine */ assert(length > 0); @@ -1141,13 +538,21 @@ GBufferSegment *g_buffer_line_insert_text(GBufferLine *line, BufferLineColumn co else line->last_used = column; - result = g_buffer_segment_new(type, text, length); + index = append_text_to_line_column(&line->columns[column], text, length, type); - add_segment_to_column(&line->columns[column], result); + if (creator != NULL) + { + line->origins = (content_origin *)realloc(line->origins, ++line->ocount * sizeof(content_origin)); - g_signal_connect(result, "content-changed", G_CALLBACK(on_line_segment_changed), line); + origin = &line->origins[line->ocount - 1]; - return result; + origin->coord.column = column; + origin->coord.index = index; + + origin->creator = creator; + g_object_ref(G_OBJECT(creator)); + + } } @@ -1155,51 +560,44 @@ GBufferSegment *g_buffer_line_insert_text(GBufferLine *line, BufferLineColumn co /****************************************************************************** * * * Paramètres : line = ligne à venir compléter. * -* column = colonne de la ligne visée par l'insertion. * +* creator = instance GLib quelconque identifiant un segment. * * text = texte à insérer dans l'existant. * * length = taille du texte à traiter. * -* type = type de décorateur à utiliser. * -* creator = instance GLib quelconque à associer. * * * -* Description : Ajoute du texte à formater dans une ligne donnée. * +* Description : Remplace du texte dans une ligne donnée. * * * -* Retour : Portion de texte mis en place, voire NULL. * +* Retour : Bilan de l'opération. * * * * Remarques : - * * * ******************************************************************************/ -void g_buffer_line_append_text(GBufferLine *line, BufferLineColumn column, const char *text, size_t length, RenderingTagType type, GObject *creator) +bool g_buffer_line_replace_text(GBufferLine *line, const GObject *creator, const char *text, size_t length) { - size_t index; /* Indice d'insertion */ - content_origin *origin; /* Définition d'une origine */ - - assert(length > 0); - - if (column == BLC_MAIN) - column = line->main_column; - - if (column == BLC_LAST_USED) - column = line->last_used; - else - line->last_used = column; + bool result; /* Bilan à retourner */ + size_t i; /* Boucle de parcours */ + const col_coord_t *coord; /* Emplacement du contenu visé */ - index = append_text_to_line_column(&line->columns[column], text, length, type); + result = false; - if (creator != NULL) + for (i = 0; i < line->ocount && !result; i++) { - line->origins = (content_origin *)realloc(line->origins, ++line->ocount * sizeof(content_origin)); + if (line->origins[i].creator == creator) + { + coord = &line->origins[i].coord; - origin = &line->origins[line->ocount - 1]; + replace_text_in_line_column(&line->columns[coord->column], coord->index, text, length); - origin->coord.column = column; - origin->coord.index = index; + g_signal_emit_by_name(line, "content-changed", NULL); - origin->creator = creator; - g_object_ref(G_OBJECT(creator)); + result = true; + + } } + return result; + } @@ -1267,7 +665,7 @@ char *g_buffer_line_get_text(const GBufferLine *line, BufferLineColumn first, Bu for (j = 0; j < line->columns[i].count; j++) { - extra = g_buffer_segment_get_text(line->columns[i].segments[j], markup); + extra = get_line_segment_text(line->columns[i].segments[j], markup); if (result == NULL) result = extra; @@ -1307,7 +705,7 @@ void g_buffer_line_delete_text(GBufferLine *line, BufferLineColumn first, Buffer assert(first < end); for (i = first; i < end; i++) - reset_column(&line->columns[i]); + reset_line_column(&line->columns[i]); } @@ -1469,7 +867,7 @@ void g_buffer_line_export(GBufferLine *line, buffer_export_context *ctx, BufferE /** * Pour la signification des différentes valeurs assignées, - * se référer au code de export_segments_of_column(). + * se référer au code de export_line_column_segments(). * * En gros : * - 1 = rien de spécial. @@ -1490,7 +888,7 @@ void g_buffer_line_export(GBufferLine *line, buffer_export_context *ctx, BufferE else col_span = ((i + 1) == BLC_COUNT ? -1 : 0); - export_segments_of_column(&line->columns[i], ctx, type, col_span); + export_line_column_segments(&line->columns[i], ctx, type, col_span); } @@ -1591,6 +989,32 @@ gint g_buffer_line_compute_max_width(const GBufferLine *line, BufferLineColumn i } + + +/****************************************************************************** +* * +* Paramètres : line = ligne à venir consulter. * +* coord = coordonnées interne du segment à retrouver. * +* * +* Description : Fournit le segment présent à une position donnée. * +* * +* Retour : Segment trouvé ou NULL si hors borne. * +* * +* Remarques : - * +* * +******************************************************************************/ + +const line_segment *g_buffer_line_get_segment_from_coord(const GBufferLine *line, const col_coord_t *coord) +{ + line_segment *result; /* Trouvaille à retourner */ + + result = get_line_column_content_from_index(&line->columns[coord->column], coord->index); + + return result; + +} + + /****************************************************************************** * * * Paramètres : line = ligne à venir consulter. * @@ -1610,7 +1034,7 @@ gint g_buffer_line_compute_max_width(const GBufferLine *line, BufferLineColumn i * * ******************************************************************************/ -static bool g_buffer_line_get_coord_at(const GBufferLine *line, const line_width_summary *summary, const bool *display, gint *base, gint *offset, GdkScrollDirection dir, bool force, col_coord_t *coord) +bool g_buffer_line_get_coord_at(const GBufferLine *line, const line_width_summary *summary, const bool *display, gint *base, gint *offset, GdkScrollDirection dir, bool force, col_coord_t *coord) { bool result; /* Bilan à retourner */ BufferLineColumn last; /* Dernière colonne remplie */ @@ -1687,7 +1111,7 @@ static bool g_buffer_line_get_coord_at(const GBufferLine *line, const line_width */ if (*offset < 0) *offset = 0; - result = get_column_content_index_at(&line->columns[i], offset, dir, &consumed, &coord->index); + result = get_line_column_content_index_at(&line->columns[i], offset, dir, &consumed, &coord->index); if (result) { @@ -1720,7 +1144,7 @@ static bool g_buffer_line_get_coord_at(const GBufferLine *line, const line_width else *base += get_column_width(&line->columns[i - 1]); - result = get_column_first_content_index(&line->columns[i], &coord->index); + result = get_line_column_first_content_index(&line->columns[i], &coord->index); if (result) coord->column = i; @@ -1747,7 +1171,7 @@ static bool g_buffer_line_get_coord_at(const GBufferLine *line, const line_width if (last != BLC_COUNT) { - result = get_column_last_content_index(&line->columns[last], &coord->index); + result = get_line_column_last_content_index(&line->columns[last], &coord->index); if (result) { @@ -1791,16 +1215,16 @@ static bool g_buffer_line_get_coord_at(const GBufferLine *line, const line_width * * ******************************************************************************/ -GBufferSegment *g_buffer_line_get_segment_at(const GBufferLine *line, const line_width_summary *summary, const bool *display, gint *base, gint *offset, GdkScrollDirection dir, bool force) +const line_segment *g_buffer_line_get_segment_at(const GBufferLine *line, const line_width_summary *summary, const bool *display, gint *base, gint *offset, GdkScrollDirection dir, bool force) { - GBufferSegment *result; /* Trouvaille à retourner */ + const line_segment *result; /* Trouvaille à retourner */ col_coord_t coord; /* Emplacement du contenu visé */ bool status; /* Bilan de la localisation */ status = g_buffer_line_get_coord_at(line, summary, display, base, offset, dir, force, &coord); if (status) - result = get_column_content_from_index(&line->columns[coord.column], coord.index); + result = g_buffer_line_get_segment_from_coord(line, &coord); return result; @@ -1861,43 +1285,40 @@ GObject *g_buffer_line_get_creator_at(const GBufferLine *line, const line_width_ /****************************************************************************** * * * Paramètres : line = ligne à venir consulter. * -* target = segment dont un voisin est à retourner. * +* coord = cordonnées à consulter puis renseigner. [OUT] * * summary = résumé des largeurs maximales. * * display = règles d'affichage des colonnes modulables. * * dir = orientation des recherches. * * offset = décalage pour amener à l'extrémité nouvelle. [OUT] * * * -* Description : Fournit le segment voisin d'un autre segment identifié. * +* Description : Fournit des coordonnées voisines selon une direction donnée. * * * -* Retour : Segment trouvé dans la ligne ou NULL. * +* Retour : true si des coordonnées valides ont été renseignées. * * * * Remarques : - * * * ******************************************************************************/ -GBufferSegment *g_buffer_line_find_near_segment(const GBufferLine *line, GBufferSegment *target, const line_width_summary *summary, const bool *display, GdkScrollDirection dir, gint *offset) +bool g_buffer_line_find_near_coord(const GBufferLine *line, col_coord_t *coord, const line_width_summary *summary, const bool *display, GdkScrollDirection dir, gint *offset) { - GBufferSegment *result; /* Trouvaille à retourner */ + bool result; /* Bilan à retourner */ BufferLineColumn i; /* Boucle de parcours #1 */ bool displayed; /* Confort de lecture */ BufferLineColumn k; /* Boucle de parcours #2 */ - result = NULL; + result = false; /* Recherche dans la colonne de départ */ - for (i = 0; i < BLC_COUNT; i++) - if (column_has_segment(&line->columns[i], target, NULL)) - break; + i = coord->column; - if (i == BLC_COUNT) return NULL; + if (i == BLC_COUNT) return false; - result = find_near_segment(&line->columns[i], target, dir); - if (result != NULL) return result; + result = find_near_segment(&line->columns[i], &coord->index, dir); /* Recherche dans la direction des colonnes voisines */ - if (result == NULL) + if (!result) switch (dir) { case GDK_SCROLL_LEFT: @@ -1906,12 +1327,18 @@ GBufferSegment *g_buffer_line_find_near_segment(const GBufferLine *line, GBuffer if (i == 0) break; /* On s'assure que la colonne précédente est visible et peuplée */ - for (; i > BLC_FIRST && result == NULL; i--) + for (; i > BLC_FIRST && !result; i--) { displayed = (i <= BLC_DISPLAY ? display[i - 1] : true); if (displayed) - result = get_last_segment(&line->columns[i - 1]); + { + result = get_line_column_first_content_index(&line->columns[i - 1], &coord->index); + + if (result) + coord->column = i - 1; + + } } @@ -1919,16 +1346,19 @@ GBufferSegment *g_buffer_line_find_near_segment(const GBufferLine *line, GBuffer case GDK_SCROLL_RIGHT: - /* Si on a atteint la dernière colonne sans trouver... */ - /*if (i == BLC_COUNT) break;*/ - /* On s'assure que la colonne suivante est visible et peuplée */ - for (; (i + 1) < BLC_COUNT && result == NULL; i++) + for (; (i + 1) < BLC_COUNT && !result; i++) { displayed = ((i + 1) < BLC_DISPLAY ? display[i + 1] : true); if (displayed) - result = get_first_segment(&line->columns[i + 1]); + { + result = get_line_column_first_content_index(&line->columns[i + 1], &coord->index); + + if (result) + coord->column = i + 1; + + } } @@ -1941,7 +1371,7 @@ GBufferSegment *g_buffer_line_find_near_segment(const GBufferLine *line, GBuffer /* Calcul de la position finale */ - if (result != NULL) + if (result) { *offset = 0; @@ -2033,7 +1463,7 @@ void g_buffer_line_draw(GBufferLine *line, cairo_t *cairo, const line_width_summ { if (i < BLC_DISPLAY && !display[i]) continue; - draw_segments_of_column(&line->columns[i], cairo, x, y, list); + draw_line_column_segments(&line->columns[i], cairo, x, y, list); if (i < line->merge_start) { diff --git a/src/glibext/gbufferline.h b/src/glibext/gbufferline.h index 9403d80..b5d70b2 100644 --- a/src/glibext/gbufferline.h +++ b/src/glibext/gbufferline.h @@ -29,7 +29,7 @@ #include <stdbool.h> -#include "gbuffersegment.h" +#include "linesegment.h" #include "../analysis/content.h" #include "../arch/archbase.h" #include "../arch/vmpa.h" @@ -117,15 +117,12 @@ void g_buffer_line_fill_for_instr(GBufferLine *, MemoryDataSize, MemoryDataSize, /* Recherche le premier créateur enregistré dans des segments. */ GObject *g_buffer_line_find_first_segment_creator(const GBufferLine *, BufferLineColumn); -/* Fournit le segment créé par un objet particulier. */ -GBufferSegment *g_buffer_line_find_segment_from_creator(const GBufferLine *, GObject *); - -/* Ajoute du texte à formater dans une ligne donnée. */ -GBufferSegment *g_buffer_line_insert_text(GBufferLine *, BufferLineColumn, const char *, size_t, RenderingTagType) __attribute__ ((deprecated)); - /* Ajoute du texte à formater dans une ligne donnée. */ void g_buffer_line_append_text(GBufferLine *, BufferLineColumn, const char *, size_t, RenderingTagType, GObject *); +/* Remplace du texte dans une ligne donnée. */ +bool g_buffer_line_replace_text(GBufferLine *, const GObject *, const char *, size_t); + /* Indique si du texte est présent dans une ligne de tampon. */ bool g_buffer_line_has_text(const GBufferLine *, BufferLineColumn, BufferLineColumn); @@ -177,6 +174,14 @@ typedef struct _line_width_summary } line_width_summary; +/* Identification d'un contenu de colonne */ +typedef struct _col_coord_t +{ + BufferLineColumn column; /* Colonne concernée */ + size_t index; /* Indice d'insertion */ + +} col_coord_t; + /* Fait remonter les largeurs requises par une ligne donnée. */ void g_buffer_line_collect_widths(GBufferLine *, line_width_summary *); @@ -184,14 +189,20 @@ void g_buffer_line_collect_widths(GBufferLine *, line_width_summary *); /* Fournit la largeur d'une colonne finalement appliquée. */ gint g_buffer_line_compute_max_width(const GBufferLine *, BufferLineColumn, const line_width_summary *); +/* Fournit le segment présent à une position donnée. */ +const line_segment *g_buffer_line_get_segment_from_coord(const GBufferLine *, const col_coord_t *); + +/* Fournit les coordonnées correspondant à une abscisse donnée. */ +bool g_buffer_line_get_coord_at(const GBufferLine *, const line_width_summary *, const bool *, gint *, gint *, GdkScrollDirection, bool, col_coord_t *); + /* Donne le segment présent à une abscisse donnée. */ -GBufferSegment *g_buffer_line_get_segment_at(const GBufferLine *, const line_width_summary *, const bool *, gint *, gint *, GdkScrollDirection, bool); +const line_segment *g_buffer_line_get_segment_at(const GBufferLine *, const line_width_summary *, const bool *, gint *, gint *, GdkScrollDirection, bool); /* Donne le créateur présent à une abscisse donnée. */ GObject *g_buffer_line_get_creator_at(const GBufferLine *, const line_width_summary *, const bool *, gint *, gint *, GdkScrollDirection, bool); -/* Fournit le segment voisin d'un autre segment identifié. */ -GBufferSegment *g_buffer_line_find_near_segment(const GBufferLine *, GBufferSegment *, const line_width_summary *, const bool *, GdkScrollDirection, gint *); +/* Fournit des coordonnées voisines selon une direction donnée. */ +bool g_buffer_line_find_near_coord(const GBufferLine *, col_coord_t *, const line_width_summary *, const bool *, GdkScrollDirection, gint *); /* Imprime la ligne de texte représentée. */ void g_buffer_line_draw(GBufferLine *, cairo_t *, const line_width_summary *, gint, gint, const bool *, const segcnt_list *); diff --git a/src/glibext/gbufferview.c b/src/glibext/gbufferview.c index 2deeffe..9f17e24 100644 --- a/src/glibext/gbufferview.c +++ b/src/glibext/gbufferview.c @@ -84,7 +84,7 @@ static void g_buffer_view_finalize(GBufferView *); static void on_buffer_size_changed(const GCodeBuffer *, bool, size_t, size_t, GBufferView *); /* Réagit à un changement de contenu d'une ligne donnée. */ -static void on_buffer_line_changed(GCodeBuffer *, GBufferLine *, GBufferSegment *, GBufferView *); +static void on_buffer_line_changed(GCodeBuffer *, GBufferLine *, line_segment *, GBufferView *); /* Déplace le curseur au sein d'une vue de tampon. */ static bool _g_buffer_view_move_caret(GBufferView *, const GBufferLine *, size_t, GdkRectangle *, bool, GdkScrollDirection, const bool *); @@ -362,7 +362,7 @@ static void on_buffer_size_changed(const GCodeBuffer *buffer, bool added, size_t * * ******************************************************************************/ -static void on_buffer_line_changed(GCodeBuffer *buffer, GBufferLine *line, GBufferSegment *segment, GBufferView *view) +static void on_buffer_line_changed(GCodeBuffer *buffer, GBufferLine *line, line_segment *segment, GBufferView *view) { const vmpa2t *addr; /* Localisation de ligne */ @@ -588,31 +588,22 @@ const vmpa2t *g_buffer_view_compute_caret(GBufferView *view, gint x, gint y, con gint remaining; /* Copie de travail modifiable */ size_t index; /* Indice de ligne de tampon */ GBufferLine *line; /* Ligne à la position courante*/ - GBufferSegment *segment; /* Segment présent sur la place*/ + const line_segment *segment; /* Segment présent sur la place*/ GBufferViewClass *class; /* Classe pour les vues */ remaining = x; line = g_buffer_view_find_line_and_segment_at(view, &remaining, y, &index, display, &segment); + /* FIXME : unref() ! */ if (line == NULL) return NULL; if (segment == NULL) printf(" -- no segment\n"); if (segment == NULL) return NULL; - - - - printf("\n[BASE] orig = %d tronc = %d reste = %d dernier = %d largeur = %d\n", - x, x - remaining, remaining, g_buffer_segment_get_caret_position(segment, remaining), - g_buffer_segment_get_width(segment)); - - printf(" '%s'\n", g_buffer_segment_get_text(segment, false)); - - class = G_BUFFER_VIEW_GET_CLASS(view); - caret->x = /*view->left_text +*/ (x - remaining) + g_buffer_segment_get_caret_position(segment, remaining); + caret->x = /*view->left_text +*/ (x - remaining) + get_caret_position_from_line_segment(segment, remaining); caret->y = (index - view->first) * class->line_height; @@ -647,10 +638,7 @@ const vmpa2t *g_buffer_view_compute_caret_full(GBufferView *view, GBufferLine *l gint offset; /* Point de travail modifiable */ line_width_summary summary; /* Résumé concis des largeurs */ gint base; /* Position absolue de segment */ - GBufferSegment *segment; /* Segment visé par le pointeur*/ - - - + bool status; /* Bilan de la localisation */ class = G_BUFFER_VIEW_GET_CLASS(view); @@ -661,13 +649,13 @@ const vmpa2t *g_buffer_view_compute_caret_full(GBufferView *view, GBufferLine *l g_width_tracker_get_local_width_summary(view->tracker, index, &summary); - segment = g_buffer_line_get_segment_at(line, &summary, display, &base, &offset, GDK_SCROLL_LEFT, true); - if (segment == NULL) return NULL; + /* Traitement pour mise à jour de l'abscisse uniquement */ + status = g_buffer_line_get_coord_at(line, &summary, display, &base, &offset, + GDK_SCROLL_LEFT, true, (col_coord_t []) { { 0 } }); + if (!status) return NULL; caret->x = class->left_text + base + offset; - printf("caret Y : %zu -> %zu\n", view->first, index); - caret->y = (index - view->first) * class->line_height; caret->width = 2; @@ -702,9 +690,8 @@ static bool _g_buffer_view_move_caret(GBufferView *view, const GBufferLine *line gint offset; /* Point de travail modifiable */ line_width_summary summary; /* Résumé concis des largeurs */ gint base; /* Position absolue de segment */ - GBufferSegment *segment; /* Segment visé par le pointeur*/ - - + col_coord_t coord; /* Coordonnées en interne */ + const line_segment *segment; /* Bribe de texte trouvée */ offset = caret->x; @@ -713,64 +700,29 @@ static bool _g_buffer_view_move_caret(GBufferView *view, const GBufferLine *line g_width_tracker_get_local_width_summary(view->tracker, index, &summary); - segment = g_buffer_line_get_segment_at(line, &summary, display, &base, &offset, dir, false); - - if (segment == NULL) printf(" ===== NO SEG...\n"); - - if (segment == NULL) return false; - - - printf(" ====== FIRST SEG :: %p ('%s')\n", segment, g_buffer_segment_get_text(segment, false)); - - - + /* Déplacement au sein du segment courant ? */ + result = g_buffer_line_get_coord_at(line, &summary, display, &base, &offset, dir, false, &coord); + if (result) + { + segment = g_buffer_line_get_segment_from_coord(line, &coord); - //if (dir == GDK_SCROLL_LEFT || dir == GDK_SCROLL_RIGHT) - result = g_buffer_segment_move_caret(segment, &offset, ctrl, dir); - //else - //result = true; + result = move_caret_on_line_segment(segment, &offset, ctrl, dir); - printf(" ====== MOVE 1 ? %d\n", result); + } - /////////////////// + /* Tentative de déplacement chez le segment voisin ? */ if (!result) { base = 0; - segment = g_buffer_line_find_near_segment(line, segment, &summary, display, dir, &offset); - - - printf(" ====== NEAR SEG :: %p ('%s')\n", segment, segment ? g_buffer_segment_get_text(segment, false) : NULL); - - if (segment != NULL) - { - - result = true; - //result = g_buffer_segment_move_caret(segment, &offset, ctrl, dir); - - /* - if (result) - caret->x -= COL_MARGIN; - */ - - printf(" ====== MOVE 2 ? %d (offset=%d)\n", result, offset); - - - } - + result = g_buffer_line_find_near_coord(line, &coord, &summary, display, dir, &offset); } - - if (result) - printf(" ====== NEW CARET: %d -> %d\n", caret->x, G_BUFFER_VIEW_GET_CLASS(view)->left_text + base + offset); - else - printf(" ====== NO NEW CARET!\n"); - - + /* Mise à jour éventuelle */ if (result) caret->x = G_BUFFER_VIEW_GET_CLASS(view)->left_text + base + offset; @@ -804,7 +756,6 @@ const vmpa2t *g_buffer_view_move_caret(GBufferView *view, GdkRectangle *caret, b line_width_summary summary; /* Résumé concis des largeurs */ - bool computed; /* Récursivité pris en compte */ gint left_pos; /* Retour à la ligne */ gint right_pos; /* Position d'extrème droite */ BufferLineColumn i; /* Boucle de parcours */ @@ -833,8 +784,6 @@ const vmpa2t *g_buffer_view_move_caret(GBufferView *view, GdkRectangle *caret, b g_width_tracker_get_local_width_summary(view->tracker, index, &summary); - computed = false; - switch (dir) { case GDK_SCROLL_UP: @@ -933,17 +882,6 @@ BufferLineColumn g_buffer_line_get_merge_start(const GBufferLine *line) } - /* - printf(" --- CARET --- moved = %d index = %d result = %p\n", - moved, index, result); - */ - - - /* - if (result && !computed) - result = g_buffer_view_compute_caret_full(view, caret->x, caret->y, caret, display, NULL); - */ - return result; } @@ -990,7 +928,7 @@ bool g_buffer_view_unhighlight_segments(GBufferView *view) bool g_buffer_view_highlight_segments(GBufferView *view, gint x, gint y, const bool *display) { bool need_redraw; /* Besoin d'actualisation ? */ - GBufferSegment *segment; /* Segment sélectionnable */ + const line_segment *segment; /* Segment sélectionnable */ if (view->highlighted != NULL) need_redraw = g_buffer_view_unhighlight_segments(view); @@ -1199,6 +1137,8 @@ GBufferLine *g_buffer_view_find_line_at(GBufferView *view, gint y, size_t *idx) if (index <= view->last) result = g_code_buffer_find_line_by_index(view->buffer, index); + else + result = NULL; if (result != NULL && idx != NULL) *idx = index; @@ -1225,7 +1165,7 @@ GBufferLine *g_buffer_view_find_line_at(GBufferView *view, gint y, size_t *idx) * * ******************************************************************************/ -GBufferLine *g_buffer_view_find_line_and_segment_at(GBufferView *view, gint *x, gint y, size_t *idx, const bool *display, GBufferSegment **segment) +GBufferLine *g_buffer_view_find_line_and_segment_at(GBufferView *view, gint *x, gint y, size_t *idx, const bool *display, const line_segment **segment) { GBufferLine *result; /* Ligne trouvée à retourner */ size_t index; /* Indice de la ligne trouvée */ diff --git a/src/glibext/gbufferview.h b/src/glibext/gbufferview.h index d5bfd3d..6f7aff4 100644 --- a/src/glibext/gbufferview.h +++ b/src/glibext/gbufferview.h @@ -102,7 +102,7 @@ GBufferLine *g_buffer_view_find_line_by_index(const GBufferView *, size_t ); GBufferLine *g_buffer_view_find_line_at(GBufferView *, gint, size_t *); /* Fournit la ligne et son segment présents à une position. */ -GBufferLine *g_buffer_view_find_line_and_segment_at(GBufferView *, gint *, gint, size_t *, const bool *, GBufferSegment **); +GBufferLine *g_buffer_view_find_line_and_segment_at(GBufferView *, gint *, gint, size_t *, const bool *, const line_segment **); /* Fournit la ligne et son segment présents à une position. */ GBufferLine *g_buffer_view_find_line_and_creator_at(GBufferView *, gint *, gint, size_t *, const bool *, GObject **); diff --git a/src/glibext/gcodebuffer.c b/src/glibext/gcodebuffer.c index 9961cbc..f73a6f9 100644 --- a/src/glibext/gcodebuffer.c +++ b/src/glibext/gcodebuffer.c @@ -136,7 +136,7 @@ struct _GCodeBufferClass /* Signaux */ - void (* line_changed) (GCodeBuffer *, GBufferLine *, GBufferSegment *); + void (* line_changed) (GCodeBuffer *, GBufferLine *, line_segment *); }; @@ -152,7 +152,7 @@ static void g_code_buffer_class_init(GCodeBufferClass *); static void g_code_buffer_init(GCodeBuffer *); /* Réagit à un changement de contenu d'une ligne donnée. */ -static void on_line_content_change(GBufferLine *, GBufferSegment *, GCodeBuffer *); +static void on_line_content_change(GBufferLine *, line_segment *, GCodeBuffer *); /* Réagit à un changement de propriété rattachée à une ligne. */ static void on_line_flag_flip(GBufferLine *, BufferLineFlags, BufferLineFlags, GCodeBuffer *); @@ -529,7 +529,7 @@ GBufferLine *g_code_buffer_prepare_new_line(GCodeBuffer *buffer, const mrange_t result = g_buffer_line_new(range, buffer->main_column); for (i = 0; i < buffer->indent; i++) - g_buffer_line_insert_text(result, BLC_ASSEMBLY_HEAD, " ", 4, RTT_RAW); + g_buffer_line_append_text(result, BLC_ASSEMBLY_HEAD, " ", 4, RTT_RAW, NULL); return result; @@ -550,7 +550,7 @@ GBufferLine *g_code_buffer_prepare_new_line(GCodeBuffer *buffer, const mrange_t * * ******************************************************************************/ -static void on_line_content_change(GBufferLine *line, GBufferSegment *segment, GCodeBuffer *buffer) +static void on_line_content_change(GBufferLine *line, line_segment *segment, GCodeBuffer *buffer) { g_signal_emit_by_name(buffer, "line-changed", line, segment); diff --git a/src/glibext/linecolumn.c b/src/glibext/linecolumn.c new file mode 100644 index 0000000..22c1e44 --- /dev/null +++ b/src/glibext/linecolumn.c @@ -0,0 +1,480 @@ + +/* Chrysalide - Outil d'analyse de fichiers binaires + * linecolumn.h - prototypes pour le regroupement des segments de texte par colonnes + * + * Copyright (C) 2016 Cyrille Bagard + * + * This file is part of Chrysalide. + * + * 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 "linecolumn.h" + + +#include <assert.h> +#include <malloc.h> + + + +/****************************************************************************** +* * +* Paramètres : column = colonne de ligne à initialiser. * +* * +* Description : Initialise une colonne de ligne. * +* * +* Retour : - * +* * +* Remarques : - * +* * +******************************************************************************/ + +void init_line_column(line_column *column) +{ + column->segments = NULL; + column->count = 0; + + column->max_width = 0; + +} + + +/****************************************************************************** +* * +* Paramètres : column = colonne de ligne à mettre à jour. * +* * +* Description : Réinitialise une colonne de ligne. * +* * +* Retour : - * +* * +* Remarques : - * +* * +******************************************************************************/ + +void reset_line_column(line_column *column) +{ + size_t i; /* Boucle de parcours */ + + for (i = 0; i < column->count; i++) + release_line_segment(column->segments[i]); + + if (column->segments != NULL) + { + free(column->segments); + column->segments = NULL; + } + + column->count = 0; + + column->max_width = 0; + +} + + +/****************************************************************************** +* * +* Paramètres : column = colonne de ligne à mettre à jour. * +* * +* Description : Recalcule la largeur d'une colonne de segments. * +* * +* Retour : - * +* * +* Remarques : - * +* * +******************************************************************************/ + +void refresh_line_column_width(line_column *column) +{ + size_t i; /* Boucle de parcours */ + + column->max_width = 0; + + for (i = 0; i < column->count; i++) + column->max_width += get_line_segment_width(column->segments[i]); + +} + + +/****************************************************************************** +* * +* Paramètres : column = colonne de ligne à consulter. * +* * +* Description : Fournit la quantité de pixels requise pour l'impression. * +* * +* Retour : Largeur requise par la colonne, en pixel. * +* * +* Remarques : - * +* * +******************************************************************************/ + +gint get_column_width(const line_column *column) +{ + return column->max_width; + +} + + +/****************************************************************************** +* * +* Paramètres : column = colonne de ligne à venir compléter. * +* text = texte à insérer dans l'existant. * +* length = taille du texte à traiter. * +* type = type de décorateur à utiliser. * +* * +* Description : Ajoute un fragment de texte à une colonne de ligne. * +* * +* Retour : Indice du point d'insertion. * +* * +* Remarques : - * +* * +******************************************************************************/ + +size_t append_text_to_line_column(line_column *column, const char *text, size_t length, RenderingTagType type) +{ + size_t result; /* Indice à retourner */ + line_segment *segment; /* Contenu à représenter */ + + result = column->count; + + segment = get_new_line_segment(type, text, length); + + column->segments = (line_segment **)realloc(column->segments, ++column->count * sizeof(line_segment *)); + + column->segments[result] = segment; + + column->max_width += get_line_segment_width(segment); + + return result; + +} + + +/****************************************************************************** +* * +* Paramètres : column = colonne de ligne à venir compléter. * +* index = indice du frament de texte à remplacer. * +* text = texte à insérer dans l'existant. * +* length = taille du texte à traiter. * +* * +* Description : Remplace un fragment de texte dans une colonne de ligne. * +* * +* Retour : - * +* * +* Remarques : - * +* * +******************************************************************************/ + +void replace_text_in_line_column(line_column *column, size_t index, const char *text, size_t length) +{ + RenderingTagType type; /* Type de rendu à conserver */ + line_segment *segment; /* Contenu à représenter */ + + assert(index < column->count); + + /* Retrait */ + + segment = column->segments[index]; + + type = get_line_segment_type(segment); + + release_line_segment(segment); + + /* Ajout */ + + segment = get_new_line_segment(type, text, length); + + column->segments[index] = segment; + + refresh_line_column_width(column); + +} + + +/****************************************************************************** +* * +* Paramètres : column = colonne de ligne de texte à consulter. * +* index = indice du contenu enregistré à la position. [OUT] * +* * +* Description : Indique l'indice du premier contenu de la colonne. * +* * +* Retour : Validité de l'indice renseigné. * +* * +* Remarques : - * +* * +******************************************************************************/ + +bool get_line_column_first_content_index(const line_column *column, size_t *index) +{ + bool result; /* Bilan à retourner */ + + result = (column->count > 0); + + if (result) + *index = 0; + + return result; + +} + + +/****************************************************************************** +* * +* Paramètres : column = colonne de ligne de texte à consulter. * +* index = indice du contenu enregistré à la position. [OUT] * +* * +* Description : Indique l'indice du dernier contenu de la colonne. * +* * +* Retour : Validité de l'indice renseigné. * +* * +* Remarques : - * +* * +******************************************************************************/ + +bool get_line_column_last_content_index(const line_column *column, size_t *index) +{ + bool result; /* Bilan à retourner */ + + result = (column->count > 0); + + if (result) + *index = column->count - 1; + + return result; + +} + + +/****************************************************************************** +* * +* Paramètres : column = colonne de ligne de texte à consulter. * +* index = indice à consulter puis renseigner. [OUT] * +* dir = orientation des recherches. * +* * +* Description : Fournit le segment voisin d'un autre segment identifié. * +* * +* Retour : Validité de l'indice renseigné. * +* * +* Remarques : - * +* * +******************************************************************************/ + +bool find_near_segment(const line_column *column, size_t *index, GdkScrollDirection dir) +{ + bool result; /* Bilan à faire remonter */ + + result = false; + + switch (dir) + { + case GDK_SCROLL_LEFT: + if (*index > 0) + { + (*index)--; + result = true; + } + break; + + case GDK_SCROLL_RIGHT: + if ((*index + 1) < column->count) + { + (*index)++; + result = true; + } + break; + + default: + break; + + } + + return result; + +} + + +/****************************************************************************** +* * +* Paramètres : column = colonne de ligne de texte à consulter. * +* x = position de recherche, puis position locale. [OUT]* +* dir = direction d'un éventuel déplacement en cours. * +* consumed = distance pour arriver à la base du segment. [OUT] * +* index = indice du contenu enregistré à la position. [OUT] * +* * +* Description : Indique l'indice du contenu de colonne à une abscisse donnée.* +* * +* Retour : Validité de l'indice renseigné. * +* * +* Remarques : - * +* * +******************************************************************************/ + +bool get_line_column_content_index_at(const line_column *column, gint *x, GdkScrollDirection dir, gint *consumed, size_t *index) +{ + bool result; /* Bilan à retourner */ + size_t i; /* Boucle de parcours */ + gint width; /* Largeur à retirer */ + bool included; /* Appartenance à une largeur ?*/ + + result = false; + *consumed = 0; + + for (i = 0; i < column->count && !result; i++) + { + width = get_line_segment_width(column->segments[i]); + + /** + * Soit une limite entre deux segments A et B : + * + * - dans le cas d'un déplacement vers la gauche, on part de cette limite + * pour progresser à l'intérieur de A. Donc la limite fait partie de A. + * + * - dans le cas d'un déplacement vers la droite, on part de cette limite + * pour progresser à l'intérieur de B. Donc la limite ne fait pas partie de A. + */ + if (dir == GDK_SCROLL_LEFT) included = (width >= *x); + else included = (width > *x); + + if (included) + { + *index = i; + result = true; + } + + else if ((i + 1) == column->count) + { + *index = i; + result = true; + *x = width; + } + + else + { + *x -= width; + *consumed += width; + } + + } + + return result; + +} + + +/****************************************************************************** +* * +* Paramètres : column = colonne de ligne de texte à consulter. * +* index = indice du contenu à fournir. * +* * +* Description : Donne le segment d'une colonne présent à un indice donné. * +* * +* Retour : Segment trouvé ou NULL si hors borne. * +* * +* Remarques : - * +* * +******************************************************************************/ + +line_segment *get_line_column_content_from_index(const line_column *column, size_t index) +{ + line_segment *result; /* Trouvaille à retourner */ + + assert(index < column->count); + + result = column->segments[index]; + + return result; + +} + + +/****************************************************************************** +* * +* Paramètres : column = colonne de ligne de texte à manipuler. * +* cairo = contexte graphique à utiliser pour les pinceaux. * +* x_init = abscisse du point d'impression de départ. * +* y = ordonnée du point d'impression. * +* list = liste de contenus à mettre en évidence. * +* * +* Description : Imprime le contenu d'une colonne de ligne de texte. * +* * +* Retour : - * +* * +* Remarques : - * +* * +******************************************************************************/ + +void draw_line_column_segments(const line_column *column, cairo_t *cairo, gint x_init, gint y, const segcnt_list *list) +{ + gint x; /* Abscisse d'impression */ + size_t i; /* Boucle de parcours */ + + x = x_init; + + for (i = 0; i < column->count; i++) + draw_line_segment(column->segments[i], cairo, &x, y, list); + +} + + +/****************************************************************************** +* * +* Paramètres : column = colonne de ligne de texte à manipuler. * +* ctx = éléments à disposition pour l'exportation. * +* type = type d'exportation attendue. * +* span = fusion de colonnes au sein des cellules ? * +* * +* Description : Exporte la ligne de texte représentée. * +* * +* Retour : - * +* * +* Remarques : - * +* * +******************************************************************************/ + +void export_line_column_segments(const line_column *column, buffer_export_context *ctx, BufferExportType type, int span) +{ + size_t i; /* Boucle de parcours */ + + switch (type) + { + case BET_HTML: + switch (span) + { + case 0: + break; + case 1: + dprintf(ctx->fd, "\t\t<TD>"); + break; + default: + if (span > 0) dprintf(ctx->fd, "\t\t<TD colspan=\"%d\">", span); + break; + } + break; + default: + break; + } + + for (i = 0; i < column->count; i++) + export_line_segment(column->segments[i], ctx, type); + + switch (type) + { + case BET_HTML: + if (span < 0 || span == 1) dprintf(ctx->fd, "</TD>\n"); + break; + default: + break; + } + +} diff --git a/src/glibext/linecolumn.h b/src/glibext/linecolumn.h new file mode 100644 index 0000000..849c076 --- /dev/null +++ b/src/glibext/linecolumn.h @@ -0,0 +1,93 @@ + +/* Chrysalide - Outil d'analyse de fichiers binaires + * linecolumn.h - prototypes pour le regroupement des segments de texte par colonnes + * + * Copyright (C) 2016 Cyrille Bagard + * + * This file is part of Chrysalide. + * + * 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 _GLIBEXT_LINECOLUMN_H +#define _GLIBEXT_LINECOLUMN_H + + +#include <stdbool.h> +#include <glib-object.h> +#include <gdk/gdk.h> + + +#include "linesegment.h" + + + +/* Informations sur le contenu d'une colonne */ +typedef struct _line_column line_column; + + +/* Informations sur le contenu d'une colonne */ +struct _line_column +{ + line_segment **segments; /* Liste des segments contenus */ + size_t count; /* Taille de cette liste */ + + int max_width; /* Largeur max. de l'espace */ + +}; + + +/* Initialise une colonne de ligne. */ +void init_line_column(line_column *); + +/* Réinitialise une colonne de ligne. */ +void reset_line_column(line_column *); + +/* Recalcule la largeur d'une colonne de segments. */ +void refresh_line_column_width(line_column *); + +/* Fournit la quantité de pixels requise pour l'impression. */ +gint get_column_width(const line_column *); + +/* Ajoute un fragment de texte à une colonne de ligne. */ +size_t append_text_to_line_column(line_column *, const char *, size_t, RenderingTagType); + +/* Remplace un fragment de texte dans une colonne de ligne. */ +void replace_text_in_line_column(line_column *, size_t, const char *, size_t); + +/* Indique l'indice du premier contenu de la colonne. */ +bool get_line_column_first_content_index(const line_column *, size_t *); + +/* Indique l'indice du dernier contenu de la colonne. */ +bool get_line_column_last_content_index(const line_column *, size_t *); + +/* Fournit le segment voisin d'un autre segment identifié. */ +bool find_near_segment(const line_column *, size_t *, GdkScrollDirection); + +/* Indique l'indice du contenu de colonne à une abscisse donnée. */ +bool get_line_column_content_index_at(const line_column *, gint *, GdkScrollDirection, gint *, size_t *); + +/* Donne le segment d'une colonne présent à un indice donné. */ +line_segment *get_line_column_content_from_index(const line_column *, size_t); + +/* Imprime le contenu d'une colonne de ligne de texte. */ +void draw_line_column_segments(const line_column *, cairo_t *, gint, gint, const segcnt_list *); + +/* Exporte la ligne de texte représentée. */ +void export_line_column_segments(const line_column *, buffer_export_context *, BufferExportType, int); + + + +#endif /* _GLIBEXT_LINECOLUMN_H */ diff --git a/src/glibext/gbuffersegment.c b/src/glibext/linesegment.c index dfa8c41..e233b00 100644 --- a/src/glibext/gbuffersegment.c +++ b/src/glibext/linesegment.c @@ -1,6 +1,6 @@ /* Chrysalide - Outil d'analyse de fichiers binaires - * gbuffersegment.c - concentration d'un fragment de caractères aux propriétés communes + * linesegment.c - concentration d'un fragment de caractères aux propriétés communes * * Copyright (C) 2010-2014 Cyrille Bagard * @@ -21,7 +21,7 @@ */ -#include "gbuffersegment.h" +#include "linesegment.h" #include <assert.h> @@ -34,65 +34,11 @@ #include "../common/extstr.h" #include "../common/fnv1a.h" -#include "../gtkext/gtkblockview.h" #include "../gtkext/support.h" -/* ----------------------- ISOLATION DE CONTENUS PARTAGEABLES ----------------------- */ - - -/* Propriétés de rendu */ - -typedef struct _rendering_color_t -{ - GdkRGBA color; /* Couleur de rendu */ - bool has_color; /* Définition en place ? */ - -} rendering_color_t; - -typedef struct _rendering_pattern_t -{ - rendering_color_t foreground; /* Couleur d'impression */ - rendering_color_t inverted; /* Couleur inversée pour sél. */ - - cairo_font_slant_t slant; /* Style d'impression */ - cairo_font_weight_t weight; /* Poids de la police */ - -} rendering_pattern_t; - -/* Contenu brut pour segment, potentiellement commun */ -typedef struct _seg_content -{ - unsigned int ref_count; /* Compteur de références */ - - rendering_pattern_t *pattern; /* Propriétés du rendu */ - - fnv64_t hash; /* Empreinte pour comparaisons */ - char text[0]; /* Texte brut conservé */ - -} seg_content; - - -/* Conservation de toutes les créations partagées */ -static GHashTable *_segcnt_htable; - - -/* Fournit l'empreinte d'un contenu pour segments. */ -static guint get_seg_content_hash(const seg_content *); - -/* Détermine si deux contenus pour segments sont identiques. */ -static bool is_seg_content_equal(const seg_content *, const seg_content *); - -/* Détermine si deux contenus pour segments sont identiques. */ -static seg_content *get_shared_content(const seg_content *); - -/* Abandonne un contenu pour segments. */ -static void release_shared_content(seg_content *); - - - -/* -------------------- NATURE DE BASE POUR UN FRAGMENT DE TEXTE -------------------- */ +/* ------------------------ NATURE POUR UN FRAGMENT DE TEXTE ------------------------ */ /* Nom des éléments CSS */ @@ -134,272 +80,99 @@ static const char *_segment_names[RTT_COUNT] = { #define CAIRO_FONTS_COUNT (CAIRO_FONT_SLANT_COUNT * CAIRO_FONT_WEIGHT_COUNT) #define CAIRO_FONT_INDEX(s, w) ((s) + (w) * CAIRO_FONT_WEIGHT_COUNT) -/* Fragment de caractères aux propriétés communes (instance) */ -struct _GBufferSegment -{ - GObject parent; /* A laisser en premier */ - - seg_content *content; /* Contenu, partagé ou non */ - -}; - -/* Fragment de caractères aux propriétés communes (classe) */ -struct _GBufferSegmentClass -{ - GObjectClass parent; /* A laisser en premier */ - - rendering_color_t selection_bg; /* Fond d'impression */ - - cairo_t *font_ctxts[CAIRO_FONTS_COUNT]; /* Contextes de police */ - double x_advances[CAIRO_FONTS_COUNT]; /* Largeurs par caractère */ - rendering_pattern_t patterns[RTT_COUNT];/* Modèles d'impression */ - - /* Signaux */ - - void (* content_changed) (GBufferSegment *); - -}; - - -/* Procède à l'initialisation d'une classe de fragment de texte. */ -static void g_buffer_segment_class_init(GBufferSegmentClass *); - -/* Procède à l'initialisation d'un fragment de texte. */ -static void g_buffer_segment_init(GBufferSegment *); - -/* Supprime toutes les références externes. */ -static void g_buffer_segment_dispose(GBufferSegment *); - -/* Procède à la libération totale de la mémoire. */ -static void g_buffer_segment_finalize(GBufferSegment *); - -/* Met à jour le contenu d'un fragment de texte. */ -void g_buffer_segment_set_text(GBufferSegment *, rendering_pattern_t *, const char *, size_t); - - - -/* -------------------- GESTION OPTIMALE D'UNE LISTE DE CONTENUS -------------------- */ - - -/* Liste identifiant un ensemble de segments */ -struct _segcnt_list -{ - fnv64_t *hashes; /* Empreinte pour comparaisons */ - size_t count; /* Nommbre de ces empreintes */ - -}; - - - -/* ---------------------------------------------------------------------------------- */ -/* ISOLATION DE CONTENUS PARTAGEABLES */ -/* ---------------------------------------------------------------------------------- */ - -/****************************************************************************** -* * -* Paramètres : - * -* * -* Description : Initialise la table mémorisant les contenus pour segments. * -* * -* Retour : Bilan de l'opération. * -* * -* Remarques : - * -* * -******************************************************************************/ +/* Propriétés de rendu */ -bool init_segment_content_hash_table(void) +typedef struct _rendering_color_t { - _segcnt_htable = g_hash_table_new_full((GHashFunc)get_seg_content_hash, - (GEqualFunc)is_seg_content_equal, - free, NULL); - - return (_segcnt_htable != NULL); - -} - + GdkRGBA color; /* Couleur de rendu */ + bool has_color; /* Définition en place ? */ -/****************************************************************************** -* * -* Paramètres : - * -* * -* Description : Organise la sortie de la table des contenus pour segments. * -* * -* Retour : - * -* * -* Remarques : - * -* * -******************************************************************************/ +} rendering_color_t; -void exit_segment_content_hash_table(void) +typedef struct _rendering_pattern_t { - assert(g_hash_table_size(_segcnt_htable) == 0); - - g_hash_table_unref(_segcnt_htable); - -} + rendering_color_t foreground; /* Couleur d'impression */ + rendering_color_t inverted; /* Couleur inversée pour sél. */ + cairo_font_slant_t slant; /* Style d'impression */ + cairo_font_weight_t weight; /* Poids de la police */ -/****************************************************************************** -* * -* Paramètres : content = contenu pour segment à consulter. * -* * -* Description : Fournit l'empreinte d'un contenu pour segments. * -* * -* Retour : Empreinte de lu contenu représenté. * -* * -* Remarques : - * -* * -******************************************************************************/ +} rendering_pattern_t; -static guint get_seg_content_hash(const seg_content *content) +typedef struct _segment_rendering { - return content->hash; - -} - - -/****************************************************************************** -* * -* Paramètres : content = premier contenu pour segment à analyser. * -* other = second contenu pour segment à analyser. * -* * -* Description : Détermine si deux contenus pour segments sont identiques. * -* * -* Retour : Bilan de la comparaison. * -* * -* Remarques : - * -* * -******************************************************************************/ + rendering_color_t selection_bg; /* Fond d'impression */ -static bool is_seg_content_equal(const seg_content *content, const seg_content *other) -{ - bool result; /* Résultat à retourner */ + cairo_t *font_ctxts[CAIRO_FONTS_COUNT]; /* Contextes de police */ + double x_advances[CAIRO_FONTS_COUNT]; /* Largeurs par caractère */ + rendering_pattern_t patterns[RTT_COUNT];/* Modèles d'impression */ - result = (content->pattern == other->pattern); +} segment_rendering; - result &= (cmp_fnv_64a(content->hash, other->hash) == 0); - result &= (strcmp(content->text, other->text) == 0); +/* Configuration globale des rendus */ +static segment_rendering _seg_params; - return result; -} +/* ----------------------- ISOLATION DE CONTENUS PARTAGEABLES ----------------------- */ -/****************************************************************************** -* * -* Paramètres : content = premier contenu pour segment à analyser. * -* other = second contenu pour segment à analyser. * -* * -* Description : Détermine si deux contenus pour segments sont identiques. * -* * -* Retour : Bilan de la comparaison. * -* * -* Remarques : - * -* * -******************************************************************************/ -static seg_content *get_shared_content(const seg_content *content) +/* Fragment de caractères aux propriétés potentiellement partagées */ +struct _line_segment { - seg_content *result; /* Contenu partagé à renvoyer */ - gboolean found; /* Le contenu existe déjà ? */ - size_t allocated; /* Besoin complet en mémoire */ -#ifndef NDEBUG - gboolean created; /* Validation de mise en place */ -#endif - - /** - * On considère qu'il n'y a pas besoin de mutex ici, puisque toutes les - * opérations se réalisent à priori dans le seul thread principal pour l'affichage. - */ + unsigned int ref_count; /* Compteur de références */ - found = g_hash_table_lookup_extended(_segcnt_htable, content, (gpointer *)&result, NULL); + rendering_pattern_t *pattern; /* Propriétés du rendu */ - if (!found) - { - allocated = sizeof(seg_content) + strlen(content->text) + 1; + fnv64_t hash; /* Empreinte pour comparaisons */ + char text[0]; /* Texte brut conservé */ - result = (seg_content *)malloc(allocated); +}; - memcpy(result, content, allocated); - result->ref_count = 1; +/* Conservation de toutes les créations partagées */ +static GHashTable *_segcnt_htable; -#ifndef NDEBUG - created = g_hash_table_insert(_segcnt_htable, result, result); - assert(created); -#else - g_hash_table_insert(_segcnt_htable, result, result); -#endif - } +/* Fournit l'empreinte d'un contenu pour segments. */ +static guint get_line_segment_hash(const line_segment *); - else - { - assert(result->ref_count < UINT_MAX); +/* Détermine si deux contenus pour segments sont identiques. */ +static bool is_line_segment_equal(const line_segment *, const line_segment *); - result->ref_count++; +/* Détermine si deux contenus pour segments sont identiques. */ +static line_segment *get_shared_segment_content(const line_segment *); - } +/* Abandonne un contenu pour segments. */ +static void release_shared_segment_content(line_segment *); - return result; -} +/* -------------------- GESTION OPTIMALE D'UNE LISTE DE CONTENUS -------------------- */ -/****************************************************************************** -* * -* Paramètres : content = contenu pour segments à délaisser. * -* * -* Description : Abandonne un contenu pour segments. * -* * -* Retour : - * -* * -* Remarques : - * -* * -******************************************************************************/ -static void release_shared_content(seg_content *content) +/* Liste identifiant un ensemble de segments */ +struct _segcnt_list { -#ifndef NDEBUG - gboolean deleted; /* Validation de suppression */ -#endif - - /** - * On considère qu'il n'y a pas besoin de mutex ici, puisque toutes les - * opérations se réalisent à priori dans le seul thread principal pour l'affichage. - */ - - if (--content->ref_count == 0) - { -#ifndef NDEBUG - deleted = g_hash_table_remove(_segcnt_htable, content); - assert(deleted); -#else - g_hash_table_remove(_segcnt_htable, content); -#endif - } - -} + fnv64_t *hashes; /* Empreinte pour comparaisons */ + size_t count; /* Nommbre de ces empreintes */ +}; /* ---------------------------------------------------------------------------------- */ -/* NATURE DE BASE POUR UN FRAGMENT DE TEXTE */ +/* NATURE POUR UN FRAGMENT DE TEXTE */ /* ---------------------------------------------------------------------------------- */ -/* Détermine le type du fragment de caractères aux propriétés communes. */ -G_DEFINE_TYPE(GBufferSegment, g_buffer_segment, G_TYPE_OBJECT); - - /****************************************************************************** * * -* Paramètres : class = classe de composant GTK à initialiser. * +* Paramètres : - * * * -* Description : Procède à l'initialisation d'une classe de fragment de texte.* +* Description : Procède à l'initialisation des paramètres de rendu de texte. * * * * Retour : - * * * @@ -407,9 +180,8 @@ G_DEFINE_TYPE(GBufferSegment, g_buffer_segment, G_TYPE_OBJECT); * * ******************************************************************************/ -static void g_buffer_segment_class_init(GBufferSegmentClass *class) +bool load_segment_rendering_parameters(void) { - GObjectClass *object; /* Autre version de la classe */ GtkStyleContext *context; /* Contexte pour les styles */ GtkWidgetPath *path; /* Chemin d'accès aux thèmes */ gchar *filename; /* Accès à une image 1x1 */ @@ -420,11 +192,6 @@ static void g_buffer_segment_class_init(GBufferSegmentClass *class) cairo_text_extents_t extents; /* Couverture des caractères */ RenderingTagType i; /* Boucle de parcours */ - object = G_OBJECT_CLASS(class); - - object->dispose = (GObjectFinalizeFunc/* ! */)g_buffer_segment_dispose; - object->finalize = (GObjectFinalizeFunc)g_buffer_segment_finalize; - /* Création d'un contexte d'accès */ path = gtk_widget_path_new(); @@ -442,7 +209,7 @@ static void g_buffer_segment_class_init(GBufferSegmentClass *class) for (s = CAIRO_FONT_SLANT_NORMAL; s < CAIRO_FONT_SLANT_COUNT; s++) for (w = CAIRO_FONT_WEIGHT_NORMAL; w < CAIRO_FONT_WEIGHT_COUNT; w++) { - cr = &class->font_ctxts[CAIRO_FONT_INDEX(s, w)]; + cr = &_seg_params.font_ctxts[CAIRO_FONT_INDEX(s, w)]; surface = cairo_image_surface_create_from_png(filename); *cr = cairo_create(surface); @@ -452,7 +219,7 @@ static void g_buffer_segment_class_init(GBufferSegmentClass *class) cairo_set_font_size(*cr, 13); cairo_text_extents(*cr, "A", &extents); - class->x_advances[CAIRO_FONT_INDEX(s, w)] = extents.x_advance; + _seg_params.x_advances[CAIRO_FONT_INDEX(s, w)] = extents.x_advance; } @@ -460,11 +227,11 @@ static void g_buffer_segment_class_init(GBufferSegmentClass *class) /* Fond d'impression */ - class->selection_bg.has_color = true; - class->selection_bg.color.red = 0.5; - class->selection_bg.color.green = 0.5; - class->selection_bg.color.blue = 0.5; - class->selection_bg.color.alpha = 1.0; + _seg_params.selection_bg.has_color = true; + _seg_params.selection_bg.color.red = 0.5; + _seg_params.selection_bg.color.green = 0.5; + _seg_params.selection_bg.color.blue = 0.5; + _seg_params.selection_bg.color.alpha = 1.0; /* Chargement des définitions utiles */ @@ -532,49 +299,52 @@ static void g_buffer_segment_class_init(GBufferSegmentClass *class) } for (i = 0; i < RTT_COUNT; i++) - define_rendering_pattern(context, _segment_names[i], &class->patterns[i]); + define_rendering_pattern(context, _segment_names[i], &_seg_params.patterns[i]); /* Nettoyages finaux... */ gtk_widget_path_free(path); g_object_unref(context); - /* Signaux */ - - g_signal_new("content-changed", - G_TYPE_BUFFER_SEGMENT, - G_SIGNAL_RUN_LAST, - G_STRUCT_OFFSET(GBufferSegmentClass, content_changed), - NULL, NULL, - g_cclosure_marshal_VOID__VOID, - G_TYPE_NONE, 0); + return true; } + +/* ---------------------------------------------------------------------------------- */ +/* ISOLATION DE CONTENUS PARTAGEABLES */ +/* ---------------------------------------------------------------------------------- */ + + /****************************************************************************** * * -* Paramètres : segment = composant GTK à initialiser. * +* Paramètres : - * * * -* Description : Procède à l'initialisation d'un fragment de texte. * +* Description : Initialise la table mémorisant les contenus pour segments. * * * -* Retour : - * +* Retour : Bilan de l'opération. * * * * Remarques : - * * * ******************************************************************************/ -static void g_buffer_segment_init(GBufferSegment *segment) +bool init_segment_content_hash_table(void) { + _segcnt_htable = g_hash_table_new_full((GHashFunc)get_line_segment_hash, + (GEqualFunc)is_line_segment_equal, + free, NULL); + + return (_segcnt_htable != NULL); } /****************************************************************************** * * -* Paramètres : segment = instance d'objet GLib à traiter. * +* Paramètres : - * * * -* Description : Supprime toutes les références externes. * +* Description : Organise la sortie de la table des contenus pour segments. * * * * Retour : - * * * @@ -582,58 +352,56 @@ static void g_buffer_segment_init(GBufferSegment *segment) * * ******************************************************************************/ -static void g_buffer_segment_dispose(GBufferSegment *segment) +void exit_segment_content_hash_table(void) { - release_shared_content(segment->content); + assert(g_hash_table_size(_segcnt_htable) == 0); - G_OBJECT_CLASS(g_buffer_segment_parent_class)->dispose(G_OBJECT(segment)); + g_hash_table_unref(_segcnt_htable); } /****************************************************************************** * * -* Paramètres : segment = instance d'objet GLib à traiter. * +* Paramètres : content = contenu pour segment à consulter. * * * -* Description : Procède à la libération totale de la mémoire. * +* Description : Fournit l'empreinte d'un contenu pour segments. * * * -* Retour : - * +* Retour : Empreinte de lu contenu représenté. * * * * Remarques : - * * * ******************************************************************************/ -static void g_buffer_segment_finalize(GBufferSegment *segment) +static guint get_line_segment_hash(const line_segment *content) { - G_OBJECT_CLASS(g_buffer_segment_parent_class)->finalize(G_OBJECT(segment)); + return content->hash; } /****************************************************************************** * * -* Paramètres : type = propriétés de la zone de texte. * -* text = chaîne de caractères à traiter. * -* length = quantité de ces caractères. * +* Paramètres : content = premier contenu pour segment à analyser. * +* other = second contenu pour segment à analyser. * * * -* Description : Crée un nouveau fragment de texte avec des propriétés. * +* Description : Détermine si deux contenus pour segments sont identiques. * * * -* Retour : Composant GTK créé. * +* Retour : Bilan de la comparaison. * * * * Remarques : - * * * ******************************************************************************/ -GBufferSegment *g_buffer_segment_new(RenderingTagType type, const char *text, size_t length) +static bool is_line_segment_equal(const line_segment *content, const line_segment *other) { - GBufferSegment *result; /* Composant à retourner */ - GBufferSegmentClass *class; /* Stockage de styles préparés */ + bool result; /* Résultat à retourner */ - result = g_object_new(G_TYPE_BUFFER_SEGMENT, NULL); + result = (content->pattern == other->pattern); - class = G_BUFFER_SEGMENT_GET_CLASS(result); + result &= (cmp_fnv_64a(content->hash, other->hash) == 0); - g_buffer_segment_set_text(result, &class->patterns[type], text, length); + result &= (strcmp(content->text, other->text) == 0); return result; @@ -642,51 +410,70 @@ GBufferSegment *g_buffer_segment_new(RenderingTagType type, const char *text, si /****************************************************************************** * * -* Paramètres : segment = fragment de texte à mettre à jour. * -* pattern = paramètres d'impression du texte. * -* text = chaîne de caractères à traiter. * -* length = quantité de ces caractères. * +* Paramètres : content = premier contenu pour segment à analyser. * +* other = second contenu pour segment à analyser. * * * -* Description : Met à jour le contenu d'un fragment de texte. * +* Description : Détermine si deux contenus pour segments sont identiques. * * * -* Retour : - * +* Retour : Bilan de la comparaison. * * * * Remarques : - * * * ******************************************************************************/ -void g_buffer_segment_set_text(GBufferSegment *segment, rendering_pattern_t *pattern, const char *text, size_t length) +static line_segment *get_shared_segment_content(const line_segment *content) { - char atmp[sizeof(seg_content) + 128]; /* Allocation static facile */ - seg_content *content; /* Contenu à mettre en place ? */ + line_segment *result; /* Contenu partagé à renvoyer */ + gboolean found; /* Le contenu existe déjà ? */ + size_t allocated; /* Besoin complet en mémoire */ +#ifndef NDEBUG + gboolean created; /* Validation de mise en place */ +#endif - if (length < (sizeof(atmp) - sizeof(seg_content))) - content = (seg_content *)atmp; - else - content = (seg_content *)malloc(sizeof(seg_content) + length + 1); + /** + * On considère qu'il n'y a pas besoin de mutex ici, puisque toutes les + * opérations se réalisent à priori dans le seul thread principal pour l'affichage. + */ - content->pattern = pattern; + found = g_hash_table_lookup_extended(_segcnt_htable, content, (gpointer *)&result, NULL); - content->hash = fnv_64a_hash(text); + if (!found) + { + allocated = sizeof(line_segment) + strlen(content->text) + 1; - memcpy(content->text, text, length); - content->text[length] = '\0'; + result = (line_segment *)malloc(allocated); - segment->content = get_shared_content(content); + memcpy(result, content, allocated); - if (content != (seg_content *)atmp) - free(content); + result->ref_count = 1; + +#ifndef NDEBUG + created = g_hash_table_insert(_segcnt_htable, result, result); + assert(created); +#else + g_hash_table_insert(_segcnt_htable, result, result); +#endif + + } + + else + { + assert(result->ref_count < UINT_MAX); + + result->ref_count++; + + } + + return result; } /****************************************************************************** * * -* Paramètres : segment = fragment de texte à mettre à jour. * -* text = chaîne de caractères à traiter. * -* length = quantité de ces caractères. * +* Paramètres : content = contenu pour segments à délaisser. * * * -* Description : Met à jour le contenu d'un fragment de texte. * +* Description : Abandonne un contenu pour segments. * * * * Retour : - * * * @@ -694,21 +481,94 @@ void g_buffer_segment_set_text(GBufferSegment *segment, rendering_pattern_t *pat * * ******************************************************************************/ -void g_buffer_segment_update_text(GBufferSegment *segment, const char *text, size_t length) +static void release_shared_segment_content(line_segment *content) { - rendering_pattern_t *pattern; /* Conservation des paramètres */ +#ifndef NDEBUG + gboolean deleted; /* Validation de suppression */ +#endif - /* Destruction */ + /** + * On considère qu'il n'y a pas besoin de mutex ici, puisque toutes les + * opérations se réalisent à priori dans le seul thread principal pour l'affichage. + */ - pattern = segment->content->pattern; + if (--content->ref_count == 0) + { +#ifndef NDEBUG + deleted = g_hash_table_remove(_segcnt_htable, content); + assert(deleted); +#else + g_hash_table_remove(_segcnt_htable, content); +#endif + } + +} - release_shared_content(segment->content); - /* Création */ - g_buffer_segment_set_text(segment, pattern, text, length); - g_signal_emit_by_name(segment, "content-changed"); +/* ---------------------------------------------------------------------------------- */ +/* NATURE DE BASE POUR UN FRAGMENT DE TEXTE */ +/* ---------------------------------------------------------------------------------- */ + + +/****************************************************************************** +* * +* Paramètres : type = propriétés de la zone de texte. * +* text = chaîne de caractères à traiter. * +* length = quantité de ces caractères. * +* * +* Description : Crée un nouveau fragment de texte avec des propriétés. * +* * +* Retour : Elément créé ou recyclé. * +* * +* Remarques : - * +* * +******************************************************************************/ + +line_segment *get_new_line_segment(RenderingTagType type, const char *text, size_t length) +{ + line_segment *result; /* Elément à retourner */ + char atmp[sizeof(line_segment) + 128]; /* Allocation static facile */ + line_segment *content; /* Contenu à mettre en place ? */ + + if (length < (sizeof(atmp) - sizeof(line_segment))) + content = (line_segment *)atmp; + else + content = (line_segment *)malloc(sizeof(line_segment) + length + 1); + + content->pattern = &_seg_params.patterns[type]; + + content->hash = fnv_64a_hash(text); + + memcpy(content->text, text, length); + content->text[length] = '\0'; + + result = get_shared_segment_content(content); + + if (content != (line_segment *)atmp) + free(content); + + return result; + +} + + +/****************************************************************************** +* * +* Paramètres : segment = fragment de texte à libérer de la mémoire. * +* * +* Description : Retire une utilisation à un fragment de texte. * +* * +* Retour : - * +* * +* Remarques : - * +* * +******************************************************************************/ + +void release_line_segment(line_segment *segment) +{ + release_shared_segment_content(segment); } @@ -716,21 +576,20 @@ void g_buffer_segment_update_text(GBufferSegment *segment, const char *text, siz /****************************************************************************** * * * Paramètres : segment = fragment de texte à consulter. * -* ref = segment de référence servant à la comparaison. * * * -* Description : Indique si les textes de deux segments sont identiques. * +* Description : Indique le type de rendu associé à un segment de ligne. * * * -* Retour : Bilan de la comparaison. * +* Retour : Identifiant de type de rendu. * * * * Remarques : - * * * ******************************************************************************/ -bool g_buffer_segment_compare(const GBufferSegment *segment, const GBufferSegment *ref) +RenderingTagType get_line_segment_type(const line_segment *segment) { - bool result; /* Bilan à retourner */ + RenderingTagType result; /* Résultat à renvoyer */ - result = is_seg_content_equal(segment->content, ref->content); + result = (RenderingTagType)(segment->pattern - _seg_params.patterns); return result; @@ -750,18 +609,15 @@ bool g_buffer_segment_compare(const GBufferSegment *segment, const GBufferSegmen * * ******************************************************************************/ -char *g_buffer_segment_get_text(const GBufferSegment *segment, bool markup) +char *get_line_segment_text(const line_segment *segment, bool markup) { char *result; /* Description à renvoyer */ - const seg_content *content; /* Accès au contenu */ char color[7]; /* Couleur hexadécimale */ char *valid; - content = segment->content; - /* Résolution du cas simple */ if (!markup) - return strdup(content->text); + return strdup(segment->text); result = strdup("<span "); @@ -770,9 +626,9 @@ char *g_buffer_segment_get_text(const GBufferSegment *segment, bool markup) result = stradd(result, "foreground=\"#"); snprintf(color, sizeof(color), "%02hhx%02hhx%02hhx", - (unsigned char)(content->pattern->foreground.color.red * 255), - (unsigned char)(content->pattern->foreground.color.green * 255), - (unsigned char)(content->pattern->foreground.color.blue * 255)); + (unsigned char)(segment->pattern->foreground.color.red * 255), + (unsigned char)(segment->pattern->foreground.color.green * 255), + (unsigned char)(segment->pattern->foreground.color.blue * 255)); result = stradd(result, color); @@ -782,7 +638,7 @@ char *g_buffer_segment_get_text(const GBufferSegment *segment, bool markup) result = stradd(result, "style=\""); - switch (content->pattern->slant) + switch (segment->pattern->slant) { case CAIRO_FONT_SLANT_NORMAL: result = stradd(result, "normal"); @@ -804,7 +660,7 @@ char *g_buffer_segment_get_text(const GBufferSegment *segment, bool markup) result = stradd(result, "weight=\""); - switch (content->pattern->weight) + switch (segment->pattern->weight) { case CAIRO_FONT_WEIGHT_NORMAL: result = stradd(result, "normal"); @@ -822,7 +678,7 @@ char *g_buffer_segment_get_text(const GBufferSegment *segment, bool markup) result = stradd(result, ">"); - valid = strdup(content->text); + valid = strdup(segment->text); valid = strrpl(valid, "<", "<"); valid = strrpl(valid, "&", "&"); @@ -849,22 +705,16 @@ char *g_buffer_segment_get_text(const GBufferSegment *segment, bool markup) * * ******************************************************************************/ -gint g_buffer_segment_get_width(const GBufferSegment *segment) +gint get_line_segment_width(const line_segment *segment) { gint result; /* Largeur à retourner */ - GBufferSegmentClass *class; /* Classe associée à l'instance*/ - const seg_content *content; /* Accès au contenu */ cairo_font_slant_t slant; /* Style d'impression */ cairo_font_weight_t weight; /* Poids de la police */ - class = G_BUFFER_SEGMENT_GET_CLASS(segment); - - content = segment->content; + slant = segment->pattern->slant; + weight = segment->pattern->weight; - slant = content->pattern->slant; - weight = content->pattern->weight; - - result = class->x_advances[CAIRO_FONT_INDEX(slant, weight)] * strlen(content->text); + result = _seg_params.x_advances[CAIRO_FONT_INDEX(slant, weight)] * strlen(segment->text); return result; @@ -884,13 +734,13 @@ gint g_buffer_segment_get_width(const GBufferSegment *segment) * * ******************************************************************************/ -gint g_buffer_segment_get_caret_position(const GBufferSegment *segment, gint x) +gint get_caret_position_from_line_segment(const line_segment *segment, gint x) { gint result; /* Position à retourner */ gint width; /* Largeur du segment */ gint char_width; /* Largeur de police fixe */ - width = g_buffer_segment_get_width(segment); + width = get_line_segment_width(segment); if (x <= 0) result = 0; @@ -900,7 +750,7 @@ gint g_buffer_segment_get_caret_position(const GBufferSegment *segment, gint x) else { - char_width = width / strlen(segment->content->text); + char_width = width / strlen(segment->text); result = (x / char_width) * char_width; if ((x % char_width) > (char_width / 2)) @@ -928,7 +778,7 @@ gint g_buffer_segment_get_caret_position(const GBufferSegment *segment, gint x) * * ******************************************************************************/ -bool g_buffer_segment_move_caret(const GBufferSegment *segment, gint *x, bool ctrl, GdkScrollDirection dir) +bool move_caret_on_line_segment(const line_segment *segment, gint *x, bool ctrl, GdkScrollDirection dir) { bool result; /* Bilan d'opération à renvoyer*/ gint width; /* Largeur du segment */ @@ -936,13 +786,11 @@ bool g_buffer_segment_move_caret(const GBufferSegment *segment, gint *x, bool ct result = false; - width = g_buffer_segment_get_width(segment); - char_width = width / strlen(segment->content->text); + width = get_line_segment_width(segment); + char_width = width / strlen(segment->text); if (dir == GDK_SCROLL_LEFT) { - printf(">>>>> left ::: x=%d width=%d char=%d\n", *x, width, char_width); - if (*x > width) *x = width + char_width; if (*x == 0) goto gbsmc_done; @@ -956,9 +804,6 @@ bool g_buffer_segment_move_caret(const GBufferSegment *segment, gint *x, bool ct else if (dir == GDK_SCROLL_RIGHT) { - - printf(">>>>> right ::: x=%d width=%d char=%d\n", *x, width, char_width); - if (*x == width) goto gbsmc_done; if (ctrl) *x = width; @@ -970,8 +815,6 @@ bool g_buffer_segment_move_caret(const GBufferSegment *segment, gint *x, bool ct gbsmc_done: - printf(">>>>> result ::: %d\n", result); - return result; } @@ -993,29 +836,25 @@ bool g_buffer_segment_move_caret(const GBufferSegment *segment, gint *x, bool ct * * ******************************************************************************/ -void g_buffer_segment_draw(GBufferSegment *segment, cairo_t *cr, gint *x, gint y, const segcnt_list *list) +void draw_line_segment(const line_segment *segment, cairo_t *cr, gint *x, gint y, const segcnt_list *list) { bool selected; /* Marquer une sélection ? */ gint width; /* Largeur du segment */ - GBufferSegmentClass *class; /* Accès aux infos globales */ cairo_operator_t old; /* Sauvegarde avant changement */ - const seg_content *content; /* Accès au contenu */ const rendering_color_t *used_fg; /* Couleur d'impression utile */ selected = selection_list_has_segment_content(list, segment); - width = g_buffer_segment_get_width(segment); + width = get_line_segment_width(segment); /* Fond du texte */ if (selected) { - class = G_BUFFER_SEGMENT_GET_CLASS(segment); - cairo_set_source_rgba(cr, - class->selection_bg.color.red, - class->selection_bg.color.green, - class->selection_bg.color.blue, - class->selection_bg.color.alpha); + _seg_params.selection_bg.color.red, + _seg_params.selection_bg.color.green, + _seg_params.selection_bg.color.blue, + _seg_params.selection_bg.color.alpha); cairo_rectangle(cr, *x, y, width, 17); @@ -1028,12 +867,10 @@ void g_buffer_segment_draw(GBufferSegment *segment, cairo_t *cr, gint *x, gint y /* Couleur d'impression */ - content = segment->content; - if (selected) - used_fg = &content->pattern->inverted; + used_fg = &segment->pattern->inverted; else - used_fg = &content->pattern->foreground; + used_fg = &segment->pattern->foreground; if (used_fg->has_color) cairo_set_source_rgba(cr, @@ -1046,12 +883,12 @@ void g_buffer_segment_draw(GBufferSegment *segment, cairo_t *cr, gint *x, gint y /* Impression du texte */ - cairo_select_font_face(cr, "mono", content->pattern->slant, content->pattern->weight); + cairo_select_font_face(cr, "mono", segment->pattern->slant, segment->pattern->weight); cairo_set_font_size(cr, 13); cairo_move_to(cr, *x, y + 17 - 3); /* 3 = font extents.descent */ - cairo_show_text(cr, content->text); + cairo_show_text(cr, segment->text); *x += width; @@ -1071,19 +908,14 @@ void g_buffer_segment_draw(GBufferSegment *segment, cairo_t *cr, gint *x, gint y * * ******************************************************************************/ -void g_buffer_segment_export_style(buffer_export_context *ctx, BufferExportType type) +void export_line_segment_style(buffer_export_context *ctx, BufferExportType type) { - GBufferSegment *dummy; /* Segment servant de sujet */ - GBufferSegmentClass *class; /* Classe des segments */ size_t i; /* Boucle de parcours */ const rendering_pattern_t *pattern; /* Modèle à transcrire */ - dummy = g_object_new(G_TYPE_BUFFER_SEGMENT, NULL); - class = G_BUFFER_SEGMENT_GET_CLASS(dummy); - for (i = 0; i < RTT_COUNT; i++) { - pattern = &class->patterns[i]; + pattern = &_seg_params.patterns[i]; switch (type) { @@ -1131,8 +963,6 @@ void g_buffer_segment_export_style(buffer_export_context *ctx, BufferExportType } - g_object_unref(G_OBJECT(dummy)); - } @@ -1150,26 +980,21 @@ void g_buffer_segment_export_style(buffer_export_context *ctx, BufferExportType * * ******************************************************************************/ -void g_buffer_segment_export(const GBufferSegment *segment, buffer_export_context *ctx, BufferExportType type) +void export_line_segment(const line_segment *segment, buffer_export_context *ctx, BufferExportType type) { - const seg_content *content; /* Accès au contenu */ - GBufferSegmentClass *class; /* Classe des segments */ size_t index; /* Indice du modèle de rendu */ - content = segment->content; - switch (type) { case BET_HTML: - class = G_BUFFER_SEGMENT_GET_CLASS(segment); - index = (content->pattern - class->patterns); + index = (segment->pattern - _seg_params.patterns); dprintf(ctx->fd, "<SPAN class=\"%s\">", _segment_names[index]); break; default: break; } - dprintf(ctx->fd, "%s", content->text); + dprintf(ctx->fd, "%s", segment->text); switch (type) { @@ -1277,26 +1102,23 @@ bool reset_segment_content_list(segcnt_list *list) * * ******************************************************************************/ -bool add_segment_content_to_selection_list(segcnt_list *list, const GBufferSegment *segment) +bool add_segment_content_to_selection_list(segcnt_list *list, const line_segment *segment) { bool result; /* Bilan à retourner */ - const seg_content *content; /* Accès au contenu */ size_t i; /* Boucle de parcours */ static const char white_list[] = "abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"; result = false; - content = segment->content; - for (i = 0; i < (sizeof(white_list) - 1) && !result; i++) - result = (strchr(content->text, white_list[i]) != NULL); + result = (strchr(segment->text, white_list[i]) != NULL); if (result) { list->hashes = (fnv64_t *)realloc(list->hashes, ++list->count * sizeof(fnv64_t)); - list->hashes[list->count - 1] = content->hash; + list->hashes[list->count - 1] = segment->hash; } @@ -1318,7 +1140,7 @@ bool add_segment_content_to_selection_list(segcnt_list *list, const GBufferSegme * * ******************************************************************************/ -bool selection_list_has_segment_content(const segcnt_list *list, const GBufferSegment *segment) +bool selection_list_has_segment_content(const segcnt_list *list, const line_segment *segment) { bool result; /* Bilan à retourner */ size_t i; /* Boucle de parcours */ @@ -1326,7 +1148,7 @@ bool selection_list_has_segment_content(const segcnt_list *list, const GBufferSe result = false; for (i = 0; i < list->count && !result; i++) - result = (cmp_fnv_64a(list->hashes[i], segment->content->hash) == 0); + result = (cmp_fnv_64a(list->hashes[i], segment->hash) == 0); return result; diff --git a/src/glibext/gbuffersegment.h b/src/glibext/linesegment.h index 01fb2ea..7a5551d 100644 --- a/src/glibext/gbuffersegment.h +++ b/src/glibext/linesegment.h @@ -1,6 +1,6 @@ /* Chrysalide - Outil d'analyse de fichiers binaires - * gbuffersegment.h - prototypes pour la concentration d'un fragment de caractères aux propriétés communes + * linesegment.h - prototypes pour la concentration d'un fragment de caractères aux propriétés communes * * Copyright (C) 2010-2014 Cyrille Bagard * @@ -21,8 +21,8 @@ */ -#ifndef _GLIBEXT_GBUFFERSEGMENT_H -#define _GLIBEXT_GBUFFERSEGMENT_H +#ifndef _GLIBEXT_LINESEGMENT_H +#define _GLIBEXT_LINESEGMENT_H #include <glib-object.h> @@ -37,9 +37,21 @@ typedef struct _segcnt_list segcnt_list; +/* ------------------------ NATURE POUR UN FRAGMENT DE TEXTE ------------------------ */ + + +/* Procède à l'initialisation des paramètres de rendu de texte. */ +bool load_segment_rendering_parameters(void); + + + /* ----------------------- ISOLATION DE CONTENUS PARTAGEABLES ----------------------- */ +/* Fragment de caractères aux propriétés potentiellement partagées */ +typedef struct _line_segment line_segment; + + /* Initialise la table mémorisant les contenus pour segments. */ bool init_segment_content_hash_table(void); @@ -51,14 +63,6 @@ void exit_segment_content_hash_table(void); /* -------------------- NATURE DE BASE POUR UN FRAGMENT DE TEXTE -------------------- */ -#define G_TYPE_BUFFER_SEGMENT (g_buffer_segment_get_type()) -#define G_BUFFER_SEGMENT(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), G_TYPE_BUFFER_SEGMENT, GBufferSegment)) -#define G_BUFFER_SEGMENT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), G_TYPE_BUFFER_SEGMENT, GBufferSegmentClass)) -#define G_IS_BUFFER_SEGMENT(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), G_TYPE_BUFFER_SEGMENT)) -#define G_IS_BUFFER_SEGMENT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), G_TYPE_BUFFER_SEGMENT)) -#define G_BUFFER_SEGMENT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), G_TYPE_BUFFER_SEGMENT, GBufferSegmentClass)) - - /* Types de partie de rendu */ typedef enum _RenderingTagType { @@ -101,40 +105,29 @@ typedef enum _RenderingTagType } RenderingTagType; -/* Fragment de caractères aux propriétés communes (instance) */ -typedef struct _GBufferSegment GBufferSegment; - -/* Fragment de caractères aux propriétés communes (classe) */ -typedef struct _GBufferSegmentClass GBufferSegmentClass; - - - -/* Détermine le type du fragment de caractères aux propriétés communes. */ -GType g_buffer_segment_get_type(void); - /* Crée un nouveau fragment de texte avec des propriétés. */ -GBufferSegment *g_buffer_segment_new(RenderingTagType, const char *, size_t); +line_segment *get_new_line_segment(RenderingTagType, const char *, size_t); -/* Met à jour le contenu d'un fragment de texte. */ -void g_buffer_segment_update_text(GBufferSegment *, const char *, size_t); +/* Retire une utilisation à un fragment de texte. */ +void release_line_segment(line_segment *); -/* Indique si les textes de deux segments sont identiques. */ -bool g_buffer_segment_compare(const GBufferSegment *, const GBufferSegment *); +/* Indique le type de rendu associé à un segment de ligne. */ +RenderingTagType get_line_segment_type(const line_segment *); /* Fournit le texte brut conservé dans le segment. */ -char *g_buffer_segment_get_text(const GBufferSegment *, bool); +char *get_line_segment_text(const line_segment *, bool); /* Fournit la quantité de pixels requise pour l'impression. */ -gint g_buffer_segment_get_width(const GBufferSegment *); +gint get_line_segment_width(const line_segment *); /* Fournit la position idéale pour un marqueur. */ -gint g_buffer_segment_get_caret_position(const GBufferSegment *, gint); +gint get_caret_position_from_line_segment(const line_segment *, gint); /* Déplace le curseur au sein d'un segment de tampon. */ -bool g_buffer_segment_move_caret(const GBufferSegment *, gint *, bool, GdkScrollDirection); +bool move_caret_on_line_segment(const line_segment *, gint *, bool, GdkScrollDirection); /* Imprime le fragment de texte représenté. */ -void g_buffer_segment_draw(GBufferSegment *, cairo_t *, gint *, gint, const segcnt_list *); +void draw_line_segment(const line_segment *, cairo_t *, gint *, gint, const segcnt_list *); /* Types d'exportation */ typedef enum _BufferExportType @@ -173,10 +166,10 @@ typedef struct _buffer_export_context } buffer_export_context; /* Exporte tous les styles utilisés par des segments. */ -void g_buffer_segment_export_style(buffer_export_context *, BufferExportType); +void export_line_segment_style(buffer_export_context *, BufferExportType); /* Exporte le fragment de texte représenté. */ -void g_buffer_segment_export(const GBufferSegment *, buffer_export_context *, BufferExportType); +void export_line_segment(const line_segment *, buffer_export_context *, BufferExportType); @@ -193,11 +186,11 @@ void exit_segment_content_list(segcnt_list *); bool reset_segment_content_list(segcnt_list *); /* Marque le contenu d'un segment comme remarquable. */ -bool add_segment_content_to_selection_list(segcnt_list *, const GBufferSegment *); +bool add_segment_content_to_selection_list(segcnt_list *, const line_segment *); /* Indique si le contenu d'un segment est notable ou non. */ -bool selection_list_has_segment_content(const segcnt_list *, const GBufferSegment *); +bool selection_list_has_segment_content(const segcnt_list *, const line_segment *); -#endif /* _GLIBEXT_GBUFFERSEGMENT_H */ +#endif /* _GLIBEXT_LINESEGMENT_H */ |