Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SimpleType.cs « Data « System « System.Data « referencesource « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e5840ccaed398901fdfbbcf1bb61f963c708b053 (plain)
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
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
//------------------------------------------------------------------------------
// <copyright file="SimpleType.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>                                                                
// <owner current="true" primary="true">Microsoft</owner>
// <owner current="true" primary="false">Microsoft</owner>
// <owner current="false" primary="false">Microsoft</owner>
//------------------------------------------------------------------------------

namespace System.Data {
    using System;
    using System.Xml;
    using System.Xml.Schema;
    using System.Diagnostics;
    using System.ComponentModel;
    using System.Runtime.Serialization;
    using System.Globalization;
    using System.Collections;
    using System.Data.Common;

    /// <devdoc>
    /// </devdoc>
    [Serializable]
    internal  sealed class SimpleType : ISerializable {
        string baseType = null;                 // base type name
        SimpleType baseSimpleType = null;
//        object  xmlBaseType = null;           // Qualified name of Basetype
        XmlQualifiedName xmlBaseType = null;    // Qualified name of Basetype
        string name = "";
        int length = -1;
        int minLength = -1;
        int maxLength = -1;
        string pattern = "";
        string ns = "";                  // my ns
        
        // 
        string maxExclusive = "";
        string maxInclusive = "";
        string minExclusive = "";
        string minInclusive = "";
        //REMOVED: encoding due to Microsoft 2001 XDS changes

        // 
        internal string enumeration = "";

        internal SimpleType (string baseType) { // anonymous simpletype
            this.baseType = baseType;
        }

        internal  SimpleType (XmlSchemaSimpleType node) { // named simpletype
            name = node.Name;
            ns = (node.QualifiedName != null) ? node.QualifiedName.Namespace : "";
            LoadTypeValues(node);
        }

        private SimpleType(SerializationInfo info, StreamingContext context) {
            this.baseType = info.GetString("SimpleType.BaseType");
            this.baseSimpleType = (SimpleType)info.GetValue("SimpleType.BaseSimpleType", typeof(SimpleType));

            if (info.GetBoolean("SimpleType.XmlBaseType.XmlQualifiedNameExists")) {
                string xmlQNName = info.GetString("SimpleType.XmlBaseType.Name");
                string xmlQNNamespace = info.GetString("SimpleType.XmlBaseType.Namespace");
                this.xmlBaseType = new XmlQualifiedName(xmlQNName, xmlQNNamespace);            
            }
            else {
                this.xmlBaseType = null;
            }
            this.name = info.GetString("SimpleType.Name");
            this.ns = info.GetString("SimpleType.NS");
            this.maxLength = info.GetInt32("SimpleType.MaxLength");
            this.length = info.GetInt32("SimpleType.Length");
        }

        void ISerializable.GetObjectData(SerializationInfo info, StreamingContext context) {
            info.AddValue("SimpleType.BaseType", this.baseType);
            info.AddValue("SimpleType.BaseSimpleType", this.baseSimpleType);
            XmlQualifiedName xmlQN = (xmlBaseType as XmlQualifiedName);
            info.AddValue("SimpleType.XmlBaseType.XmlQualifiedNameExists", xmlQN != null ? true : false);
            info.AddValue("SimpleType.XmlBaseType.Name", xmlQN != null ? xmlQN.Name : null);
            info.AddValue("SimpleType.XmlBaseType.Namespace", xmlQN != null ? xmlQN.Namespace : null);
            info.AddValue("SimpleType.Name", this.name);
            info.AddValue("SimpleType.NS", this.ns);
            info.AddValue("SimpleType.MaxLength", this.maxLength);
            info.AddValue("SimpleType.Length", this.length);
        }        

        internal void LoadTypeValues (XmlSchemaSimpleType node) {
            if ((node.Content is XmlSchemaSimpleTypeList) || 
                (node.Content is XmlSchemaSimpleTypeUnion))
                throw ExceptionBuilder.SimpleTypeNotSupported();

            if (node.Content is XmlSchemaSimpleTypeRestriction) {
                XmlSchemaSimpleTypeRestriction content = (XmlSchemaSimpleTypeRestriction) node.Content;

                XmlSchemaSimpleType ancestor = node.BaseXmlSchemaType as XmlSchemaSimpleType;
                if ((ancestor != null) && (ancestor.QualifiedName.Namespace != Keywords.XSDNS)) { // I'm assuming that built-in types don't have a name!
//                    Console.WriteLine("In simpleNode, ancestor.Name = '{0}'", ancestor.Name);
                    baseSimpleType = new SimpleType(node.BaseXmlSchemaType as XmlSchemaSimpleType);
//                    baseSimpleType = new SimpleType(node);
                } 

// do we need to put qualified name?                
// for user defined simpletype, always go with qname
                if (content.BaseTypeName.Namespace == Keywords.XSDNS)
                    baseType = content.BaseTypeName.Name;
                else
                    baseType = content.BaseTypeName.ToString();


                if (baseSimpleType != null && baseSimpleType.Name != null && baseSimpleType.Name.Length > 0) {
                    xmlBaseType = baseSimpleType.XmlBaseType;//  SimpleTypeQualifiedName;
                }
                else {
                    xmlBaseType = content.BaseTypeName;
                }

                if (baseType == null || baseType.Length == 0) {
//                    Console.WriteLine("baseType == null, setting it to ", content.BaseType.Name);
                    baseType = content.BaseType.Name;
                    xmlBaseType = null;
                }

                if (baseType == "NOTATION")
                    baseType = "string";
               

                foreach(XmlSchemaFacet facet in content.Facets) {

                    if (facet is XmlSchemaLengthFacet)
                        length = Convert.ToInt32(facet.Value, null);
                        
                    if (facet is XmlSchemaMinLengthFacet)
                        minLength = Convert.ToInt32(facet.Value, null);
                        
                    if (facet is XmlSchemaMaxLengthFacet)
                        maxLength = Convert.ToInt32(facet.Value, null);
                        
                    if (facet is XmlSchemaPatternFacet)
                        pattern = facet.Value;
                        
                    if (facet is XmlSchemaEnumerationFacet)
                        enumeration = !Common.ADP.IsEmpty(enumeration) ? enumeration + " " + facet.Value : facet.Value;
                        
                    if (facet is XmlSchemaMinExclusiveFacet)
                        minExclusive = facet.Value;
                        
                    if (facet is XmlSchemaMinInclusiveFacet)
                        minInclusive = facet.Value;
                       
                    if (facet is XmlSchemaMaxExclusiveFacet)
                        maxExclusive = facet.Value;
                        
                    if (facet is XmlSchemaMaxInclusiveFacet)
                        maxInclusive = facet.Value;

                    }
                }

                string tempStr = XSDSchema.GetMsdataAttribute(node, Keywords.TARGETNAMESPACE);
                if (tempStr != null)
                    ns = tempStr;
            }

        internal bool IsPlainString() {
            return (
                XSDSchema.QualifiedName(this.baseType)    == XSDSchema.QualifiedName("string")     &&
                Common.ADP.IsEmpty(this.name)         &&
                this.length       == -1               &&
                this.minLength    == -1               &&
                this.maxLength    == -1               &&
                Common.ADP.IsEmpty(this.pattern)      &&
                Common.ADP.IsEmpty(this.maxExclusive) &&
                Common.ADP.IsEmpty(this.maxInclusive) &&
                Common.ADP.IsEmpty(this.minExclusive) &&
                Common.ADP.IsEmpty(this.minInclusive) &&
                Common.ADP.IsEmpty(this.enumeration)
            );
        }

        internal string BaseType {
            get {
                return baseType;
            }
        }

        internal XmlQualifiedName XmlBaseType {
            get {
                return (XmlQualifiedName)xmlBaseType;
            }
        }

        internal string Name {
            get {
                    return name;
            }
        }

        internal string Namespace {
            get {
                return ns;
            }
        }

        internal int Length {
            get {
                return length;
            }
        }

        internal int MaxLength {
            get {
                return maxLength;
            }
            set {
                maxLength = value;
            }
        }

        internal SimpleType BaseSimpleType {
            get {
                return baseSimpleType;
            }
        }
// return  qualified name of this simple type
        public string SimpleTypeQualifiedName {
          get {
            if (ns.Length == 0)
                return name;
            return (ns + ":" + name);
          }
        }

        internal string QualifiedName(string name) {
            int iStart = name.IndexOf(':');
            if (iStart == -1)
                return Keywords.XSD_PREFIXCOLON + name;
            else
                return name;
        }

/*
        internal XmlNode ToNode(XmlDocument dc) {
            return ToNode(dc, null, false);
        }
*/
        
        internal XmlNode ToNode(XmlDocument dc, Hashtable prefixes, bool inRemoting) {
            XmlElement typeNode = dc.CreateElement(Keywords.XSD_PREFIX, Keywords.XSD_SIMPLETYPE, Keywords.XSDNS);

            if (name != null && name.Length != 0) {
                // this is a global type : 
                typeNode.SetAttribute(Keywords.NAME, name);
                if (inRemoting) {
                    typeNode.SetAttribute(Keywords.TARGETNAMESPACE, Keywords.MSDNS, this.Namespace);
                }
            }
            XmlElement type = dc.CreateElement(Keywords.XSD_PREFIX, Keywords.XSD_RESTRICTION, Keywords.XSDNS);

            if (!inRemoting) {
                if (baseSimpleType != null) {
                    if (baseSimpleType.Namespace != null && baseSimpleType.Namespace.Length > 0) {
                        string prefix = (prefixes!=null)?(string) prefixes[baseSimpleType.Namespace]:null;
                        if (prefix != null) {
                            type.SetAttribute(Keywords.BASE, (prefix +":"+ baseSimpleType.Name));
                        }
                        else {
                            type.SetAttribute(Keywords.BASE, baseSimpleType.Name);
                        }
                    }
                    else { // Microsoft
                        type.SetAttribute(Keywords.BASE, baseSimpleType.Name);
                    }
                }
                else {
                    type.SetAttribute(Keywords.BASE, QualifiedName(baseType)); // has to be xs:SomePrimitiveType
                }
            }
            else{
                type.SetAttribute(Keywords.BASE, (baseSimpleType != null) ? baseSimpleType.Name : QualifiedName(baseType));
            }

            XmlElement constraint;
            if (length >= 0) {
                constraint = dc.CreateElement(Keywords.XSD_PREFIX, Keywords.XSD_LENGTH, Keywords.XSDNS);
                constraint.SetAttribute(Keywords.VALUE, length.ToString(CultureInfo.InvariantCulture));
                type.AppendChild(constraint);
            }
            if (maxLength >= 0) {
                constraint = dc.CreateElement(Keywords.XSD_PREFIX, Keywords.XSD_MAXLENGTH, Keywords.XSDNS);
                constraint.SetAttribute(Keywords.VALUE, maxLength.ToString(CultureInfo.InvariantCulture));
                type.AppendChild(constraint);
            }
/*        // removed due to MDAC 








































*/
            typeNode.AppendChild(type);
            return typeNode;
        }


        // 
        internal static SimpleType CreateEnumeratedType(string values) {
            SimpleType enumType = new SimpleType("string");
            enumType.enumeration = values;
            return enumType;
        }

        internal static SimpleType CreateByteArrayType(string encoding) {
            SimpleType byteArrayType = new SimpleType("base64Binary");
            return byteArrayType;
        }
        
        internal static SimpleType CreateLimitedStringType(int length) {
            SimpleType limitedString = new SimpleType("string");
            limitedString.maxLength = length;
            return limitedString;
        }

        internal static SimpleType CreateSimpleType(StorageType typeCode, Type type) {
            if ((typeCode == StorageType.Char) && (type == typeof(Char))) {
                return new SimpleType("string") { length = 1 };
            }
            return null;
        }

// Assumption is otherSimpleType and current ST name and NS matches.
// if existing simpletype is being redefined with different facets, then it will return no-empty string defining the error
        internal string HasConflictingDefinition(SimpleType otherSimpleType) {
            if (otherSimpleType == null)
                return "otherSimpleType";
            if (this.MaxLength != otherSimpleType.MaxLength)
                return ("MaxLength");

            if (string.Compare(this.BaseType, otherSimpleType.BaseType, StringComparison.Ordinal) != 0)
                return ("BaseType");
            if ((this.BaseSimpleType == null && otherSimpleType.BaseSimpleType != null) &&
                (this.BaseSimpleType.HasConflictingDefinition(otherSimpleType.BaseSimpleType)).Length != 0)
                return ("BaseSimpleType");
             return string.Empty;
                
        }
// only string types can have MaxLength
        internal bool CanHaveMaxLength() {
            SimpleType rootType = this;
            while (rootType.BaseSimpleType != null) {
                rootType = rootType.BaseSimpleType;
            }
            if (string.Compare(rootType.BaseType, "string", StringComparison.OrdinalIgnoreCase) == 0)
                return true;
            return false;
        }
       internal void ConvertToAnnonymousSimpleType() {
           this.name = null;
           this.ns = string.Empty;
           SimpleType tmpSimpleType = this;

           while (tmpSimpleType.baseSimpleType !=  null) {
               tmpSimpleType = tmpSimpleType.baseSimpleType;
           }
           baseType = tmpSimpleType.baseType;
           baseSimpleType = tmpSimpleType.baseSimpleType;
           xmlBaseType = tmpSimpleType.xmlBaseType;          
       }
    }
}