Gnome XML Library Reference Manual | |||
---|---|---|---|
<<< Previous Page | Home | Up | Next Page >>> |
struct xmlXPathContext { xmlDocPtr doc; /* The current document */ xmlNodePtr node; /* The current node */ int nb_variables; /* number of defined variables */ int max_variables; /* max number of variables */ xmlXPathVariablePtr *variables; /* Array of defined variables */ int nb_types; /* number of defined types */ int max_types; /* max number of types */ xmlXPathTypePtr *types; /* Array of defined types */ int nb_funcs; /* number of defined funcs */ int max_funcs; /* max number of funcs */ xmlXPathFuncPtr *funcs; /* Array of defined funcs */ int nb_axis; /* number of defined axis */ int max_axis; /* max number of axis */ xmlXPathAxisPtr *axis; /* Array of defined axis */ /* Namespace traversal should be implemented with user */ xmlNsPtr *namespaces; /* The namespaces lookup */ int nsNr; /* the current Namespace index */ void *user; /* user defined extra info */ /* extra variables */ int contextSize; /* the context size */ int proximityPosition; /* the proximity position */ /* extra stuff for XPointer */ int xptr; /* it this an XPointer context */ xmlNodePtr here; /* for here() */ xmlNodePtr origin; /* for origin() */ }; |
struct xmlXPathParserContext { const xmlChar *cur; /* the current char being parsed */ const xmlChar *base; /* the full expression */ int error; /* error code */ xmlXPathContextPtr context; /* the evaluation context */ xmlXPathObjectPtr value; /* the current value */ int valueNr; /* number of values stacked */ int valueMax; /* max number of values stacked */ xmlXPathObjectPtr *valueTab; /* stack of values */ }; |
typedef enum { XPATH_EXPRESSION_OK = 0, XPATH_NUMBER_ERROR, XPATH_UNFINISHED_LITERAL_ERROR, XPATH_START_LITERAL_ERROR, XPATH_VARIABLE_REF_ERROR, XPATH_UNDEF_VARIABLE_ERROR, XPATH_INVALID_PREDICATE_ERROR, XPATH_EXPR_ERROR, XPATH_UNCLOSED_ERROR, XPATH_UNKNOWN_FUNC_ERROR, XPATH_INVALID_OPERAND, XPATH_INVALID_TYPE, XPATH_INVALID_ARITY, XPATH_INVALID_CTXT_SIZE, XPATH_INVALID_CTXT_POSITION } xmlXPathError; |
Create a new xmlNodeSetPtr of type double and of value val
struct xmlNodeSet { int nodeNr; /* number of nodes in the set */ int nodeMax; /* size of the array as allocated */ xmlNodePtr *nodeTab; /* array of nodes in no particular order */ }; |
typedef enum { XPATH_UNDEFINED = 0, XPATH_NODESET = 1, XPATH_BOOLEAN = 2, XPATH_NUMBER = 3, XPATH_STRING = 4, XPATH_POINT = 5, XPATH_RANGE = 6, XPATH_LOCATIONSET = 7, XPATH_USERS = 8 } xmlXPathObjectType; |
struct xmlXPathObject { xmlXPathObjectType type; xmlNodeSetPtr nodesetval; int boolval; double floatval; xmlChar *stringval; void *user; int index; void *user2; int index2; }; |
int (*xmlXPathConvertFunc) (xmlXPathObjectPtr obj, int type); |
obj : | |
type : | |
Returns : |
struct xmlXPathType { const xmlChar *name; /* the type name */ xmlXPathConvertFunc func; /* the conversion function */ }; |
struct xmlXPathVariable { const xmlChar *name; /* the variable name */ xmlXPathObjectPtr value; /* the value */ }; |
void (*xmlXPathEvalFunc) (xmlXPathParserContextPtr ctxt, int nargs); |
ctxt : | |
nargs : |
struct xmlXPathFunct { const xmlChar *name; /* the function name */ xmlXPathEvalFunc func; /* the evaluation function */ }; |
xmlXPathObjectPtr (*xmlXPathAxisFunc) (xmlXPathParserContextPtr ctxt, xmlXPathObjectPtr cur); |
ctxt : | |
cur : | |
Returns : |
struct xmlXPathAxis { const xmlChar *name; /* the axis name */ xmlXPathAxisFunc func; /* the search function */ }; |
void (*xmlXPathFunction) (xmlXPathParserContextPtr ctxt, int nargs); |
ctxt : | |
nargs : |
int valuePush (xmlXPathParserContextPtr ctxt, xmlXPathObjectPtr value); |
ctxt : | |
value : | |
Returns : |
xmlXPathObjectPtr xmlXPathNewString (const xmlChar *val); |
Create a new xmlXPathObjectPtr of type string and of value val
val : | |
Returns : |
xmlXPathObjectPtr xmlXPathNewNodeSet (xmlNodePtr val); |
Create a new xmlXPathObjectPtr of type NodeSet and initialize it with the single Node val
val : | |
Returns : |
void xmlXPathNodeSetAdd (xmlNodeSetPtr cur, xmlNodePtr val); |
add a new xmlNodePtr ot an existing NodeSet
cur : | |
val : |
void xmlXPathIdFunction (xmlXPathParserContextPtr ctxt, int nargs); |
Implement the
ctxt : | |
nargs : |
void xmlXPathRoot (xmlXPathParserContextPtr ctxt); |
Initialize the context to the root of the document
ctxt : |
void xmlXPathEvalExpr (xmlXPathParserContextPtr ctxt); |
[14] Expr ::= OrExpr [21] OrExpr ::= AndExpr | OrExpr 'or' AndExpr
Parse and evaluate an expression, then push the result on the stack
ctxt : |
xmlXPathContextPtr xmlXPathNewContext (xmlDocPtr doc); |
Create a new xmlXPathContext
doc : | |
Returns : |
void xmlXPathFreeContext (xmlXPathContextPtr ctxt); |
Free up an xmlXPathContext
ctxt : |
xmlXPathObjectPtr xmlXPathEval (const xmlChar *str, xmlXPathContextPtr ctxt); |
Evaluate the XPath Location Path in the given context.
str : | |
ctxt : | |
Returns : |
xmlXPathObjectPtr xmlXPathEvalXPtrExpr (const xmlChar *str, xmlXPathContextPtr ctxt); |
Evaluate the location set corresponding to this expression.
str : | |
ctxt : | |
Returns : |
void xmlXPathFreeObject (xmlXPathObjectPtr obj); |
Free up an xmlXPathObjectPtr object.
obj : |
xmlXPathObjectPtr xmlXPathEvalExpression (const xmlChar *str, xmlXPathContextPtr ctxt); |
Evaluate the XPath expression in the given context.
str : | |
ctxt : | |
Returns : |
xmlNodeSetPtr xmlXPathNodeSetCreate (xmlNodePtr val); |
Create a new xmlNodeSetPtr of type double and of value val
val : | |
Returns : |
void xmlXPathFreeNodeSetList (xmlXPathObjectPtr obj); |
Free up the xmlXPathObjectPtr obj but don't deallocate the objects in the list contrary to xmlXPathFreeObject().
obj : |
void xmlXPathFreeNodeSet (xmlNodeSetPtr obj); |
Free the NodeSet compound (not the actual nodes !).
obj : |