gimp/app/base/tile.c

343 lines
6.5 KiB
C

/* GIMP - The GNU Image Manipulation Program
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
*
* This program 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.
*
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "config.h"
#include <glib-object.h>
#include "base-types.h"
#include "tile.h"
#include "tile-cache.h"
#include "tile-manager.h"
#include "tile-rowhints.h"
#include "tile-swap.h"
#include "tile-private.h"
/* Uncomment for verbose debugging on copy-on-write logic */
/* #define TILE_DEBUG */
/* Uncomment to enable global counters to profile the tile system. */
/* #define TILE_PROFILING */
/* This is being used from tile-swap, but just for debugging purposes. */
static gint tile_ref_count = 0;
#ifdef TILE_PROFILING
static gint tile_count = 0;
static gint tile_share_count = 0;
static gint tile_active_count = 0;
static gint tile_exist_peak = 0;
static gint tile_exist_count = 0;
#endif
static void tile_destroy (Tile *tile);
Tile *
tile_new (gint bpp)
{
Tile *tile = g_slice_new0 (Tile);
tile->ewidth = TILE_WIDTH;
tile->eheight = TILE_HEIGHT;
tile->bpp = bpp;
tile->swap_offset = -1;
#ifdef TILE_PROFILING
tile_count++;
#endif
return tile;
}
void
tile_lock (Tile *tile)
{
/* Increment the global reference count.
*/
tile_ref_count++;
/* Increment this tile's reference count.
*/
tile->ref_count++;
if (tile->ref_count == 1)
{
if (tile->listhead)
{
/* remove from cache, move to main store */
tile_cache_flush (tile);
}
#ifdef TILE_PROFILING
tile_active_count++;
#endif
}
if (tile->data == NULL)
{
/* There is no data, so the tile must be swapped out */
tile_swap_in (tile);
}
/* Call 'tile_manager_validate' if the tile was invalid.
*/
if (! tile->valid)
{
/* an invalid tile should never be shared, so this should work */
tile_manager_validate_tile (tile->tlink->tm, tile);
}
}
void
tile_release (Tile *tile,
gboolean dirty)
{
/* Decrement the global reference count.
*/
tile_ref_count--;
/* Decrement this tile's reference count.
*/
tile->ref_count--;
/* Decrement write ref count if dirtying
*/
if (dirty)
{
gint y;
tile->write_count--;
if (tile->rowhint)
{
for (y = 0; y < tile->eheight; y++)
tile->rowhint[y] = TILEROWHINT_UNKNOWN;
}
}
if (tile->ref_count == 0)
{
#ifdef TILE_PROFILING
tile_active_count--;
#endif
if (tile->share_count == 0)
{
/* tile is truly dead */
tile_destroy (tile);
return; /* skip terminal unlock */
}
else
{
/* last reference was just released, so move the tile to the
tile cache */
tile_cache_insert (tile);
}
}
}
void
tile_alloc (Tile *tile)
{
if (tile->data)
return;
/* Allocate the data for the tile.
*/
tile->data = g_new (guchar, tile->size);
#ifdef TILE_PROFILING
tile_exist_count++;
if (tile_exist_count > tile_exist_peak)
tile_exist_peak = tile_exist_count;
#endif
}
static void
tile_destroy (Tile *tile)
{
if (G_UNLIKELY (tile->ref_count))
{
g_warning ("tried to destroy a ref'd tile");
return;
}
if (G_UNLIKELY (tile->share_count))
{
g_warning ("tried to destroy an attached tile");
return;
}
if (tile->data)
{
g_free (tile->data);
tile->data = NULL;
}
if (tile->rowhint)
{
g_slice_free1 (sizeof (TileRowHint) * TILE_HEIGHT, tile->rowhint);
tile->rowhint = NULL;
}
if (tile->swap_offset != -1)
{
/* If the tile is on disk, then delete its
* presence there.
*/
tile_swap_delete (tile);
}
if (tile->listhead)
tile_cache_flush (tile);
g_slice_free (Tile, tile);
#ifdef TILE_PROFILING
tile_count--;
tile_exist_count--;
#endif
}
gint
tile_size (Tile *tile)
{
/* Return the actual size of the tile data.
* (Based on its effective width and height).
*/
return tile->size;
}
gint
tile_ewidth (Tile *tile)
{
return tile->ewidth;
}
gint
tile_eheight (Tile *tile)
{
return tile->eheight;
}
gint
tile_bpp (Tile *tile)
{
return tile->bpp;
}
gboolean
tile_is_valid (Tile *tile)
{
return tile->valid;
}
void
tile_attach (Tile *tile,
void *tm,
gint tile_num)
{
TileLink *new;
if ((tile->share_count > 0) && (! tile->valid))
{
/* trying to share invalid tiles is problematic, not to mention silly */
tile_manager_validate_tile (tile->tlink->tm, tile);
}
tile->share_count++;
#ifdef TILE_PROFILING
tile_share_count++;
#endif
#ifdef TILE_DEBUG
g_printerr ("tile_attach: %p -> (%p,%d) *%d\n",
tile, tm, tile_num, tile->share_count);
#endif
/* link this tile into the tile's tilelink chain */
new = g_slice_new (TileLink);
new->tm = tm;
new->tile_num = tile_num;
new->next = tile->tlink;
tile->tlink = new;
}
void
tile_detach (Tile *tile,
void *tm,
gint tile_num)
{
TileLink **link;
TileLink *tmp;
#ifdef TILE_DEBUG
g_printerr ("tile_detach: %p ~> (%p,%d) r%d *%d\n",
tile, tm, tile_num, tile->ref_count, tile->share_count);
#endif
for (link = &tile->tlink;
*link != NULL;
link = &(*link)->next)
{
if (((*link)->tm == tm) && ((*link)->tile_num == tile_num))
break;
}
if (G_UNLIKELY (*link == NULL))
{
g_warning ("Tried to detach a nonattached tile -- TILE BUG!");
return;
}
tmp = *link;
*link = tmp->next;
g_slice_free (TileLink, tmp);
#ifdef TILE_PROFILING
tile_share_count--;
#endif
tile->share_count--;
if (tile->share_count == 0 && tile->ref_count == 0)
tile_destroy (tile);
}
gpointer
tile_data_pointer (Tile *tile,
gint xoff,
gint yoff)
{
return TILE_DATA_POINTER (tile, xoff, yoff);
}
gint
tile_global_refcount (void)
{
return tile_ref_count;
}