summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2007-01-02 19:47:59 +0000
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2007-01-02 19:47:59 +0000
commitc5ccd74cb8997268d2fa760661f4f5187b171f48 (patch)
tree5a4176f2f8c7f034d805e79ee257c0d1e997feee /lib
parentd8a3698716c12fdbb4da4db7a79cedf11720d6e8 (diff)
Rename GHeap to TpHeap, move to lib
Diffstat (limited to 'lib')
-rw-r--r--lib/Makefile.am2
-rw-r--r--lib/heap.c153
-rw-r--r--lib/telepathy-glib/tp-heap.h40
3 files changed, 195 insertions, 0 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am
index 00c81b939..4b94c8899 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -3,9 +3,11 @@ tpgincludedir=$(includedir)/telepathy-1.0/telepathy-glib
noinst_LTLIBRARIES = libtelepathy-glib.la
tpginclude_HEADERS = \
+ telepathy-glib/tp-heap.h \
telepathy-glib/tp-intset.h
libtelepathy_glib_la_SOURCES = \
+ heap.c \
intset.c
AM_CFLAGS = $(ERROR_CFLAGS) @DBUS_CFLAGS@ @GLIB_CFLAGS@ @HANDLE_LEAK_DEBUG_CFLAGS@
diff --git a/lib/heap.c b/lib/heap.c
new file mode 100644
index 000000000..9e6c97eb4
--- /dev/null
+++ b/lib/heap.c
@@ -0,0 +1,153 @@
+/*
+ * TpHeap - a heap queue
+ *
+ * Copyright (C) 2006 Nokia Corporation. All rights reserved.
+ *
+ * Contact: Olli Salli (Nokia-M/Helsinki) <olli.salli@nokia.com>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#include <glib.h>
+#include "telepathy-glib/tp-heap.h"
+
+#define DEFAULT_SIZE 64
+
+struct _TpHeap
+{
+ GPtrArray *data;
+ GCompareFunc comparator;
+};
+
+TpHeap *
+tp_heap_new (GCompareFunc comparator)
+{
+ TpHeap *ret = g_slice_new (TpHeap);
+ g_assert (comparator != NULL);
+
+ ret->data = g_ptr_array_sized_new (DEFAULT_SIZE);
+ ret->comparator = comparator;
+
+ return ret;
+}
+
+void
+tp_heap_destroy (TpHeap * heap)
+{
+ g_return_if_fail (heap != NULL);
+
+ g_ptr_array_free (heap->data, TRUE);
+ g_slice_free (TpHeap, heap);
+}
+
+void
+tp_heap_clear (TpHeap *heap)
+{
+ g_return_if_fail (heap != NULL);
+
+ g_ptr_array_free (heap->data, TRUE);
+ heap->data = g_ptr_array_sized_new (DEFAULT_SIZE);
+}
+
+#define HEAP_INDEX(heap, index) (g_ptr_array_index ((heap)->data, (index)-1))
+
+void
+tp_heap_add (TpHeap *heap, gpointer element)
+{
+ guint m;
+
+ g_return_if_fail (heap != NULL);
+
+ g_ptr_array_add (heap->data, element);
+ m = heap->data->len;
+ while (m != 1)
+ {
+ gpointer parent = HEAP_INDEX (heap, m / 2);
+
+ if (heap->comparator (element, parent) == -1)
+ {
+ HEAP_INDEX (heap, m / 2) = element;
+ HEAP_INDEX (heap, m) = parent;
+ m /= 2;
+ }
+ else
+ break;
+ }
+}
+
+gpointer
+tp_heap_peek_first (TpHeap *heap)
+{
+ g_return_val_if_fail (heap != NULL, NULL);
+
+ if (heap->data->len > 0)
+ return HEAP_INDEX (heap, 1);
+ else
+ return NULL;
+}
+
+gpointer
+tp_heap_extract_first (TpHeap * heap)
+{
+ gpointer ret;
+
+ g_return_val_if_fail (heap != NULL, NULL);
+
+ if (heap->data->len > 0)
+ {
+ guint m = heap->data->len;
+ guint i = 1, j;
+ ret = HEAP_INDEX (heap, 1);
+
+ HEAP_INDEX (heap, 1) = HEAP_INDEX (heap, m);
+
+ while (i * 2 <= m)
+ {
+ /* select the child which is supposed to come FIRST */
+ if ((i * 2 + 1 <= m)
+ && (heap->
+ comparator (HEAP_INDEX (heap, i * 2),
+ HEAP_INDEX (heap, i * 2 + 1)) == 1))
+ j = i * 2 + 1;
+ else
+ j = i * 2;
+
+ if (heap->comparator (HEAP_INDEX (heap, i), HEAP_INDEX (heap, j)) ==
+ 1)
+ {
+ gpointer tmp = HEAP_INDEX (heap, i);
+ HEAP_INDEX (heap, i) = HEAP_INDEX (heap, j);
+ HEAP_INDEX (heap, j) = tmp;
+ i = j;
+ }
+ else
+ break;
+ }
+
+ g_ptr_array_remove_index (heap->data, m - 1);
+ }
+ else
+ ret = NULL;
+
+ return ret;
+}
+
+guint
+tp_heap_size (TpHeap *heap)
+{
+ g_return_val_if_fail (heap != NULL, 0);
+
+ return heap->data->len;
+}
diff --git a/lib/telepathy-glib/tp-heap.h b/lib/telepathy-glib/tp-heap.h
new file mode 100644
index 000000000..2b5a68266
--- /dev/null
+++ b/lib/telepathy-glib/tp-heap.h
@@ -0,0 +1,40 @@
+/*
+ * Header file for TpHeap - a heap queue
+ *
+ * Copyright (C) 2006 Nokia Corporation. All rights reserved.
+ *
+ * Contact: Olli Salli (Nokia-M/Helsinki) <olli.salli@nokia.com>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#ifndef __TP_HEAP_H__
+#define __TP_HEAP_H__
+
+#include <glib.h>
+
+typedef struct _TpHeap TpHeap;
+
+TpHeap *tp_heap_new (GCompareFunc comparator);
+void tp_heap_destroy (TpHeap *);
+void tp_heap_clear (TpHeap *);
+
+void tp_heap_add (TpHeap *heap, gpointer element);
+gpointer tp_heap_peek_first (TpHeap *heap);
+gpointer tp_heap_extract_first (TpHeap *heap);
+
+guint tp_heap_size (TpHeap *heap);
+
+#endif