In corlib/System.Runtime.InteropServices:
[mono.git] / mcs / class / System.Web / System.Web.UI / XPathBinder.cs
1 //
2 // System.Web.UI.XPathBinder
3 //
4 // Authors:
5 //      Ben Maurer (bmaurer@users.sourceforge.net)
6 //
7 // (C) 2003 Ben Maurer
8 //
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 #if NET_2_0
32 using System.Collections;
33 using System.Collections.Specialized;
34 using System.Text;
35 using System.Xml.XPath;
36 using System.Xml;
37
38 namespace System.Web.UI {
39         public sealed class XPathBinder {
40                 private XPathBinder ()
41                 {
42                 }
43
44                 public static object Eval (object container, string xpath)
45                 {
46                         return Eval (container, xpath, null);
47                 }
48
49                 public static string Eval (object container, string xpath, string format)
50                 {
51                         return Eval (container, xpath, format, null);
52                 }
53
54                 public static string Eval (object container, string xpath, string format, IXmlNamespaceResolver resolver)
55                 {
56                         if (xpath == null || xpath.Length == 0)
57                                 throw new ArgumentNullException ("xpath");
58
59                         IXPathNavigable factory = container as IXPathNavigable;
60
61                         if (factory == null)
62                                 throw new ArgumentException ("container");
63
64                         object result = factory.CreateNavigator ().Evaluate (xpath, resolver);
65
66                         XPathNodeIterator itr = result as XPathNodeIterator;
67                         if (itr != null) {
68                                 if (itr.MoveNext ())
69                                         return itr.Current.Value;
70                                 else
71                                         return null;
72                         }
73
74                         if (result == null)
75                                 return String.Empty;
76                         if (format == null || format.Length == 0)
77                                 return result.ToString ();
78
79                         return String.Format (format, result);
80                 }
81
82                 public static IEnumerable Select (object container, string xpath)
83                 {
84                         return Select (container, xpath, null);
85                 }
86
87                 public static IEnumerable Select (object container, string xpath, IXmlNamespaceResolver resolver)
88                 {
89                         if (xpath == null || xpath.Length == 0)
90                                 throw new ArgumentNullException ("xpath");
91                         
92                         IXPathNavigable factory = container as IXPathNavigable;
93                         
94                         if (factory == null)
95                                 throw new ArgumentException ("container");
96                         
97                         XPathNodeIterator itr = factory.CreateNavigator ().Select (xpath, resolver);
98                         ArrayList ret = new ArrayList ();
99                         
100                         while (itr.MoveNext ()) {
101                                 IHasXmlNode nodeAccessor = itr.Current as IHasXmlNode;
102                                 if (nodeAccessor == null)
103                                         throw new InvalidOperationException ();
104                                 ret.Add (nodeAccessor.GetNode ());
105                         }
106                         return ret;
107                 }
108                 
109         }
110 }
111 #endif
112