Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a requirement to shovel large amounts (theoretically up to a few terabytes, only limited by available memory) of data from a C/C++ based core DLL which manages, filters and allocates the data, to a C# GUI (which only reads the data). It would be optimal if the data are never duplicated but only accessed per reference from the C#. The signature of my DLL's method is currently the following (I can make changes there):

extern "C" {

typedef struct {
    wchar_t* name;
    __int32 t;
    float v;
    bool condition;

    } TestData;

__declspec(dllexport) void fillTestArrayWithAlloc(TestData** td, __int32* size);
};

The array length is not known to C# and can be anything between 1 and millions....

I mapped the structure like this:

   [StructLayout(LayoutKind.Sequential)]
   struct TestData
    {
        [MarshalAs(UnmanagedType.LPWStr)]
        public String name;
        public Int32 t;
        [MarshalAs(UnmanagedType.R4)]
        public float v; 
        public bool condition;

    }

I tried both manual unmarshalling like this

static extern void fillTestArrayWithAlloc(ref IntPtr td, ref int size);

and automatic unmarshalling like this

static extern void fillTestArrayWithAlloc([Out] TestData[] td, ref int size);

But in both cases it performs a memory copy, which is undesired. Is there a way to do it without a data copy?

Best regards Petr

share|improve this question

2 Answers

The first version of your function declaration should not cause all the data to be copied: only the pointer and length value will be marshalled.

I think you should then be able to implement an iterator or enumerator which marshals one TestData structure at a time directly from the unmanaged memory pointed to by the IntPtr, using Marshal.PtrToStructure. You will need to do some unsafe pointer arithmetic to move from one instance to another as you iterate.

This approach should avoid wholesale copying of the entire structure. Good luck.

share|improve this answer
1  
It shouldn't be necessary to go unsafe. You can create new IntPtr objects based on an offset of the original value to access different elements of the unmanaged array. – Adam Robinson Feb 15 '11 at 17:29
@Adam: In .NET4, yes... there are new static methods Add/Subtract of IntPtr. Was it possible before? – Chris Dickson Feb 15 '11 at 17:52
@Chris: IntPtr has ToInt32 and a constructor that takes an Int32, so while the syntax wasn't the most intuitive, yes. – Adam Robinson Feb 15 '11 at 18:06
@Adam: But the ctor(Int32) is also unsafe – Chris Dickson Feb 16 '11 at 16:15
@Chris: Are you certain about that? – Adam Robinson Feb 16 '11 at 16:30
show 1 more comment

My attempt to decode looks like this, but I still have an impression that the unmarshaling to struct makes a memcopy. Any idea how to optimize this?

private static TestData[] unmarshalIntPtr(IntPtr iptr, int size)
        {
            TestData[] ret = new TestData[size];

            var counter = iptr;

            for (int i = 0; i < size; i++)
            {
                TestData cur = (TestData)Marshal.PtrToStructure(counter, typeof(TestData));

                ret[i] = cur;

                IntPtr.Add(counter, Marshal.SizeOf(typeof(TestData)));              

            }
            return ret;

        }
share|improve this answer
Yes, this line: TestData[] ret = new TestData[size]; is allocating managed memory for all the data, which you then copy into it within the loop. My answer was proposing that you avoid that, by using just one managed TestData at a time (I suggested an iterator, but it doesn't need to be: you could design something which returned the struct at any index into the unmanaged memory). If your UI displays all n terabytes of the data at the same time, this won't help, but I suspect that is not the case :-) – Chris Dickson Feb 16 '11 at 16:30
Please don't post updates to your question as answers. You can edit your original question to include this content. Please copy this data into your original question, then delete this answer. Thanks! – Adam Robinson Feb 16 '11 at 17:30
@Adam - ok, sorry. Was my first post here. @Chris - I tried removing it and accessing the code directly, but the performance is about the same (I perform a 500 element array transfer for 10000 times, and measure the time difference for test purposes). – Petr Osipov Feb 17 '11 at 10:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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