Welcome to mirror list, hosted at ThFree Co, Russian Federation.

NodeFunctions.cs « Internal « XPath « Xml « System « System.Xml « referencesource « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e7607376bc4588b2c3f0e7e701270a0aa52756d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
//------------------------------------------------------------------------------
// <copyright file="NodeFunctions.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>                                                                
// <owner current="true" primary="true">[....]</owner>
//------------------------------------------------------------------------------

namespace MS.Internal.Xml.XPath {
    using System;
    using System.Xml;
    using System.Xml.XPath;
    using System.Diagnostics;
    using System.Globalization;
    using System.Xml.Xsl;
    using FT = MS.Internal.Xml.XPath.Function.FunctionType;

    internal sealed class NodeFunctions : ValueQuery {
        Query arg = null;
        FT funcType;
        XsltContext xsltContext;

        public NodeFunctions(FT funcType, Query arg) {
            this.funcType = funcType;
            this.arg = arg; 
        }

        public override void SetXsltContext(XsltContext context){
            this.xsltContext = context.Whitespace ? context : null;
            if (arg != null) {
                arg.SetXsltContext(context);
            }
        }
        
        private XPathNavigator EvaluateArg(XPathNodeIterator context) {
            if (arg == null) {
                return context.Current;
            }
            arg.Evaluate(context);
            return arg.Advance();
        }

        public override object Evaluate(XPathNodeIterator context)  {
            XPathNavigator argVal;

            switch (funcType) {
            case FT.FuncPosition:
                return (double)context.CurrentPosition;
            case FT.FuncLast:
                return (double)context.Count;
            case FT.FuncNameSpaceUri:
                argVal = EvaluateArg(context);
                if (argVal != null) {
                    return argVal.NamespaceURI;
                }
                break;
            case FT.FuncLocalName:
                argVal = EvaluateArg(context);
                if (argVal != null) {
                    return argVal.LocalName;
                }
                break;
            case FT.FuncName :
                argVal = EvaluateArg(context);
                if (argVal != null) {
                    return argVal.Name;
                }
                break;
            case FT.FuncCount:
                arg.Evaluate(context);
                int count = 0;
                if (xsltContext != null) {
                    XPathNavigator nav;
                    while ((nav = arg.Advance()) != null) {
                        if (nav.NodeType != XPathNodeType.Whitespace || xsltContext.PreserveWhitespace(nav)) {
                            count++;
                        }
                    }
                } else {
                    while (arg.Advance() != null) {
                        count++;
                    }
                }
                return (double) count;
            }
            return string.Empty;
        }

        public override XPathResultType StaticType { get { return Function.ReturnTypes[(int)funcType]; } }

        public override XPathNodeIterator Clone() {
            NodeFunctions method = new NodeFunctions(funcType, Clone(arg));
            method.xsltContext = this.xsltContext;
            return method;
       }

        public override void PrintQuery(XmlWriter w) {
            w.WriteStartElement(this.GetType().Name);
            w.WriteAttributeString("name", funcType.ToString());
            if (arg != null) {
                arg.PrintQuery(w);
            }
            w.WriteEndElement();
        }
    }
}