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 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317
|
//
// XmlAttributes.cs:
//
// Author:
// John Donagher (john@webmeta.com)
//
// (C) 2002 John Donagher
//
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using System.Reflection;
using System;
using System.ComponentModel;
using System.Collections;
namespace System.Xml.Serialization
{
/// <summary>
/// Summary description for XmlAttributes.
/// </summary>
public class XmlAttributes
{
private XmlAnyAttributeAttribute xmlAnyAttribute;
private XmlAnyElementAttributes xmlAnyElements = new XmlAnyElementAttributes();
private XmlArrayAttribute xmlArray;
private XmlArrayItemAttributes xmlArrayItems = new XmlArrayItemAttributes();
private XmlAttributeAttribute xmlAttribute;
private XmlChoiceIdentifierAttribute xmlChoiceIdentifier;
private object xmlDefaultValue = System.DBNull.Value;
private XmlElementAttributes xmlElements = new XmlElementAttributes();
private XmlEnumAttribute xmlEnum;
private bool xmlIgnore;
private bool xmlns;
private XmlRootAttribute xmlRoot;
private XmlTextAttribute xmlText;
private XmlTypeAttribute xmlType;
public XmlAttributes ()
{
}
public XmlAttributes (ICustomAttributeProvider provider)
{
object[] attributes = provider.GetCustomAttributes(false);
foreach(object obj in attributes)
{
if(obj is XmlAnyAttributeAttribute)
xmlAnyAttribute = (XmlAnyAttributeAttribute) obj;
else
if(obj is XmlAnyElementAttribute)
xmlAnyElements.Add((XmlAnyElementAttribute) obj);
else if(obj is XmlArrayAttribute)
xmlArray = (XmlArrayAttribute) obj;
else if(obj is XmlArrayItemAttribute)
xmlArrayItems.Add((XmlArrayItemAttribute) obj);
else if(obj is XmlAttributeAttribute)
xmlAttribute = (XmlAttributeAttribute) obj;
else if(obj is XmlChoiceIdentifierAttribute)
xmlChoiceIdentifier = (XmlChoiceIdentifierAttribute) obj;
else if(obj is DefaultValueAttribute)
xmlDefaultValue = ((DefaultValueAttribute)obj).Value;
else if(obj is XmlElementAttribute )
xmlElements.Add((XmlElementAttribute ) obj);
else if(obj is XmlEnumAttribute)
xmlEnum = (XmlEnumAttribute) obj;
else if(obj is XmlIgnoreAttribute)
xmlIgnore = true;
else if(obj is XmlNamespaceDeclarationsAttribute)
xmlns = true;
else if(obj is XmlRootAttribute)
xmlRoot = (XmlRootAttribute) obj;
else if(obj is XmlTextAttribute)
xmlText = (XmlTextAttribute) obj;
else if(obj is XmlTypeAttribute)
xmlType = (XmlTypeAttribute) obj;
}
if (xmlIgnore) {
xmlAnyAttribute = null;
xmlAnyElements.Clear ();
xmlArray = null;
xmlArrayItems.Clear ();
xmlAttribute = null;
xmlChoiceIdentifier = null;
xmlDefaultValue = null;
xmlElements.Clear ();
xmlEnum = null;
xmlns = false;
xmlRoot = null;
xmlText = null;
xmlType = null;
}
}
#region public properties
public XmlAnyAttributeAttribute XmlAnyAttribute
{
get
{
return xmlAnyAttribute;
}
set
{
xmlAnyAttribute = value;
}
}
public XmlAnyElementAttributes XmlAnyElements
{
get
{
return xmlAnyElements;
}
}
public XmlArrayAttribute XmlArray
{
get
{
return xmlArray;
}
set
{
xmlArray = value;
}
}
public XmlArrayItemAttributes XmlArrayItems
{
get
{
return xmlArrayItems;
}
}
public XmlAttributeAttribute XmlAttribute
{
get
{
return xmlAttribute;
}
set
{
xmlAttribute = value;
}
}
public XmlChoiceIdentifierAttribute XmlChoiceIdentifier
{
get
{
return xmlChoiceIdentifier;
}
}
public object XmlDefaultValue
{
get
{
return xmlDefaultValue;
}
set
{
xmlDefaultValue = value;
}
}
public XmlElementAttributes XmlElements
{
get
{
return xmlElements;
}
}
public XmlEnumAttribute XmlEnum
{
get
{
return xmlEnum;
}
set
{
xmlEnum = value;
}
}
public bool XmlIgnore
{
get
{
return xmlIgnore;
}
set
{
xmlIgnore = value;
}
}
public bool Xmlns
{
get
{
return xmlns;
}
set
{
xmlns = value;
}
}
public XmlRootAttribute XmlRoot
{
get
{
return xmlRoot;}
set
{
xmlRoot = value;
}
}
public XmlTextAttribute XmlText
{
get
{
return xmlText;
}
set
{
xmlText = value;
}
}
public XmlTypeAttribute XmlType
{
get
{
return xmlType;
}
set
{
xmlType = value;
}
}
#endregion
internal void AddKeyHash (System.Text.StringBuilder sb)
{
sb.Append ("XA ");
KeyHelper.AddField (sb, 1, xmlIgnore);
KeyHelper.AddField (sb, 2, xmlns);
KeyHelper.AddField (sb, 3, xmlAnyAttribute!=null);
xmlAnyElements.AddKeyHash (sb);
xmlArrayItems.AddKeyHash (sb);
xmlElements.AddKeyHash (sb);
if (xmlArray != null)
xmlArray.AddKeyHash (sb);
if (xmlAttribute != null)
xmlAttribute.AddKeyHash (sb);
if (xmlDefaultValue == null) {
sb.Append ("n");
}
else if (!(xmlDefaultValue is System.DBNull)) {
string v = XmlCustomFormatter.ToXmlString (TypeTranslator.GetTypeData (xmlDefaultValue.GetType()), xmlDefaultValue);
sb.Append ("v" + v);
}
if (xmlEnum != null)
xmlEnum.AddKeyHash (sb);
if (xmlRoot != null)
xmlRoot.AddKeyHash (sb);
if (xmlText != null)
xmlText.AddKeyHash (sb);
if (xmlType != null)
xmlType.AddKeyHash (sb);
if (xmlChoiceIdentifier != null)
xmlChoiceIdentifier.AddKeyHash (sb);
sb.Append ("|");
}
internal int? Order {
get {
int? order = null;
if (XmlElements.Count > 0)
order = XmlElements.Order;
else if (XmlArray != null)
order = XmlArray.Order;
else if (XmlAnyElements.Count > 0)
order = XmlAnyElements.Order;
return order;
}
}
internal int SortableOrder {
get { return Order != null ? (int) Order : int.MinValue; }
}
}
}
|