Code

Rearrange to enable code that does not directly rely on lcms.
[inkscape.git] / src / dom / xpathtoken.cpp
index 41b7ad39da5b94974c6fcafc9e1b8723a1398a14..921cbf04437916818ffc2f934d0bb6a45df6b20d 100644 (file)
@@ -10,7 +10,7 @@
  * Authors:
  *   Bob Jamison
  *
- * Copyright (C) 2006 Bob Jamison
+ * Copyright (C) 2006-2008 Bob Jamison
  *
  *  This library is free software; you can redistribute it and/or
  *  modify it under the terms of the GNU Lesser General Public
@@ -42,354 +42,894 @@ namespace dom
 namespace xpath
 {
 
+
+
 //########################################################################
 //# X P A T H    T O K E N
 //########################################################################
 
-typedef struct
-{
-    int ival;
-    char *sval;
-} TokenStringPair;
-
-static TokenStringPair tokenStrings[] =
-{
-    //primitives
-    { Token::TOK_NOP,                     "nop"                     },
-    { Token::TOK_STR,                     "str"                     },
-    { Token::TOK_INT,                     "int"                     },
-    { Token::TOK_FLOAT,                   "float"                   },
-    //operators
-    { Token::TOK_AND,                     "and"                     },
-    { Token::TOK_OR,                      "or"                      },
-    { Token::TOK_MOD,                     "mod"                     },
-    { Token::TOK_DIV,                     "div"                     },
-    { Token::TOK_MULTIPLY,                "multiply"                },
-    { Token::TOK_DOUBLE_SLASH,            "double-slash"            },
-    { Token::TOK_SLASH,                   "slash"                   },
-    { Token::TOK_PIPE,                    "pipe"                    },
-    { Token::TOK_PLUS,                    "plus"                    },
-    { Token::TOK_MINUS,                   "minus"                   },
-    { Token::TOK_NEG,                     "neg"                     },
-    { Token::TOK_EQUALS,                  "equals"                  },
-    { Token::TOK_NOT_EQUALS,              "not-equals"              },
-    { Token::TOK_LESS_THAN_EQUALS,        "less-than-equals"        },
-    { Token::TOK_LESS_THAN,               "less-than"               },
-    { Token::TOK_GREATER_THAN_EQUALS,     "greater-than-equals"     },
-    { Token::TOK_GREATER_THAN,            "greater-than"            },
-    //path types
-    { Token::TOK_ABSOLUTE,                "absolute"                },
-    { Token::TOK_RELATIVE,                "relative"                },
-    { Token::TOK_STEP,                    "step"                    },
-    { Token::TOK_NAME_TEST,               "name-test"               },
-    { Token::TOK_EXPR,                    "expr"                    },
-    { Token::TOK_UNION,                   "union"                   },
-    //axis types
-    { Token::TOK_AXIS_ANCESTOR_OR_SELF,   "axis-ancestor-or-self"   },
-    { Token::TOK_AXIS_ANCESTOR,           "axis-ancestor"           },
-    { Token::TOK_AXIS_ATTRIBUTE,          "axis-attribute"          },
-    { Token::TOK_AXIS_CHILD,              "axis-child"              },
-    { Token::TOK_AXIS_DESCENDANT_OR_SELF, "axis-descendant-or-self" },
-    { Token::TOK_AXIS_DESCENDANT,         "axis-descendant"         },
-    { Token::TOK_AXIS_FOLLOWING_SIBLING,  "axis-following-sibling"  },
-    { Token::TOK_AXIS_FOLLOWING,          "axis-following"          },
-    { Token::TOK_AXIS_NAMESPACE,          "axis-namespace"          },
-    { Token::TOK_AXIS_PARENT,             "axis-parent"             },
-    { Token::TOK_AXIS_PRECEDING_SIBLING,  "axis-preceding-sibling"  },
-    { Token::TOK_AXIS_PRECEDING,          "axis-preceding"          },
-    { Token::TOK_AXIS_SELF,               "axis-self"               },
-    //function types
-    { Token::TOK_FUNC_LAST,               "func-last"               },
-    { Token::TOK_FUNC_POSITION,           "func-position"           },
-    { Token::TOK_FUNC_COUNT,              "func-count"              },
-    { Token::TOK_FUNC_ID,                 "func-id"                 },
-    { Token::TOK_FUNC_LOCAL_NAME,         "func-local-name"         },
-    { Token::TOK_FUNC_NAMESPACE_URI,      "func-namespace-uri"      },
-    { Token::TOK_FUNC_NAME,               "func-name"               },
-    { Token::TOK_FUNC_STRING,             "func-string"             },
-    { Token::TOK_FUNC_CONCAT,             "func-concat"             },
-    { Token::TOK_FUNC_STARTS_WITH,        "func-starts-with"        },
-    { Token::TOK_FUNC_CONTAINS,           "func-contains"           },
-    { Token::TOK_FUNC_SUBSTRING_BEFORE,   "func-substring-before"   },
-    { Token::TOK_FUNC_SUBSTRING_AFTER,    "func-substring-after"    },
-    { Token::TOK_FUNC_SUBSTRING,          "func-substring"          },
-    { Token::TOK_FUNC_STRING_LENGTH,      "func-string-length"      },
-    { Token::TOK_FUNC_NORMALIZE_SPACE,    "func-normalize-space"    },
-    { Token::TOK_FUNC_TRANSLATE,          "func-translate"          },
-    { Token::TOK_FUNC_BOOLEAN,            "func-boolean"            },
-    { Token::TOK_FUNC_NOT,                "func-not"                },
-    { Token::TOK_FUNC_TRUE,               "func-true"               },
-    { Token::TOK_FUNC_FALSE,              "func-false"              },
-    { Token::TOK_FUNC_LANG,               "func-lang"               },
-    { Token::TOK_FUNC_NUMBER,             "func-number"             },
-    { Token::TOK_FUNC_SUM,                "func-sum"                },
-    { Token::TOK_FUNC_FLOOR,              "func-floor"              },
-    { Token::TOK_FUNC_CEILING,            "func-ceiling"            },
-    { Token::TOK_FUNC_ROUND,              "func-round"              },
-    { -1,                                 (char *)0                 }
-};
+//########################################################################
+//# X P A T H    T O K E N    T Y P E S
+//########################################################################
+
 
 
+//###########################
+//# V A L U E S
+//###########################
+
 /**
- *  Return the string TokenType of this token
- *  (in the .cpp file)
- */
-DOMString Token::getTypeString()
+ * The following functions are called by a token's execute()
+ * method.  These functions are what differentiate one token
+ * from another and give each its personality.
+*/
+
+static bool tokStr(Token &tok, Stack &stack)
 {
-    DOMString ret = "unknown";
-    for (TokenStringPair *pair = tokenStrings ; pair->sval ; pair++)
-        {
-        if (pair->ival == type)
-            {
-            ret = pair->sval;
-            break;
-            }
-        }
-    return ret;
+    StackItem item;
+    item.sval = tok.sval;
+    stack.push(item);
+    return true;
 }
 
+static bool tokFloat(Token &tok, Stack &stack)
+{
+        StackItem item;
+        item.dval = tok.dval;
+        stack.push(item);
+        return true;
+}
 
+static bool tokInt(Token &tok, Stack &stack)
+{
+    StackItem item;
+    item.ival = tok.ival;
+    stack.push(item);
+    return true;
+}
 
-//########################################################################
-//# X P A T H    A X I S
-//########################################################################
+static bool tokAnd(Token &/*tok*/, Stack &stack)
+{
+    StackItem item1 = stack.pop();
+    StackItem item2 = stack.pop();
+    item1.ival = item1.ival && item2.ival;
+    stack.push(item1);
+    return true;
+}
 
-/**
- *
- */
-Axis::Axis()
+static bool tokOr(Token &/*tok*/, Stack &stack)
+{
+    StackItem item1 = stack.pop();
+    StackItem item2 = stack.pop();
+    item1.ival = item1.ival || item2.ival;
+    stack.push(item1);
+    return true;
+}
+
+static bool tokMod(Token &/*tok*/, Stack &stack)
 {
-    init();
+    StackItem item1 = stack.pop();
+    StackItem item2 = stack.pop();
+    item1.dval = fmod(item1.dval, item2.dval);
+    stack.push(item1);
+    return true;
 }
 
 
-/**
- *
- */
-Axis::Axis(int tokPos)
+static bool tokDiv(Token &/*tok*/, Stack &stack)
+{
+    StackItem item1 = stack.pop();
+    StackItem item2 = stack.pop();
+    item1.dval /= item2.dval;
+    stack.push(item1);
+    return true;
+}
+
+static bool tokMul(Token &/*tok*/, Stack &stack)
 {
-    init();
-    tokenPosition = tokPos;
+    StackItem item1 = stack.pop();
+    StackItem item2 = stack.pop();
+    item1.dval *= item2.dval;
+    stack.push(item1);
+    return true;
 }
 
+static bool tokPlus(Token &/*tok*/, Stack &stack)
+{
+    StackItem item1 = stack.pop();
+    StackItem item2 = stack.pop();
+    item1.dval += item2.dval;
+    stack.push(item1);
+    return true;
+}
 
-/**
- *
- */
-Axis::Axis(const Axis &other)
+static bool tokMinus(Token &/*tok*/, Stack &stack)
 {
-    init();
-    assign(other);
+    StackItem item1 = stack.pop();
+    StackItem item2 = stack.pop();
+    item1.dval -= item2.dval;
+    stack.push(item1);
+    return true;
 }
 
 
-/**
- *
- */
-Axis::~Axis()
+static bool tokNeg(Token &/*tok*/, Stack &stack)
 {
+    StackItem item = stack.pop();
+    item.dval = -item.dval;
+    item.ival = -item.ival;
+    stack.push(item);
+    return true;
 }
 
 
-/**
- *
- */
-Axis &Axis::operator=(const Axis &other)
+static bool tokEquals(Token &/*tok*/, Stack &stack)
 {
-    assign(other);
-    return *this;
+    StackItem item1 = stack.pop();
+    StackItem item2 = stack.pop();
+    item1.ival = (item1.dval == item2.dval);
+    stack.push(item1);
+    return true;
 }
 
-/**
- *
- */
-void Axis::init()
+
+static bool tokNotEquals(Token &/*tok*/, Stack &stack)
 {
-    tokenPosition = 0;
+    StackItem item1 = stack.pop();
+    StackItem item2 = stack.pop();
+    item1.ival = (item1.dval != item2.dval);
+    stack.push(item1);
+    return true;
 }
 
-/**
- *
- */
-void Axis::assign(const Axis &other)
+
+static bool tokLessThan(Token &/*tok*/, Stack &stack)
 {
-    tokenPosition = other.tokenPosition;
+    StackItem item1 = stack.pop();
+    StackItem item2 = stack.pop();
+    item1.ival = (item1.dval < item2.dval);
+    stack.push(item1);
+    return true;
 }
 
-/**
- *
- */
-void Axis::setPosition(unsigned int val)
+
+static bool tokLessThanEquals(Token &/*tok*/, Stack &stack)
 {
-    tokenPosition = val;
+    StackItem item1 = stack.pop();
+    StackItem item2 = stack.pop();
+    item1.ival = (item1.dval <= item2.dval);
+    stack.push(item1);
+    return true;
 }
 
-/**
- *
- */
-unsigned int Axis::getPosition()
+
+static bool tokGreaterThanEquals(Token &/*tok*/, Stack &stack)
 {
-    return tokenPosition;
+    StackItem item1 = stack.pop();
+    StackItem item2 = stack.pop();
+    item1.ival = (item1.dval >= item2.dval);
+    stack.push(item1);
+    return true;
 }
 
-/**
- *
- */
-void Axis::setNode(const Node *val)
+
+static bool tokGreaterThan(Token &/*tok*/, Stack &stack)
 {
-    node = (Node *)val;
+    StackItem item1 = stack.pop();
+    StackItem item2 = stack.pop();
+    item1.ival = (item1.dval > item2.dval);
+    stack.push(item1);
+    return true;
 }
 
-/**
- *
- */
-Node *Axis::getNode()
+
+
+
+
+
+//###########################
+//# X P A T H    I T E M S
+//###########################
+
+static bool tokAbsolute(Token &/*tok*/, Stack &/*stack*/)
 {
-    return node;
+    return true;
 }
 
-//########################################################################
-//# X P A T H    S T A C K    I T E M
-//########################################################################
+static bool tokRelative(Token &/*tok*/, Stack &/*stack*/)
+{
+    return true;
+}
 
-/**
- *
- */
-StackItem::StackItem()
+static bool tokStep(Token &/*tok*/, Stack &/*stack*/)
 {
-    ival = 0L;
-    dval = 0.0;
+    return true;
 }
 
+static bool tokNameTest(Token &/*tok*/, Stack &/*stack*/)
+{
+    return true;
+}
 
-/**
- *
- */
-StackItem::StackItem(const StackItem &other)
+static bool tokExpr(Token &/*tok*/, Stack &/*stack*/)
 {
-    assign(other);
+    return true;
 }
 
+static bool tokUnion(Token &/*tok*/, Stack &/*stack*/)
+{
+    return true;
+}
 
-/**
- *
- */
-StackItem::~StackItem()
+
+
+
+//###########################
+//# A X I S
+//###########################
+
+
+static bool tokAxisAncestorOrSelf(Token &/*tok*/, Stack &/*stack*/)
 {
+    return true;
 }
 
 
-/**
- *
- */
-StackItem &StackItem::operator=(const StackItem &other)
+static bool tokAxisAncestor(Token &/*tok*/, Stack &/*stack*/)
 {
-    assign(other);
-    return *this;
+    return true;
 }
 
-/**
- *
- */
-void StackItem::assign(const StackItem &other)
+
+static bool tokAxisAttribute(Token &/*tok*/, Stack &/*stack*/)
 {
-    sval = other.sval;
-    ival = other.ival;
-    dval = other.dval;
+    return true;
 }
 
 
-//########################################################################
-//# T O K E N    L I S T
-//########################################################################
+static bool tokAxisChild(Token &/*tok*/, Stack &/*stack*/)
+{
+    return true;
+}
 
-/**
- *
- */
-TokenList::TokenList()
+
+static bool tokAxisDescendantOrSelf(Token &/*tok*/, Stack &/*stack*/)
 {
+    return true;
 }
 
 
-/**
- *
- */
-TokenList::TokenList(const TokenList &other)
+static bool tokAxisDescendant(Token &/*tok*/, Stack &/*stack*/)
 {
-    assign(other);
+    return true;
 }
 
-/**
- *
- */
-TokenList &TokenList::operator=(const TokenList &other)
+
+static bool tokAxisFollowingSibling(Token &/*tok*/, Stack &/*stack*/)
 {
-    assign(other);
-    return *this;
+    return true;
 }
 
-/**
- *
- */
-void TokenList::assign(const TokenList &other)
+
+static bool tokAxisFollowing(Token &/*tok*/, Stack &/*stack*/)
 {
-    tokens = other.tokens;
+    return true;
 }
 
-/**
- *
- */
-TokenList::~TokenList()
+
+static bool tokAxisNamespace(Token &/*tok*/, Stack &/*stack*/)
+{
+    return true;
+}
+
+
+static bool tokAxisParent(Token &/*tok*/, Stack &/*stack*/)
+{
+    return true;
+}
+
+
+static bool tokAxisPrecedingSibling(Token &/*tok*/, Stack &/*stack*/)
+{
+    return true;
+}
+
+
+static bool tokAxisPreceding(Token &/*tok*/, Stack &/*stack*/)
 {
-    clear();
+    return true;
 }
 
+
+static bool tokAxisSelf(Token &/*tok*/, Stack &/*stack*/)
+{
+    return true;
+}
+
+
+
+//###########################
+//# F U N C T I O N S
+//###########################
+
+
+static bool tokFuncLast(Token &/*tok*/, Stack &/*stack*/)
+{
+    return true;
+}
+
+
+static bool tokFuncPosition(Token &/*tok*/, Stack &/*stack*/)
+{
+    return true;
+}
+
+
+static bool tokFuncCount(Token &/*tok*/, Stack &/*stack*/)
+{
+    return true;
+}
+
+
+static bool tokFuncId(Token &/*tok*/, Stack &/*stack*/)
+{
+    return true;
+}
+
+
+static bool tokFuncLocalName(Token &/*tok*/, Stack &/*stack*/)
+{
+    return true;
+}
+
+
+static bool tokFuncNamespaceUri(Token &/*tok*/, Stack &/*stack*/)
+{
+    return true;
+}
+
+
+static bool tokFuncName(Token &/*tok*/, Stack &/*stack*/)
+{
+    return true;
+}
+
+
+static bool tokFuncString(Token &/*tok*/, Stack &/*stack*/)
+{
+    return true;
+}
+
+
+static bool tokFuncConcat(Token &/*tok*/, Stack &/*stack*/)
+{
+    return true;
+}
+
+
+static bool tokFuncStartsWith(Token &/*tok*/, Stack &/*stack*/)
+{
+    return true;
+}
+
+
+static bool tokFuncContains(Token &/*tok*/, Stack &/*stack*/)
+{
+    return true;
+}
+
+
+static bool tokFuncSubstringBefore(Token &/*tok*/, Stack &/*stack*/)
+{
+    return true;
+}
+
+
+static bool tokFuncSubstringAfter(Token &/*tok*/, Stack &/*stack*/)
+{
+    return true;
+}
+
+
+static bool tokFuncSubstring(Token &/*tok*/, Stack &/*stack*/)
+{
+    return true;
+}
+
+
+static bool tokFuncStringLength(Token &/*tok*/, Stack &/*stack*/)
+{
+    return true;
+}
+
+
+static bool tokFuncNormalizeSpace(Token &/*tok*/, Stack &/*stack*/)
+{
+    return true;
+}
+
+
+static bool tokFuncTranslate(Token &/*tok*/, Stack &/*stack*/)
+{
+    return true;
+}
+
+
+static bool tokFuncBoolean(Token &/*tok*/, Stack &/*stack*/)
+{
+    return true;
+}
+
+
+static bool tokFuncNot(Token &/*tok*/, Stack &/*stack*/)
+{
+    return true;
+}
+
+
+static bool tokFuncTrue(Token &/*tok*/, Stack &/*stack*/)
+{
+    return true;
+}
+
+
+static bool tokFuncFalse(Token &/*tok*/, Stack &/*stack*/)
+{
+    return true;
+}
+
+
+static bool tokFuncLang(Token &/*tok*/, Stack &/*stack*/)
+{
+    return true;
+}
+
+
+static bool tokFuncNumber(Token &/*tok*/, Stack &/*stack*/)
+{
+    return true;
+}
+
+
+static bool tokFuncSum(Token &/*tok*/, Stack &/*stack*/)
+{
+    return true;
+}
+
+
+static bool tokFuncFloor(Token &/*tok*/, Stack &/*stack*/)
+{
+    return true;
+}
+
+
+static bool tokFuncCeiling(Token &/*tok*/, Stack &/*stack*/)
+{
+    return true;
+}
+
+
+static bool tokFuncRound(Token &/*tok*/, Stack &/*stack*/)
+{
+    return true;
+}
+
+
+
 /**
- *
+ * An entry for the token 'personality' table
  */
-void TokenList::clear()
+typedef struct
 {
-    std::vector<Token *>::iterator iter;
-    for (iter = tokens.begin() ; iter!= tokens.end() ; iter++)
-        {
-        delete (*iter);
-        }
-    tokens.clear();
-}
+    int ival;
+    char const *sval;
+    TokenFunc tokenFunc;
+} TokenTableEntry;
+
 
 /**
- *
+ * The token personality table
  */
-void TokenList::add(Token *tok)
+static TokenTableEntry tokenTable[] =
 {
-    tokens.push_back(tok);
-}
+    //### primitives
+    {
+      Token::TOK_NOP,
+      "nop",
+      NULL
+    },
+    {
+      Token::TOK_STR,
+      "str",
+      tokStr
+    },
+    {
+      Token::TOK_INT,
+      "int",
+      tokInt
+    },
+    {
+      Token::TOK_FLOAT,
+      "float",
+      tokFloat
+    },
+
+    //### operators
+    {
+      Token::TOK_AND,
+      "and",
+      tokAnd
+    },
+    {
+      Token::TOK_OR,
+      "or",
+      tokOr
+    },
+    {
+      Token::TOK_MOD,
+      "mod",
+      tokMod
+    },
+    {
+      Token::TOK_DIV,
+      "div",
+      tokDiv
+    },
+    {
+      Token::TOK_MUL,
+      "multiply",
+      tokMul
+    },
+    {
+      Token::TOK_DOUBLE_SLASH,
+      "double-slash",
+      NULL
+    },
+    {
+      Token::TOK_SLASH,
+      "slash",
+      NULL
+    },
+    {
+      Token::TOK_PIPE,
+      "pipe",
+      NULL
+    },
+    {
+      Token::TOK_PLUS,
+      "plus",
+      tokPlus
+    },
+    {
+      Token::TOK_MINUS,
+      "minus",
+      tokMinus
+    },
+    {
+      Token::TOK_NEG,
+      "neg",
+      tokNeg
+    },
+    {
+      Token::TOK_EQUALS,
+      "equals",
+      tokEquals
+    },
+    {
+      Token::TOK_NOT_EQUALS,
+      "not-equals",
+      tokNotEquals
+    },
+    {
+      Token::TOK_LESS_THAN_EQUALS,
+      "less-than-equals",
+      tokLessThanEquals
+    },
+    {
+      Token::TOK_LESS_THAN,
+      "less-than",
+      tokLessThan
+    },
+    {
+      Token::TOK_GREATER_THAN_EQUALS,
+      "greater-than-equals",
+      tokGreaterThanEquals
+    },
+    {
+      Token::TOK_GREATER_THAN,
+      "greater-than",
+      tokGreaterThan
+    },
+
+    //### path types
+    {
+      Token::TOK_ABSOLUTE,
+      "absolute",
+      tokAbsolute
+    },
+    {
+      Token::TOK_RELATIVE,
+      "relative",
+      tokRelative
+    },
+    {
+      Token::TOK_STEP,
+      "step",
+      tokStep
+    },
+    {
+      Token::TOK_NAME_TEST,
+      "name-test",
+      tokNameTest
+    },
+    {
+      Token::TOK_EXPR,
+      "expr",
+      tokExpr
+    },
+    {
+      Token::TOK_UNION,
+      "union",
+      tokUnion
+    },
+
+    //### axis types
+    {
+      Token::TOK_AXIS_ANCESTOR_OR_SELF,
+      "axis-ancestor-or-self",
+      tokAxisAncestorOrSelf
+    },
+    {
+      Token::TOK_AXIS_ANCESTOR,
+      "axis-ancestor",
+      tokAxisAncestor
+    },
+    {
+      Token::TOK_AXIS_ATTRIBUTE,
+      "axis-attribute",
+      tokAxisAttribute
+    },
+    {
+      Token::TOK_AXIS_CHILD,
+      "axis-child",
+      tokAxisChild
+    },
+    {
+      Token::TOK_AXIS_DESCENDANT_OR_SELF,
+      "axis-descendant-or-self",
+      tokAxisDescendantOrSelf
+    },
+    {
+      Token::TOK_AXIS_DESCENDANT,
+      "axis-descendant",
+      tokAxisDescendant
+    },
+    {
+      Token::TOK_AXIS_FOLLOWING_SIBLING,
+      "axis-following-sibling",
+      tokAxisFollowingSibling
+    },
+    {
+      Token::TOK_AXIS_FOLLOWING,
+      "axis-following",
+      tokAxisFollowing
+    },
+    {
+      Token::TOK_AXIS_NAMESPACE,
+      "axis-namespace",
+      tokAxisNamespace
+    },
+    {
+      Token::TOK_AXIS_PARENT,
+      "axis-parent",
+      tokAxisParent
+    },
+    {
+      Token::TOK_AXIS_PRECEDING_SIBLING,
+      "axis-preceding-sibling",
+      tokAxisPrecedingSibling
+    },
+    {
+      Token::TOK_AXIS_PRECEDING,
+      "axis-preceding",
+      tokAxisPreceding
+    },
+    {
+      Token::TOK_AXIS_SELF,
+      "axis-self",
+      tokAxisSelf
+    },
+
+    //### function types
+    {
+      Token::TOK_FUNC_LAST,
+      "func-last",
+      tokFuncLast
+    },
+    {
+      Token::TOK_FUNC_POSITION,
+      "func-position",
+      tokFuncPosition
+    },
+    {
+      Token::TOK_FUNC_COUNT,
+      "func-count",
+      tokFuncCount
+    },
+    {
+      Token::TOK_FUNC_ID,
+      "func-id",
+      tokFuncId
+    },
+    {
+      Token::TOK_FUNC_LOCAL_NAME,
+      "func-local-name",
+      tokFuncLocalName
+    },
+    {
+      Token::TOK_FUNC_NAMESPACE_URI,
+      "func-namespace-uri",
+      tokFuncNamespaceUri
+    },
+    {
+      Token::TOK_FUNC_NAME,
+      "func-name",
+      tokFuncName
+    },
+    {
+      Token::TOK_FUNC_STRING,
+      "func-string",
+      tokFuncString
+    },
+    {
+      Token::TOK_FUNC_CONCAT,
+      "func-concat",
+      tokFuncConcat
+    },
+    {
+      Token::TOK_FUNC_STARTS_WITH,
+      "func-starts-with",
+      tokFuncStartsWith
+    },
+    {
+      Token::TOK_FUNC_CONTAINS,
+      "func-contains",
+      tokFuncContains
+    },
+    {
+      Token::TOK_FUNC_SUBSTRING_BEFORE,
+      "func-substring-before",
+      tokFuncSubstringBefore
+    },
+    {
+      Token::TOK_FUNC_SUBSTRING_AFTER,
+      "func-substring-after",
+      tokFuncSubstringAfter
+    },
+    {
+      Token::TOK_FUNC_SUBSTRING,
+      "func-substring",
+      tokFuncSubstring
+    },
+    {
+      Token::TOK_FUNC_STRING_LENGTH,
+      "func-string-length",
+      tokFuncStringLength
+    },
+    {
+      Token::TOK_FUNC_NORMALIZE_SPACE,
+      "func-normalize-space",
+      tokFuncNormalizeSpace
+    },
+    {
+      Token::TOK_FUNC_TRANSLATE,
+      "func-translate",
+      tokFuncTranslate
+    },
+    {
+      Token::TOK_FUNC_BOOLEAN,
+      "func-boolean",
+      tokFuncBoolean
+    },
+    {
+      Token::TOK_FUNC_NOT,
+      "func-not",
+      tokFuncNot
+    },
+    {
+      Token::TOK_FUNC_TRUE,
+      "func-true",
+      tokFuncTrue
+    },
+    {
+      Token::TOK_FUNC_FALSE,
+      "func-false",
+      tokFuncFalse
+    },
+    {
+      Token::TOK_FUNC_LANG,
+      "func-lang",
+      tokFuncLang
+    },
+    {
+      Token::TOK_FUNC_NUMBER,
+      "func-number",
+      tokFuncNumber
+    },
+    {
+      Token::TOK_FUNC_SUM,
+      "func-sum",
+      tokFuncSum
+    },
+    {
+      Token::TOK_FUNC_FLOOR,
+      "func-floor",
+      tokFuncFloor
+    },
+    {
+      Token::TOK_FUNC_CEILING,
+      "func-ceiling",
+      tokFuncCeiling
+    },
+    {
+      Token::TOK_FUNC_ROUND,
+      "func-round",
+      tokFuncRound
+    },
+
+    { -1,
+      (char *)0,
+      NULL
+    }
+};
 
 
 /**
- *
+ *  Return the string TokenType of this token
+ *  (in the .cpp file)
  */
-unsigned int TokenList::size() const
+DOMString Token::getTypeString()
 {
-    return (unsigned int)tokens.size();
+    DOMString ret = "unknown";
+    for (TokenTableEntry *entry = tokenTable ; entry->sval ; entry++)
+        {
+        if (entry->ival == type)
+            {
+            ret = entry->sval;
+            break;
+            }
+        }
+    return ret;
 }
 
 
 /**
- *
+ * Create a token of the given type, giving it
+ * the data and personalities it needs
  */
-void TokenList::dump()
+Token Token::create(int type, long ival,
+           double dval, const DOMString &sval)
 {
-    std::vector<Token *>::iterator iter;
-    printf("############# TOKENS\n");
-    for (iter = tokens.begin() ; iter != tokens.end() ; iter++)
+    Token tok(type, ival, dval, sval);
+    for (TokenTableEntry *entry = tokenTable ; entry->sval ; entry++)
         {
-        Token *tok = *iter;
-        tok->dump();
+        if (entry->ival == type)
+            {
+            tok.tokenFunc = entry->tokenFunc;
+            break;
+            }
         }
+    
+    return tok;
 }
 
 
+
+
+
+
+
+
 //########################################################################
 //# X P A T H    E X E C U T O R
 //########################################################################
@@ -426,11 +966,7 @@ TokenExecutor::~TokenExecutor()
  */
 void TokenExecutor::assign(const TokenExecutor &other)
 {
-    axis        = other.axis;
-    axisStack   = other.axisStack;
-    stackSize   = other.stackSize;
-    for (int i=0 ; i<stackSize ; i++)
-        stack[i] = other.stack[i];
+    tokenList   = other.tokenList;
 }
 
 
@@ -439,59 +975,79 @@ void TokenExecutor::assign(const TokenExecutor &other)
  */
 void TokenExecutor::reset()
 {
-    axis.setPosition(0);
-    axis.setNode(NULL);
-    stackSize = 0;
 }
 
 
 
 
 /**
- * Set the root node
+ * Execute a list upon a given node.  For each Axis encountered,
+ * get the nodes encountered so far, and execute the rest of the
+ * list of tokens upon each of the nodes.
  */
-NodeList TokenExecutor::execute(const TokenList &tokens, const Node *node)
+int TokenExecutor::execute(std::vector<Token> &tokens,
+                            int position,
+                            const NodePtr /*node*/,
+                            NodeList &result)
 {
+    Stack stack(*this);
 
-    axis.setPosition(0);
-    axis.setNode(node);
+    NodeList contextNodes;
 
-    nodeList.clear();
+    int length = (int) tokens.size();
 
-    while (axis.getPosition() < tokens.size())
+    for ( ; position < length ; position ++)
         {
-        }
-
-    return nodeList;
-}
-
+        Token tok = tokens[position];
+        if (tok.isAxis())
+            {
+            int pos2 = 0;
+            //Do rest of tokens with the nodes we have found so far
+            for (unsigned int i = 0 ; i<contextNodes.getLength() ; i++)
+                {
+                NodePtr contextNode = contextNodes.item(i);
+                pos2 = execute(tokens, position, contextNode, result);
+                if (pos2 < 0)
+                    {
+                    return -1;
+                    }
+                }
+            position = pos2;
+            }
+        else
+            {
+            if (!tok.execute(stack))
+                {
+                return -1;
+                } 
+            }
 
+        }//for
 
+    return position;
+}
 
 
 /**
- *
+ * Execute the tokens in a TokenList upon a given node
  */
-void TokenExecutor::push(StackItem &item)
+bool TokenExecutor::execute(TokenList &tokenList,
+                            const NodePtr node,
+                            NodeList &result)
 {
-    if (stackSize>=STACK_SIZE)
-        {
-        return;
-        }
-    stack[stackSize++] = item;
-}
 
-/**
- *
- */
-StackItem TokenExecutor::pop()
-{
-    if (stackSize<1)
+    NodeList nodelist;
+
+    std::vector<Token> &tokens = tokenList.getTokens();
+    if (execute(tokens, 0, node, nodeList) < 0)
         {
-        StackItem item;
-        return item;
+        //error message
+        return false;
         }
-    return stack[--stackSize];
+
+    result = nodeList;
+
+    return true;
 }
 
 
@@ -503,6 +1059,9 @@ StackItem TokenExecutor::pop()
 
 
 
+
+
+
 } // namespace xpath
 } // namespace dom
 } // namespace w3c