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
|
/*
* 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.Collections;
using System.Globalization;
using System.IO;
using System.Net;
using System.Runtime.InteropServices;
using System.Text;
using FirebirdSql.Data.Common;
namespace FirebirdSql.Data.Embedded
{
internal sealed class FesArray : ArrayBase
{
#region Fields
private long handle;
private FesDatabase db;
private FesTransaction transaction;
#endregion
#region Properties
public override long Handle
{
get { return this.handle; }
set { this.handle = value; }
}
public override IDatabase DB
{
get { return this.db; }
set { this.db = (FesDatabase)value; }
}
public override ITransaction Transaction
{
get { return this.transaction; }
set { this.transaction = (FesTransaction)value; }
}
#endregion
#region Constructors
public FesArray(ArrayDesc descriptor) : base(descriptor)
{
}
public FesArray(
IDatabase db,
ITransaction transaction,
string tableName,
string fieldName) : this(db, transaction, -1, tableName, fieldName)
{
}
public FesArray(
IDatabase db,
ITransaction transaction,
long handle,
string tableName,
string fieldName) : base(tableName, fieldName)
{
if (!(db is FesDatabase))
{
throw new ArgumentException("Specified argument is not of GdsDatabase type.");
}
if (!(transaction is FesTransaction))
{
throw new ArgumentException("Specified argument is not of GdsTransaction type.");
}
this.db = (FesDatabase)db;
this.transaction = (FesTransaction)transaction;
this.handle = handle;
this.LookupBounds();
}
#endregion
#region Methods
public override byte[] GetSlice(int sliceLength)
{
int[] statusVector = FesConnection.GetNewStatusVector();
int dbHandle = this.db.Handle;
int trHandle = this.transaction.Handle;
ArrayDescMarshaler marshaler = ArrayDescMarshaler.GetInstance();
IntPtr arrayDesc = marshaler.MarshalManagedToNative(this.Descriptor);
byte[] buffer = new byte[sliceLength];
FbClient.isc_array_get_slice(
statusVector,
ref dbHandle,
ref trHandle,
ref this.handle,
arrayDesc,
buffer,
ref sliceLength);
// Free memory
marshaler.CleanUpNativeData(ref arrayDesc);
FesConnection.ParseStatusVector(statusVector);
return buffer;
}
public override void PutSlice(System.Array sourceArray, int sliceLength)
{
int[] statusVector = FesConnection.GetNewStatusVector();
int dbHandle = this.db.Handle;
int trHandle = this.transaction.Handle;
ArrayDescMarshaler marshaler = ArrayDescMarshaler.GetInstance();
IntPtr arrayDesc = marshaler.MarshalManagedToNative(this.Descriptor);
// Obtain the System of type of Array elements and
// Fill buffer
Type systemType = this.GetSystemType();
byte[] buffer = new byte[sliceLength];
if (systemType.IsPrimitive)
{
Buffer.BlockCopy(sourceArray, 0, buffer, 0, buffer.Length);
}
else
{
buffer = this.EncodeSlice(this.Descriptor, sourceArray, sliceLength);
}
FbClient.isc_array_put_slice(
statusVector,
ref dbHandle,
ref trHandle,
ref this.handle,
arrayDesc,
buffer,
ref sliceLength);
// Free memory
marshaler.CleanUpNativeData(ref arrayDesc);
FesConnection.ParseStatusVector(statusVector);
}
#endregion
#region Protected Methods
protected override System.Array DecodeSlice(byte[] slice)
{
Array sliceData = null;
int slicePosition = 0;
int type = 0;
DbDataType dbType = DbDataType.Array;
Type systemType = this.GetSystemType();
Charset charset = this.db.Charset;
int[] lengths = new int[this.Descriptor.Dimensions];
int[] lowerBounds = new int[this.Descriptor.Dimensions];
// Get upper and lower bounds of each dimension
for (int i = 0; i < this.Descriptor.Dimensions; i++)
{
lowerBounds[i] = this.Descriptor.Bounds[i].LowerBound;
lengths[i] = this.Descriptor.Bounds[i].UpperBound;
if (lowerBounds[i] == 0)
{
lengths[i]++;
}
}
// Create slice arrays
sliceData = Array.CreateInstance(systemType, lengths, lowerBounds);
Array tempData = Array.CreateInstance(systemType, sliceData.Length);
// Infer data types
type = TypeHelper.GetFbType(this.Descriptor.DataType);
dbType = TypeHelper.GetDbDataType(this.Descriptor.DataType, 0, this.Descriptor.Scale);
int itemLength = this.Descriptor.Length;
for (int i = 0; i < tempData.Length; i++)
{
if (slicePosition >= slice.Length)
{
break;
}
switch(dbType)
{
case DbDataType.Char:
tempData.SetValue(charset.GetString(slice, slicePosition, itemLength), i);
break;
case DbDataType.VarChar:
{
int index = slicePosition;
int count = 0;
while (slice[index++] != 0)
{
count ++;
}
tempData.SetValue(charset.GetString(slice, slicePosition, count), i);
slicePosition += 2;
}
break;
case DbDataType.SmallInt:
tempData.SetValue(BitConverter.ToInt16(slice, slicePosition), i);
break;
case DbDataType.Integer:
tempData.SetValue(BitConverter.ToInt32(slice, slicePosition), i);
break;
case DbDataType.BigInt:
tempData.SetValue(BitConverter.ToInt64(slice, slicePosition), i);
break;
case DbDataType.Decimal:
case DbDataType.Numeric:
{
object evalue = null;
switch (type)
{
case IscCodes.SQL_SHORT:
evalue = BitConverter.ToInt16(slice, slicePosition);
break;
case IscCodes.SQL_LONG:
evalue = BitConverter.ToInt32(slice, slicePosition);
break;
case IscCodes.SQL_QUAD:
case IscCodes.SQL_INT64:
evalue = BitConverter.ToInt64(slice, slicePosition);
break;
}
decimal dvalue = TypeDecoder.DecodeDecimal(evalue, this.Descriptor.Scale, type);
tempData.SetValue(dvalue, i);
}
break;
case DbDataType.Double:
tempData.SetValue(BitConverter.ToDouble(slice, slicePosition), i);
break;
case DbDataType.Float:
tempData.SetValue(BitConverter.ToSingle(slice, slicePosition), i);
break;
case DbDataType.Date:
{
int idate = BitConverter.ToInt32(slice, slicePosition);
DateTime date = TypeDecoder.DecodeDate(idate);
tempData.SetValue(date, i);
}
break;
case DbDataType.Time:
{
int itime = BitConverter.ToInt32(slice, slicePosition);
DateTime time = TypeDecoder.DecodeTime(itime);
tempData.SetValue(time, i);
}
break;
case DbDataType.TimeStamp:
{
int idate = BitConverter.ToInt32(slice, slicePosition);
int itime = BitConverter.ToInt32(slice, slicePosition + 4);
DateTime date = TypeDecoder.DecodeDate(idate);
DateTime time = TypeDecoder.DecodeTime(itime);
DateTime timestamp = new System.DateTime(
date.Year, date.Month, date.Day,
time.Hour,time.Minute, time.Second, time.Millisecond);
tempData.SetValue(timestamp, i);
}
break;
}
slicePosition += itemLength;
}
if (systemType.IsPrimitive)
{
// For primitive types we can use System.Buffer to copy generated data to destination array
Buffer.BlockCopy(tempData, 0, sliceData, 0, Buffer.ByteLength(tempData));
}
else
{
sliceData = tempData;
}
return sliceData;
}
#endregion
#region Private Metods
private byte[] EncodeSlice(ArrayDesc desc, Array sourceArray, int length)
{
BinaryWriter writer = new BinaryWriter(new MemoryStream());
IEnumerator i = sourceArray.GetEnumerator();
Charset charset = this.db.Charset;
DbDataType dbType = DbDataType.Array;
int type = 0;
int subtype = (this.Descriptor.Scale < 0) ? 2 : 0;
// Infer data types
type = TypeHelper.GetFbType(this.Descriptor.DataType);
dbType = TypeHelper.GetDbDataType(this.Descriptor.DataType, subtype, this.Descriptor.Scale);
while (i.MoveNext())
{
switch (dbType)
{
case DbDataType.Char:
{
string value = i.Current != null ? (string)i.Current : String.Empty;
byte[] buffer = charset.GetBytes(value);
writer.Write(buffer);
if (desc.Length > buffer.Length)
{
for (int j = buffer.Length; j < desc.Length; j++)
{
writer.Write((byte)32);
}
}
}
break;
case DbDataType.VarChar:
{
string value = i.Current != null ? (string)i.Current : String.Empty;
value = value.TrimEnd();
byte[] buffer = charset.GetBytes(value);
writer.Write(buffer);
if (desc.Length > buffer.Length)
{
for (int j = buffer.Length; j < desc.Length; j++)
{
writer.Write((byte)0);
}
}
writer.Write((short)0);
}
break;
case DbDataType.SmallInt:
writer.Write((short)i.Current);
break;
case DbDataType.Integer:
writer.Write((int)i.Current);
break;
case DbDataType.BigInt:
writer.Write((long)i.Current);
break;
case DbDataType.Float:
writer.Write((float)i.Current);
break;
case DbDataType.Double:
writer.Write((double)i.Current);
break;
case DbDataType.Numeric:
case DbDataType.Decimal:
{
object numeric = TypeEncoder.EncodeDecimal((decimal)i.Current, desc.Scale, type);
switch (type)
{
case IscCodes.SQL_SHORT:
writer.Write((short)numeric);
break;
case IscCodes.SQL_LONG:
writer.Write((int)numeric);
break;
case IscCodes.SQL_QUAD:
case IscCodes.SQL_INT64:
writer.Write((long)numeric);
break;
}
}
break;
case DbDataType.Date:
writer.Write(TypeEncoder.EncodeDate(Convert.ToDateTime(i.Current, CultureInfo.CurrentCulture.DateTimeFormat)));
break;
case DbDataType.Time:
writer.Write(TypeEncoder.EncodeTime(Convert.ToDateTime(i.Current, CultureInfo.CurrentCulture.DateTimeFormat)));
break;
case DbDataType.TimeStamp:
writer.Write(TypeEncoder.EncodeDate(Convert.ToDateTime(i.Current, CultureInfo.CurrentCulture.DateTimeFormat)));
writer.Write(TypeEncoder.EncodeTime(Convert.ToDateTime(i.Current, CultureInfo.CurrentCulture.DateTimeFormat)));
break;
default:
throw new NotSupportedException("Unknown data type");
}
}
return ((MemoryStream)writer.BaseStream).ToArray();
}
#endregion
}
}
|