File: DbField.cs

package info (click to toggle)
mono 2.6.7-5.1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 327,344 kB
  • ctags: 413,649
  • sloc: cs: 2,471,883; xml: 1,768,594; ansic: 350,665; sh: 13,644; makefile: 8,640; perl: 1,784; asm: 717; cpp: 209; python: 146; sql: 81; sed: 16
file content (655 lines) | stat: -rw-r--r-- 12,737 bytes parent folder | download | duplicates (5)
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
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
/*
 *  Firebird ADO.NET Data provider for .NET and Mono 
 * 
 *     The contents of this file are subject to the Initial 
 *     Developer's Public License Version 1.0 (the "License"); 
 *     you may not use this file except in compliance with the 
 *     License. You may obtain a copy of the License at 
 *     http://www.firebirdsql.org/index.php?op=doc&id=idpl
 *
 *     Software distributed under the License is distributed on 
 *     an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either 
 *     express or implied.  See the License for the specific 
 *     language governing rights and limitations under the License.
 * 
 *  Copyright (c) 2002, 2005 Carlos Guzman Alvarez
 *  All Rights Reserved.
 */

using System;
using System.Text;

namespace FirebirdSql.Data.Common
{
	internal sealed class DbField
	{
		#region Fields

		private short		dataType;
		private short		numericScale;
		private short		subType;
		private short		length;
		private short		nullFlag;
		private string		name;
		private string		relation;
		private string		owner;
		private string		alias;
		private int			charCount;
		private DbValue		dbValue;
		private Charset		charset;
		private ArrayBase	arrayHandle;

		#endregion

		#region Properties

		public DbDataType DbDataType
		{
			get { return this.GetDbDataType(); }
		}

		public int SqlType
		{
			get { return this.dataType & ~1; }
		}

		public short DataType
		{
			get { return this.dataType; }
			set { this.dataType = value; }
		}

		public short NumericScale
		{
			get { return this.numericScale; }
			set { this.numericScale = value; }
		}

		public short SubType
		{
			get { return this.subType; }
			set
			{
				this.subType = value;
				if (this.IsCharacter())
				{
					// Bits 0-7 of sqlsubtype is charset_id (127 is a special value -
					// current attachment charset).
					// Bits 8-17 hold collation_id for this value.
					byte[] cs = BitConverter.GetBytes(value);

					int index = Charset.SupportedCharsets.IndexOf(cs[0]);
					if (index != -1)
					{
						this.charset = Charset.SupportedCharsets[index];
					}
					else
					{
						this.charset = Charset.SupportedCharsets[0];
					}
				}
			}
		}

		public short Length
		{
			get { return this.length; }
			set
			{
				this.length = value;
				if (this.IsCharacter())
				{
					this.charCount = this.length / this.charset.BytesPerCharacter;
				}
			}
		}

		public short NullFlag
		{
			get { return this.nullFlag; }
			set { this.nullFlag = value; }
		}

		public string Name
		{
			get { return this.name; }
			set { this.name = value.Trim(); }
		}

		public string Relation
		{
			get { return this.relation; }
			set { this.relation = value.Trim(); }
		}

		public string Owner
		{
			get { return this.owner; }
			set { this.owner = value.Trim(); }
		}

		public string Alias
		{
			get { return this.alias; }
			set { this.alias = value.Trim(); }
		}

		public Charset Charset
		{
			get { return this.charset; }
		}

		public int CharCount
		{
			get { return this.charCount; }
		}

		public ArrayBase ArrayHandle
		{
			get
			{
				if (this.IsArray())
				{
					return this.arrayHandle;
				}
				else
				{
					throw new IscException("Field is not an array type");
				}
			}

			set
			{
				if (this.IsArray())
				{
					this.arrayHandle = value;
				}
				else
				{
					throw new IscException("Field is not an array type");
				}
			}
		}

		public DbValue DbValue
		{
			get { return this.dbValue; }
		}

		public object Value
		{
			get { return this.dbValue.Value; }
			set { this.dbValue.Value = value; }
		}

		#endregion

		#region Constructors

		public DbField()
		{
			this.charCount	= -1;
			this.name		= String.Empty;
			this.relation	= String.Empty;
			this.owner		= String.Empty;
			this.alias		= String.Empty;
			this.dbValue	= new DbValue(this, DBNull.Value);
		}

		#endregion

		#region Methods

		public bool IsNumeric()
		{
			if (this.dataType == 0)
			{
				return false;
			}

			switch (this.DbDataType)
			{
				case DbDataType.SmallInt:
				case DbDataType.Integer:
				case DbDataType.BigInt:
				case DbDataType.Numeric:
				case DbDataType.Decimal:
				case DbDataType.Float:
				case DbDataType.Double:
					return true;

				default:
					return false;
			}
		}

		public bool IsDecimal()
		{
			if (this.dataType == 0)
			{
				return false;
			}

			switch (this.DbDataType)
			{
				case DbDataType.Numeric:
				case DbDataType.Decimal:
					return true;

				default:
					return false;
			}
		}

		public bool IsLong()
		{
			if (this.dataType == 0)
			{
				return false;
			}

			switch (this.DbDataType)
			{
				case DbDataType.Binary:
				case DbDataType.Text:
					return true;

				default:
					return false;
			}
		}

		public bool IsCharacter()
		{
			if (this.dataType == 0)
			{
				return false;
			}

			switch (this.DbDataType)
			{
				case DbDataType.Char:
				case DbDataType.VarChar:
				case DbDataType.Text:
					return true;

				default:
					return false;
			}
		}

		public bool IsArray()
		{
			if (this.dataType == 0)
			{
				return false;
			}

			switch (this.DbDataType)
			{
				case DbDataType.Array:
					return true;

				default:
					return false;
			}
		}

		public bool IsAliased()
		{
			return (this.Name != this.Alias) ? true : false;
		}

		public bool IsExpression()
		{
			return this.Name.Length == 0 ? true : false;
		}

		public int GetSize()
		{
			if (this.IsLong())
			{
				return System.Int32.MaxValue;
			}
			else
			{
				if (this.IsCharacter())
				{
					return this.CharCount;
				}
				else
				{
					return this.Length;
				}
			}
		}

		public bool AllowDBNull()
		{
			return ((this.DataType & 1) == 1);
		}

		public void SetValue(byte[] buffer)
		{
			if (buffer == null || this.NullFlag == -1)
			{
				this.Value = System.DBNull.Value;
			}
			else
			{
				switch (this.SqlType)
				{
					case IscCodes.SQL_TEXT:
					case IscCodes.SQL_VARYING:
						if (this.DbDataType == DbDataType.Guid)
						{
							this.Value = new Guid(buffer);
						}
						else
						{
							string s = this.Charset.GetString(buffer, 0, buffer.Length);

							if ((this.Length % this.Charset.BytesPerCharacter) == 0 &&
								s.Length > this.CharCount)
							{
								s = s.Substring(0, this.CharCount);
							}

							this.Value = s;
						}
						break;

					case IscCodes.SQL_SHORT:
						if (this.numericScale < 0)
						{
							this.Value = TypeDecoder.DecodeDecimal(
								BitConverter.ToInt16(buffer, 0),
								this.numericScale,
								this.dataType);
						}
						else
						{
							this.Value = BitConverter.ToInt16(buffer, 0);
						}
						break;

					case IscCodes.SQL_LONG:
						if (this.NumericScale < 0)
						{
							this.Value = TypeDecoder.DecodeDecimal(
								BitConverter.ToInt32(buffer, 0),
								this.numericScale,
								this.dataType);
						}
						else
						{
							this.Value = BitConverter.ToInt32(buffer, 0);
						}
						break;

					case IscCodes.SQL_FLOAT:
						this.Value = BitConverter.ToSingle(buffer, 0);
						break;

					case IscCodes.SQL_DOUBLE:
					case IscCodes.SQL_D_FLOAT:
						this.Value = BitConverter.ToDouble(buffer, 0);
						break;

					case IscCodes.SQL_QUAD:
					case IscCodes.SQL_INT64:
					case IscCodes.SQL_BLOB:
					case IscCodes.SQL_ARRAY:
						if (this.NumericScale < 0)
						{
							this.Value = TypeDecoder.DecodeDecimal(
								BitConverter.ToInt64(buffer, 0),
								this.numericScale,
								this.dataType);
						}
						else
						{
							this.Value = BitConverter.ToInt64(buffer, 0);
						}
						break;

					case IscCodes.SQL_TIMESTAMP:
						DateTime date = TypeDecoder.DecodeDate(
							BitConverter.ToInt32(buffer, 0));

						DateTime time = TypeDecoder.DecodeTime(
							BitConverter.ToInt32(buffer, 4));

						this.Value = new System.DateTime(
							date.Year, date.Month, date.Day,
							time.Hour, time.Minute, time.Second, time.Millisecond);
						break;

					case IscCodes.SQL_TYPE_TIME:
						this.Value = TypeDecoder.DecodeTime(BitConverter.ToInt32(buffer, 0));
						break;

					case IscCodes.SQL_TYPE_DATE:
						this.Value = TypeDecoder.DecodeDate(BitConverter.ToInt32(buffer, 0));
						break;

					default:
						throw new NotSupportedException("Unknown data type");
				}
			}
		}

		public void FixNull()
		{
			if (this.NullFlag == -1 && this.dbValue.IsDBNull())
			{
				switch (this.DbDataType)
				{
					case DbDataType.Char:
					case DbDataType.VarChar:
						this.Value = String.Empty;
						break;

					case DbDataType.Guid:
						this.Value = Guid.Empty;
						break;

					case DbDataType.SmallInt:
						this.Value = (short)0;
						break;

					case DbDataType.Integer:
						this.Value = (int)0;
						break;

					case DbDataType.BigInt:
					case DbDataType.Binary:
					case DbDataType.Array:
					case DbDataType.Text:
						this.Value = (long)0;
						break;

					case DbDataType.Numeric:
					case DbDataType.Decimal:
						this.Value = (decimal)0;
						break;

					case DbDataType.Float:
						this.Value = (float)0;
						break;

					case DbDataType.Double:
						this.Value = (double)0;
						break;

					case DbDataType.Date:
					case DbDataType.Time:
					case DbDataType.TimeStamp:
						this.Value = new System.DateTime(0 * 10000L + 621355968000000000);
						break;

					default:
						throw new IscException("Unknown sql data type: " + this.DataType);
				}
			}
		}

		public Type GetSystemType()
		{
			switch (this.DbDataType)
			{
				case DbDataType.Char:
				case DbDataType.VarChar:
				case DbDataType.Text:
					return Type.GetType("System.String");

				case DbDataType.SmallInt:
					return Type.GetType("System.Int16");

				case DbDataType.Integer:
					return Type.GetType("System.Int32");

				case DbDataType.BigInt:
					return Type.GetType("System.Int64");

				case DbDataType.Numeric:
				case DbDataType.Decimal:
					return Type.GetType("System.Decimal");

				case DbDataType.Float:
					return Type.GetType("System.Single");

				case DbDataType.Guid:
					return Type.GetType("System.Guid");

				case DbDataType.Double:
					return Type.GetType("System.Double");

				case DbDataType.Date:
				case DbDataType.Time:
				case DbDataType.TimeStamp:
					return Type.GetType("System.DateTime");

				case DbDataType.Binary:
					return typeof(byte[]);

				case DbDataType.Array:
					return Type.GetType("System.Array");

				default:
					throw new SystemException("Invalid data type");
			}
		}

		#endregion

		#region Private Methods

		private DbDataType GetDbDataType()
		{
			// Special case for Guid handling
			if (this.SqlType == IscCodes.SQL_TEXT && this.Length == 16 &&
				(this.Charset != null && this.Charset.Name == "OCTETS"))
			{
				return DbDataType.Guid;
			}

			switch (this.SqlType)
			{
				case IscCodes.SQL_TEXT:
					return DbDataType.Char;

				case IscCodes.SQL_VARYING:
					return DbDataType.VarChar;

				case IscCodes.SQL_SHORT:
					if (this.subType == 2)
					{
						return DbDataType.Decimal;
					}
                    else if (subType == 1)
                    {
                        return DbDataType.Numeric;
                    }
                    else
					{
						return DbDataType.SmallInt;
					}

				case IscCodes.SQL_LONG:
					if (this.subType == 2)
					{
						return DbDataType.Decimal;
					}
                    else if (subType == 1)
                    {
                        return DbDataType.Numeric;
                    }
                    else
					{
						return DbDataType.Integer;
					}

				case IscCodes.SQL_QUAD:
				case IscCodes.SQL_INT64:
					if (this.subType == 2)
					{
						return DbDataType.Decimal;
					}
                    else if (subType == 1)
                    {
                        return DbDataType.Numeric;
                    }
                    else
					{
						return DbDataType.BigInt;
					}

				case IscCodes.SQL_FLOAT:
					return DbDataType.Float;

				case IscCodes.SQL_DOUBLE:
				case IscCodes.SQL_D_FLOAT:
					if (this.subType == 2)
					{
						return DbDataType.Decimal;
					}
                    else if (subType == 1)
                    {
                        return DbDataType.Numeric;
                    }
                    else
					{
						return DbDataType.Double;
					}

				case IscCodes.SQL_BLOB:
					if (this.subType == 1)
					{
						return DbDataType.Text;
					}
					else
					{
						return DbDataType.Binary;
					}

				case IscCodes.SQL_TIMESTAMP:
					return DbDataType.TimeStamp;

				case IscCodes.SQL_TYPE_TIME:
					return DbDataType.Time;

				case IscCodes.SQL_TYPE_DATE:
					return DbDataType.Date;

				case IscCodes.SQL_ARRAY:
					return DbDataType.Array;

				default:
					throw new SystemException("Invalid data type");
			}
		}

		#endregion
	}
}