2005-12-28 08:05:14 -05:00
|
|
|
#ifndef EL_DOM_STACK_H
|
|
|
|
#define EL_DOM_STACK_H
|
2005-09-15 09:58:31 -04:00
|
|
|
|
2005-12-28 08:05:14 -05:00
|
|
|
#include "dom/node.h"
|
2005-09-15 09:58:31 -04:00
|
|
|
#include "util/error.h"
|
|
|
|
#include "util/hash.h"
|
|
|
|
|
2005-11-15 04:43:52 -05:00
|
|
|
struct dom_stack;
|
2005-09-15 09:58:31 -04:00
|
|
|
|
2006-01-11 05:03:59 -05:00
|
|
|
/* API Doc :: dom-stack */
|
|
|
|
|
2006-01-09 06:44:57 -05:00
|
|
|
/** DOM stack callback
|
|
|
|
*
|
|
|
|
* Used by contexts, for 'hooking' into the node traversing. */
|
2005-12-20 13:48:33 -05:00
|
|
|
typedef void (*dom_stack_callback_T)(struct dom_stack *, struct dom_node *, void *);
|
2005-09-15 09:58:31 -04:00
|
|
|
|
2005-12-20 22:57:25 -05:00
|
|
|
#define DOM_STACK_MAX_DEPTH 4096
|
|
|
|
|
2006-01-09 06:44:57 -05:00
|
|
|
/** DOM stack state
|
|
|
|
*
|
|
|
|
* This state records what node and where it is placed. */
|
2005-12-20 22:57:25 -05:00
|
|
|
struct dom_stack_state {
|
2006-01-09 06:44:57 -05:00
|
|
|
/** The node assiciated with the state */
|
2005-12-20 22:57:25 -05:00
|
|
|
struct dom_node *node;
|
2006-01-09 06:44:57 -05:00
|
|
|
/**
|
|
|
|
* The depth of the state in the stack. This is amongst other things
|
2005-12-20 22:57:25 -05:00
|
|
|
* used to get the state object data. */
|
|
|
|
unsigned int depth;
|
2006-01-09 06:44:57 -05:00
|
|
|
/** Whether this stack state can be popped with pop_dom_*() family. */
|
2005-12-20 22:57:25 -05:00
|
|
|
unsigned int immutable:1;
|
|
|
|
};
|
|
|
|
|
2006-01-09 06:44:57 -05:00
|
|
|
/** DOM stack context info
|
|
|
|
*
|
|
|
|
* To add a DOM stack context define this struct either statically or on the
|
|
|
|
* stack. */
|
2005-12-20 18:58:22 -05:00
|
|
|
struct dom_stack_context_info {
|
2006-01-09 06:44:57 -05:00
|
|
|
/**
|
|
|
|
* This member tells whether the stack should allocate objects for each
|
|
|
|
* state to be assigned to the state's @data member. Zero means no
|
|
|
|
* state data should be allocated. */
|
2005-12-20 22:38:04 -05:00
|
|
|
size_t object_size;
|
2005-12-21 07:46:28 -05:00
|
|
|
|
2006-01-09 06:44:57 -05:00
|
|
|
/** Callbacks to be called when pushing nodes. */
|
2005-12-20 13:20:04 -05:00
|
|
|
dom_stack_callback_T push[DOM_NODES];
|
2006-01-09 06:44:57 -05:00
|
|
|
/** Callbacks to be called when popping nodes. */
|
2005-12-20 13:20:04 -05:00
|
|
|
dom_stack_callback_T pop[DOM_NODES];
|
|
|
|
};
|
|
|
|
|
2006-01-09 06:44:57 -05:00
|
|
|
/** DOM stack context
|
|
|
|
*
|
|
|
|
* This holds 'runtime' data for the stack context. */
|
2005-12-20 19:15:19 -05:00
|
|
|
struct dom_stack_context {
|
2006-01-09 06:44:57 -05:00
|
|
|
/** Data specific to the context. */
|
2005-12-20 19:25:50 -05:00
|
|
|
void *data;
|
|
|
|
|
2006-01-09 06:44:57 -05:00
|
|
|
/**
|
|
|
|
* This is one big array of context specific objects. For the SGML
|
|
|
|
* parser this holds DTD-oriented info about the node (recorded in
|
|
|
|
* struct sgml_node_info). E.g. whether an element node is optional.
|
|
|
|
*/
|
2005-12-20 22:38:04 -05:00
|
|
|
unsigned char *state_objects;
|
|
|
|
|
2006-01-09 06:44:57 -05:00
|
|
|
/** Info about node callbacks and such. */
|
2005-12-20 19:15:19 -05:00
|
|
|
struct dom_stack_context_info *info;
|
|
|
|
};
|
|
|
|
|
2006-01-09 06:44:57 -05:00
|
|
|
/** Flags for controlling the DOM stack */
|
2005-12-20 22:48:50 -05:00
|
|
|
enum dom_stack_flag {
|
2006-01-09 06:44:57 -05:00
|
|
|
/** No flag needed. */
|
2006-01-03 14:35:32 -05:00
|
|
|
DOM_STACK_FLAG_NONE = 0,
|
|
|
|
|
2006-01-09 06:44:57 -05:00
|
|
|
/** Free nodes when popping by calling ref:[done_dom_node]. */
|
2006-01-03 14:35:32 -05:00
|
|
|
DOM_STACK_FLAG_FREE_NODES = 1,
|
2005-12-20 22:48:50 -05:00
|
|
|
};
|
|
|
|
|
2006-01-09 06:44:57 -05:00
|
|
|
/** The DOM stack
|
|
|
|
*
|
|
|
|
* The DOM stack is a convenient way to traverse DOM trees. Also it
|
2005-09-15 09:58:31 -04:00
|
|
|
* maintains needed state info and is therefore also a holder of the current
|
2005-11-15 04:43:52 -05:00
|
|
|
* context since the stack is used to when the DOM tree is manipulated. */
|
|
|
|
struct dom_stack {
|
2006-01-09 06:44:57 -05:00
|
|
|
/** The states currently on the stack. */
|
2005-11-15 04:43:52 -05:00
|
|
|
struct dom_stack_state *states;
|
2006-01-09 06:44:57 -05:00
|
|
|
/** The depth of the stack. */
|
2005-09-15 09:58:31 -04:00
|
|
|
size_t depth;
|
|
|
|
|
2006-01-09 06:44:57 -05:00
|
|
|
/** Flags given to ref:[init_dom_stack]. */
|
2005-12-20 22:48:50 -05:00
|
|
|
enum dom_stack_flag flags;
|
2005-12-07 21:02:27 -05:00
|
|
|
|
2006-01-09 06:44:57 -05:00
|
|
|
/** Contexts for the pushed and popped nodes. */
|
2005-12-26 23:59:12 -05:00
|
|
|
struct dom_stack_context **contexts;
|
2006-01-09 06:44:57 -05:00
|
|
|
/** The number of active contexts. */
|
2005-12-20 19:15:19 -05:00
|
|
|
size_t contexts_size;
|
2005-12-20 22:57:25 -05:00
|
|
|
|
2006-01-09 06:44:57 -05:00
|
|
|
/**
|
|
|
|
* The current context. Only meaningful within
|
|
|
|
* ref:[dom_stack_callback_T] functions. */
|
2005-12-20 19:32:43 -05:00
|
|
|
struct dom_stack_context *current;
|
2005-09-15 09:58:31 -04:00
|
|
|
};
|
|
|
|
|
2006-01-09 06:44:57 -05:00
|
|
|
/** Check whether stack is empty or not
|
|
|
|
*
|
|
|
|
* stack:: The stack to check.
|
|
|
|
*
|
|
|
|
* Returns non-zero if stack is empty. */
|
2005-12-18 20:15:36 -05:00
|
|
|
#define dom_stack_is_empty(stack) \
|
|
|
|
(!(stack)->states || (stack)->depth == 0)
|
2005-09-15 09:58:31 -04:00
|
|
|
|
2006-01-09 06:44:57 -05:00
|
|
|
/** Access state by offset from top
|
|
|
|
*
|
|
|
|
* stack:: The stack to fetch the state from.
|
|
|
|
* top_offset:: The offset from the stack top, zero is the top.
|
|
|
|
*
|
|
|
|
* Returns the requested state. */
|
2005-11-15 04:43:52 -05:00
|
|
|
static inline struct dom_stack_state *
|
|
|
|
get_dom_stack_state(struct dom_stack *stack, int top_offset)
|
2005-09-15 09:58:31 -04:00
|
|
|
{
|
2005-11-15 04:43:52 -05:00
|
|
|
assertm(stack->depth - 1 - top_offset >= 0,
|
2005-09-15 09:58:31 -04:00
|
|
|
"Attempting to access invalid state");
|
2005-11-15 04:43:52 -05:00
|
|
|
return &stack->states[stack->depth - 1 - top_offset];
|
2005-09-15 09:58:31 -04:00
|
|
|
}
|
|
|
|
|
2006-01-09 06:44:57 -05:00
|
|
|
/** Access the stack top
|
|
|
|
*
|
|
|
|
* stack:: The stack to get the top state from.
|
|
|
|
*
|
|
|
|
* Returns the top state. */
|
|
|
|
#define get_dom_stack_top(stack) \
|
|
|
|
get_dom_stack_state(stack, 0)
|
|
|
|
|
|
|
|
/** Access context specific state data
|
|
|
|
*
|
|
|
|
* Similar to ref:[get_dom_stack_state], this will fetch the data
|
|
|
|
* associated with the state for the given context.
|
|
|
|
*
|
|
|
|
* context:: The context to get data from.
|
|
|
|
* state:: The stack state to get data from.
|
|
|
|
*
|
|
|
|
* Returns the state data or NULL if ref:[dom_stack_context_info.object_size]
|
|
|
|
* was zero. */
|
2005-12-21 07:56:18 -05:00
|
|
|
static inline void *
|
|
|
|
get_dom_stack_state_data(struct dom_stack_context *context,
|
|
|
|
struct dom_stack_state *state)
|
|
|
|
{
|
|
|
|
size_t object_size = context->info->object_size;
|
|
|
|
|
|
|
|
if (!object_size) return NULL;
|
|
|
|
|
|
|
|
assertm(context->state_objects);
|
|
|
|
|
|
|
|
return (void *) &context->state_objects[state->depth * object_size];
|
|
|
|
}
|
2005-12-05 05:11:06 -05:00
|
|
|
|
2005-12-21 21:55:55 -05:00
|
|
|
/*#define DOM_STACK_TRACE*/
|
|
|
|
|
|
|
|
#ifdef DOM_STACK_TRACE
|
|
|
|
extern struct dom_stack_context_info dom_stack_trace_context_info;
|
2006-01-09 06:44:57 -05:00
|
|
|
/** Get debug info from the DOM stack
|
|
|
|
*
|
|
|
|
* Define `DOM_STACK_TRACE` to have debug info about the nodes added printed to
|
|
|
|
* the log. It will define add_dom_stack_tracer() to not be a no-op.
|
2006-01-12 18:11:39 -05:00
|
|
|
*
|
2006-01-09 06:44:57 -05:00
|
|
|
* Run as:
|
2006-01-12 18:11:39 -05:00
|
|
|
*
|
2006-01-09 06:44:57 -05:00
|
|
|
* ELINKS_LOG=/tmp/dom-dump.txt ./elinks -no-connect <url>
|
|
|
|
*
|
|
|
|
* to have the debug dumped into a file. */
|
2005-12-29 21:29:17 -05:00
|
|
|
#define add_dom_stack_tracer(stack, name) \
|
|
|
|
add_dom_stack_context(stack, name, &dom_stack_trace_context_info)
|
2005-12-21 21:55:55 -05:00
|
|
|
#else
|
2005-12-29 21:29:17 -05:00
|
|
|
#define add_dom_stack_tracer(stack, name) /* Nada */
|
2005-12-21 21:55:55 -05:00
|
|
|
#endif
|
|
|
|
|
2006-01-09 06:44:57 -05:00
|
|
|
/** The state iterators
|
|
|
|
*
|
|
|
|
* To safely iterate through the stack state iterators. */
|
2005-09-15 09:58:31 -04:00
|
|
|
|
2006-01-09 06:44:57 -05:00
|
|
|
/** Iterate the stack from bottom to top. */
|
2005-12-18 20:51:32 -05:00
|
|
|
#define foreach_dom_stack_state(stack, state, pos) \
|
|
|
|
for ((pos) = 0; (pos) < (stack)->depth; (pos)++) \
|
2006-01-09 08:11:29 -05:00
|
|
|
if (((state) = &(stack)->states[(pos)]))
|
2005-09-15 09:58:31 -04:00
|
|
|
|
2006-01-09 06:44:57 -05:00
|
|
|
/** Iterate the stack from top to bottom. */
|
2005-12-18 20:51:32 -05:00
|
|
|
#define foreachback_dom_stack_state(stack, state, pos) \
|
|
|
|
for ((pos) = (stack)->depth - 1; (pos) >= 0; (pos)--) \
|
2006-01-09 08:11:29 -05:00
|
|
|
if (((state) = &(stack)->states[(pos)]))
|
2005-09-15 09:58:31 -04:00
|
|
|
|
|
|
|
|
|
|
|
/* Life cycle functions. */
|
|
|
|
|
2006-01-09 06:44:57 -05:00
|
|
|
/** Initialise a DOM stack
|
|
|
|
* stack:: Pointer to a (preallocated) stack.
|
|
|
|
* flags:: Any flags needed for controlling the behaviour of the stack.
|
|
|
|
*/
|
2005-12-20 22:48:50 -05:00
|
|
|
void init_dom_stack(struct dom_stack *stack, enum dom_stack_flag flags);
|
2006-01-09 06:44:57 -05:00
|
|
|
/** Release a DOM stack
|
|
|
|
*
|
|
|
|
* Free all resources collected by the stack.
|
|
|
|
*
|
|
|
|
* stack:: The stack to release. */
|
2005-11-15 04:43:52 -05:00
|
|
|
void done_dom_stack(struct dom_stack *stack);
|
2005-09-15 09:58:31 -04:00
|
|
|
|
2006-01-09 06:44:57 -05:00
|
|
|
/** Add a context to the stack
|
|
|
|
*
|
|
|
|
* This is needed if either you want to have the stack allocated objects for
|
|
|
|
* created states and/or if you want to install callbacks for pushing or
|
|
|
|
* popping.
|
|
|
|
*
|
|
|
|
* stack:: The stack where the context should be created.
|
|
|
|
* data:: Private data to be stored in ref:[dom_stack_context.data].
|
|
|
|
* context_info:: Information about state objects and node callbacks.
|
|
|
|
*
|
|
|
|
* Returns a pointer to the newly created context or NULL. */
|
2005-12-26 23:59:12 -05:00
|
|
|
struct dom_stack_context *
|
|
|
|
add_dom_stack_context(struct dom_stack *stack, void *data,
|
|
|
|
struct dom_stack_context_info *context_info);
|
|
|
|
|
2006-01-09 06:44:57 -05:00
|
|
|
/** Unregister a stack context
|
|
|
|
* This should be done especially for temporary stack contexts (without any
|
|
|
|
* callbacks) so that they do not increasing the memory usage. */
|
2005-12-26 23:59:12 -05:00
|
|
|
void done_dom_stack_context(struct dom_stack *stack, struct dom_stack_context *context);
|
2005-12-20 14:27:20 -05:00
|
|
|
|
2006-01-09 06:44:57 -05:00
|
|
|
/** Push a node onto the stack
|
|
|
|
*
|
|
|
|
* Makes the pushed node the new top of the stack.
|
|
|
|
*
|
|
|
|
* stack:: The stack to push onto.
|
|
|
|
* node:: The node to push onto the stack.
|
|
|
|
*
|
|
|
|
* If an error occurs the node is released with ref:[done_dom_node] and NULL is
|
|
|
|
* returned. Else the pushed node is returned. */
|
2005-11-15 04:43:52 -05:00
|
|
|
struct dom_node *push_dom_node(struct dom_stack *stack, struct dom_node *node);
|
2005-09-15 09:58:31 -04:00
|
|
|
|
2006-01-09 06:44:57 -05:00
|
|
|
/** Pop the top stack state
|
|
|
|
*
|
|
|
|
* stack:: The stack to pop from. */
|
2005-11-15 04:43:52 -05:00
|
|
|
void pop_dom_node(struct dom_stack *stack);
|
2005-09-15 09:58:31 -04:00
|
|
|
|
2006-01-09 06:44:57 -05:00
|
|
|
/** Conditionally pop the stack states
|
|
|
|
*
|
|
|
|
* Searches the stack (using ref:[search_dom_stack]) for a specific node and
|
|
|
|
* pops all states until that particular state is met.
|
|
|
|
*
|
|
|
|
* NOTE: The popping is stopped if an immutable state is encountered. */
|
2005-11-15 04:43:52 -05:00
|
|
|
void pop_dom_nodes(struct dom_stack *stack, enum dom_node_type type,
|
2005-12-10 15:42:49 -05:00
|
|
|
struct dom_string *string);
|
2005-09-15 09:58:31 -04:00
|
|
|
|
2006-01-09 06:44:57 -05:00
|
|
|
/** Pop all states until target state
|
|
|
|
*
|
|
|
|
* Pop all stack states until a specific state is reached. The target state
|
|
|
|
* is also popped.
|
|
|
|
*
|
|
|
|
* stack:: The stack to pop from.
|
|
|
|
* target:: The state to pop until and including. */
|
2005-12-15 16:05:30 -05:00
|
|
|
void pop_dom_state(struct dom_stack *stack, struct dom_stack_state *target);
|
2005-12-05 13:40:35 -05:00
|
|
|
|
2006-01-09 06:44:57 -05:00
|
|
|
/** Search the stack states
|
|
|
|
*
|
|
|
|
* The string comparison is done against the ref:[dom_node.string] member of
|
|
|
|
* the of the state nodes.
|
|
|
|
*
|
|
|
|
* stack:: The stack to search in.
|
|
|
|
* type:: The type of node to match against.
|
|
|
|
* string:: The string to match against.
|
|
|
|
*
|
|
|
|
* Returns a state that matched the type and string or NULL. */
|
2005-12-21 07:48:37 -05:00
|
|
|
struct dom_stack_state *
|
|
|
|
search_dom_stack(struct dom_stack *stack, enum dom_node_type type,
|
|
|
|
struct dom_string *string);
|
|
|
|
|
2006-01-09 06:44:57 -05:00
|
|
|
/** Walk all nodes reachable from a given node
|
|
|
|
*
|
|
|
|
* Visits each node in the DOM tree rooted at a given node, pre-order style.
|
|
|
|
*
|
|
|
|
* stack:: The stack to use for walking the nodes.
|
|
|
|
* root:: The root node to start from.
|
|
|
|
*
|
|
|
|
* It is assummed that the given stack has been initialised with
|
|
|
|
* ref:[init_dom_stack] and that the caller already added one or more
|
|
|
|
* context to the stack. */
|
2005-11-15 04:43:52 -05:00
|
|
|
void walk_dom_nodes(struct dom_stack *stack, struct dom_node *root);
|
2005-09-15 09:58:31 -04:00
|
|
|
|
|
|
|
#endif
|