File: ResultSet.cs

package info (click to toggle)
mysql-connector-net 6.4.3-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 6,160 kB
  • ctags: 8,552
  • sloc: cs: 63,689; xml: 7,505; sql: 345; makefile: 50; ansic: 40
file content (364 lines) | stat: -rw-r--r-- 11,576 bytes parent folder | download | duplicates (2)
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
// Copyright (c) 2009 Sun Microsystems, Inc.
//
// MySQL Connector/NET is licensed under the terms of the GPLv2
// <http://www.gnu.org/licenses/old-licenses/gpl-2.0.html>, like most 
// MySQL Connectors. There are special exceptions to the terms and 
// conditions of the GPLv2 as it is applied to this software, see the 
// FLOSS License Exception
// <http://www.mysql.com/about/legal/licensing/foss-exception.html>.
//
// This program is free software; you can redistribute it and/or modify 
// it under the terms of the GNU General Public License as published 
// by the Free Software Foundation; version 2 of the License.
//
// This program is distributed in the hope that it will be useful, but 
// WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 
// or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 
// for more details.
//
// You should have received a copy of the GNU General Public License along 
// with this program; if not, write to the Free Software Foundation, Inc., 
// 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA

using System;
using System.Collections;
using System.Data;
using MySql.Data.MySqlClient.Properties;
using MySql.Data.Types;
using System.Diagnostics;
using System.Collections.Generic;

namespace MySql.Data.MySqlClient
{
    internal class ResultSet
    {
        private Driver driver;
        private bool hasRows;
        private bool[] uaFieldsUsed;
        private MySqlField[] fields;
        private IMySqlValue[] values;
        private Hashtable fieldHashCS;
        private Hashtable fieldHashCI;
        private int rowIndex;
        private bool readDone;
        private bool isSequential;
        private int seqIndex;
        private bool isOutputParameters;
        private int affectedRows;
        private int insertedId;
        private int statementId;
        private int totalRows;
        private int skippedRows;
        private bool cached;
        private List<IMySqlValue[]> cachedValues;

        public ResultSet(int affectedRows, int insertedId)
        {
            this.affectedRows = affectedRows;
            this.insertedId = insertedId;
            readDone = true;
        }

        public ResultSet(Driver d, int statementId, int numCols)
        {
            affectedRows = -1;
            insertedId = -1;
            driver = d;
            this.statementId = statementId;
            rowIndex = -1;
            LoadColumns(numCols);
            isOutputParameters = IsOutputParameterResultSet();
            hasRows = GetNextRow();
            readDone = !hasRows;
        }

        #region Properties

        public bool HasRows
        {
            get { return hasRows; }
        }

        public int Size
        {
            get { return fields == null ? 0 : fields.Length; }
        }

        public MySqlField[] Fields
        {
            get { return fields; }
        }

        public IMySqlValue[] Values
        {
            get { return values; }
        }

        public bool IsOutputParameters
        {
            get { return isOutputParameters; }
            set { isOutputParameters = value; }
        }

        public int AffectedRows
        {
            get { return affectedRows; }
        }

        public int InsertedId
        {
            get { return insertedId; }
        }

        public int TotalRows
        {
            get { return totalRows; }
        }

        public int SkippedRows
        {
            get { return skippedRows; }
        }

        public bool Cached
        {
            get { return cached; }
            set 
            { 
                cached = value;
                if (cached && cachedValues == null)
                    cachedValues = new List<IMySqlValue[]>();
            }
        }

        #endregion

        /// <summary>
        /// return the ordinal for the given column name
        /// </summary>
        /// <param name="name"></param>
        /// <returns></returns>
        public int GetOrdinal(string name)
        {
            // first we try a quick hash lookup
            object ordinal = fieldHashCS[name];
            if (ordinal != null)
                return (int)ordinal;

            // ok that failed so we use our CI hash
            ordinal = fieldHashCI[name];
            if (ordinal != null)
                return (int)ordinal;

            // Throw an exception if the ordinal cannot be found.
            throw new IndexOutOfRangeException(
                String.Format(Resources.CouldNotFindColumnName, name));
        }

        /// <summary>
        /// Retrieve the value as the given column index
        /// </summary>
        /// <param name="index">The column value to retrieve</param>
        /// <returns>The value as the given column</returns>
        public IMySqlValue this[int index]
        {
            get
            {
                if (rowIndex < 0)
                    throw new MySqlException(Resources.AttemptToAccessBeforeRead);

                // keep count of how many columns we have left to access
                uaFieldsUsed[index] = true;

                if (isSequential && index != seqIndex)
                {
                    if (index < seqIndex)
                        throw new MySqlException(Resources.ReadingPriorColumnUsingSeqAccess);
                    while (seqIndex < (index - 1))
                        driver.SkipColumnValue(values[++seqIndex]);
                    values[index] = driver.ReadColumnValue(index, fields[index], values[index]);
                    seqIndex = index;
                }

                return values[index];
            }
        }

        private bool GetNextRow()
        {
            bool fetched = driver.FetchDataRow(statementId, Size);
            if (fetched)
                totalRows++;
            return fetched;
        }


        public bool NextRow(CommandBehavior behavior)
        {
            if (readDone)
            {
                if (Cached) return CachedNextRow(behavior);
                return false;
            }

            if ((behavior & CommandBehavior.SingleRow) != 0 && rowIndex == 0)
                return false;

            isSequential = (behavior & CommandBehavior.SequentialAccess) != 0;
            seqIndex = -1;

            // if we are at row index >= 0 then we need to fetch the data row and load it
            if (rowIndex >= 0)
            {
                bool fetched = false;
                try
                {
                    fetched = GetNextRow();
                }
                catch (MySqlException ex)
                {
                    if (ex.IsQueryAborted)
                    {
                        // avoid hanging on Close()
                        readDone = true;
                    }
                    throw;
                }

                if (!fetched)
                {
                    readDone = true;
                    return false;
                }
            }

            if (!isSequential) ReadColumnData(false);
            rowIndex++;
            return true;
        }

        private bool CachedNextRow(CommandBehavior behavior)
        {
            if ((behavior & CommandBehavior.SingleRow) != 0 && rowIndex == 0)
                return false;
            if (rowIndex == (totalRows - 1)) return false;
            rowIndex++;
            values = cachedValues[rowIndex];
            return true;
        }

        /// <summary>
        /// Closes the current resultset, dumping any data still on the wire
        /// </summary>
        public void Close()
        {
            if (!readDone)
            {

                // if we have rows but the user didn't read the first one then mark it as skipped
                if (HasRows && rowIndex == -1)
                    skippedRows++;
                try
                {
                    while (driver.IsOpen && driver.SkipDataRow())
                    {
                        totalRows++;
                        skippedRows++;
                    }
                }
                catch (System.IO.IOException)
                {
                    // it is ok to eat IO exceptions here, we just want to 
                    // close the result set
                }
                readDone = true;
            }
            else if (driver == null)
                CacheClose();

            driver = null;
            if (Cached) CacheReset();
        }

        private void CacheClose()
        {
            skippedRows = totalRows - rowIndex - 1;
        }

        private void CacheReset()
        {
            if (!Cached) return;
            rowIndex = -1;
            affectedRows = -1;
            insertedId = -1;
            skippedRows = 0;
        }

        public bool FieldRead(int index)
        {
            Debug.Assert(Size > index);
            return uaFieldsUsed[index];
        }

        public void SetValueObject(int i, IMySqlValue valueObject)
        {
            Debug.Assert(values != null);
            Debug.Assert(i < values.Length);
            values[i] = valueObject;
        }

        private bool IsOutputParameterResultSet()
        {
            if (driver.HasStatus(ServerStatusFlags.OutputParameters)) return true;

            if (fields.Length == 0) return false;

            for (int x = 0; x < fields.Length; x++)
                if (!fields[x].ColumnName.StartsWith("@" + StoredProcedure.ParameterPrefix)) return false;
            return true;
        }

        /// <summary>
        /// Loads the column metadata for the current resultset
        /// </summary>
        private void LoadColumns(int numCols)
        {
            fields = driver.GetColumns(numCols);

            values = new IMySqlValue[numCols];
            uaFieldsUsed = new bool[numCols];
            fieldHashCS = new Hashtable();
            fieldHashCI = new Hashtable(StringComparer.InvariantCultureIgnoreCase);

            for (int i = 0; i < fields.Length; i++)
            {
                string columnName = fields[i].ColumnName;
                if (!fieldHashCS.ContainsKey(columnName))
                    fieldHashCS.Add(columnName, i);
                if (!fieldHashCI.ContainsKey(columnName))
                    fieldHashCI.Add(columnName, i);
                values[i] = fields[i].GetValueObject();
            }
        }

        private void ReadColumnData(bool outputParms)
        {
            for (int i = 0; i < Size; i++)
                values[i] = driver.ReadColumnValue(i, fields[i], values[i]);

            // if we are caching then we need to save a copy of this row of data values
            if (Cached)
                cachedValues.Add((IMySqlValue[])values.Clone());

            // we don't need to worry about caching the following since you won't have output
            // params with TableDirect commands
            if (outputParms)
            {
                bool rowExists = driver.FetchDataRow(statementId, fields.Length);
                rowIndex = 0;
                if (rowExists)
                    throw new MySqlException(Resources.MoreThanOneOPRow);
            }
        }
    }
}