summaryrefslogtreecommitdiff
path: root/src/utils/stack.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/stack.c')
-rw-r--r--src/utils/stack.c179
1 files changed, 179 insertions, 0 deletions
diff --git a/src/utils/stack.c b/src/utils/stack.c
new file mode 100644
index 0000000..2751ec4
--- /dev/null
+++ b/src/utils/stack.c
@@ -0,0 +1,179 @@
+/*
+ * This file is part of LibParserUtils.
+ * Licensed under the MIT License,
+ * http://www.opensource.org/licenses/mit-license.php
+ * Copyright 2008 John-Mark Bell <jmb@netsurf-browser.org>
+ */
+
+#include <inttypes.h>
+#include <string.h>
+
+#include <parserutils/utils/stack.h>
+
+/**
+ * Stack object
+ */
+struct parserutils_stack
+{
+ size_t item_size; /**< Size of an item in the stack */
+ size_t chunk_size; /**< Size of a stack chunk */
+ size_t items_allocated; /**< Number of slots allocated */
+ int32_t current_item; /**< Index of current item */
+ void *items; /**< Items in stack */
+
+ parserutils_alloc alloc; /**< Memory (de)allocation function */
+ void *pw; /**< Client-specific data */
+};
+
+/**
+ * Create a stack
+ *
+ * \param item_size Length, in bytes, of an item in the stack
+ * \param chunk_size Number of stack slots in a chunk
+ * \param alloc Memory (de)allocation function
+ * \param pw Pointer to client-specific private data
+ * \return Pointer to stack instance, or NULL on memory exhaustion
+ */
+parserutils_stack *parserutils_stack_create(size_t item_size, size_t chunk_size,
+ parserutils_alloc alloc, void *pw)
+{
+ parserutils_stack *stack;
+
+ if (item_size == 0 || chunk_size == 0 || alloc == NULL)
+ return NULL;
+
+ stack = alloc(NULL, sizeof(parserutils_stack), pw);
+ if (stack == NULL)
+ return NULL;
+
+ stack->items = alloc(NULL, item_size * chunk_size, pw);
+ if (stack->items == NULL) {
+ alloc(stack, 0, pw);
+ return NULL;
+ }
+
+ stack->item_size = item_size;
+ stack->chunk_size = chunk_size;
+ stack->items_allocated = chunk_size;
+ stack->current_item = -1;
+
+ stack->alloc = alloc;
+ stack->pw = pw;
+
+ return stack;
+}
+
+/**
+ * Destroy a stack instance
+ *
+ * \param stack The stack to destroy
+ */
+void parserutils_stack_destroy(parserutils_stack *stack)
+{
+ if (stack == NULL)
+ return;
+
+ stack->alloc(stack->items, 0, stack->pw);
+ stack->alloc(stack, 0, stack->pw);
+}
+
+/**
+ * Push an item onto the stack
+ *
+ * \param stack The stack to push onto
+ * \param item The item to push
+ * \return PARSERUTILS_OK on success, appropriate error otherwise
+ */
+parserutils_error parserutils_stack_push(parserutils_stack *stack, void *item)
+{
+ int32_t slot;
+
+ if (stack == NULL || item == NULL)
+ return PARSERUTILS_BADPARM;
+
+ /* Ensure we'll get a valid slot */
+ if (stack->current_item < -1 || stack->current_item == INT32_MAX)
+ return PARSERUTILS_INVALID;
+
+ slot = stack->current_item + 1;
+
+ if ((size_t) slot >= stack->items_allocated) {
+ void *temp = stack->alloc(stack->items,
+ (stack->items_allocated + stack->chunk_size) *
+ stack->item_size, stack->pw);
+ if (temp == NULL)
+ return PARSERUTILS_NOMEM;
+
+ stack->items = temp;
+ stack->items_allocated += stack->chunk_size;
+ }
+
+ memcpy((uint8_t *) stack->items + (slot * stack->item_size),
+ item, stack->item_size);
+ stack->current_item = slot;
+
+ return PARSERUTILS_OK;
+}
+
+/**
+ * Pop an item off a stack
+ *
+ * \param stack The stack to pop from
+ * \param item Pointer to location to receive popped item, or NULL
+ * \return PARSERUTILS_OK on success, appropriate error otherwise.
+ */
+parserutils_error parserutils_stack_pop(parserutils_stack *stack, void *item)
+{
+ if (stack == NULL)
+ return PARSERUTILS_BADPARM;
+
+ if (stack->current_item < 0)
+ return PARSERUTILS_INVALID;
+
+ if (item != NULL) {
+ memcpy(item, (uint8_t *) stack->items +
+ (stack->current_item * stack->item_size),
+ stack->item_size);
+ }
+
+ stack->current_item -= 1;
+
+ return PARSERUTILS_OK;
+}
+
+/**
+ * Retrieve a pointer to the current item on the stack
+ *
+ * \param stack The stack to inspect
+ * \return Pointer to item on stack, or NULL if none
+ */
+void *parserutils_stack_get_current(parserutils_stack *stack)
+{
+ if (stack == NULL || stack->current_item < 0)
+ return NULL;
+
+ return (uint8_t *) stack->items +
+ (stack->current_item * stack->item_size);
+}
+
+#ifndef NDEBUG
+#include <stdio.h>
+
+extern void parserutils_stack_dump(parserutils_stack *stack, const char *prefix,
+ void (*printer)(void *item));
+
+void parserutils_stack_dump(parserutils_stack *stack, const char *prefix,
+ void (*printer)(void *item))
+{
+ if (stack == NULL || printer == NULL)
+ return;
+
+ for (int32_t i = 0; i <= stack->current_item; i++) {
+ printf("%s %d: ", prefix != NULL ? prefix : "", i);
+ printer((uint8_t *) stack->items + (i * stack->item_size));
+ printf("\n");
+ }
+}
+
+#endif
+