| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500 |
- //
- // System.Xml.Serialization.SoapReflectionImporter
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- //
- //
- // 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.Collections;
- using System.Globalization;
- using System.Reflection;
- using System.Xml;
- using System.Xml.Schema;
- namespace System.Xml.Serialization {
- public class SoapReflectionImporter {
- SoapAttributeOverrides attributeOverrides;
- string initialDefaultNamespace;
- ArrayList includedTypes;
- ArrayList relatedMaps = new ArrayList ();
- ReflectionHelper helper = new ReflectionHelper();
- #region Constructors
- public SoapReflectionImporter (): this (null, null)
- {
- }
- public SoapReflectionImporter (SoapAttributeOverrides attributeOverrides): this (attributeOverrides, null)
- {
- }
- public SoapReflectionImporter (string defaultNamespace): this (null, defaultNamespace)
- {
- }
- public SoapReflectionImporter (SoapAttributeOverrides attributeOverrides, string defaultNamespace)
- {
- if (defaultNamespace == null) initialDefaultNamespace = String.Empty;
- else initialDefaultNamespace = defaultNamespace;
- if (attributeOverrides == null) this.attributeOverrides = new SoapAttributeOverrides();
- else this.attributeOverrides = attributeOverrides;
- }
- #endregion // Constructors
- #region Methods
- public XmlMembersMapping ImportMembersMapping (string elementName, string ns, XmlReflectionMember[] members)
- {
- return ImportMembersMapping (elementName, ns, members, true, true, false);
- }
- public XmlMembersMapping ImportMembersMapping (string elementName, string ns, XmlReflectionMember[] members, bool hasWrapperElement, bool writeAccessors)
- {
- return ImportMembersMapping (elementName, ns, members, hasWrapperElement, writeAccessors, false);
- }
- public XmlMembersMapping ImportMembersMapping (string elementName, string ns, XmlReflectionMember[] members, bool hasWrapperElement, bool writeAccessors, bool validate)
- {
- elementName = XmlConvert.EncodeLocalName (elementName);
- XmlMemberMapping[] mapping = new XmlMemberMapping[members.Length];
- for (int n=0; n<members.Length; n++)
- {
- XmlTypeMapMember mapMem = CreateMapMember (members[n], ns);
- mapping[n] = new XmlMemberMapping (XmlConvert.EncodeLocalName (members[n].MemberName), ns, mapMem, true);
- }
- XmlMembersMapping mps = new XmlMembersMapping (elementName, ns, hasWrapperElement, writeAccessors, mapping);
- mps.RelatedMaps = relatedMaps;
- mps.Format = SerializationFormat.Encoded;
- Type[] extraTypes = includedTypes != null ? (Type[])includedTypes.ToArray(typeof(Type)) : null;
- mps.Source = new MembersSerializationSource (elementName, hasWrapperElement, members, writeAccessors, false, null, extraTypes);
- return mps;
- }
- public XmlTypeMapping ImportTypeMapping (Type type)
- {
- return ImportTypeMapping (type, null);
- }
- public XmlTypeMapping ImportTypeMapping (Type type, string defaultNamespace)
- {
- if (type == null)
- throw new ArgumentNullException ("type");
- if (type == typeof (void))
- throw new InvalidOperationException ("Type " + type.Name + " may not be serialized.");
- return ImportTypeMapping (TypeTranslator.GetTypeData (type),
- defaultNamespace);
- }
- internal XmlTypeMapping ImportTypeMapping (TypeData typeData, string defaultNamespace)
- {
- if (typeData == null)
- throw new ArgumentNullException ("typeData");
- if (typeData.Type == null)
- throw new ArgumentException ("Specified TypeData instance does not have Type set.");
- string oldNs = initialDefaultNamespace;
- if (defaultNamespace == null) defaultNamespace = initialDefaultNamespace;
- if (defaultNamespace == null) defaultNamespace = string.Empty;
- initialDefaultNamespace = defaultNamespace;
- XmlTypeMapping map;
- switch (typeData.SchemaType) {
- case SchemaTypes.Class: map = ImportClassMapping (typeData, defaultNamespace); break;
- case SchemaTypes.Array: map = ImportListMapping (typeData, defaultNamespace); break;
- case SchemaTypes.XmlNode: throw CreateTypeException (typeData.Type);
- case SchemaTypes.Primitive: map = ImportPrimitiveMapping (typeData, defaultNamespace); break;
- case SchemaTypes.Enum: map = ImportEnumMapping (typeData, defaultNamespace); break;
- case SchemaTypes.XmlSerializable:
- default: throw new NotSupportedException ("Type " + typeData.Type.FullName + " not supported for XML serialization");
- }
- map.RelatedMaps = relatedMaps;
- map.Format = SerializationFormat.Encoded;
- Type[] extraTypes = includedTypes != null ? (Type[])includedTypes.ToArray(typeof(Type)) : null;
- map.Source = new SoapTypeSerializationSource (typeData.Type, attributeOverrides, defaultNamespace, extraTypes);
-
- initialDefaultNamespace = oldNs;
- return map;
- }
- XmlTypeMapping CreateTypeMapping (TypeData typeData, string defaultXmlType, string defaultNamespace)
- {
- string membersNamespace = defaultNamespace;
- bool includeInSchema = true;
- SoapAttributes atts = null;
- if (defaultXmlType == null) defaultXmlType = typeData.XmlType;
- if (!typeData.IsListType)
- {
- if (attributeOverrides != null)
- atts = attributeOverrides[typeData.Type];
- if (atts != null && typeData.SchemaType == SchemaTypes.Primitive)
- throw new InvalidOperationException ("SoapType attribute may not be specified for the type " + typeData.FullTypeName);
- }
- if (atts == null)
- atts = new SoapAttributes (typeData.Type);
- if (atts.SoapType != null)
- {
- if (atts.SoapType.Namespace != null && atts.SoapType.Namespace != string.Empty)
- membersNamespace = atts.SoapType.Namespace;
- if (atts.SoapType.TypeName != null && atts.SoapType.TypeName != string.Empty)
- defaultXmlType = XmlConvert.EncodeLocalName (atts.SoapType.TypeName);
- includeInSchema = atts.SoapType.IncludeInSchema;
- }
- if (membersNamespace == null) membersNamespace = "";
- XmlTypeMapping map = new XmlTypeMapping (defaultXmlType, membersNamespace, typeData, defaultXmlType, membersNamespace);
- map.IncludeInSchema = includeInSchema;
- relatedMaps.Add (map);
- return map;
- }
- XmlTypeMapping ImportClassMapping (Type type, string defaultNamespace)
- {
- TypeData typeData = TypeTranslator.GetTypeData (type);
- return ImportClassMapping (typeData, defaultNamespace);
- }
- XmlTypeMapping ImportClassMapping (TypeData typeData, string defaultNamespace)
- {
- Type type = typeData.Type;
- if (type.IsValueType) throw CreateStructException (type);
- if (type == typeof (object)) defaultNamespace = XmlSchema.Namespace;
- ReflectionHelper.CheckSerializableType (type, false);
- XmlTypeMapping map = helper.GetRegisteredClrType (type, GetTypeNamespace (typeData, defaultNamespace));
- if (map != null) return map;
- map = CreateTypeMapping (typeData, null, defaultNamespace);
- helper.RegisterClrType (map, type, map.Namespace);
- map.MultiReferenceType = true;
- ClassMap classMap = new ClassMap ();
- map.ObjectMap = classMap;
- // Import members
- try
- {
- ICollection members = GetReflectionMembers (type);
- foreach (XmlReflectionMember rmember in members)
- {
- if (rmember.SoapAttributes.SoapIgnore) continue;
- classMap.AddMember (CreateMapMember (rmember, map.Namespace));
- }
- }
- catch (Exception ex)
- {
- throw helper.CreateError (map, ex.Message);
- }
- // Import included classes
- SoapIncludeAttribute[] includes = (SoapIncludeAttribute[])type.GetCustomAttributes (typeof (SoapIncludeAttribute), false);
- for (int n=0; n<includes.Length; n++)
- {
- Type includedType = includes[n].Type;
- ImportTypeMapping (includedType);
- }
- if (type == typeof (object) && includedTypes != null)
- {
- foreach (Type intype in includedTypes)
- map.DerivedTypes.Add (ImportTypeMapping (intype));
- }
- // Register inheritance relations
- if (type.BaseType != null)
- {
- XmlTypeMapping bmap = ImportClassMapping (type.BaseType, defaultNamespace);
-
- if (type.BaseType != typeof (object))
- map.BaseMap = bmap;
-
- // At this point, derived classes of this map must be already registered
-
- RegisterDerivedMap (bmap, map);
- }
-
- return map;
- }
-
- void RegisterDerivedMap (XmlTypeMapping map, XmlTypeMapping derivedMap)
- {
- map.DerivedTypes.Add (derivedMap);
- map.DerivedTypes.AddRange (derivedMap.DerivedTypes);
-
- if (map.BaseMap != null)
- RegisterDerivedMap (map.BaseMap, derivedMap);
- else {
- XmlTypeMapping obmap = ImportTypeMapping (typeof(object));
- if (obmap != map)
- obmap.DerivedTypes.Add (derivedMap);
- }
- }
- string GetTypeNamespace (TypeData typeData, string defaultNamespace)
- {
- string membersNamespace = defaultNamespace;
- SoapAttributes atts = null;
- if (!typeData.IsListType)
- {
- if (attributeOverrides != null)
- atts = attributeOverrides[typeData.Type];
- }
- if (atts == null)
- atts = new SoapAttributes (typeData.Type);
- if (atts.SoapType != null)
- {
- if (atts.SoapType.Namespace != null && atts.SoapType.Namespace != string.Empty)
- membersNamespace = atts.SoapType.Namespace;
- }
- if (membersNamespace == null) return "";
- else return membersNamespace;
- }
-
- XmlTypeMapping ImportListMapping (TypeData typeData, string defaultNamespace)
- {
- Type type = typeData.Type;
- XmlTypeMapping map = helper.GetRegisteredClrType (type, XmlSerializer.EncodingNamespace);
- if (map != null) return map;
- ListMap obmap = new ListMap ();
- TypeData itemTypeData = typeData.ListItemTypeData;
- map = CreateTypeMapping (typeData, "Array", XmlSerializer.EncodingNamespace);
- helper.RegisterClrType (map, type, XmlSerializer.EncodingNamespace);
- map.MultiReferenceType = true;
- map.ObjectMap = obmap;
- XmlTypeMapElementInfo elem = new XmlTypeMapElementInfo (null, itemTypeData);
-
- if (elem.TypeData.IsComplexType) {
- elem.MappedType = ImportTypeMapping (typeData.ListItemType, defaultNamespace);
- elem.TypeData = elem.MappedType.TypeData;
- }
-
- elem.ElementName = "Item";
- elem.Namespace = string.Empty;
- elem.IsNullable = true; // By default, items are nullable
- XmlTypeMapElementInfoList list = new XmlTypeMapElementInfoList();
- list.Add (elem);
- obmap.ItemInfo = list;
- XmlTypeMapping objMap = ImportTypeMapping (typeof(object), defaultNamespace);
- objMap.DerivedTypes.Add (map);
- // Register any of the including types as a derived class of object
- SoapIncludeAttribute[] includes = (SoapIncludeAttribute[])type.GetCustomAttributes (typeof (SoapIncludeAttribute), false);
- for (int i = 0; i < includes.Length; i++)
- {
- Type includedType = includes[i].Type;
- objMap.DerivedTypes.Add(ImportTypeMapping (includedType, defaultNamespace));
- }
-
- return map;
- }
-
- XmlTypeMapping ImportPrimitiveMapping (TypeData typeData, string defaultNamespace)
- {
- Type type = typeData.Type;
- XmlTypeMapping map = helper.GetRegisteredClrType (type, GetTypeNamespace (typeData, defaultNamespace));
- if (map != null) return map;
- map = CreateTypeMapping (typeData, null, defaultNamespace);
- helper.RegisterClrType (map, type, map.Namespace);
- return map;
- }
- XmlTypeMapping ImportEnumMapping (TypeData typeData, string defaultNamespace)
- {
- Type type = typeData.Type;
- XmlTypeMapping map = helper.GetRegisteredClrType (type, GetTypeNamespace (typeData, defaultNamespace));
- if (map != null) return map;
-
- ReflectionHelper.CheckSerializableType (type, false);
-
- map = CreateTypeMapping (typeData, null, defaultNamespace);
- helper.RegisterClrType (map, type, map.Namespace);
- map.MultiReferenceType = true;
-
- string [] names = Enum.GetNames (type);
- EnumMap.EnumMapMember[] members = new EnumMap.EnumMapMember[names.Length];
- for (int n=0; n<names.Length; n++)
- {
- FieldInfo field = type.GetField (names[n]);
- string xmlName = names[n];
- object[] atts = field.GetCustomAttributes (typeof(SoapEnumAttribute), false);
- if (atts.Length > 0) xmlName = ((SoapEnumAttribute)atts[0]).Name;
- long value = ((IConvertible) field.GetValue (null)).ToInt64 (CultureInfo.InvariantCulture);
- members[n] = new EnumMap.EnumMapMember (XmlConvert.EncodeLocalName (xmlName), names[n], value);
- }
- bool isFlags = type.IsDefined (typeof (FlagsAttribute), false);
- map.ObjectMap = new EnumMap (members, isFlags);
- ImportTypeMapping (typeof(object), defaultNamespace).DerivedTypes.Add (map);
- return map;
- }
- ICollection GetReflectionMembers (Type type)
- {
- ArrayList members = new ArrayList();
- PropertyInfo[] properties = type.GetProperties (BindingFlags.Instance | BindingFlags.Public);
- foreach (PropertyInfo prop in properties)
- {
- if (!prop.CanRead) continue;
- if (!prop.CanWrite && (TypeTranslator.GetTypeData (prop.PropertyType).SchemaType != SchemaTypes.Array || prop.PropertyType.IsArray))
- continue;
-
- SoapAttributes atts = attributeOverrides[type, prop.Name];
- if (atts == null) atts = new SoapAttributes (prop);
- if (atts.SoapIgnore) continue;
- XmlReflectionMember member = new XmlReflectionMember(prop.Name, prop.PropertyType, atts);
- members.Add (member);
- }
- FieldInfo[] fields = type.GetFields (BindingFlags.Instance | BindingFlags.Public);
- foreach (FieldInfo field in fields)
- {
- SoapAttributes atts = attributeOverrides[type, field.Name];
- if (atts == null) atts = new SoapAttributes (field);
- if (atts.SoapIgnore) continue;
- XmlReflectionMember member = new XmlReflectionMember(field.Name, field.FieldType, atts);
- members.Add (member);
- }
- return members;
- }
-
- private XmlTypeMapMember CreateMapMember (XmlReflectionMember rmember, string defaultNamespace)
- {
- XmlTypeMapMember mapMember;
- SoapAttributes atts = rmember.SoapAttributes;
- TypeData typeData = TypeTranslator.GetTypeData (rmember.MemberType);
- if (atts.SoapAttribute != null)
- {
- // An attribute
- if (atts.SoapElement != null)
- throw new Exception ("SoapAttributeAttribute and SoapElementAttribute cannot be applied to the same member");
- XmlTypeMapMemberAttribute mapAttribute = new XmlTypeMapMemberAttribute ();
- if (atts.SoapAttribute.AttributeName.Length == 0)
- mapAttribute.AttributeName = XmlConvert.EncodeLocalName (rmember.MemberName);
- else
- mapAttribute.AttributeName = XmlConvert.EncodeLocalName (atts.SoapAttribute.AttributeName);
- mapAttribute.Namespace = (atts.SoapAttribute.Namespace != null) ? atts.SoapAttribute.Namespace : "";
- if (typeData.IsComplexType)
- mapAttribute.MappedType = ImportTypeMapping (typeData.Type, defaultNamespace);
- typeData = TypeTranslator.GetTypeData (rmember.MemberType, atts.SoapAttribute.DataType);
- mapMember = mapAttribute;
- }
- else
- {
- if (typeData.SchemaType == SchemaTypes.Array) mapMember = new XmlTypeMapMemberList ();
- else mapMember = new XmlTypeMapMemberElement ();
- if (atts.SoapElement != null && atts.SoapElement.DataType.Length != 0)
- typeData = TypeTranslator.GetTypeData (rmember.MemberType, atts.SoapElement.DataType);
- // Creates an ElementInfo that identifies the element
- XmlTypeMapElementInfoList infoList = new XmlTypeMapElementInfoList();
- XmlTypeMapElementInfo elem = new XmlTypeMapElementInfo (mapMember, typeData);
- elem.ElementName = XmlConvert.EncodeLocalName ((atts.SoapElement != null && atts.SoapElement.ElementName.Length != 0) ? atts.SoapElement.ElementName : rmember.MemberName);
- elem.Namespace = string.Empty;
- elem.IsNullable = (atts.SoapElement != null) ? atts.SoapElement.IsNullable : false;
- if (typeData.IsComplexType)
- elem.MappedType = ImportTypeMapping (typeData.Type, defaultNamespace);
-
- infoList.Add (elem);
- ((XmlTypeMapMemberElement)mapMember).ElementInfo = infoList;
- }
- mapMember.TypeData = typeData;
- mapMember.Name = rmember.MemberName;
- mapMember.IsReturnValue = rmember.IsReturnValue;
- return mapMember;
- }
-
- public void IncludeType (Type type)
- {
- if (type == null)
- throw new ArgumentNullException ("type");
- if (includedTypes == null) includedTypes = new ArrayList ();
- if (!includedTypes.Contains (type))
- includedTypes.Add (type);
- }
- public void IncludeTypes (ICustomAttributeProvider provider)
- {
- object[] ats = provider.GetCustomAttributes (typeof(SoapIncludeAttribute), true);
- foreach (SoapIncludeAttribute at in ats)
- IncludeType (at.Type);
- }
- Exception CreateTypeException (Type type)
- {
- return new NotSupportedException ("The type " + type.FullName + " may not be serialized with SOAP-encoded messages. Set the Use for your message to Literal");
- }
- Exception CreateStructException (Type type)
- {
- return new NotSupportedException ("Cannot serialize " + type.FullName + ". Nested structs are not supported with encoded SOAP");
- }
-
- #endregion // Methods
- }
- }
|