Sha256: e17193b332618266d8fcd145b0545c4bdc8d764a4077dbd849c05937743dd6b5

Contents?: true

Size: 1.75 KB

Versions: 1

Compression:

Stored size: 1.75 KB

Contents

/* sax_stack.h
 * Copyright (c) 2011, Peter Ohler
 * All rights reserved.
 */

#ifndef __OX_SAX_STACK_H__
#define __OX_SAX_STACK_H__

#include "sax_hint.h"

#define STACK_INC	32

typedef struct _Nv {
    const char	*name;
    VALUE	val;
    Hint	hint;
} *Nv;

typedef struct _NStack {
    struct _Nv	base[STACK_INC];
    Nv		head;	/* current stack */
    Nv		end;	/* stack end */
    Nv		tail;	/* pointer to one past last element name on stack */
} *NStack;

inline static void
stack_init(NStack stack) {
    stack->head = stack->base;
    stack->end = stack->base + sizeof(stack->base) / sizeof(struct _Nv);
    stack->tail = stack->head;
}

inline static int
stack_empty(NStack stack) {
    return (stack->head == stack->tail);
}

inline static void
stack_cleanup(NStack stack) {
    if (stack->base != stack->head) {
        xfree(stack->head);
    }
}

inline static void
stack_push(NStack stack, const char *name, VALUE val, Hint hint) {
    if (stack->end <= stack->tail) {
	size_t	len = stack->end - stack->head;
	size_t	toff = stack->tail - stack->head;

	if (stack->base == stack->head) {
	    stack->head = ALLOC_N(struct _Nv, len + STACK_INC);
	    memcpy(stack->head, stack->base, sizeof(struct _Nv) * len);
	} else {
	    REALLOC_N(stack->head, struct _Nv, len + STACK_INC);
	}
	stack->tail = stack->head + toff;
	stack->end = stack->head + len + STACK_INC;
    }
    stack->tail->name = name;
    stack->tail->val = val;
    stack->tail->hint = hint;
    stack->tail++;
}

inline static Nv
stack_peek(NStack stack) {
    if (stack->head < stack->tail) {
	return stack->tail - 1;
    }
    return 0;
}

inline static Nv
stack_pop(NStack stack) {
    if (stack->head < stack->tail) {
	stack->tail--;
	return stack->tail;
    }
    return 0;
}

#endif /* __OX_SAX_STACK_H__ */

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ox-2.1.6 ext/ox/sax_stack.h