How do I marshal this C++ type?

The ABS_DATA structure is used to associate an arbitrarily long data block with the length information. The declared length of the Data array is 1, but the actual length is given by the Length member.

typedef struct abs_data {
  ABS_DWORD Length;
  ABS_BYTE Data[ABS_VARLEN];
} ABS_DATA;

I tried the following code, but it's not working. The data variable is always empty and I'm sure it has data in there.

[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential, CharSet = System.Runtime.InteropServices.CharSet.Ansi)]
    public struct abs_data
    {
        /// ABS_DWORD->unsigned int
        public uint Length;

        /// ABS_BYTE[1]
       [System.Runtime.InteropServices.MarshalAsAttribute(System.Runtime.InteropServices.UnmanagedType.ByValTStr, SizeConst = 1)]
        public string Data;
    }
link|improve this question

so Data is a byte array with only 1 byte? – Jonathan Henson May 5 '11 at 18:02
also, do you have the typedefs that define ABS_BYTE and ABS_VARLEN that I can see? – Jonathan Henson May 5 '11 at 18:05
No it would normally have a 1000's of bytes. – Ezi May 5 '11 at 18:05
Then why do you have it as only 1 byte long? – Jonathan Henson May 5 '11 at 18:07
typedef unsigned char ABS_BYTE Unsigned integer type (1 byte) – Ezi May 5 '11 at 18:07
show 1 more comment
feedback

3 Answers

up vote 1 down vote accepted

If the data being saved isn't a string, you don't have to store it in a string. I usually do not marshal to a string unless the original data type was a char*. Otherwise a byte[] should do.

try:

[MarshalAs(UnmanagedType.ByValArray, SizeConst=[whatever your size is]]
byte[] Data;

If you need to convert this to a string later use

System.Text.Encoding.UTF8.GetString(your byte array here). 

Obviously, you need to vary the encoding to what you need, though utf8 usually is sufficient.

update:

I see the problem now, you have to marshal a VARIABLE length array. The MarshalAs does not allow this and the array will have to be sent by reference. I am testing some code right now and I will get back with you ASAP.

Another Update:

I've got it! If the array length is variable, your byte[] needs to be an IntPtr, so you would use,

IntPtr Data;

Instead of

[MarshalAs(UnmanagedType.ByValArray, SizeConst=[whatever your size is]]
byte[] Data;

You can then use the Marshal class to access the underlying data.

Something like:

uint length = yourABSObject.Length;
byte[] buffer = new byte[length];

Marshal.Copy(buffer, 0, yourABSObject.Data, length);

you may need to clean up your memory when you are finished to avoid a leak, though I suspect the GC will clean it up when yourABSObject goes out of scope. Anyways, here is the cleanup code:

Marshal.FreeHGlobal(yourABSObject.Data);
link|improve this answer
So how should I write it? – Ezi May 5 '11 at 18:10
just as I did above, substitute the block I included for your section defining Data. Change SizeConst= to the definition of the ABS_VARLEN macro. – Jonathan Henson May 5 '11 at 18:15
2  
The problem is that the the length is based on public uint Length. but I can't fill that in there. – Ezi May 5 '11 at 18:18
yes, see my update above. – Jonathan Henson May 5 '11 at 18:38
1  
@Jonathan: Marshal.FreeHGlobal is not called for here, as there is no unmanaged array to free. The array is part of the unmanaged structure declared in the question. If the whole structure needs to be freed that is a separate matter. Anyway unmanaged pointers must be freed via the allocator which was used to allocate them in the first place and there are a lot of unmanaged memory allocators. – Anton Tykhyy May 5 '11 at 21:02
show 15 more comments
feedback

It is not possible to marshal structs containing variable-length arrays (but it is possible to marshal variable-length arrays as function parameters). You will have to read your data manually:

IntPtr nativeData = ... ;
var length = Marshal.ReadUInt32 (nativeData) ;
var bytes  = new byte[length] ;

Marshal.Copy (new IntPtr ((long)nativeData + 4), bytes, 0, length) ;
link|improve this answer
feedback

You are trying to marshal something that is a byte[ABS_VARLEN] as if it were a string of length 1. You'll need to figure out what the ABS_VARLEN constant is and marshal the array as:

[MarshalAs(UnmanagedType.LPArray, SizeConst = 1024)]
public byte[] Data;

(The 1024 there is a placeholder; fill in whatever the actual value of ASB_VARLEN is.)

link|improve this answer
2  
ABS_VARLEN means that it may always a different Length. based on public uint Length. – Ezi May 5 '11 at 18:14
There seems to be a lot of questions and misunderstanding about this construct from non-C programmers I would assume. Typically the struct defines the array of 1 to mean "and what will follow here in memory is some arbitrary number of bytes specified by the 'Length' member that you will need to walk through and interpret." The 1 doesn't necessarily mean 1 and there is no known-number of what it could be. It is purely determined at runtime on a case by case basis. – ribram Jun 30 '11 at 2:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.