2008-05-12 Atsushi Enomoto <atsushi@ximian.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                 // FIXME: it will be removed. It makes attribute processing incorrect.
79                 public static IEnumerable<XNode> ToNodes (object o)
80                 {
81                         if (o is XAttribute)
82                                 throw new ArgumentException ("Attribute node is not allowed as argument");
83                         XNode n = o as XNode;
84                         if (n != null)
85                                 yield return n;
86                         else if (o is string)
87                                 yield return new XText ((string) o);
88                         else if (o is IEnumerable)
89                                 foreach (object obj in (IEnumerable) o)
90                                         foreach (XNode nn in ToNodes (obj))
91                                                 yield return nn;
92                         else
93                                 yield return new XText (o.ToString ());
94                 }
95
96                 public static object Clone (object o)
97
98                 {
99                         if (o is string)
100                                 return (string) o;
101                         if (o is XElement)
102                                 return new XElement ((XElement) o);
103                         if (o is XCData)
104                                 return new XCData (((XCData) o).Value);
105                         if (o is XComment)
106                                 return new XComment (((XComment) o).Value);
107                         XPI pi = o as XPI;
108                         if (pi != null)
109                                 return new XPI (pi.Target, pi.Data);
110                         XDeclaration xd = o as XDeclaration;
111                         if (xd != null)
112                                 return new XDeclaration (xd.Version, xd.Encoding, xd.Standalone);
113                         XDocumentType dtd = o as XDocumentType;
114                         if (dtd != null)
115                                 throw new NotImplementedException ();
116                         throw new ArgumentException ();
117                 }
118
119                 // FIXME: it will be removed. Shrinking just arguments is insufficient.
120                 public static IEnumerable<object> ShrinkArray (params object [] content)
121                 {
122                         if (content == null || content.Length == 0)
123                                 yield break;
124                         string prev = null;
125                         foreach (object o in content) {
126                                 if (o is XNode) {
127                                         if (prev != null) {
128                                                 yield return prev;
129                                                 prev = null;
130                                         }
131                                         yield return o;
132                                 } else {
133                                         prev += o;
134                                 }
135                         }
136                         if (prev != null)
137                                 yield return prev;
138                 }
139         }
140 }