Mapping Stream data to data structures in C# - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T04:54:02Z http://stackoverflow.com/feeds/question/2256 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/2256/mapping-stream-data-to-data-structures-in-c 3 Mapping Stream data to data structures in C# geocoin 2008-08-05T13:11:14Z 2009-11-16T10:05:36Z <p>Is there a way of mapping data collected on a stream or array to a data structure or vice-versa? In C++ this would simply be a matter of casting a pointer to the stream as a data type I want to use (or vice-versa for the reverse) eg: in C++</p> <pre><code>Mystruct * pMyStrct = (Mystruct*)&amp;SomeDataStream; pMyStrct-&gt;Item1 = 25; int iReadData = pMyStrct-&gt;Item2; </code></pre> <p>obviously the C++ way is pretty unsafe unless you are sure of the quality of the stream data when reading incoming data, but for outgoing data is super quick and easy.</p> <p><hr /></p> <p>Strange... my previously accepted answer was unaccepted. anyway, while all the given solutions were helpful, the accepted answer is the one I was looking for</p> http://stackoverflow.com/questions/2256/mapping-stream-data-to-data-structures-in-c/2294#2294 1 Answer by gil for Mapping Stream data to data structures in C# gil 2008-08-05T13:29:07Z 2008-08-05T13:29:07Z <P>if its .net on both sides:</P> <P>think you should use binary serialization and send the byte[] result.</P> <P>trusting your struct to be fully blittable can be trouble.</P> <P>you will pay in some overhead (both cpu and network) but will be safe.</P> http://stackoverflow.com/questions/2256/mapping-stream-data-to-data-structures-in-c/2322#2322 2 Answer by Antonio Haley for Mapping Stream data to data structures in C# Antonio Haley 2008-08-05T13:47:23Z 2008-08-05T13:47:23Z <p>If you need to populate each member variable by hand you can generalize it a bit as far as the primitives are concerned by using FormatterServices to retrieve in order the list of variable types associated with an object. I've had to do this in a project where I had a lot of different message types coming off the stream and I definitely didn't want to write the serializer/deserializer for each message. </p> <p>Here's the code I used to generalize the deserialization from a byte[].</p> <pre><code>public virtual bool SetMessageBytes(byte[] message)<br> {<br> MemberInfo[] members = FormatterServices.GetSerializableMembers(this.GetType());<br> object[] values = FormatterServices.GetObjectData(this, members);<br> int j = 0;<br><br> for (int i = 0; i &lt; members.Length; i++)<br> {<br> string[] var = members[i].ToString().Split(new char[] { ' ' });<br> switch (var[0])<br> {<br> case "UInt32":<br> values[i] = (UInt32)((message[j] &lt;&lt; 24) + (message[j + 1] &lt;&lt; 16) + (message[j + 2] &lt;&lt; 8) + message[j + 3]);<br> j += 4;<br> break;<br> case "UInt16":<br> values[i] = (UInt16)((message[j] &lt;&lt; 8) + message[j + 1]);<br> j += 2;<br> break;<br> case "Byte":<br> values[i] = (byte)message[j++];<br> break;<br> case "UInt32[]":<br> if (values[i] != null)<br> {<br> int len = ((UInt32[])values[i]).Length;<br> byte[] b = new byte[len * 4];<br> Array.Copy(message, j, b, 0, len * 4);<br> Array.Copy(Utilities.ByteArrayToUInt32Array(b), (UInt32[])values[i], len);<br> j += len * 4;<br> }<br> break;<br> case "Byte[]":<br> if (values[i] != null)<br> {<br> int len = ((byte[])values[i]).Length;<br> Array.Copy(message, j, (byte[])(values[i]), 0, len);<br> j += len;<br> }<br> break;<br> default:<br> throw new Exception("ByteExtractable::SetMessageBytes Unsupported Type: " + var[1] + " is of type " + var[0]);<br> }<br> }<br> FormatterServices.PopulateObjectMembers(this, members, values);<br> return true;<br> }<br></code></pre> http://stackoverflow.com/questions/2256/mapping-stream-data-to-data-structures-in-c/2490#2490 3 Answer by lubos hasko for Mapping Stream data to data structures in C# lubos hasko 2008-08-05T15:46:35Z 2009-10-09T07:16:40Z <p>Most people use .NET serialization (there is faster binary and slower XML formatter, they both depend on reflection and are version tolerant to certain degree)</p> <p>However, if you want the fastest (unsafe) way - why not:</p> <p>Writing:</p> <pre><code>YourStruct o = new YourStruct(); byte[] buffer = new byte[Marshal.SizeOf(typeof(YourStruct))]; GCHandle handle = GCHandle.Alloc(buffer, GCHandleType.Pinned); Marshal.StructureToPtr(o, handle.AddrOfPinnedObject(), false); handle.Free(); </code></pre> <p>Reading:</p> <pre><code>handle = GCHandle.Alloc(buffer, GCHandleType.Pinned); o = (YourStruct)Marshal.PtrToStructure(handle.AddrOfPinnedObject(), typeof(YourStruct)); handle.Free(); </code></pre> http://stackoverflow.com/questions/2256/mapping-stream-data-to-data-structures-in-c/1617761#1617761 1 Answer by Simon Buchan for Mapping Stream data to data structures in C# Simon Buchan 2009-10-24T11:37:39Z 2009-10-24T11:37:39Z <p>In case lubos hasko's answer was not unsafe enough, there is also the <strong>really</strong> unsafe way, using pointers in C#. Here's some tips and pitfalls I've run into:</p> <pre><code>using System; using System.Runtime.InteropServices; using System.IO; using System.Diagnostics; // Use LayoutKind.Sequential to prevent the CLR from reordering your fields. [StructLayout(LayoutKind.Sequential)] unsafe struct MeshDesc { public byte NameLen; // Here fixed means store the array by value, like in C, // though C# exposes access to Name as a char*. // fixed also requires 'unsafe' on the struct definition. public fixed char Name[16]; // You can include other structs like in C as well. public Matrix Transform; public uint VertexCount; // But not both, you can't store an array of structs. //public fixed Vector Vertices[512]; } [StructLayout(LayoutKind.Sequential)] unsafe struct Matrix { public fixed float M[16]; } // This is how you do unions [StructLayout(LayoutKind.Explicit)] unsafe struct Vector { [FieldOffset(0)] public fixed float Items[16]; [FieldOffset(0)] public float X; [FieldOffset(4)] public float Y; [FieldOffset(8)] public float Z; } class Program { unsafe static void Main(string[] args) { var mesh = new MeshDesc(); var buffer = new byte[Marshal.SizeOf(mesh)]; // Set where NameLen will be read from. buffer[0] = 12; // Use Buffer.BlockCopy to raw copy data across arrays of primitives. // Note we copy to offset 2 here: char's have alignment of 2, so there is // a padding byte after NameLen: just like in C. Buffer.BlockCopy("Hello!".ToCharArray(), 0, buffer, 2, 12); // Copy data to struct Read(buffer, out mesh); // Print the Name we wrote above: var name = new char[mesh.NameLen]; // Use Marsal.Copy to copy between arrays and pointers to arrays. unsafe { Marshal.Copy((IntPtr)mesh.Name, name, 0, mesh.NameLen); } // Note you can also use the String.String(char*) overloads Console.WriteLine("Name: " + new string(name)); // If Erik Myers likes it... mesh.VertexCount = 4711; // Copy data from struct: // MeshDesc is a struct, and is on the stack, so it's // memory is effectively pinned by the stack pointer. // This means '&amp;' is sufficient to get a pointer. Write(&amp;mesh, buffer); // Watch for alignment again, and note you have endianess to worry about... int vc = buffer[100] | (buffer[101] &lt;&lt; 8) | (buffer[102] &lt;&lt; 16) | (buffer[103] &lt;&lt; 24); Console.WriteLine("VertexCount = " + vc); } unsafe static void Write(MeshDesc* pMesh, byte[] buffer) { // But byte[] is on the heap, and therefore needs // to be flagged as pinned so the GC won't try to move it // from under you - this can be done most efficiently with // 'fixed', but can also be done with GCHandleType.Pinned. fixed (byte* pBuffer = buffer) *(MeshDesc*)pBuffer = *pMesh; } unsafe static void Read(byte[] buffer, out MeshDesc mesh) { fixed (byte* pBuffer = buffer) mesh = *(MeshDesc*)pBuffer; } } </code></pre> http://stackoverflow.com/questions/2256/mapping-stream-data-to-data-structures-in-c/1741213#1741213 0 Answer by Jade.Wang for Mapping Stream data to data structures in C# Jade.Wang 2009-11-16T10:05:36Z 2009-11-16T10:05:36Z <p>Simon seems give a good way.</p>