[cairo-commit] cairo/src cairo-font.c,1.76,1.76.2.1
Carl Worth
commit at pdx.freedesktop.org
Tue Sep 13 12:28:02 PDT 2005
Committed by: cworth
Update of /cvs/cairo/cairo/src
In directory gabe:/tmp/cvs-serv10559/src
Modified Files:
Tag: BRANCH_1_0
cairo-font.c
Log Message:
2005-09-13 Carl Worth <cworth at cworth.org>
* src/cairo-scaled-font.c: (cairo_scaled_font_reference),
(cairo_scaled_font_destroy): Expand locking to encapsulate any
modification to the reference count of a scaled font, rather than
just modifcations of the scaled_font_map, since scaled fonts are
shared between threads.
Index: cairo-font.c
===================================================================
RCS file: /cvs/cairo/cairo/src/cairo-font.c,v
retrieving revision 1.76
retrieving revision 1.76.2.1
diff -u -d -r1.76 -r1.76.2.1
--- cairo-font.c 24 Aug 2005 04:36:08 -0000 1.76
+++ cairo-font.c 13 Sep 2005 19:28:00 -0000 1.76.2.1
@@ -762,6 +762,8 @@
cairo_scaled_font_t *
cairo_scaled_font_reference (cairo_scaled_font_t *scaled_font)
{
+ cairo_scaled_font_map_t *font_map;
+
if (scaled_font == NULL)
return NULL;
@@ -772,16 +774,19 @@
* we are using ref_count == 0 as a legitimate case for the
* holdovers array. See below. */
- /* If the original reference count is 0, then this font must have
- * been found in font_map->holdovers, (which means this caching is
- * actually working). So now we remove it from the holdovers
- * array. */
- if (scaled_font->ref_count == 0) {
- cairo_scaled_font_map_t *font_map;
- int i;
+ /* cairo_scaled_font_t objects are cached and shared between
+ * threads. This works because these objects are immutable. Except
+ * that the reference count is mutable, so we have to do locking
+ * around any modification of the reference count. */
+ font_map = _cairo_scaled_font_map_lock ();
+ {
+ /* If the original reference count is 0, then this font must have
+ * been found in font_map->holdovers, (which means this caching is
+ * actually working). So now we remove it from the holdovers
+ * array. */
+ if (scaled_font->ref_count == 0) {
+ int i;
- font_map = _cairo_scaled_font_map_lock ();
- {
for (i = 0; i < font_map->num_holdovers; i++)
if (font_map->holdovers[i] == scaled_font)
break;
@@ -792,10 +797,11 @@
&font_map->holdovers[i+1],
(font_map->num_holdovers - i) * sizeof (cairo_scaled_font_t*));
}
- _cairo_scaled_font_map_unlock ();
- }
- scaled_font->ref_count++;
+ scaled_font->ref_count++;
+
+ }
+ _cairo_scaled_font_map_unlock ();
return scaled_font;
}
@@ -819,38 +825,43 @@
if (scaled_font->ref_count == (unsigned int)-1)
return;
- assert (scaled_font->ref_count > 0);
-
- if (--(scaled_font->ref_count) > 0)
- return;
-
+ /* cairo_scaled_font_t objects are cached and shared between
+ * threads. This works because these objects are immutable. Except
+ * that the reference count is mutable, so we have to do locking
+ * around any modification of the reference count. */
font_map = _cairo_scaled_font_map_lock ();
- assert (font_map != NULL);
{
- /* Rather than immediately destroying this object, we put it into
- * the font_map->holdovers array in case it will get used again
- * soon. To make room for it, we do actually destroy the
- * least-recently-used holdover.
- */
- if (font_map->num_holdovers == CAIRO_SCALED_FONT_MAX_HOLDOVERS) {
- cairo_scaled_font_t *lru;
+ assert (font_map != NULL);
- lru = font_map->holdovers[0];
- assert (lru->ref_count == 0);
+ assert (scaled_font->ref_count > 0);
+
+ if (--(scaled_font->ref_count) == 0)
+ {
+ /* Rather than immediately destroying this object, we put it into
+ * the font_map->holdovers array in case it will get used again
+ * soon. To make room for it, we do actually destroy the
+ * least-recently-used holdover.
+ */
+ if (font_map->num_holdovers == CAIRO_SCALED_FONT_MAX_HOLDOVERS) {
+ cairo_scaled_font_t *lru;
+
+ lru = font_map->holdovers[0];
+ assert (lru->ref_count == 0);
- _cairo_hash_table_remove (font_map->hash_table, &lru->hash_entry);
+ _cairo_hash_table_remove (font_map->hash_table, &lru->hash_entry);
- _cairo_scaled_font_fini (lru);
- free (lru);
+ _cairo_scaled_font_fini (lru);
+ free (lru);
- font_map->num_holdovers--;
- memmove (&font_map->holdovers[0],
- &font_map->holdovers[1],
- font_map->num_holdovers * sizeof (cairo_scaled_font_t*));
- }
+ font_map->num_holdovers--;
+ memmove (&font_map->holdovers[0],
+ &font_map->holdovers[1],
+ font_map->num_holdovers * sizeof (cairo_scaled_font_t*));
+ }
- font_map->holdovers[font_map->num_holdovers] = scaled_font;
- font_map->num_holdovers++;
+ font_map->holdovers[font_map->num_holdovers] = scaled_font;
+ font_map->num_holdovers++;
+ }
}
_cairo_scaled_font_map_unlock ();
}
More information about the cairo-commit
mailing list