[prev in list] [next in list] [prev in thread] [next in thread] 

List:       axis-cvs
Subject:    svn commit: r719381 [5/5] - in /webservices/axis2/trunk/c/axiom: src/xpath/
From:       dumindu () apache ! org
Date:       2008-11-20 21:26:09
Message-ID: 20081120212610.7A29023889CC () eris ! apache ! org
[Download RAW message or body]

Modified: webservices/axis2/trunk/c/axiom/src/xpath/xpath_streaming.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/src/xpath/xpath_streaming.c?rev=719381&r1=719380&r2=719381&view=diff
 ==============================================================================
--- webservices/axis2/trunk/c/axiom/src/xpath/xpath_streaming.c (original)
+++ webservices/axis2/trunk/c/axiom/src/xpath/xpath_streaming.c Thu Nov 20 13:26:08 \
2008 @@ -1,225 +1,225 @@
-
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#include "xpath.h"
-#include "xpath_streaming.h"
-#include "xpath_internals.h"
-#include "xpath_internals_engine.h"
-
-axiom_xpath_streaming_t axiom_xpath_streaming_check_operation(
-    const axutil_env_t *env,
-    axiom_xpath_expression_t* expr,
-    int op_p)
-{
-    axiom_xpath_operation_t *op;
-
-    if (op_p == AXIOM_XPATH_PARSE_END)
-    {
-        return AXIOM_XPATH_STREAMING_CONSTANT;
-    }
-
-    op = AXIOM_XPATH_OPR_EXPR_GET(op_p);
-
-    switch (op->opr)
-    {
-        case AXIOM_XPATH_OPERATION_CONTEXT_NODE:
-        case AXIOM_XPATH_OPERATION_ROOT_NODE:
-            return axiom_xpath_streaming_combine_dependent(
-                        AXIOM_XPATH_CHECK(op->op1),
-                        AXIOM_XPATH_STREAMING_CONSTANT);
-
-        case AXIOM_XPATH_OPERATION_STEP:
-            return axiom_xpath_streaming_combine_dependent(
-                        AXIOM_XPATH_CHECK(op->op1),
-                        AXIOM_XPATH_CHECK(op->op2));
-
-        case AXIOM_XPATH_OPERATION_RESULT:
-            return AXIOM_XPATH_STREAMING_CONSTANT;
-
-        case AXIOM_XPATH_OPERATION_UNION:
-            return axiom_xpath_streaming_combine_independent(
-                        AXIOM_XPATH_CHECK(op->op1),
-                        AXIOM_XPATH_CHECK(op->op2));
-
-        case AXIOM_XPATH_OPERATION_EQUAL_EXPR:
-            return axiom_xpath_streaming_combine_independent(
-                        AXIOM_XPATH_CHECK(op->op1),
-                        AXIOM_XPATH_CHECK(op->op2));
-
-        case AXIOM_XPATH_OPERATION_LITERAL:
-            return AXIOM_XPATH_STREAMING_CONSTANT;
-
-        case AXIOM_XPATH_OPERATION_NUMBER:
-            return AXIOM_XPATH_STREAMING_CONSTANT;
-
-        case AXIOM_XPATH_OPERATION_PATH_EXPRESSION:
-            return axiom_xpath_streaming_combine_dependent(
-                        AXIOM_XPATH_CHECK(op->op1),
-                        AXIOM_XPATH_CHECK(op->op2));
-
-        case AXIOM_XPATH_OPERATION_NODE_TEST:
-            return axiom_xpath_streaming_check_node_test(env, expr, op);
-
-        case AXIOM_XPATH_OPERATION_PREDICATE:
-            return axiom_xpath_streaming_check_predicate(env, expr, op_p);
-
-        default:
-#ifdef AXIOM_XPATH_DEBUG
-            printf("Unidentified operation.\n");
-#endif
-
-            return AXIOM_XPATH_STREAMING_NOT_SUPPORTED;
-    }
-}
-
-axiom_xpath_streaming_t axiom_xpath_streaming_check_predicate(
-    const axutil_env_t *env,
-    axiom_xpath_expression_t* expr,
-    int op_p)
-{
-    axiom_xpath_operation_t *op;
-
-    if (op_p == AXIOM_XPATH_PARSE_END)
-    {
-        return AXIOM_XPATH_STREAMING_CONSTANT;
-    }
-
-    op = AXIOM_XPATH_OPR_EXPR_GET(op_p);
-
-    return axiom_xpath_streaming_combine_dependent(
-                AXIOM_XPATH_CHECK(op->op1),
-                AXIOM_XPATH_CHECK(op->op2));
-}
-
-axiom_xpath_streaming_t axiom_xpath_streaming_check_node_test(
-    const axutil_env_t *env,
-    axiom_xpath_expression_t* expr,
-    axiom_xpath_operation_t *op)
-{
-    axiom_xpath_axis_t axis = AXIOM_XPATH_AXIS_NONE;
-    axiom_xpath_streaming_t r;
-
-    if (!op->par2)
-    {
-#ifdef AXIOM_XPATH_DEBUG
-        printf("axis is NULL in the step operator\n");
-#endif
-        return AXIOM_XPATH_STREAMING_NOT_SUPPORTED;
-    }
-
-    axis = *((axiom_xpath_axis_t *)op->par2);
-
-    switch (axis)
-    {
-        case AXIOM_XPATH_AXIS_ATTRIBUTE:
-        case AXIOM_XPATH_AXIS_CHILD:
-            break;
-
-        default:
-            return AXIOM_XPATH_STREAMING_NOT_SUPPORTED;
-    }
-
-    r = axiom_xpath_streaming_check_predicate(env, expr, op->op1);
-
-    if (r != AXIOM_XPATH_STREAMING_ATTRIBUTE
-            && r != AXIOM_XPATH_STREAMING_CONSTANT)
-    {
-        return AXIOM_XPATH_STREAMING_NOT_SUPPORTED;
-    }
-
-    if (axis == AXIOM_XPATH_AXIS_ATTRIBUTE)
-    {
-        return AXIOM_XPATH_STREAMING_ATTRIBUTE;
-    }
-    else
-    {
-        return AXIOM_XPATH_STREAMING_SUPPORTED;
-    }
-}
-
-axiom_xpath_streaming_t axiom_xpath_streaming_combine_dependent(
-    axiom_xpath_streaming_t r1,
-    axiom_xpath_streaming_t r2)
-{
-    if (r1 == AXIOM_XPATH_STREAMING_NOT_SUPPORTED
-            || r2 == AXIOM_XPATH_STREAMING_NOT_SUPPORTED)
-    {
-        return AXIOM_XPATH_STREAMING_NOT_SUPPORTED;
-    }
-    else if (r1 == AXIOM_XPATH_STREAMING_SUPPORTED
-            || r2 == AXIOM_XPATH_STREAMING_SUPPORTED)
-    {
-        return AXIOM_XPATH_STREAMING_SUPPORTED;
-    }
-    else if (r1 == AXIOM_XPATH_STREAMING_ATTRIBUTE
-            || r2 == AXIOM_XPATH_STREAMING_ATTRIBUTE)
-    {
-        return AXIOM_XPATH_STREAMING_ATTRIBUTE;
-    }
-    else
-    {
-        return AXIOM_XPATH_STREAMING_CONSTANT;
-    }
-}
-
-axiom_xpath_streaming_t axiom_xpath_streaming_combine_independent(
-    axiom_xpath_streaming_t r1,
-    axiom_xpath_streaming_t r2)
-{
-    if (r1 == AXIOM_XPATH_STREAMING_NOT_SUPPORTED
-            || r2 == AXIOM_XPATH_STREAMING_NOT_SUPPORTED)
-    {
-        return AXIOM_XPATH_STREAMING_NOT_SUPPORTED;
-    }
-    else if (r1 == AXIOM_XPATH_STREAMING_CONSTANT
-            || r2 == AXIOM_XPATH_STREAMING_CONSTANT)
-    {
-        if (r1 == AXIOM_XPATH_STREAMING_SUPPORTED
-                || r2 == AXIOM_XPATH_STREAMING_SUPPORTED)
-        {
-            return AXIOM_XPATH_STREAMING_SUPPORTED;
-        }
-        else if (r1 == AXIOM_XPATH_STREAMING_ATTRIBUTE
-                || r2 == AXIOM_XPATH_STREAMING_ATTRIBUTE)
-        {
-            return AXIOM_XPATH_STREAMING_ATTRIBUTE;
-        }
-        else
-        {
-            return AXIOM_XPATH_STREAMING_CONSTANT;
-        }
-    }
-    else if (r1 == AXIOM_XPATH_STREAMING_ATTRIBUTE
-            || r2 == AXIOM_XPATH_STREAMING_ATTRIBUTE)
-    {
-        if (r1 == AXIOM_XPATH_STREAMING_SUPPORTED
-                || r2 == AXIOM_XPATH_STREAMING_SUPPORTED)
-        {
-            return AXIOM_XPATH_STREAMING_SUPPORTED;
-        }
-        else
-        {
-            return AXIOM_XPATH_STREAMING_ATTRIBUTE;
-        }
-    }
-    else
-    {
-        return AXIOM_XPATH_STREAMING_NOT_SUPPORTED;
-    }
-}
-
+
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include "xpath.h"
+#include "xpath_streaming.h"
+#include "xpath_internals.h"
+#include "xpath_internals_engine.h"
+
+axiom_xpath_streaming_t axiom_xpath_streaming_check_operation(
+    const axutil_env_t *env,
+    axiom_xpath_expression_t* expr,
+    int op_p)
+{
+    axiom_xpath_operation_t *op;
+
+    if (op_p == AXIOM_XPATH_PARSE_END)
+    {
+        return AXIOM_XPATH_STREAMING_CONSTANT;
+    }
+
+    op = AXIOM_XPATH_OPR_EXPR_GET(op_p);
+
+    switch (op->opr)
+    {
+        case AXIOM_XPATH_OPERATION_CONTEXT_NODE:
+        case AXIOM_XPATH_OPERATION_ROOT_NODE:
+            return axiom_xpath_streaming_combine_dependent(
+                        AXIOM_XPATH_CHECK(op->op1),
+                        AXIOM_XPATH_STREAMING_CONSTANT);
+
+        case AXIOM_XPATH_OPERATION_STEP:
+            return axiom_xpath_streaming_combine_dependent(
+                        AXIOM_XPATH_CHECK(op->op1),
+                        AXIOM_XPATH_CHECK(op->op2));
+
+        case AXIOM_XPATH_OPERATION_RESULT:
+            return AXIOM_XPATH_STREAMING_CONSTANT;
+
+        case AXIOM_XPATH_OPERATION_UNION:
+            return axiom_xpath_streaming_combine_independent(
+                        AXIOM_XPATH_CHECK(op->op1),
+                        AXIOM_XPATH_CHECK(op->op2));
+
+        case AXIOM_XPATH_OPERATION_EQUAL_EXPR:
+            return axiom_xpath_streaming_combine_independent(
+                        AXIOM_XPATH_CHECK(op->op1),
+                        AXIOM_XPATH_CHECK(op->op2));
+
+        case AXIOM_XPATH_OPERATION_LITERAL:
+            return AXIOM_XPATH_STREAMING_CONSTANT;
+
+        case AXIOM_XPATH_OPERATION_NUMBER:
+            return AXIOM_XPATH_STREAMING_CONSTANT;
+
+        case AXIOM_XPATH_OPERATION_PATH_EXPRESSION:
+            return axiom_xpath_streaming_combine_dependent(
+                        AXIOM_XPATH_CHECK(op->op1),
+                        AXIOM_XPATH_CHECK(op->op2));
+
+        case AXIOM_XPATH_OPERATION_NODE_TEST:
+            return axiom_xpath_streaming_check_node_test(env, expr, op);
+
+        case AXIOM_XPATH_OPERATION_PREDICATE:
+            return axiom_xpath_streaming_check_predicate(env, expr, op_p);
+
+        default:
+#ifdef AXIOM_XPATH_DEBUG
+            printf("Unidentified operation.\n");
+#endif
+
+            return AXIOM_XPATH_STREAMING_NOT_SUPPORTED;
+    }
+}
+
+axiom_xpath_streaming_t axiom_xpath_streaming_check_predicate(
+    const axutil_env_t *env,
+    axiom_xpath_expression_t* expr,
+    int op_p)
+{
+    axiom_xpath_operation_t *op;
+
+    if (op_p == AXIOM_XPATH_PARSE_END)
+    {
+        return AXIOM_XPATH_STREAMING_CONSTANT;
+    }
+
+    op = AXIOM_XPATH_OPR_EXPR_GET(op_p);
+
+    return axiom_xpath_streaming_combine_dependent(
+                AXIOM_XPATH_CHECK(op->op1),
+                AXIOM_XPATH_CHECK(op->op2));
+}
+
+axiom_xpath_streaming_t axiom_xpath_streaming_check_node_test(
+    const axutil_env_t *env,
+    axiom_xpath_expression_t* expr,
+    axiom_xpath_operation_t *op)
+{
+    axiom_xpath_axis_t axis = AXIOM_XPATH_AXIS_NONE;
+    axiom_xpath_streaming_t r;
+
+    if (!op->par2)
+    {
+#ifdef AXIOM_XPATH_DEBUG
+        printf("axis is NULL in the step operator\n");
+#endif
+        return AXIOM_XPATH_STREAMING_NOT_SUPPORTED;
+    }
+
+    axis = *((axiom_xpath_axis_t *)op->par2);
+
+    switch (axis)
+    {
+        case AXIOM_XPATH_AXIS_ATTRIBUTE:
+        case AXIOM_XPATH_AXIS_CHILD:
+            break;
+
+        default:
+            return AXIOM_XPATH_STREAMING_NOT_SUPPORTED;
+    }
+
+    r = axiom_xpath_streaming_check_predicate(env, expr, op->op1);
+
+    if (r != AXIOM_XPATH_STREAMING_ATTRIBUTE
+            && r != AXIOM_XPATH_STREAMING_CONSTANT)
+    {
+        return AXIOM_XPATH_STREAMING_NOT_SUPPORTED;
+    }
+
+    if (axis == AXIOM_XPATH_AXIS_ATTRIBUTE)
+    {
+        return AXIOM_XPATH_STREAMING_ATTRIBUTE;
+    }
+    else
+    {
+        return AXIOM_XPATH_STREAMING_SUPPORTED;
+    }
+}
+
+axiom_xpath_streaming_t axiom_xpath_streaming_combine_dependent(
+    axiom_xpath_streaming_t r1,
+    axiom_xpath_streaming_t r2)
+{
+    if (r1 == AXIOM_XPATH_STREAMING_NOT_SUPPORTED
+            || r2 == AXIOM_XPATH_STREAMING_NOT_SUPPORTED)
+    {
+        return AXIOM_XPATH_STREAMING_NOT_SUPPORTED;
+    }
+    else if (r1 == AXIOM_XPATH_STREAMING_SUPPORTED
+            || r2 == AXIOM_XPATH_STREAMING_SUPPORTED)
+    {
+        return AXIOM_XPATH_STREAMING_SUPPORTED;
+    }
+    else if (r1 == AXIOM_XPATH_STREAMING_ATTRIBUTE
+            || r2 == AXIOM_XPATH_STREAMING_ATTRIBUTE)
+    {
+        return AXIOM_XPATH_STREAMING_ATTRIBUTE;
+    }
+    else
+    {
+        return AXIOM_XPATH_STREAMING_CONSTANT;
+    }
+}
+
+axiom_xpath_streaming_t axiom_xpath_streaming_combine_independent(
+    axiom_xpath_streaming_t r1,
+    axiom_xpath_streaming_t r2)
+{
+    if (r1 == AXIOM_XPATH_STREAMING_NOT_SUPPORTED
+            || r2 == AXIOM_XPATH_STREAMING_NOT_SUPPORTED)
+    {
+        return AXIOM_XPATH_STREAMING_NOT_SUPPORTED;
+    }
+    else if (r1 == AXIOM_XPATH_STREAMING_CONSTANT
+            || r2 == AXIOM_XPATH_STREAMING_CONSTANT)
+    {
+        if (r1 == AXIOM_XPATH_STREAMING_SUPPORTED
+                || r2 == AXIOM_XPATH_STREAMING_SUPPORTED)
+        {
+            return AXIOM_XPATH_STREAMING_SUPPORTED;
+        }
+        else if (r1 == AXIOM_XPATH_STREAMING_ATTRIBUTE
+                || r2 == AXIOM_XPATH_STREAMING_ATTRIBUTE)
+        {
+            return AXIOM_XPATH_STREAMING_ATTRIBUTE;
+        }
+        else
+        {
+            return AXIOM_XPATH_STREAMING_CONSTANT;
+        }
+    }
+    else if (r1 == AXIOM_XPATH_STREAMING_ATTRIBUTE
+            || r2 == AXIOM_XPATH_STREAMING_ATTRIBUTE)
+    {
+        if (r1 == AXIOM_XPATH_STREAMING_SUPPORTED
+                || r2 == AXIOM_XPATH_STREAMING_SUPPORTED)
+        {
+            return AXIOM_XPATH_STREAMING_SUPPORTED;
+        }
+        else
+        {
+            return AXIOM_XPATH_STREAMING_ATTRIBUTE;
+        }
+    }
+    else
+    {
+        return AXIOM_XPATH_STREAMING_NOT_SUPPORTED;
+    }
+}
+

Modified: webservices/axis2/trunk/c/axiom/src/xpath/xpath_streaming.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/src/xpath/xpath_streaming.h?rev=719381&r1=719380&r2=719381&view=diff
 ==============================================================================
--- webservices/axis2/trunk/c/axiom/src/xpath/xpath_streaming.h (original)
+++ webservices/axis2/trunk/c/axiom/src/xpath/xpath_streaming.h Thu Nov 20 13:26:08 \
2008 @@ -1,126 +1,126 @@
-
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#ifndef XPATH_STREAMING_H
-#define XPATH_STREAMING_H
-
-#include "xpath_internals.h"
-
-#ifdef __cplusplus
-extern "C"
-{
-#endif
-
-    /**
-     * @defgroup axiom_xpath_streaming streaming
-     * @ingroup axiom_xpath
-     * @{
-     */
-
-
-    /**
-     * XPath streaming support
-     */
-    typedef enum axiom_xpath_streaming_t
-    {
-        AXIOM_XPATH_STREAMING_NOT_SUPPORTED = 0,
-        AXIOM_XPATH_STREAMING_SUPPORTED,
-        AXIOM_XPATH_STREAMING_CONSTANT,
-        AXIOM_XPATH_STREAMING_ATTRIBUTE
-    } axiom_xpath_streaming_t;
-
-    /** Check whether the given expression is supported on streaming XML */
-#define AXIOM_XPATH_CHECK(op) axiom_xpath_streaming_check_operation(env, expr, op)
-
-    /** Get an operation from the list of operations */
-#define AXIOM_XPATH_OPR_EXPR_GET(ind) (axiom_xpath_operation_t *) \
- axutil_array_list_get(expr->operations, env, ind)
-
-    /**
-      * Checks whether the given expression is supported on streaming XML
-      *
-      * @param env Environment must not be null
-      * @param expr A pointer to the XPath expression
-      * @param op_p Index of the operation in the list of operations
-      * @return Whether the given operation can be evaluated on streaming XML
-      */
-    axiom_xpath_streaming_t axiom_xpath_streaming_check_operation(
-        const axutil_env_t *env,
-        axiom_xpath_expression_t* expr,
-        int op_p);
-
-    /**
-      * Checks whether the predicate is supported on streaming XML.
-      *
-      * @param env Environment must not be null
-      * @param expr A pointer to the XPath expression
-      * @param op_p Index of the operation in the list of operations
-      * @return Whether the given operation can be evaluated on streaming XML
-      */
-    axiom_xpath_streaming_t axiom_xpath_streaming_check_predicate(
-        const axutil_env_t *env,
-        axiom_xpath_expression_t* expr,
-        int op_p);
-
-    /**
-      * Checks whether the predicate is supported on streaming XML.
-      *
-      * @param env Environment must not be null
-      * @param expr A pointer to the XPath expression
-      * @param op Index of the operation in the list of operations
-      * @return Whether the given operation can be evaluated on streaming XML
-      */
-    axiom_xpath_streaming_t axiom_xpath_streaming_check_node_test(
-        const axutil_env_t *env,
-        axiom_xpath_expression_t* expr,
-        axiom_xpath_operation_t* op);
-
-
-    /**
-      * Checks whether the two operations can be evaluated on streaming XML
-      * sequencially (one after the other), where the result of the first
-      * operation is the context of the next
-      *
-      * @param r1 Type of first operation
-      * @param r2 Type of second operation
-      * @return Whether the given operations can be evaluated on streaming XML
-      */
-    axiom_xpath_streaming_t axiom_xpath_streaming_combine_dependent(
-        axiom_xpath_streaming_t r1,
-        axiom_xpath_streaming_t r2);
-
-
-    /**
-      * Checks whether the two operations can be evaluated on streaming XML
-      * simultaneousy
-      *
-      * @param r1 Type of first operation
-      * @param r2 Type of second operation
-      * @return Whether the given operations can be evaluated on streaming XML
-      */
-    axiom_xpath_streaming_t axiom_xpath_streaming_combine_independent(
-        axiom_xpath_streaming_t r1,
-        axiom_xpath_streaming_t r2);
-
-    /** @} */
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif
+
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef XPATH_STREAMING_H
+#define XPATH_STREAMING_H
+
+#include "xpath_internals.h"
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+    /**
+     * @defgroup axiom_xpath_streaming streaming
+     * @ingroup axiom_xpath
+     * @{
+     */
+
+
+    /**
+     * XPath streaming support
+     */
+    typedef enum axiom_xpath_streaming_t
+    {
+        AXIOM_XPATH_STREAMING_NOT_SUPPORTED = 0,
+        AXIOM_XPATH_STREAMING_SUPPORTED,
+        AXIOM_XPATH_STREAMING_CONSTANT,
+        AXIOM_XPATH_STREAMING_ATTRIBUTE
+    } axiom_xpath_streaming_t;
+
+    /** Check whether the given expression is supported on streaming XML */
+#define AXIOM_XPATH_CHECK(op) axiom_xpath_streaming_check_operation(env, expr, op)
+
+    /** Get an operation from the list of operations */
+#define AXIOM_XPATH_OPR_EXPR_GET(ind) (axiom_xpath_operation_t *) \
+ axutil_array_list_get(expr->operations, env, ind)
+
+    /**
+      * Checks whether the given expression is supported on streaming XML
+      *
+      * @param env Environment must not be null
+      * @param expr A pointer to the XPath expression
+      * @param op_p Index of the operation in the list of operations
+      * @return Whether the given operation can be evaluated on streaming XML
+      */
+    axiom_xpath_streaming_t axiom_xpath_streaming_check_operation(
+        const axutil_env_t *env,
+        axiom_xpath_expression_t* expr,
+        int op_p);
+
+    /**
+      * Checks whether the predicate is supported on streaming XML.
+      *
+      * @param env Environment must not be null
+      * @param expr A pointer to the XPath expression
+      * @param op_p Index of the operation in the list of operations
+      * @return Whether the given operation can be evaluated on streaming XML
+      */
+    axiom_xpath_streaming_t axiom_xpath_streaming_check_predicate(
+        const axutil_env_t *env,
+        axiom_xpath_expression_t* expr,
+        int op_p);
+
+    /**
+      * Checks whether the predicate is supported on streaming XML.
+      *
+      * @param env Environment must not be null
+      * @param expr A pointer to the XPath expression
+      * @param op Index of the operation in the list of operations
+      * @return Whether the given operation can be evaluated on streaming XML
+      */
+    axiom_xpath_streaming_t axiom_xpath_streaming_check_node_test(
+        const axutil_env_t *env,
+        axiom_xpath_expression_t* expr,
+        axiom_xpath_operation_t* op);
+
+
+    /**
+      * Checks whether the two operations can be evaluated on streaming XML
+      * sequencially (one after the other), where the result of the first
+      * operation is the context of the next
+      *
+      * @param r1 Type of first operation
+      * @param r2 Type of second operation
+      * @return Whether the given operations can be evaluated on streaming XML
+      */
+    axiom_xpath_streaming_t axiom_xpath_streaming_combine_dependent(
+        axiom_xpath_streaming_t r1,
+        axiom_xpath_streaming_t r2);
+
+
+    /**
+      * Checks whether the two operations can be evaluated on streaming XML
+      * simultaneousy
+      *
+      * @param r1 Type of first operation
+      * @param r2 Type of second operation
+      * @return Whether the given operations can be evaluated on streaming XML
+      */
+    axiom_xpath_streaming_t axiom_xpath_streaming_combine_independent(
+        axiom_xpath_streaming_t r1,
+        axiom_xpath_streaming_t r2);
+
+    /** @} */
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif

Modified: webservices/axis2/trunk/c/axiom/test/xpath/results.txt
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/test/xpath/results.txt?rev=719381&r1=719380&r2=719381&view=diff
 ==============================================================================
--- webservices/axis2/trunk/c/axiom/test/xpath/results.txt (original)
+++ webservices/axis2/trunk/c/axiom/test/xpath/results.txt Thu Nov 20 13:26:08 2008
@@ -85,134 +85,134 @@
 "<child>2<grandchild>2</grandchild></child>"
 "<child>1<grandchild>1</grandchild></child>"
 #
-"<test xmlns:ns1="http://xpath/test">
-
-	<ns1:node1 attr1="attribute_value_1" xmlns:nsx="http://xpath/test">10</ns1:node1>
-
-	<ns1:node2>
-		<child>1<grandchild>1</grandchild></child>
-		<child>2<grandchild>2</grandchild></child>
-		<child xmlns:ns44="http://xpath/testsasd">3<grandchild>3</grandchild></child>
-		<child>4<grandchild>4</grandchild></child>
-		<child>5<grandchild>5</grandchild></child>
-		<child>6<grandchild>6</grandchild></child>
-		<child>7<grandchild>7</grandchild></child>
-		<child>8<grandchild>8</grandchild></child>
-		<child>9<grandchild>9</grandchild></child>
-		<child>10<grandchild>10</grandchild></child>
-		<child>11<grandchild>11</grandchild></child>
-		<child>12<grandchild>12</grandchild></child>
-		<child>13<grandchild>13</grandchild></child>
-		<child>14<grandchild>14</grandchild></child>
-		<child>15<grandchild>15</grandchild></child>
-		<child>16<grandchild>16</grandchild></child>
-		<child>17<grandchild>17</grandchild></child>
-		<child>18<grandchild>18</grandchild></child>
-		<child>19<grandchild>19</grandchild></child>
-		<child>20<grandchild>20</grandchild></child>
-	</ns1:node2>
-
-	<node1 attr1="attribute_value_2" xmlns:nsp="http://xpath/test">5</node1>
-
-	<node2>
-		<child>1<grandchild>1</grandchild></child>
-		<child>2<grandchild>2</grandchild></child>
-		<child>3<grandchild>3</grandchild></child>
-		<child>4<grandchild>4</grandchild></child>
-		<child>5<grandchild>5</grandchild></child>
-		<child>6<grandchild>6</grandchild></child>
-		<child>7<grandchild>7</grandchild></child>
-		<child>8<grandchild>8</grandchild></child>
-		<child>9<grandchild>9</grandchild></child>
-		<child>10<grandchild>10</grandchild></child>
-		<child>11<grandchild>11</grandchild></child>
-		<child>12<grandchild>12</grandchild></child>
-		<child>13<grandchild>13</grandchild></child>
-		<child>14<grandchild>14</grandchild></child>
-		<child>15<grandchild>15</grandchild></child>
-		<child>16<grandchild>16</grandchild></child>
-		<child>17<grandchild>17</grandchild></child>
-		<child>18<grandchild>18</grandchild></child>
-		<child>19<grandchild>19</grandchild></child>
-		<child>20<grandchild>20</grandchild></child>
-	</node2>
-
+"<test xmlns:ns1="http://xpath/test">
+
+	<ns1:node1 attr1="attribute_value_1" xmlns:nsx="http://xpath/test">10</ns1:node1>
+
+	<ns1:node2>
+		<child>1<grandchild>1</grandchild></child>
+		<child>2<grandchild>2</grandchild></child>
+		<child xmlns:ns44="http://xpath/testsasd">3<grandchild>3</grandchild></child>
+		<child>4<grandchild>4</grandchild></child>
+		<child>5<grandchild>5</grandchild></child>
+		<child>6<grandchild>6</grandchild></child>
+		<child>7<grandchild>7</grandchild></child>
+		<child>8<grandchild>8</grandchild></child>
+		<child>9<grandchild>9</grandchild></child>
+		<child>10<grandchild>10</grandchild></child>
+		<child>11<grandchild>11</grandchild></child>
+		<child>12<grandchild>12</grandchild></child>
+		<child>13<grandchild>13</grandchild></child>
+		<child>14<grandchild>14</grandchild></child>
+		<child>15<grandchild>15</grandchild></child>
+		<child>16<grandchild>16</grandchild></child>
+		<child>17<grandchild>17</grandchild></child>
+		<child>18<grandchild>18</grandchild></child>
+		<child>19<grandchild>19</grandchild></child>
+		<child>20<grandchild>20</grandchild></child>
+	</ns1:node2>
+
+	<node1 attr1="attribute_value_2" xmlns:nsp="http://xpath/test">5</node1>
+
+	<node2>
+		<child>1<grandchild>1</grandchild></child>
+		<child>2<grandchild>2</grandchild></child>
+		<child>3<grandchild>3</grandchild></child>
+		<child>4<grandchild>4</grandchild></child>
+		<child>5<grandchild>5</grandchild></child>
+		<child>6<grandchild>6</grandchild></child>
+		<child>7<grandchild>7</grandchild></child>
+		<child>8<grandchild>8</grandchild></child>
+		<child>9<grandchild>9</grandchild></child>
+		<child>10<grandchild>10</grandchild></child>
+		<child>11<grandchild>11</grandchild></child>
+		<child>12<grandchild>12</grandchild></child>
+		<child>13<grandchild>13</grandchild></child>
+		<child>14<grandchild>14</grandchild></child>
+		<child>15<grandchild>15</grandchild></child>
+		<child>16<grandchild>16</grandchild></child>
+		<child>17<grandchild>17</grandchild></child>
+		<child>18<grandchild>18</grandchild></child>
+		<child>19<grandchild>19</grandchild></child>
+		<child>20<grandchild>20</grandchild></child>
+	</node2>
+
 </test>"
 #
-"<test xmlns:ns1="http://xpath/test">
-
-	<ns1:node1 attr1="attribute_value_1" xmlns:nsx="http://xpath/test">10</ns1:node1>
-
-	<ns1:node2>
-		<child>1<grandchild>1</grandchild></child>
-		<child>2<grandchild>2</grandchild></child>
-		<child xmlns:ns44="http://xpath/testsasd">3<grandchild>3</grandchild></child>
-		<child>4<grandchild>4</grandchild></child>
-		<child>5<grandchild>5</grandchild></child>
-		<child>6<grandchild>6</grandchild></child>
-		<child>7<grandchild>7</grandchild></child>
-		<child>8<grandchild>8</grandchild></child>
-		<child>9<grandchild>9</grandchild></child>
-		<child>10<grandchild>10</grandchild></child>
-		<child>11<grandchild>11</grandchild></child>
-		<child>12<grandchild>12</grandchild></child>
-		<child>13<grandchild>13</grandchild></child>
-		<child>14<grandchild>14</grandchild></child>
-		<child>15<grandchild>15</grandchild></child>
-		<child>16<grandchild>16</grandchild></child>
-		<child>17<grandchild>17</grandchild></child>
-		<child>18<grandchild>18</grandchild></child>
-		<child>19<grandchild>19</grandchild></child>
-		<child>20<grandchild>20</grandchild></child>
-	</ns1:node2>
-
-	<node1 attr1="attribute_value_2" xmlns:nsp="http://xpath/test">5</node1>
-
-	<node2>
-		<child>1<grandchild>1</grandchild></child>
-		<child>2<grandchild>2</grandchild></child>
-		<child>3<grandchild>3</grandchild></child>
-		<child>4<grandchild>4</grandchild></child>
-		<child>5<grandchild>5</grandchild></child>
-		<child>6<grandchild>6</grandchild></child>
-		<child>7<grandchild>7</grandchild></child>
-		<child>8<grandchild>8</grandchild></child>
-		<child>9<grandchild>9</grandchild></child>
-		<child>10<grandchild>10</grandchild></child>
-		<child>11<grandchild>11</grandchild></child>
-		<child>12<grandchild>12</grandchild></child>
-		<child>13<grandchild>13</grandchild></child>
-		<child>14<grandchild>14</grandchild></child>
-		<child>15<grandchild>15</grandchild></child>
-		<child>16<grandchild>16</grandchild></child>
-		<child>17<grandchild>17</grandchild></child>
-		<child>18<grandchild>18</grandchild></child>
-		<child>19<grandchild>19</grandchild></child>
-		<child>20<grandchild>20</grandchild></child>
-	</node2>
-
+"<test xmlns:ns1="http://xpath/test">
+
+	<ns1:node1 attr1="attribute_value_1" xmlns:nsx="http://xpath/test">10</ns1:node1>
+
+	<ns1:node2>
+		<child>1<grandchild>1</grandchild></child>
+		<child>2<grandchild>2</grandchild></child>
+		<child xmlns:ns44="http://xpath/testsasd">3<grandchild>3</grandchild></child>
+		<child>4<grandchild>4</grandchild></child>
+		<child>5<grandchild>5</grandchild></child>
+		<child>6<grandchild>6</grandchild></child>
+		<child>7<grandchild>7</grandchild></child>
+		<child>8<grandchild>8</grandchild></child>
+		<child>9<grandchild>9</grandchild></child>
+		<child>10<grandchild>10</grandchild></child>
+		<child>11<grandchild>11</grandchild></child>
+		<child>12<grandchild>12</grandchild></child>
+		<child>13<grandchild>13</grandchild></child>
+		<child>14<grandchild>14</grandchild></child>
+		<child>15<grandchild>15</grandchild></child>
+		<child>16<grandchild>16</grandchild></child>
+		<child>17<grandchild>17</grandchild></child>
+		<child>18<grandchild>18</grandchild></child>
+		<child>19<grandchild>19</grandchild></child>
+		<child>20<grandchild>20</grandchild></child>
+	</ns1:node2>
+
+	<node1 attr1="attribute_value_2" xmlns:nsp="http://xpath/test">5</node1>
+
+	<node2>
+		<child>1<grandchild>1</grandchild></child>
+		<child>2<grandchild>2</grandchild></child>
+		<child>3<grandchild>3</grandchild></child>
+		<child>4<grandchild>4</grandchild></child>
+		<child>5<grandchild>5</grandchild></child>
+		<child>6<grandchild>6</grandchild></child>
+		<child>7<grandchild>7</grandchild></child>
+		<child>8<grandchild>8</grandchild></child>
+		<child>9<grandchild>9</grandchild></child>
+		<child>10<grandchild>10</grandchild></child>
+		<child>11<grandchild>11</grandchild></child>
+		<child>12<grandchild>12</grandchild></child>
+		<child>13<grandchild>13</grandchild></child>
+		<child>14<grandchild>14</grandchild></child>
+		<child>15<grandchild>15</grandchild></child>
+		<child>16<grandchild>16</grandchild></child>
+		<child>17<grandchild>17</grandchild></child>
+		<child>18<grandchild>18</grandchild></child>
+		<child>19<grandchild>19</grandchild></child>
+		<child>20<grandchild>20</grandchild></child>
+	</node2>
+
 </test>"
-"<node2>
-		<child>1<grandchild>1</grandchild></child>
-		<child>2<grandchild>2</grandchild></child>
-		<child>3<grandchild>3</grandchild></child>
-		<child>4<grandchild>4</grandchild></child>
-		<child>5<grandchild>5</grandchild></child>
-		<child>6<grandchild>6</grandchild></child>
-		<child>7<grandchild>7</grandchild></child>
-		<child>8<grandchild>8</grandchild></child>
-		<child>9<grandchild>9</grandchild></child>
-		<child>10<grandchild>10</grandchild></child>
-		<child>11<grandchild>11</grandchild></child>
-		<child>12<grandchild>12</grandchild></child>
-		<child>13<grandchild>13</grandchild></child>
-		<child>14<grandchild>14</grandchild></child>
-		<child>15<grandchild>15</grandchild></child>
-		<child>16<grandchild>16</grandchild></child>
-		<child>17<grandchild>17</grandchild></child>
-		<child>18<grandchild>18</grandchild></child>
-		<child>19<grandchild>19</grandchild></child>
-		<child>20<grandchild>20</grandchild></child>
+"<node2>
+		<child>1<grandchild>1</grandchild></child>
+		<child>2<grandchild>2</grandchild></child>
+		<child>3<grandchild>3</grandchild></child>
+		<child>4<grandchild>4</grandchild></child>
+		<child>5<grandchild>5</grandchild></child>
+		<child>6<grandchild>6</grandchild></child>
+		<child>7<grandchild>7</grandchild></child>
+		<child>8<grandchild>8</grandchild></child>
+		<child>9<grandchild>9</grandchild></child>
+		<child>10<grandchild>10</grandchild></child>
+		<child>11<grandchild>11</grandchild></child>
+		<child>12<grandchild>12</grandchild></child>
+		<child>13<grandchild>13</grandchild></child>
+		<child>14<grandchild>14</grandchild></child>
+		<child>15<grandchild>15</grandchild></child>
+		<child>16<grandchild>16</grandchild></child>
+		<child>17<grandchild>17</grandchild></child>
+		<child>18<grandchild>18</grandchild></child>
+		<child>19<grandchild>19</grandchild></child>
+		<child>20<grandchild>20</grandchild></child>
 	</node2>"
 "<child>3<grandchild>3</grandchild></child>"
 #
@@ -347,27 +347,27 @@
 "<child>19<grandchild>19</grandchild></child>"
 "<grandchild>20</grandchild>"
 "<child>20<grandchild>20</grandchild></child>"
-"<ns1:node2 xmlns:ns1="http://xpath/test">
-		<child>1<grandchild>1</grandchild></child>
-		<child>2<grandchild>2</grandchild></child>
-		<child xmlns:ns44="http://xpath/testsasd">3<grandchild>3</grandchild></child>
-		<child>4<grandchild>4</grandchild></child>
-		<child>5<grandchild>5</grandchild></child>
-		<child>6<grandchild>6</grandchild></child>
-		<child>7<grandchild>7</grandchild></child>
-		<child>8<grandchild>8</grandchild></child>
-		<child>9<grandchild>9</grandchild></child>
-		<child>10<grandchild>10</grandchild></child>
-		<child>11<grandchild>11</grandchild></child>
-		<child>12<grandchild>12</grandchild></child>
-		<child>13<grandchild>13</grandchild></child>
-		<child>14<grandchild>14</grandchild></child>
-		<child>15<grandchild>15</grandchild></child>
-		<child>16<grandchild>16</grandchild></child>
-		<child>17<grandchild>17</grandchild></child>
-		<child>18<grandchild>18</grandchild></child>
-		<child>19<grandchild>19</grandchild></child>
-		<child>20<grandchild>20</grandchild></child>
+"<ns1:node2 xmlns:ns1="http://xpath/test">
+		<child>1<grandchild>1</grandchild></child>
+		<child>2<grandchild>2</grandchild></child>
+		<child xmlns:ns44="http://xpath/testsasd">3<grandchild>3</grandchild></child>
+		<child>4<grandchild>4</grandchild></child>
+		<child>5<grandchild>5</grandchild></child>
+		<child>6<grandchild>6</grandchild></child>
+		<child>7<grandchild>7</grandchild></child>
+		<child>8<grandchild>8</grandchild></child>
+		<child>9<grandchild>9</grandchild></child>
+		<child>10<grandchild>10</grandchild></child>
+		<child>11<grandchild>11</grandchild></child>
+		<child>12<grandchild>12</grandchild></child>
+		<child>13<grandchild>13</grandchild></child>
+		<child>14<grandchild>14</grandchild></child>
+		<child>15<grandchild>15</grandchild></child>
+		<child>16<grandchild>16</grandchild></child>
+		<child>17<grandchild>17</grandchild></child>
+		<child>18<grandchild>18</grandchild></child>
+		<child>19<grandchild>19</grandchild></child>
+		<child>20<grandchild>20</grandchild></child>
 	</ns1:node2>"
 "<node1 attr1="attribute_value_2" xmlns:nsp="http://xpath/test">5</node1>"
 "<grandchild>1</grandchild>"
@@ -566,50 +566,50 @@
 "<node1 attr1="attribute_value_2" xmlns:nsp="http://xpath/test">5</node1>"
 "<ns1:node1 xmlns:ns1="http://xpath/test" attr1="attribute_value_1" \
xmlns:nsx="http://xpath/test">10</ns1:node1>"  #
-"<node2>
-		<child>1<grandchild>1</grandchild></child>
-		<child>2<grandchild>2</grandchild></child>
-		<child>3<grandchild>3</grandchild></child>
-		<child>4<grandchild>4</grandchild></child>
-		<child>5<grandchild>5</grandchild></child>
-		<child>6<grandchild>6</grandchild></child>
-		<child>7<grandchild>7</grandchild></child>
-		<child>8<grandchild>8</grandchild></child>
-		<child>9<grandchild>9</grandchild></child>
-		<child>10<grandchild>10</grandchild></child>
-		<child>11<grandchild>11</grandchild></child>
-		<child>12<grandchild>12</grandchild></child>
-		<child>13<grandchild>13</grandchild></child>
-		<child>14<grandchild>14</grandchild></child>
-		<child>15<grandchild>15</grandchild></child>
-		<child>16<grandchild>16</grandchild></child>
-		<child>17<grandchild>17</grandchild></child>
-		<child>18<grandchild>18</grandchild></child>
-		<child>19<grandchild>19</grandchild></child>
-		<child>20<grandchild>20</grandchild></child>
+"<node2>
+		<child>1<grandchild>1</grandchild></child>
+		<child>2<grandchild>2</grandchild></child>
+		<child>3<grandchild>3</grandchild></child>
+		<child>4<grandchild>4</grandchild></child>
+		<child>5<grandchild>5</grandchild></child>
+		<child>6<grandchild>6</grandchild></child>
+		<child>7<grandchild>7</grandchild></child>
+		<child>8<grandchild>8</grandchild></child>
+		<child>9<grandchild>9</grandchild></child>
+		<child>10<grandchild>10</grandchild></child>
+		<child>11<grandchild>11</grandchild></child>
+		<child>12<grandchild>12</grandchild></child>
+		<child>13<grandchild>13</grandchild></child>
+		<child>14<grandchild>14</grandchild></child>
+		<child>15<grandchild>15</grandchild></child>
+		<child>16<grandchild>16</grandchild></child>
+		<child>17<grandchild>17</grandchild></child>
+		<child>18<grandchild>18</grandchild></child>
+		<child>19<grandchild>19</grandchild></child>
+		<child>20<grandchild>20</grandchild></child>
 	</node2>"
 #
-"<ns1:node2 xmlns:ns1="http://xpath/test">
-		<child>1<grandchild>1</grandchild></child>
-		<child>2<grandchild>2</grandchild></child>
-		<child xmlns:ns44="http://xpath/testsasd">3<grandchild>3</grandchild></child>
-		<child>4<grandchild>4</grandchild></child>
-		<child>5<grandchild>5</grandchild></child>
-		<child>6<grandchild>6</grandchild></child>
-		<child>7<grandchild>7</grandchild></child>
-		<child>8<grandchild>8</grandchild></child>
-		<child>9<grandchild>9</grandchild></child>
-		<child>10<grandchild>10</grandchild></child>
-		<child>11<grandchild>11</grandchild></child>
-		<child>12<grandchild>12</grandchild></child>
-		<child>13<grandchild>13</grandchild></child>
-		<child>14<grandchild>14</grandchild></child>
-		<child>15<grandchild>15</grandchild></child>
-		<child>16<grandchild>16</grandchild></child>
-		<child>17<grandchild>17</grandchild></child>
-		<child>18<grandchild>18</grandchild></child>
-		<child>19<grandchild>19</grandchild></child>
-		<child>20<grandchild>20</grandchild></child>
+"<ns1:node2 xmlns:ns1="http://xpath/test">
+		<child>1<grandchild>1</grandchild></child>
+		<child>2<grandchild>2</grandchild></child>
+		<child xmlns:ns44="http://xpath/testsasd">3<grandchild>3</grandchild></child>
+		<child>4<grandchild>4</grandchild></child>
+		<child>5<grandchild>5</grandchild></child>
+		<child>6<grandchild>6</grandchild></child>
+		<child>7<grandchild>7</grandchild></child>
+		<child>8<grandchild>8</grandchild></child>
+		<child>9<grandchild>9</grandchild></child>
+		<child>10<grandchild>10</grandchild></child>
+		<child>11<grandchild>11</grandchild></child>
+		<child>12<grandchild>12</grandchild></child>
+		<child>13<grandchild>13</grandchild></child>
+		<child>14<grandchild>14</grandchild></child>
+		<child>15<grandchild>15</grandchild></child>
+		<child>16<grandchild>16</grandchild></child>
+		<child>17<grandchild>17</grandchild></child>
+		<child>18<grandchild>18</grandchild></child>
+		<child>19<grandchild>19</grandchild></child>
+		<child>20<grandchild>20</grandchild></child>
 	</ns1:node2>"
 #
 attr1 = "attribute_value_1"

Modified: webservices/axis2/trunk/c/axiom/test/xpath/test.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/test/xpath/test.xml?rev=719381&r1=719380&r2=719381&view=diff
 ==============================================================================
--- webservices/axis2/trunk/c/axiom/test/xpath/test.xml (original)
+++ webservices/axis2/trunk/c/axiom/test/xpath/test.xml Thu Nov 20 13:26:08 2008
@@ -1,55 +1,55 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-
-<test xmlns:ns1="http://xpath/test">
-
-	<ns1:node1 xmlns:nsx="http://xpath/test" attr1="attribute_value_1">10</ns1:node1>
-
-	<ns1:node2>
-		<child>1<grandchild>1</grandchild></child>
-		<child>2<grandchild>2</grandchild></child>
-		<child xmlns:ns44="http://xpath/testsasd">3<grandchild>3</grandchild></child>
-		<child>4<grandchild>4</grandchild></child>
-		<child>5<grandchild>5</grandchild></child>
-		<child>6<grandchild>6</grandchild></child>
-		<child>7<grandchild>7</grandchild></child>
-		<child>8<grandchild>8</grandchild></child>
-		<child>9<grandchild>9</grandchild></child>
-		<child>10<grandchild>10</grandchild></child>
-		<child>11<grandchild>11</grandchild></child>
-		<child>12<grandchild>12</grandchild></child>
-		<child>13<grandchild>13</grandchild></child>
-		<child>14<grandchild>14</grandchild></child>
-		<child>15<grandchild>15</grandchild></child>
-		<child>16<grandchild>16</grandchild></child>
-		<child>17<grandchild>17</grandchild></child>
-		<child>18<grandchild>18</grandchild></child>
-		<child>19<grandchild>19</grandchild></child>
-		<child>20<grandchild>20</grandchild></child>
-	</ns1:node2>
-
-	<node1 xmlns:nsp="http://xpath/test" attr1="attribute_value_2">5</node1>
-
-	<node2>
-		<child>1<grandchild>1</grandchild></child>
-		<child>2<grandchild>2</grandchild></child>
-		<child>3<grandchild>3</grandchild></child>
-		<child>4<grandchild>4</grandchild></child>
-		<child>5<grandchild>5</grandchild></child>
-		<child>6<grandchild>6</grandchild></child>
-		<child>7<grandchild>7</grandchild></child>
-		<child>8<grandchild>8</grandchild></child>
-		<child>9<grandchild>9</grandchild></child>
-		<child>10<grandchild>10</grandchild></child>
-		<child>11<grandchild>11</grandchild></child>
-		<child>12<grandchild>12</grandchild></child>
-		<child>13<grandchild>13</grandchild></child>
-		<child>14<grandchild>14</grandchild></child>
-		<child>15<grandchild>15</grandchild></child>
-		<child>16<grandchild>16</grandchild></child>
-		<child>17<grandchild>17</grandchild></child>
-		<child>18<grandchild>18</grandchild></child>
-		<child>19<grandchild>19</grandchild></child>
-		<child>20<grandchild>20</grandchild></child>
-	</node2>
-
-</test>
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<test xmlns:ns1="http://xpath/test">
+
+	<ns1:node1 xmlns:nsx="http://xpath/test" attr1="attribute_value_1">10</ns1:node1>
+
+	<ns1:node2>
+		<child>1<grandchild>1</grandchild></child>
+		<child>2<grandchild>2</grandchild></child>
+		<child xmlns:ns44="http://xpath/testsasd">3<grandchild>3</grandchild></child>
+		<child>4<grandchild>4</grandchild></child>
+		<child>5<grandchild>5</grandchild></child>
+		<child>6<grandchild>6</grandchild></child>
+		<child>7<grandchild>7</grandchild></child>
+		<child>8<grandchild>8</grandchild></child>
+		<child>9<grandchild>9</grandchild></child>
+		<child>10<grandchild>10</grandchild></child>
+		<child>11<grandchild>11</grandchild></child>
+		<child>12<grandchild>12</grandchild></child>
+		<child>13<grandchild>13</grandchild></child>
+		<child>14<grandchild>14</grandchild></child>
+		<child>15<grandchild>15</grandchild></child>
+		<child>16<grandchild>16</grandchild></child>
+		<child>17<grandchild>17</grandchild></child>
+		<child>18<grandchild>18</grandchild></child>
+		<child>19<grandchild>19</grandchild></child>
+		<child>20<grandchild>20</grandchild></child>
+	</ns1:node2>
+
+	<node1 xmlns:nsp="http://xpath/test" attr1="attribute_value_2">5</node1>
+
+	<node2>
+		<child>1<grandchild>1</grandchild></child>
+		<child>2<grandchild>2</grandchild></child>
+		<child>3<grandchild>3</grandchild></child>
+		<child>4<grandchild>4</grandchild></child>
+		<child>5<grandchild>5</grandchild></child>
+		<child>6<grandchild>6</grandchild></child>
+		<child>7<grandchild>7</grandchild></child>
+		<child>8<grandchild>8</grandchild></child>
+		<child>9<grandchild>9</grandchild></child>
+		<child>10<grandchild>10</grandchild></child>
+		<child>11<grandchild>11</grandchild></child>
+		<child>12<grandchild>12</grandchild></child>
+		<child>13<grandchild>13</grandchild></child>
+		<child>14<grandchild>14</grandchild></child>
+		<child>15<grandchild>15</grandchild></child>
+		<child>16<grandchild>16</grandchild></child>
+		<child>17<grandchild>17</grandchild></child>
+		<child>18<grandchild>18</grandchild></child>
+		<child>19<grandchild>19</grandchild></child>
+		<child>20<grandchild>20</grandchild></child>
+	</node2>
+
+</test>

Modified: webservices/axis2/trunk/c/axiom/test/xpath/test_xpath.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/test/xpath/test_xpath.c?rev=719381&r1=719380&r2=719381&view=diff
 ==============================================================================
--- webservices/axis2/trunk/c/axiom/test/xpath/test_xpath.c (original)
+++ webservices/axis2/trunk/c/axiom/test/xpath/test_xpath.c Thu Nov 20 13:26:08 2008
@@ -1,518 +1,518 @@
-
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-/*
-Compiling For Windows:
-cl.exe /nologo /D "WIN32" /D "_WINDOWS" /D "_MBCS" /I %AXIS2C_HOME%\include /c *.c
-link.exe /LIBPATH:%AXIS2C_HOME%\lib axutil.lib axiom.lib axis2_parser.lib \
                axis2_engine.lib /OUT:test.exe *.obj
-*/
-#include <stdio.h>
-#include <axiom.h>
-#include <axis2_util.h>
-#include <axiom_soap.h>
-
-#include "xpath.h"
-
-/* Function headers */
-axiom_node_t *build_test_xml(const axutil_env_t *env);
-
-void output_results(const axutil_env_t *env, axiom_xpath_result_t *xpath_result);
-
-axiom_node_t *read_test_xml(const axutil_env_t *env, char *file_name);
-
-void output_results(const axutil_env_t *env,
-        axiom_xpath_result_t *xpath_result);
-
-void evaluate(const axutil_env_t *env,
-        axiom_xpath_context_t *context,
-        axis2_char_t *expr_str);
-
-void evaluate_expressions(const axutil_env_t *env,
-        axiom_xpath_context_t *context,
-        char *file_name);
-
-void add_namespaces(const axutil_env_t *env,
-        axiom_xpath_context_t *context,
-        char *file_name);
-
-int readline(FILE *fin, char *str);
-
-FILE *fcor;
-/*FILE *ftemp;*/
-
-int main(int argc, char *argv[])
-{
-    axiom_node_t *test_tree = NULL;
-    axis2_char_t *test_tree_str;
-    char *xml_file = "test.xml";
-    char *xpath_file = "test.xpath";
-    char *ns_file = "test.ns";
-    char *cor_file = "results.txt";
-    axiom_xpath_context_t *context = NULL;
-
-    /* Create environment */
-    axutil_env_t *env =
-     axutil_env_create_all("xpath_test.log", AXIS2_LOG_LEVEL_TRACE);
-
-    /* Set input file */
-    if (argc > 1)
-    {
-        printf("Usage: test [xml_file xpath_file namespaces_file \
                results_file]\n\n");
-        printf("\tLook at the example test case:");
-        printf(" test.xml, test.xpath test.ns\n\n");
-       
-        if(argc > 4)
-        {
-            xml_file = argv[1];
-            xpath_file = argv[2];
-            ns_file = argv[3];
-            cor_file = argv[4];
-        }
-    }
-
-    /*Create the request */
-    /* test_tree = build_test_xml(env); */
-    test_tree = read_test_xml(env, (axis2_char_t *)xml_file);
-
-    fcor = fopen(cor_file, "r");
-    /*ftemp = fopen("temp.txt", "w");*/
-
-    if (!fcor)
-    {
-        printf("Error opening file: %s\n", cor_file);
-    }
-
-    if (test_tree)
-    {
-        test_tree_str = axiom_node_to_string(test_tree, env);
-        printf("\nTesting XML\n-----------\n\"%s\"\n\n\n", test_tree_str);
-
-        /* Create XPath Context */
-        context = axiom_xpath_context_create(env, test_tree);
-
-        /* Namespaces */
-        add_namespaces(env, context, ns_file);
-
-        evaluate_expressions(env, context, xpath_file);
-
-        test_tree_str = axiom_node_to_string(test_tree, env);
-        /*printf("\n\nFinal XML\n-----------\n\"%s\"\n\n\n", test_tree_str);*/
-    }
-
-    /* Freeing memory */
-    if (context)
-    {
-        axiom_xpath_free_context(env, context);
-    }
-
-    if (test_tree)
-    {
-        axiom_node_free_tree(test_tree, env);
-    }
-
-    if (env)
-    {
-        axutil_env_free((axutil_env_t *) env);
-    }
-
-    if(fcor)
-    {
-        fclose(fcor); 
-    }
-
-    return 0;
-}
-
-int readline(FILE *fin, char *str)
-{
-    int i;
-
-    for (i = 0; 1; i++)
-    {
-        str[i] = (char)getc(fin);
-
-        if (str[i] == '\n' || str[i] == '\r' || str[i] == EOF)
-        {
-            break;
-        }
-    }
-
-    str[i] = '\0';
-
-    return i;
-}
-
-void add_namespaces(const axutil_env_t *env,
-        axiom_xpath_context_t *context,
-        char *file_name)
-{
-    FILE *fin = NULL;
-    char prefix[1024];
-    char uri[1024];
-    axiom_namespace_t *ns;
-
-    fin = fopen(file_name, "r");
-
-    if (!fin)
-    {
-        printf("Error opening file: %s\n", file_name);
-        return;
-    }
-
-    /* Compiling XPath expression */
-    while (1)
-    {
-        if (readline(fin, prefix) == 0)
-        {
-            break;
-        }
-
-        if (readline(fin, uri) == 0)
-        {
-            break;
-        }
-
-        ns = axiom_namespace_create(
-                    env, (axis2_char_t *)uri, (axis2_char_t *)prefix);
-
-        if (ns)
-        {
-            axiom_xpath_register_namespace(context, ns);
-        }
-    }
-
-    fclose(fin);
-}
-
-void evaluate_expressions(
-    const axutil_env_t *env,
-    axiom_xpath_context_t *context,
-    char *file_name)
-{
-    FILE *fin = NULL;
-    char str[1024];
-
-    fin = fopen(file_name, "r");
-
-    if (!fin)
-    {
-        printf("Error opening file: %s\n", file_name);
-        return;
-    }
-
-    /* Compiling XPath expression */
-    while (1)
-    {
-        if (readline(fin, str) == 0)
-        {
-            break;
-        }
-
-        if (str[0] == '#')
-        {
-            printf("\n\n%s", str + 1);
-            continue;
-        }
-
-        evaluate(env, context, (axis2_char_t *)str);
-    }
-
-    fclose(fin);
-}
-
-void evaluate(
-    const axutil_env_t *env,
-    axiom_xpath_context_t *context,
-    axis2_char_t *expr_str)
-{
-    axiom_xpath_expression_t *expr = NULL;
-    axiom_xpath_result_t *result = NULL;
-
-    printf("\nCompiling XPath expression: \"%s\" ...\n", expr_str);
-    expr = axiom_xpath_compile_expression(env, expr_str);
-
-    if (!expr)
-    {
-        printf("Compilation error.");
-        printf("Please check the systax of the XPath query.\n");
-
-        return;
-    }
-
-    /* Evaluating XPath expression */
-    printf("Evaluating...\n");
-    result = axiom_xpath_evaluate(context, expr);
-
-    if (!result)
-    {
-        printf("An error occured while evaluating the expression.\n");
-
-        axiom_xpath_free_expression(env, expr);
-
-        return;
-    }
-
-    if (result->flag == AXIOM_XPATH_ERROR_STREAMING_NOT_SUPPORTED)
-    {
-        printf("Streaming not supported.\n");
-
-        axiom_xpath_free_expression(env, expr);
-
-        return;
-    }
-
-    output_results(env, result);
-
-    if (result)
-    {
-        axiom_xpath_free_result(env, result);
-    }
-
-    if (expr)
-    {
-        axiom_xpath_free_expression(env, expr);
-    }
-}
-
-int compare_result(axis2_char_t *rs)
-{
-    int i;
-    char c;
-
-    /*fprintf(ftemp, "%s#", rs);*/
-
-    if(!fcor)
-    {
-        return 0;
-    }
-
-    for(i = 0; 1; i++)
-    {
-        while(rs[i] == ' ' || rs[i] == '\n' || rs[i] == '\r' || rs[i] == '\t')
-        {
-            i++;
-        }
-
-        do
-        {
-            c = (char)getc(fcor);
-        }
-        while(c == ' ' || c == '\n' || c == '\r' || c == '\t');
-
-        if(c == '#' || c == EOF)
-        {
-            break;
-        }
-
-        if(c != rs[i])
-        {
-            while(c != '#' && c != EOF)
-            {
-                c = getc(fcor);
-            }
-            
-            return 0;
-        }
-    }
-
-    return rs[i] == '\0';
-}
-
-void output_results(const axutil_env_t *env,
-        axiom_xpath_result_t *xpath_result)
-{
-    axiom_xpath_result_node_t *xpath_result_node;
-    axiom_node_t *result_node;
-    axis2_char_t *result_str;
-    axis2_char_t result_set[100000];
-    axis2_char_t temp_res[100000];
-
-    axiom_element_t *ele;
-    int i;
-
-    result_set[0] = '\n';
-    result_set[1] = '\0';
-
-    for (i = 0; i < axutil_array_list_size(xpath_result->nodes, env); i++)
-    {
-        xpath_result_node = axutil_array_list_get(xpath_result->nodes, env, i);
-
-        if (xpath_result_node->type == AXIOM_XPATH_TYPE_NODE)
-        {
-            result_node = xpath_result_node->value;
-            ele = (axiom_element_t *)axiom_node_get_data_element(
-                        result_node, env);
-
-            if (ele)
-            {
-                /*result_str = axiom_element_get_text(ele, env, result_node);*/
-                result_str = axiom_node_to_string(result_node, env);
-
-                sprintf(temp_res, "\"%s\"\n", result_str);
-                strcat(result_set, temp_res);
-            }
-        }
-        else if (xpath_result_node->type == AXIOM_XPATH_TYPE_ATTRIBUTE)
-        {
-            result_str =
-                axiom_attribute_get_localname(xpath_result_node->value, env);
-            sprintf(temp_res, "%s = ", result_str);
-            strcat(result_set, temp_res);
-            result_str =
-                axiom_attribute_get_value(xpath_result_node->value, env);
-            sprintf(temp_res, "\"%s\"\n", result_str);
-            strcat(result_set, temp_res);
-        }
-        else if (xpath_result_node->type == AXIOM_XPATH_TYPE_NAMESPACE)
-        {
-            result_str =
-                axiom_namespace_get_prefix(xpath_result_node->value, env);
-            sprintf(temp_res, "%s = ", result_str);
-            strcat(result_set, temp_res);
-            result_str =
-                axiom_namespace_get_uri(xpath_result_node->value, env);
-            sprintf(temp_res, "\"%s\"\n", result_str);
-            strcat(result_set, temp_res);
-        }
-        else if (xpath_result_node->type == AXIOM_XPATH_TYPE_BOOLEAN)
-        {
-            sprintf(temp_res, "\"%s\"\n",  
-                    (*(axis2_bool_t *)xpath_result_node->value) ? "true" : "false");
-            strcat(result_set, temp_res);
-        }
-        else if (xpath_result_node->type == AXIOM_XPATH_TYPE_TEXT)
-        {
-            sprintf(temp_res, "\"%s\"\n", 
-                    (axis2_char_t *)xpath_result_node->value);
-            strcat(result_set, temp_res);
-        }
-        else if (xpath_result_node->type == AXIOM_XPATH_TYPE_NUMBER)
-        {
-            sprintf(temp_res, "\"%lf\"\n", 
-                    *(double *)xpath_result_node->value);
-            strcat(result_set, temp_res);
-        }
-    }
-
-    if(compare_result(result_set))
-    {
-        printf("Test case passed\n");
-    }
-    else
-    {
-        printf("Failed test case!\nOutput\n%s\n", result_set);
-    }
-}
-
-axiom_node_t *read_test_xml(const axutil_env_t *env, axis2_char_t *file_name)
-{
-    axiom_xml_reader_t *reader = NULL;
-    axiom_stax_builder_t *builder = NULL;
-    axiom_document_t *document = NULL;
-    axiom_node_t *root = NULL;
-    axiom_node_t *doc_root = NULL;
-
-    /* Create parser */
-    reader = axiom_xml_reader_create_for_file(env, file_name, NULL);
-
-    if (!reader)
-    {
-        printf("Error creating pullparser");
-        return NULL;
-    }
-
-    /* Create axiom_stax_builder */
-    builder = axiom_stax_builder_create(env, reader);
-
-    if (!builder)
-    {
-        printf("Error creating pull parser");
-        return NULL;
-    }
-
-    /* Create an om document */
-    document = axiom_stax_builder_get_document(builder, env);
-
-    if (!document)
-    {
-        printf("Error creating document");
-        return NULL;
-    }
-
-    /* Get root element */
-    root = axiom_document_get_root_element(document, env);
-    if (!root)
-    {
-        printf("Root element null ");
-        axiom_stax_builder_free(builder, env);
-        return NULL;
-    }
-
-    while (axiom_document_build_next(document, env));
-
-    doc_root = axiom_node_create(env);
-    axiom_node_add_child(doc_root, env, root);
-
-    return doc_root;
-}
-
-axiom_node_t * build_test_xml(const axutil_env_t *env)
-{
-    axiom_node_t *main_node;
-    axiom_node_t *order_node;
-    axiom_node_t *values_node;
-    axiom_node_t *value_node;
-    axiom_node_t *grandchild;
-    axis2_char_t value_str[255];
-    axiom_element_t *order_ele;
-    axiom_element_t *values_ele;
-    axiom_element_t *value_ele;
-    axiom_element_t *grandchild_ele;
-    axiom_attribute_t *attribute;
-    int i, N = 20;
-
-    axiom_namespace_t *ns1 =
-        axiom_namespace_create(env, "http://xpath/test", "ns1");
-
-    axiom_element_create(env, NULL, "test", ns1, &main_node);
-
-    order_ele =
-        axiom_element_create(env, main_node, "node1", NULL, &order_node);
-    axiom_element_set_text(order_ele, env, "10", order_node);
-    attribute =
-        axiom_attribute_create(env, "attr1", "attribute_value_1", NULL);
-    axiom_element_add_attribute(order_ele, env, attribute, order_node);
-
-    values_ele =
-        axiom_element_create(env, main_node, "node2", NULL, &values_node);
-
-    for (i = 0 ; i < N; i++)
-    {
-        sprintf(value_str, "%d", i + 1);
-
-        value_ele =
-            axiom_element_create(env, values_node, "child", NULL, &value_node);
-        axiom_element_set_text(value_ele, env, value_str, value_node);
-
-        grandchild_ele =
-            axiom_element_create(env, value_node, "grandchild", NULL, &grandchild);
-        axiom_element_set_text(grandchild_ele, env, value_str /*"3 rd level"*/, \
                grandchild);
-    }
-
-    return main_node;
-}
+
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/*
+Compiling For Windows:
+cl.exe /nologo /D "WIN32" /D "_WINDOWS" /D "_MBCS" /I %AXIS2C_HOME%\include /c *.c
+link.exe /LIBPATH:%AXIS2C_HOME%\lib axutil.lib axiom.lib axis2_parser.lib \
axis2_engine.lib /OUT:test.exe *.obj +*/
+#include <stdio.h>
+#include <axiom.h>
+#include <axis2_util.h>
+#include <axiom_soap.h>
+
+#include "xpath.h"
+
+/* Function headers */
+axiom_node_t *build_test_xml(const axutil_env_t *env);
+
+void output_results(const axutil_env_t *env, axiom_xpath_result_t *xpath_result);
+
+axiom_node_t *read_test_xml(const axutil_env_t *env, char *file_name);
+
+void output_results(const axutil_env_t *env,
+        axiom_xpath_result_t *xpath_result);
+
+void evaluate(const axutil_env_t *env,
+        axiom_xpath_context_t *context,
+        axis2_char_t *expr_str);
+
+void evaluate_expressions(const axutil_env_t *env,
+        axiom_xpath_context_t *context,
+        char *file_name);
+
+void add_namespaces(const axutil_env_t *env,
+        axiom_xpath_context_t *context,
+        char *file_name);
+
+int readline(FILE *fin, char *str);
+
+FILE *fcor;
+/*FILE *ftemp;*/
+
+int main(int argc, char *argv[])
+{
+    axiom_node_t *test_tree = NULL;
+    axis2_char_t *test_tree_str;
+    char *xml_file = "test.xml";
+    char *xpath_file = "test.xpath";
+    char *ns_file = "test.ns";
+    char *cor_file = "results.txt";
+    axiom_xpath_context_t *context = NULL;
+
+    /* Create environment */
+    axutil_env_t *env =
+     axutil_env_create_all("xpath_test.log", AXIS2_LOG_LEVEL_TRACE);
+
+    /* Set input file */
+    if (argc > 1)
+    {
+        printf("Usage: test [xml_file xpath_file namespaces_file \
results_file]\n\n"); +        printf("\tLook at the example test case:");
+        printf(" test.xml, test.xpath test.ns\n\n");
+       
+        if(argc > 4)
+        {
+            xml_file = argv[1];
+            xpath_file = argv[2];
+            ns_file = argv[3];
+            cor_file = argv[4];
+        }
+    }
+
+    /*Create the request */
+    /* test_tree = build_test_xml(env); */
+    test_tree = read_test_xml(env, (axis2_char_t *)xml_file);
+
+    fcor = fopen(cor_file, "r");
+    /*ftemp = fopen("temp.txt", "w");*/
+
+    if (!fcor)
+    {
+        printf("Error opening file: %s\n", cor_file);
+    }
+
+    if (test_tree)
+    {
+        test_tree_str = axiom_node_to_string(test_tree, env);
+        printf("\nTesting XML\n-----------\n\"%s\"\n\n\n", test_tree_str);
+
+        /* Create XPath Context */
+        context = axiom_xpath_context_create(env, test_tree);
+
+        /* Namespaces */
+        add_namespaces(env, context, ns_file);
+
+        evaluate_expressions(env, context, xpath_file);
+
+        test_tree_str = axiom_node_to_string(test_tree, env);
+        /*printf("\n\nFinal XML\n-----------\n\"%s\"\n\n\n", test_tree_str);*/
+    }
+
+    /* Freeing memory */
+    if (context)
+    {
+        axiom_xpath_free_context(env, context);
+    }
+
+    if (test_tree)
+    {
+        axiom_node_free_tree(test_tree, env);
+    }
+
+    if (env)
+    {
+        axutil_env_free((axutil_env_t *) env);
+    }
+
+    if(fcor)
+    {
+        fclose(fcor); 
+    }
+
+    return 0;
+}
+
+int readline(FILE *fin, char *str)
+{
+    int i;
+
+    for (i = 0; 1; i++)
+    {
+        str[i] = (char)getc(fin);
+
+        if (str[i] == '\n' || str[i] == '\r' || str[i] == EOF)
+        {
+            break;
+        }
+    }
+
+    str[i] = '\0';
+
+    return i;
+}
+
+void add_namespaces(const axutil_env_t *env,
+        axiom_xpath_context_t *context,
+        char *file_name)
+{
+    FILE *fin = NULL;
+    char prefix[1024];
+    char uri[1024];
+    axiom_namespace_t *ns;
+
+    fin = fopen(file_name, "r");
+
+    if (!fin)
+    {
+        printf("Error opening file: %s\n", file_name);
+        return;
+    }
+
+    /* Compiling XPath expression */
+    while (1)
+    {
+        if (readline(fin, prefix) == 0)
+        {
+            break;
+        }
+
+        if (readline(fin, uri) == 0)
+        {
+            break;
+        }
+
+        ns = axiom_namespace_create(
+                    env, (axis2_char_t *)uri, (axis2_char_t *)prefix);
+
+        if (ns)
+        {
+            axiom_xpath_register_namespace(context, ns);
+        }
+    }
+
+    fclose(fin);
+}
+
+void evaluate_expressions(
+    const axutil_env_t *env,
+    axiom_xpath_context_t *context,
+    char *file_name)
+{
+    FILE *fin = NULL;
+    char str[1024];
+
+    fin = fopen(file_name, "r");
+
+    if (!fin)
+    {
+        printf("Error opening file: %s\n", file_name);
+        return;
+    }
+
+    /* Compiling XPath expression */
+    while (1)
+    {
+        if (readline(fin, str) == 0)
+        {
+            break;
+        }
+
+        if (str[0] == '#')
+        {
+            printf("\n\n%s", str + 1);
+            continue;
+        }
+
+        evaluate(env, context, (axis2_char_t *)str);
+    }
+
+    fclose(fin);
+}
+
+void evaluate(
+    const axutil_env_t *env,
+    axiom_xpath_context_t *context,
+    axis2_char_t *expr_str)
+{
+    axiom_xpath_expression_t *expr = NULL;
+    axiom_xpath_result_t *result = NULL;
+
+    printf("\nCompiling XPath expression: \"%s\" ...\n", expr_str);
+    expr = axiom_xpath_compile_expression(env, expr_str);
+
+    if (!expr)
+    {
+        printf("Compilation error.");
+        printf("Please check the systax of the XPath query.\n");
+
+        return;
+    }
+
+    /* Evaluating XPath expression */
+    printf("Evaluating...\n");
+    result = axiom_xpath_evaluate(context, expr);
+
+    if (!result)
+    {
+        printf("An error occured while evaluating the expression.\n");
+
+        axiom_xpath_free_expression(env, expr);
+
+        return;
+    }
+
+    if (result->flag == AXIOM_XPATH_ERROR_STREAMING_NOT_SUPPORTED)
+    {
+        printf("Streaming not supported.\n");
+
+        axiom_xpath_free_expression(env, expr);
+
+        return;
+    }
+
+    output_results(env, result);
+
+    if (result)
+    {
+        axiom_xpath_free_result(env, result);
+    }
+
+    if (expr)
+    {
+        axiom_xpath_free_expression(env, expr);
+    }
+}
+
+int compare_result(axis2_char_t *rs)
+{
+    int i;
+    char c;
+
+    /*fprintf(ftemp, "%s#", rs);*/
+
+    if(!fcor)
+    {
+        return 0;
+    }
+
+    for(i = 0; 1; i++)
+    {
+        while(rs[i] == ' ' || rs[i] == '\n' || rs[i] == '\r' || rs[i] == '\t')
+        {
+            i++;
+        }
+
+        do
+        {
+            c = (char)getc(fcor);
+        }
+        while(c == ' ' || c == '\n' || c == '\r' || c == '\t');
+
+        if(c == '#' || c == EOF)
+        {
+            break;
+        }
+
+        if(c != rs[i])
+        {
+            while(c != '#' && c != EOF)
+            {
+                c = getc(fcor);
+            }
+            
+            return 0;
+        }
+    }
+
+    return rs[i] == '\0';
+}
+
+void output_results(const axutil_env_t *env,
+        axiom_xpath_result_t *xpath_result)
+{
+    axiom_xpath_result_node_t *xpath_result_node;
+    axiom_node_t *result_node;
+    axis2_char_t *result_str;
+    axis2_char_t result_set[100000];
+    axis2_char_t temp_res[100000];
+
+    axiom_element_t *ele;
+    int i;
+
+    result_set[0] = '\n';
+    result_set[1] = '\0';
+
+    for (i = 0; i < axutil_array_list_size(xpath_result->nodes, env); i++)
+    {
+        xpath_result_node = axutil_array_list_get(xpath_result->nodes, env, i);
+
+        if (xpath_result_node->type == AXIOM_XPATH_TYPE_NODE)
+        {
+            result_node = xpath_result_node->value;
+            ele = (axiom_element_t *)axiom_node_get_data_element(
+                        result_node, env);
+
+            if (ele)
+            {
+                /*result_str = axiom_element_get_text(ele, env, result_node);*/
+                result_str = axiom_node_to_string(result_node, env);
+
+                sprintf(temp_res, "\"%s\"\n", result_str);
+                strcat(result_set, temp_res);
+            }
+        }
+        else if (xpath_result_node->type == AXIOM_XPATH_TYPE_ATTRIBUTE)
+        {
+            result_str =
+                axiom_attribute_get_localname(xpath_result_node->value, env);
+            sprintf(temp_res, "%s = ", result_str);
+            strcat(result_set, temp_res);
+            result_str =
+                axiom_attribute_get_value(xpath_result_node->value, env);
+            sprintf(temp_res, "\"%s\"\n", result_str);
+            strcat(result_set, temp_res);
+        }
+        else if (xpath_result_node->type == AXIOM_XPATH_TYPE_NAMESPACE)
+        {
+            result_str =
+                axiom_namespace_get_prefix(xpath_result_node->value, env);
+            sprintf(temp_res, "%s = ", result_str);
+            strcat(result_set, temp_res);
+            result_str =
+                axiom_namespace_get_uri(xpath_result_node->value, env);
+            sprintf(temp_res, "\"%s\"\n", result_str);
+            strcat(result_set, temp_res);
+        }
+        else if (xpath_result_node->type == AXIOM_XPATH_TYPE_BOOLEAN)
+        {
+            sprintf(temp_res, "\"%s\"\n",  
+                    (*(axis2_bool_t *)xpath_result_node->value) ? "true" : "false");
+            strcat(result_set, temp_res);
+        }
+        else if (xpath_result_node->type == AXIOM_XPATH_TYPE_TEXT)
+        {
+            sprintf(temp_res, "\"%s\"\n", 
+                    (axis2_char_t *)xpath_result_node->value);
+            strcat(result_set, temp_res);
+        }
+        else if (xpath_result_node->type == AXIOM_XPATH_TYPE_NUMBER)
+        {
+            sprintf(temp_res, "\"%lf\"\n", 
+                    *(double *)xpath_result_node->value);
+            strcat(result_set, temp_res);
+        }
+    }
+
+    if(compare_result(result_set))
+    {
+        printf("Test case passed\n");
+    }
+    else
+    {
+        printf("Failed test case!\nOutput\n%s\n", result_set);
+    }
+}
+
+axiom_node_t *read_test_xml(const axutil_env_t *env, axis2_char_t *file_name)
+{
+    axiom_xml_reader_t *reader = NULL;
+    axiom_stax_builder_t *builder = NULL;
+    axiom_document_t *document = NULL;
+    axiom_node_t *root = NULL;
+    axiom_node_t *doc_root = NULL;
+
+    /* Create parser */
+    reader = axiom_xml_reader_create_for_file(env, file_name, NULL);
+
+    if (!reader)
+    {
+        printf("Error creating pullparser");
+        return NULL;
+    }
+
+    /* Create axiom_stax_builder */
+    builder = axiom_stax_builder_create(env, reader);
+
+    if (!builder)
+    {
+        printf("Error creating pull parser");
+        return NULL;
+    }
+
+    /* Create an om document */
+    document = axiom_stax_builder_get_document(builder, env);
+
+    if (!document)
+    {
+        printf("Error creating document");
+        return NULL;
+    }
+
+    /* Get root element */
+    root = axiom_document_get_root_element(document, env);
+    if (!root)
+    {
+        printf("Root element null ");
+        axiom_stax_builder_free(builder, env);
+        return NULL;
+    }
+
+    while (axiom_document_build_next(document, env));
+
+    doc_root = axiom_node_create(env);
+    axiom_node_add_child(doc_root, env, root);
+
+    return doc_root;
+}
+
+axiom_node_t * build_test_xml(const axutil_env_t *env)
+{
+    axiom_node_t *main_node;
+    axiom_node_t *order_node;
+    axiom_node_t *values_node;
+    axiom_node_t *value_node;
+    axiom_node_t *grandchild;
+    axis2_char_t value_str[255];
+    axiom_element_t *order_ele;
+    axiom_element_t *values_ele;
+    axiom_element_t *value_ele;
+    axiom_element_t *grandchild_ele;
+    axiom_attribute_t *attribute;
+    int i, N = 20;
+
+    axiom_namespace_t *ns1 =
+        axiom_namespace_create(env, "http://xpath/test", "ns1");
+
+    axiom_element_create(env, NULL, "test", ns1, &main_node);
+
+    order_ele =
+        axiom_element_create(env, main_node, "node1", NULL, &order_node);
+    axiom_element_set_text(order_ele, env, "10", order_node);
+    attribute =
+        axiom_attribute_create(env, "attr1", "attribute_value_1", NULL);
+    axiom_element_add_attribute(order_ele, env, attribute, order_node);
+
+    values_ele =
+        axiom_element_create(env, main_node, "node2", NULL, &values_node);
+
+    for (i = 0 ; i < N; i++)
+    {
+        sprintf(value_str, "%d", i + 1);
+
+        value_ele =
+            axiom_element_create(env, values_node, "child", NULL, &value_node);
+        axiom_element_set_text(value_ele, env, value_str, value_node);
+
+        grandchild_ele =
+            axiom_element_create(env, value_node, "grandchild", NULL, &grandchild);
+        axiom_element_set_text(grandchild_ele, env, value_str /*"3 rd level"*/, \
grandchild); +    }
+
+    return main_node;
+}


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic