summaryrefslogtreecommitdiff
path: root/gladeui/glade-id-allocator.c
diff options
context:
space:
mode:
authorTristan Van Berkom <tvb@src.gnome.org>2007-01-23 19:49:04 +0000
committerTristan Van Berkom <tvb@src.gnome.org>2007-01-23 19:49:04 +0000
commiteb33dd583ddd72a13648958b76f91c988f2907fb (patch)
tree2dc9f85a792cf9e7873a6526d7da8367948416ec /gladeui/glade-id-allocator.c
parent7b9410c2c87bab548f924c24a1addfbce5e0b78b (diff)
downloadglade-eb33dd583ddd72a13648958b76f91c988f2907fb.tar.gz
Reorganised package structure, moved a lot of files and directories.
* Reorganised package structure, moved a lot of files and directories. Modified the Makefile.am in most directories. * po/POTFILES.in, po/POTFILES.skip: Update for reorganisation. * configure.ac: Add files to AC_CONFIG_FILES. Change AC_CONFIG_SRCDIR. svn path=/trunk/; revision=1050
Diffstat (limited to 'gladeui/glade-id-allocator.c')
-rw-r--r--gladeui/glade-id-allocator.c174
1 files changed, 174 insertions, 0 deletions
diff --git a/gladeui/glade-id-allocator.c b/gladeui/glade-id-allocator.c
new file mode 100644
index 00000000..db7e4d35
--- /dev/null
+++ b/gladeui/glade-id-allocator.c
@@ -0,0 +1,174 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
+/*
+ * Copyright (C) 2004 Owen Taylor
+ *
+ * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ * Authors:
+ * Owen Taylor <otaylor@redhat.com>
+ */
+
+#include "config.h"
+
+#include <glib.h>
+#include <string.h>
+#include "glade-id-allocator.h"
+
+#define INITIAL_WORDS 4
+
+/**
+ * glade_id_allocator_new:
+ *
+ * Returns: a new #GladeIDAllocator
+ */
+GladeIDAllocator *
+glade_id_allocator_new (void)
+{
+ GladeIDAllocator *allocator = g_new (GladeIDAllocator, 1);
+
+ allocator->n_words = INITIAL_WORDS;
+ allocator->data = g_new (guint32, INITIAL_WORDS);
+ memset (allocator->data, 0xff, INITIAL_WORDS * sizeof (guint32));
+
+ return allocator;
+}
+
+/**
+ * glade_id_allocator_free:
+ * @allocator: a #GladeIDAllocator
+ *
+ * Frees @allocator and its associated memory
+ */
+void
+glade_id_allocator_free (GladeIDAllocator *allocator)
+{
+ g_free (allocator->data);
+ g_free (allocator);
+}
+
+static inline gint
+first_set_bit (guint32 word)
+{
+ static const char table[16] = {
+ 4, 0, 1, 0,
+ 2, 0, 1, 0,
+ 3, 0, 1, 0,
+ 2, 0, 1, 0
+ };
+
+ gint result = 0;
+
+ if ((word & 0xffff) == 0)
+ {
+ word >>= 16;
+ result += 16;
+ }
+
+ if ((word & 0xff) == 0)
+ {
+ word >>= 8;
+ result += 8;
+ }
+
+ if ((word & 0xf) == 0)
+ {
+ word >>= 4;
+ result += 4;
+ }
+
+ return result + table[word & 0xf];
+}
+
+/**
+ * glade_id_allocator_alloc:
+ * @allocator: a #GladeIDAllocator
+ *
+ * TODO: write me
+ * Returns:
+ */
+guint
+glade_id_allocator_alloc (GladeIDAllocator *allocator)
+{
+ guint i;
+
+ for (i = 0; i < allocator->n_words; i++)
+ {
+ if (allocator->data[i] != 0)
+ {
+ gint free_bit = first_set_bit (allocator->data[i]);
+ allocator->data[i] &= ~(1 << free_bit);
+
+ return 32 * i + free_bit + 1;
+ }
+ }
+
+ {
+ guint n_words = allocator->n_words;
+
+ allocator->data = g_renew (guint32, allocator->data, n_words * 2);
+ memset (&allocator->data[n_words], 0xff, n_words * sizeof (guint32));
+ allocator->n_words = n_words * 2;
+
+ allocator->data[n_words] = 0xffffffff - 1;
+
+ return 32 * n_words + 1;
+ }
+}
+
+/**
+ * glade_id_allocator_release:
+ * @allocator:
+ * @id:
+ *
+ * TODO: write me
+ */
+void
+glade_id_allocator_release (GladeIDAllocator *allocator,
+ guint id)
+{
+ id--;
+ allocator->data[id >> 5] |= 1 << (id & 31);
+}
+
+#ifdef GLADE_ID_ALLOCATOR_TEST
+int main (int argc, char **argv)
+{
+ GladeIDAllocator *allocator = glade_id_allocator_new ();
+ guint i;
+ guint iter;
+
+ for (i = 0; i < 1000; i++)
+ {
+ guint id = glade_id_allocator_alloc (allocator);
+ g_assert (id == i);
+ }
+
+ for (i = 0; i < 1000; i++)
+ glade_id_allocator_release (allocator, i);
+
+ for (iter = 0; iter < 10000; iter++)
+ {
+ for (i = 0; i < 1000; i++)
+ glade_id_allocator_alloc (allocator);
+
+ for (i = 0; i < 1000; i++)
+ glade_id_allocator_release (allocator, i);
+ }
+
+ glade_id_allocator_free (allocator);
+
+ return 0;
+}
+#endif