2008-06-18 Nestor Salceda <nestor.salceda@gmail.com>
[mono.git] / mcs / class / System.Xml.Linq / System.Xml.Linq / XUtil.cs
1 //
2 // Authors:
3 //   Atsushi Enomoto
4 //
5 // Copyright 2007 Novell (http://www.novell.com)
6 //
7 // Permission is hereby granted, free of charge, to any person obtaining
8 // a copy of this software and associated documentation files (the
9 // "Software"), to deal in the Software without restriction, including
10 // without limitation the rights to use, copy, modify, merge, publish,
11 // distribute, sublicense, and/or sell copies of the Software, and to
12 // permit persons to whom the Software is furnished to do so, subject to
13 // the following conditions:
14 // 
15 // The above copyright notice and this permission notice shall be
16 // included in all copies or substantial portions of the Software.
17 // 
18 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
22 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 //
26
27 using System;
28 using System.Collections;
29 using System.Collections.Generic;
30 using System.IO;
31 using System.Text;
32 using System.Xml;
33
34 using XPI = System.Xml.Linq.XProcessingInstruction;
35
36 namespace System.Xml.Linq
37 {
38         internal static class XUtil
39         {
40                 public const string XmlnsNamespace =
41                         "http://www.w3.org/2000/xmlns/";
42
43                 // FIXME: implement
44                 public static string ToString (object o)
45                 {
46                         if (o == null)
47                                 throw new InvalidOperationException ("Attempt to get string from null");
48                         if (o is string)
49                                 return (string) o;
50                         return o.ToString ();
51                 }
52
53                 public static bool ToBoolean (object o)
54                 {
55                         throw new NotImplementedException ();
56                 }
57
58                 public static Nullable <bool> ToNullableBoolean (object o)
59                 {
60                         throw new NotImplementedException ();
61                 }
62
63                 public static IEnumerable ExpandArray (object o)
64                 {
65                         XNode n = o as XNode;
66                         if (n != null)
67                                 yield return n;
68                         else if (o is string)
69                                 yield return o;
70                         else if (o is IEnumerable)
71                                 foreach (object obj in (IEnumerable) o)
72                                         foreach (object oo in ExpandArray (obj))
73                                                 yield return oo;
74                         else
75                                 yield return o;
76                 }
77
78                 public static XNode ToNode (object o)
79                 {
80                         if (o is XAttribute)
81                                 throw new ArgumentException ("Attribute node is not allowed as argument");
82                         XNode n = o as XNode;
83                         if (n != null)
84                                 return n;
85                         else if (o is string)
86                                 return new XText ((string) o);
87                         else
88                                 return new XText (o.ToString ());
89                 }
90
91                 public static object GetDetachedObject (XObject child)
92                 {
93                         return child.Owner != null ? Clone (child) : child;
94                 }
95
96                 public static object Clone (object o)
97                 {
98                         if (o is string)
99                                 return (string) o;
100                         if (o is XAttribute)
101                                 return new XAttribute ((XAttribute) o);
102                         if (o is XElement)
103                                 return new XElement ((XElement) o);
104                         if (o is XCData)
105                                 return new XCData ((XCData) o);
106                         if (o is XComment)
107                                 return new XComment ((XComment) o);
108                         if (o is XPI)
109                                 return new XPI ((XPI) o);
110                         if (o is XDeclaration)
111                                 return new XDeclaration ((XDeclaration) o);
112                         if (o is XDocumentType)
113                                 return new XDocumentType ((XDocumentType) o);
114                         if (o is XText)
115                                 return new XText ((XText) o);
116                         throw new ArgumentException ();
117                 }
118         }
119 }