Pinvoke symbols according to the new moonlight naming convention.
[mono.git] / mcs / class / System.Runtime.Serialization / System.Runtime.Serialization / SerializationMap.XsdExporter.cs
1 //
2 // SerializationMap.XsdExporter.cs
3 //
4 // Author:
5 //      Atsushi Enomoto <atsushi@ximian.com>
6 //
7 // Copyright (C) 2010 Novell, Inc.  http://www.novell.com
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 // 
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 // 
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28 using System;
29 using System.CodeDom;
30 using System.CodeDom.Compiler;
31 using System.Collections;
32 using System.Collections.Generic;
33 using System.IO;
34 using System.Linq;
35 using System.Reflection;
36 using System.Xml;
37 using System.Xml.Schema;
38 using System.Xml.Serialization;
39
40 using QName = System.Xml.XmlQualifiedName;
41
42 namespace System.Runtime.Serialization
43 {
44         internal abstract partial class SerializationMap
45         {
46                 public abstract void ExportSchemaType (XsdDataContractExporter exporter);
47         }
48         
49         internal partial class XmlSerializableMap
50         {
51                 public override void ExportSchemaType (XsdDataContractExporter exporter)
52                 {
53                         // .NET also expects a default constructor.
54                         var ixs = (IXmlSerializable) Activator.CreateInstance (RuntimeType, true);
55                         var xs = ixs.GetSchema ();
56                         if (xs != null)
57                                 exporter.Schemas.Add (xs);
58                 }
59         }
60         
61         internal partial class SharedContractMap
62         {
63                 public override void ExportSchemaType (XsdDataContractExporter exporter)
64                 {
65                         exporter.ExportStandardComplexType (RuntimeType.GetCustomAttribute<DataContractAttribute> (false), RuntimeType, Members);
66                 }
67         }
68         
69         internal partial class DefaultTypeMap
70         {
71                 public override void ExportSchemaType (XsdDataContractExporter exporter)
72                 {
73                         exporter.ExportStandardComplexType (null, RuntimeType, Members);
74                 }
75         }
76         
77         internal partial class CollectionContractTypeMap
78         {
79                 public override void ExportSchemaType (XsdDataContractExporter exporter)
80                 {
81                         exporter.ExportListContractType (a, RuntimeType);
82                 }
83         }
84         
85         internal partial class CollectionTypeMap
86         {
87                 public override void ExportSchemaType (XsdDataContractExporter exporter)
88                 {
89                         exporter.ExportListContractType (null, RuntimeType);
90                 }
91         }
92         
93         internal partial class DictionaryTypeMap
94         {
95                 public override void ExportSchemaType (XsdDataContractExporter exporter)
96                 {
97                         exporter.ExportDictionaryContractType (a, RuntimeType, GetGenericDictionaryInterface (RuntimeType));
98                 }
99         }
100         
101         internal partial class SharedTypeMap
102         {
103                 public override void ExportSchemaType (XsdDataContractExporter exporter)
104                 {
105                         exporter.ExportStandardComplexType (null, RuntimeType, Members);
106                 }
107         }
108         
109         internal partial class EnumMap
110         {
111                 public override void ExportSchemaType (XsdDataContractExporter exporter)
112                 {
113                         exporter.ExportEnumContractType (RuntimeType.GetCustomAttribute<DataContractAttribute> (false), RuntimeType);
114                 }
115         }
116 }