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

SqlXmlStorage.cs « SQLTypes « Common « Data « System « System.Data « referencesource « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8f3a03926eea6f90f46973fc12f67c82987aa5f7 (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
//------------------------------------------------------------------------------
// <copyright file="SqlXmlStorage.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.Common {
    using System;
    using System.Xml;
    using System.IO;
    using System.Xml.Serialization;
    using System.Data.SqlTypes;
    using System.Diagnostics;
    using System.Text;
    using System.Collections;
    internal sealed class SqlXmlStorage : DataStorage {

        private SqlXml[] values;

        public SqlXmlStorage(DataColumn column)
        : base(column, typeof(SqlXml), SqlXml.Null, SqlXml.Null, StorageType.Empty) {
        }

        override public Object Aggregate(int[] records, AggregateType kind) {
            try {
                switch (kind) {
                    case AggregateType.First:
                        if (records.Length > 0) {
                            return values[records[0]];
                        }
                        return null;// no data => null

                    case AggregateType.Count:
                        int count = 0;
                        for (int i = 0; i < records.Length; i++) {
                            if (!IsNull(records[i]))
                                count++;
                        }
                        return count;
                }
            }
            catch (OverflowException) {
                throw ExprException.Overflow(typeof(SqlXml));
            }
            throw ExceptionBuilder.AggregateException(kind, DataType);
        }

        override public int Compare(int recordNo1, int recordNo2) {
            //return values[recordNo1].CompareTo(values[recordNo2]);
            return 0;
        }

        override public int CompareValueTo(int recordNo, Object value) {
            // SqlXml valueNo2 = ((value == null)||(value == DBNull.Value))? SqlXml.Null : (SqlXml)value;
            // return values[recordNo].CompareTo(valueNo2);
            return 0;
        }

        override public void Copy(int recordNo1, int recordNo2) {
            values[recordNo2] = values[recordNo1];
        }

        override public Object Get(int record) {
            return values[record];
        }

        override public bool IsNull(int record) {
            return (values[record].IsNull);
        }

        override public void Set(int record, Object value) {
            if ((value ==  DBNull.Value) || (value == null)){
                values[record] = SqlXml.Null;
            }
            else {
                values[record] = (SqlXml)value;            
            }
        }

        override public void SetCapacity(int capacity) {
            SqlXml[] newValues = new SqlXml[capacity];
            if (null != values) {
                Array.Copy(values, 0, newValues, 0, Math.Min(capacity, values.Length));
            }
            values = newValues;
        }

        override public object ConvertXmlToObject(string s) {
            XmlTextReader reader =  new XmlTextReader(s, XmlNodeType.Element, null) ;
            return (new SqlXml(reader));
            

/*            SqlXml newValue = new SqlXml();
            
            StringReader strReader = new  StringReader(s);
            XmlTextReader xmlTextReader = new XmlTextReader(strReader);
            ((IXmlSerializable)newValue).ReadXml(xmlTextReader);
            xmlTextReader.Close();
            return newValue;
*/
        }

        override public string ConvertObjectToXml(object value) {
            SqlXml reader = (SqlXml) value;
            if (reader.IsNull)
                return ADP.StrEmpty;
            else
                return reader.Value;        // SqlXml.Value returns string

        }
        
        override protected object GetEmptyStorage(int recordCount) {
            return new SqlXml[recordCount];
        }
        
        override protected void CopyValue(int record, object store, BitArray nullbits, int storeIndex) {
            SqlXml[] typedStore = (SqlXml[]) store; 
            typedStore[storeIndex] = values[record];
            nullbits.Set(storeIndex, IsNull(record));
        }
        
        override protected void SetStorage(object store, BitArray nullbits) {
            values = (SqlXml[]) store; 
            //SetNullStorage(nullbits);
        }         
    }
}