lumiera_free() is for now just a static inline wraper around free() Later this makes it easier to hook in some resource managing functions or a Garbage Collector in. Replaced all current uses of free()
59 lines
1.6 KiB
C
59 lines
1.6 KiB
C
/*
|
|
mrucache.h - most recent used cache
|
|
|
|
Copyright (C) Lumiera.org
|
|
2008, Christian Thaeter <ct@pipapo.org>
|
|
|
|
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 2 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, write to the Free Software
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
|
|
#include "lib/safeclib.h"
|
|
#include "lib/mrucache.h"
|
|
|
|
|
|
LumieraMruCache
|
|
lumiera_mrucache_init (LumieraMruCache self, lumiera_cache_destructor_fn destructor_cb)
|
|
{
|
|
REQUIRE (self);
|
|
llist_init (&self->cache_list);
|
|
self->cached = 0;
|
|
self->destructor_cb = destructor_cb;
|
|
return self;
|
|
}
|
|
|
|
LumieraMruCache
|
|
lumiera_mrucache_destroy (LumieraMruCache self)
|
|
{
|
|
LLIST_WHILE_TAIL (&self->cache_list, node)
|
|
{
|
|
llist_unlink (node);
|
|
if (self->destructor_cb)
|
|
lumiera_free (self->destructor_cb (node));
|
|
else
|
|
lumiera_free (node);
|
|
}
|
|
self->cached = 0;
|
|
return self;
|
|
}
|
|
|
|
int
|
|
lumiera_mrucache_age (LumieraMruCache self, int nelem)
|
|
{
|
|
REQUIRE (self);
|
|
while (self->cached && nelem--)
|
|
lumiera_free (lumiera_mrucache_pop (self));
|
|
|
|
return nelem;
|
|
}
|