|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Data.Common;
using System.Data.ProviderBase;
using System.Runtime.InteropServices;
namespace System.Data.OleDb
{
internal sealed class PropertyIDSet : DbBuffer
{
private static readonly int PropertyIDSetAndValueSize = ODB.SizeOf_tagDBPROPIDSET + IntPtr.Size; // sizeof(tagDBPROPIDSET) + sizeof(int)
private static readonly int PropertyIDSetSize = ODB.SizeOf_tagDBPROPIDSET;
private readonly int _count;
// the PropertyID is stored at the end of the tagDBPROPIDSET structure
// this way only a single memory allocation is required instead of two
internal PropertyIDSet(Guid propertySet, int propertyID) : base(PropertyIDSetAndValueSize)
{
_count = 1;
// rgPropertyIDs references where that PropertyID is stored
// depending on IntPtr.Size, tagDBPROPIDSET is either 24 or 28 bytes long
IntPtr ptr = ADP.IntPtrOffset(base.handle, PropertyIDSetSize);
Marshal.WriteIntPtr(base.handle, 0, ptr);
Marshal.WriteInt32(base.handle, IntPtr.Size, /*propertyid count*/1);
ptr = ADP.IntPtrOffset(base.handle, ODB.OffsetOf_tagDBPROPIDSET_PropertySet);
Marshal.StructureToPtr(propertySet, ptr, false/*deleteold*/);
// write the propertyID at the same offset
Marshal.WriteInt32(base.handle, PropertyIDSetSize, propertyID);
}
// no propertyIDs, just the propertyset guids
internal PropertyIDSet(Guid[] propertySets) : base(PropertyIDSetSize * propertySets.Length)
{
_count = propertySets.Length;
for (int i = 0; i < propertySets.Length; ++i)
{
IntPtr ptr = ADP.IntPtrOffset(base.handle, (i * PropertyIDSetSize) + ODB.OffsetOf_tagDBPROPIDSET_PropertySet);
Marshal.StructureToPtr(propertySets[i], ptr, false/*deleteold*/);
}
}
internal int Count
{
get
{
return _count;
}
}
}
}
|