summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2022-01-18 21:32:05 -0500
committerMatthias Clasen <mclasen@redhat.com>2022-01-24 10:58:17 -0500
commit6528a09f5cbc31e3207d0d6f2a542dae5cd54d7b (patch)
tree8f2a0e22ef4128f3c567f67077c51baca665cdd2
parentdfaa73d42584bd76d6cad45954746116eb553db9 (diff)
downloadpango-6528a09f5cbc31e3207d0d6f2a542dae5cd54d7b.tar.gz
debug: check invariants in pango-layout too
this is for comparison purposes, and to see what to aim for.
-rw-r--r--pango/pango-layout.c53
1 files changed, 53 insertions, 0 deletions
diff --git a/pango/pango-layout.c b/pango/pango-layout.c
index 4444bfd0..0bd62cef 100644
--- a/pango/pango-layout.c
+++ b/pango/pango-layout.c
@@ -4734,6 +4734,53 @@ apply_attributes_to_runs (PangoLayout *layout,
}
}
+static int
+compute_n_chars (PangoLayoutLine *line)
+{
+ int n_chars = 0;
+
+ for (GSList *l = line->runs; l; l = l->next)
+ {
+ PangoGlyphItem *run = l->data;
+ n_chars += run->item->num_chars;
+ }
+
+ return n_chars;
+}
+
+static void
+pango_layout_line_check_invariants (PangoLayoutLine *line,
+ const char *text)
+{
+ int n_chars;
+
+ n_chars = compute_n_chars (line);
+
+ /* Check that byte and char positions agree */
+ g_assert (g_utf8_strlen (text + line->start_index, line->length) == n_chars);
+ g_assert (g_utf8_offset_to_pointer (text + line->start_index, n_chars) == text + line->start_index + line->length);
+
+ /* Check that runs are sane */
+ if (line->runs)
+ {
+ int run_min, run_max;
+
+ run_min = G_MAXINT;
+ run_max = 0;
+ for (GSList *l = line->runs; l; l = l->next)
+ {
+ PangoGlyphItem *run = l->data;
+
+ run_min = MIN (run_min, run->item->offset);
+ run_max = MAX (run_max, run->item->offset + run->item->length);
+ }
+
+ g_assert (run_min == line->start_index);
+ g_assert (run_max == line->start_index + line->length);
+ }
+}
+
+
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
@@ -4944,6 +4991,12 @@ pango_layout_check_lines (PangoLayout *layout)
pango_attr_list_unref (shape_attrs);
pango_attr_list_unref (attrs);
+ for (GSList *l = layout->lines; l; l = l->next)
+ {
+ PangoLayoutLine *line = l->data;
+ pango_layout_line_check_invariants (line, layout->text);
+ }
+
int w, h;
pango_layout_get_size (layout, &w, &h);
DEBUG1 ("DONE %d %d", w, h);