[gspell/wip/improve-perfs] InlineCheckerTextBuffer: start new check_subregion() implementation



commit 63408a840045e53efbd8432f762be1722e353b26
Author: Sébastien Wilmet <swilmet gnome org>
Date:   Sat Apr 1 19:33:01 2017 +0200

    InlineCheckerTextBuffer: start new check_subregion() implementation
    
    https://bugzilla.gnome.org/show_bug.cgi?id=776811#c5

 gspell/gspell-inline-checker-text-buffer.c |   75 ++++++++++++++++++++++++++++
 1 files changed, 75 insertions(+), 0 deletions(-)
---
diff --git a/gspell/gspell-inline-checker-text-buffer.c b/gspell/gspell-inline-checker-text-buffer.c
index de317d1..54cdf77 100644
--- a/gspell/gspell-inline-checker-text-buffer.c
+++ b/gspell/gspell-inline-checker-text-buffer.c
@@ -161,10 +161,34 @@ adjust_iters (GtkTextIter *start,
 }
 
 static void
+get_pango_log_attrs (const gchar   *text,
+                    PangoLogAttr **attrs,
+                    gint          *n_attrs)
+{
+       *n_attrs = g_utf8_strlen (text, -1) + 1;
+       *attrs = g_new0 (PangoLogAttr, *n_attrs);
+
+       pango_get_log_attrs (text,
+                            strlen (text),
+                            -1,
+                            NULL,
+                            *attrs,
+                            *n_attrs);
+}
+
+static void
 check_subregion (GspellInlineCheckerTextBuffer *spell,
                 GtkTextIter                   *start,
                 GtkTextIter                   *end)
 {
+       gchar *text;
+       const gchar *cur_text_pos;
+       const gchar *word_start;
+       gint word_start_char_pos;
+       PangoLogAttr *attrs;
+       gint n_attrs;
+       gint attr_num;
+
        g_return_if_fail (gtk_text_iter_compare (start, end) <= 0);
 
        adjust_iters (start, end, ADJUST_MODE_STRICTLY_INSIDE_WORD);
@@ -173,6 +197,57 @@ check_subregion (GspellInlineCheckerTextBuffer *spell,
                                    spell->highlight_tag,
                                    start,
                                    end);
+
+       text = gtk_text_iter_get_slice (start, end);
+
+       get_pango_log_attrs (text, &attrs, &n_attrs);
+
+       attr_num = 0;
+       cur_text_pos = text;
+       word_start = NULL;
+       word_start_char_pos = 0;
+
+       while (attr_num < n_attrs)
+       {
+               PangoLogAttr *cur_attr = &attrs[attr_num];
+
+               if (word_start != NULL &&
+                   cur_attr->is_word_end)
+               {
+                       gint word_byte_length;
+                       gboolean misspelled;
+
+                       if (cur_text_pos != NULL)
+                       {
+                               word_byte_length = cur_text_pos - word_start;
+                       }
+                       else
+                       {
+                               word_byte_length = -1;
+                       }
+
+                       misspelled = !gspell_checker_check_word (spell->spell_checker,
+                                                                word_start,
+                                                                word_byte_length,
+                                                                NULL);
+                       if (misspelled)
+                       {
+                       }
+               }
+
+               if (word_start == NULL &&
+                   cur_attr->is_word_start)
+               {
+                       word_start = cur_text_pos;
+                       word_start_char_pos = attr_num;
+               }
+
+               attr_num++;
+               cur_text_pos = g_utf8_find_next_char (cur_text_pos, NULL);
+       }
+
+       g_free (text);
+       g_free (attrs);
 }
 
 static void


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]