BLI_stack: various small additions

- add BLI_stack_count
- add BLI_stack_pop_n to pop into an array
- add BLI_stack_push_r, which returns a pointer that can be filled in

Also remove sanity check in BLI_stack_pop, assert if the stack is empty.
This commit is contained in:
Campbell Barton 2014-07-15 20:37:06 +10:00
parent a378f8d2d8
commit 5c4180d898
3 changed files with 75 additions and 21 deletions

@ -34,16 +34,20 @@ typedef struct BLI_Stack BLI_Stack;
BLI_Stack *BLI_stack_new_ex( BLI_Stack *BLI_stack_new_ex(
const size_t elem_size, const char *description, const size_t elem_size, const char *description,
const size_t chunk_size) ATTR_NONNULL(); const size_t chunk_size) ATTR_WARN_UNUSED_RESULT ATTR_NONNULL();
BLI_Stack *BLI_stack_new( BLI_Stack *BLI_stack_new(
const size_t elem_size, const char *description) ATTR_NONNULL(); const size_t elem_size, const char *description) ATTR_WARN_UNUSED_RESULT ATTR_NONNULL();
void BLI_stack_free(BLI_Stack *stack) ATTR_NONNULL(); void BLI_stack_free(BLI_Stack *stack) ATTR_NONNULL();
void BLI_stack_push(BLI_Stack *stack, const void *src) ATTR_NONNULL(); void *BLI_stack_push_r(BLI_Stack *stack) ATTR_WARN_UNUSED_RESULT ATTR_NONNULL();
void BLI_stack_push(BLI_Stack *stack, const void *src) ATTR_NONNULL();
void BLI_stack_pop_n(BLI_Stack *stack, void *dst, unsigned int n) ATTR_NONNULL();
void BLI_stack_pop(BLI_Stack *stack, void *dst) ATTR_NONNULL(); void BLI_stack_pop(BLI_Stack *stack, void *dst) ATTR_NONNULL();
bool BLI_stack_is_empty(const BLI_Stack *stack) ATTR_NONNULL(); size_t BLI_stack_count(const BLI_Stack *stack) ATTR_WARN_UNUSED_RESULT ATTR_NONNULL();
#endif bool BLI_stack_is_empty(const BLI_Stack *stack) ATTR_WARN_UNUSED_RESULT ATTR_NONNULL();
#endif /* __BLI_STACK_H__ */

@ -35,7 +35,7 @@
#include "BLI_strict_flags.h" #include "BLI_strict_flags.h"
// #define USE_TOTELEM #define USE_TOTELEM
#define CHUNK_EMPTY ((size_t)-1) #define CHUNK_EMPTY ((size_t)-1)
/* target chunks size: 64kb */ /* target chunks size: 64kb */
@ -135,7 +135,7 @@ void BLI_stack_free(BLI_Stack *stack)
* Copies the source value onto the stack (note that it copies * Copies the source value onto the stack (note that it copies
* elem_size bytes from 'src', the pointer itself is not stored) * elem_size bytes from 'src', the pointer itself is not stored)
*/ */
void BLI_stack_push(BLI_Stack *stack, const void *src) void *BLI_stack_push_r(BLI_Stack *stack)
{ {
stack->chunk_index++; stack->chunk_index++;
@ -161,8 +161,14 @@ void BLI_stack_push(BLI_Stack *stack, const void *src)
stack->totelem++; stack->totelem++;
#endif #endif
/* Copy source to end of stack */ /* Return end of stack */
memcpy(CHUNK_LAST_ELEM(stack), src, stack->elem_size); return CHUNK_LAST_ELEM(stack);
}
void BLI_stack_push(BLI_Stack *stack, const void *src)
{
void *dst = BLI_stack_push_r(stack);
memcpy(dst, src, stack->elem_size);
} }
/** /**
@ -175,29 +181,62 @@ void BLI_stack_pop(BLI_Stack *stack, void *dst)
{ {
BLI_assert(BLI_stack_is_empty(stack) == false); BLI_assert(BLI_stack_is_empty(stack) == false);
if (!BLI_stack_is_empty(stack)) { memcpy(dst, CHUNK_LAST_ELEM(stack), stack->elem_size);
memcpy(dst, CHUNK_LAST_ELEM(stack), stack->elem_size);
#ifdef USE_TOTELEM #ifdef USE_TOTELEM
stack->totelem--; stack->totelem--;
#endif #endif
if (--stack->chunk_index == CHUNK_EMPTY) { if (--stack->chunk_index == CHUNK_EMPTY) {
struct StackChunk *chunk_free; struct StackChunk *chunk_free;
chunk_free = stack->chunk_curr; chunk_free = stack->chunk_curr;
stack->chunk_curr = stack->chunk_curr->next; stack->chunk_curr = stack->chunk_curr->next;
chunk_free->next = stack->chunk_free; chunk_free->next = stack->chunk_free;
stack->chunk_free = chunk_free; stack->chunk_free = chunk_free;
stack->chunk_index = stack->chunk_elem_max - 1; stack->chunk_index = stack->chunk_elem_max - 1;
}
} }
} }
void BLI_stack_pop_n(BLI_Stack *stack, void *dst, unsigned int n)
{
BLI_assert(n <= BLI_stack_count(stack));
while (n--) {
BLI_stack_pop(stack, dst);
dst = (void *)((char *)dst + stack->elem_size);
}
}
size_t BLI_stack_count(const BLI_Stack *stack)
{
#ifdef USE_TOTELEM
return stack->totelem;
#else
struct StackChunk *data = stack->chunk_curr;
size_t totelem = stack->chunk_index + 1;
size_t i;
if (totelem != stack->chunk_elem_max) {
data = data->next;
}
else {
totelem = 0;
}
for (i = 0; data; data = data->next) {
i++;
}
totelem += stack->chunk_elem_max * i;
return totelem;
#endif
}
/** /**
* Returns true if the stack is empty, false otherwise * Returns true if the stack is empty, false otherwise
*/ */
bool BLI_stack_is_empty(const BLI_Stack *stack) bool BLI_stack_is_empty(const BLI_Stack *stack)
{ {
#ifdef USE_TOTELEM
BLI_assert((stack->chunk_curr == NULL) == (stack->totelem == 0));
#endif
return (stack->chunk_curr == NULL); return (stack->chunk_curr == NULL);
} }

@ -17,6 +17,7 @@ TEST(stack, Empty)
stack = BLI_stack_new(sizeof(int), __func__); stack = BLI_stack_new(sizeof(int), __func__);
EXPECT_EQ(BLI_stack_is_empty(stack), true); EXPECT_EQ(BLI_stack_is_empty(stack), true);
EXPECT_EQ(BLI_stack_count(stack), 0);
BLI_stack_free(stack); BLI_stack_free(stack);
} }
@ -29,9 +30,11 @@ TEST(stack, One)
BLI_stack_push(stack, (void *)&in); BLI_stack_push(stack, (void *)&in);
EXPECT_EQ(BLI_stack_is_empty(stack), false); EXPECT_EQ(BLI_stack_is_empty(stack), false);
EXPECT_EQ(BLI_stack_count(stack), 1);
BLI_stack_pop(stack, (void *)&out); BLI_stack_pop(stack, (void *)&out);
EXPECT_EQ(in, out); EXPECT_EQ(in, out);
EXPECT_EQ(BLI_stack_is_empty(stack), true); EXPECT_EQ(BLI_stack_is_empty(stack), true);
EXPECT_EQ(BLI_stack_count(stack), 0);
BLI_stack_free(stack); BLI_stack_free(stack);
} }
@ -79,7 +82,6 @@ TEST(stack, String)
*((int *)in) = i; *((int *)in) = i;
BLI_stack_pop(stack, (void *)&out); BLI_stack_pop(stack, (void *)&out);
EXPECT_STREQ(in, out); EXPECT_STREQ(in, out);
} }
EXPECT_EQ(BLI_stack_is_empty(stack), true); EXPECT_EQ(BLI_stack_is_empty(stack), true);
@ -133,5 +135,14 @@ TEST(stack, Reuse)
EXPECT_EQ(i, 0); EXPECT_EQ(i, 0);
EXPECT_EQ(memcmp(sizes, sizes_test, sizeof(sizes) - sizeof(int)), 0); EXPECT_EQ(memcmp(sizes, sizes_test, sizeof(sizes) - sizeof(int)), 0);
/* finally test BLI_stack_pop_n */
for (i = ARRAY_SIZE(sizes); i--; ) {
BLI_stack_push(stack, (void *)&sizes[i]);
}
EXPECT_EQ(BLI_stack_count(stack), ARRAY_SIZE(sizes));
BLI_stack_pop_n(stack, (void *)sizes_test, ARRAY_SIZE(sizes));
EXPECT_EQ(memcmp(sizes, sizes_test, sizeof(sizes) - sizeof(int)), 0);
BLI_stack_free(stack); BLI_stack_free(stack);
} }