You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
321 lines
10 KiB
321 lines
10 KiB
5 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Reflection;
|
||
|
using System.Runtime.InteropServices;
|
||
|
using System.Text;
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// Static methods and helpers for creation and manipulation of Mavlink packets
|
||
|
/// </summary>
|
||
|
public static class MavlinkUtil
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Create a new mavlink packet object from a byte array as recieved over mavlink
|
||
|
/// Endianess will be detetected using packet inspection
|
||
|
/// </summary>
|
||
|
/// <typeparam name="TMavlinkPacket">The type of mavlink packet to create</typeparam>
|
||
|
/// <param name="bytearray">The bytes of the mavlink packet</param>
|
||
|
/// <param name="startoffset">The position in the byte array where the packet starts</param>
|
||
|
/// <returns>The newly created mavlink packet</returns>
|
||
|
|
||
|
public static TMavlinkPacket ByteArrayToStructure<TMavlinkPacket>(this byte[] bytearray, int startoffset = 6)
|
||
|
where TMavlinkPacket : struct
|
||
|
{
|
||
|
#if UNSAFE
|
||
|
return ReadUsingPointer<TMavlinkPacket>(bytearray, startoffset);
|
||
|
#else
|
||
|
return ByteArrayToStructureGC<TMavlinkPacket>(bytearray, startoffset);
|
||
|
#endif
|
||
|
}
|
||
|
public static TMavlinkPacket ByteArrayToStructureBigEndian<TMavlinkPacket>(this byte[] bytearray,
|
||
|
int startoffset = 6) where TMavlinkPacket : struct
|
||
|
{
|
||
|
object newPacket = new TMavlinkPacket();
|
||
|
ByteArrayToStructureEndian(bytearray, ref newPacket, startoffset);
|
||
|
return (TMavlinkPacket) newPacket;
|
||
|
}
|
||
|
|
||
|
public static void ByteArrayToStructure(byte[] bytearray, ref object obj, int startoffset, int payloadlength = 0)
|
||
|
{
|
||
|
int len = Marshal.SizeOf(obj);
|
||
|
|
||
|
IntPtr iptr = Marshal.AllocHGlobal(len);
|
||
|
|
||
|
//clear memory
|
||
|
for (int i = 0; i < len; i += 8)
|
||
|
{
|
||
|
Marshal.WriteInt64(iptr, i, 0x00);
|
||
|
}
|
||
|
|
||
|
for (int i = len - (len % 8); i < len; i++)
|
||
|
{
|
||
|
Marshal.WriteByte(iptr, i, 0x00);
|
||
|
}
|
||
|
|
||
|
// copy byte array to ptr
|
||
|
Marshal.Copy(bytearray, startoffset, iptr, payloadlength);
|
||
|
|
||
|
obj = Marshal.PtrToStructure(iptr, obj.GetType());
|
||
|
|
||
|
Marshal.FreeHGlobal(iptr);
|
||
|
}
|
||
|
|
||
|
public static TMavlinkPacket ByteArrayToStructureT<TMavlinkPacket>(byte[] bytearray, int startoffset)
|
||
|
{
|
||
|
int len = bytearray.Length - startoffset;
|
||
|
|
||
|
IntPtr i = Marshal.AllocHGlobal(len);
|
||
|
|
||
|
try
|
||
|
{
|
||
|
// copy byte array to ptr
|
||
|
Marshal.Copy(bytearray, startoffset, i, len);
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
Console.WriteLine("ByteArrayToStructure FAIL " + ex.Message);
|
||
|
}
|
||
|
|
||
|
var obj = Marshal.PtrToStructure(i, typeof (TMavlinkPacket));
|
||
|
|
||
|
Marshal.FreeHGlobal(i);
|
||
|
|
||
|
return (TMavlinkPacket) obj;
|
||
|
}
|
||
|
|
||
|
public static byte[] trim_payload(ref byte[] payload)
|
||
|
{
|
||
|
var length = payload.Length;
|
||
|
while (length > 1 && payload[length - 1] == 0)
|
||
|
{
|
||
|
length--;
|
||
|
}
|
||
|
if (length != payload.Length)
|
||
|
Array.Resize(ref payload, length);
|
||
|
return payload;
|
||
|
}
|
||
|
#if UNSAFE
|
||
|
public static T ReadUsingPointer<T>(byte[] data, int startoffset) where T : struct
|
||
|
{
|
||
|
unsafe
|
||
|
{
|
||
|
fixed (byte* p = &data[startoffset])
|
||
|
{
|
||
|
return (T) Marshal.PtrToStructure(new IntPtr(p), typeof (T));
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
#endif
|
||
|
public static T ByteArrayToStructureGC<T>(byte[] bytearray, int startoffset) where T : struct
|
||
|
{
|
||
|
GCHandle gch = GCHandle.Alloc(bytearray, GCHandleType.Pinned);
|
||
|
try
|
||
|
{
|
||
|
return (T) Marshal.PtrToStructure(new IntPtr(gch.AddrOfPinnedObject().ToInt64() + startoffset), typeof (T));
|
||
|
}
|
||
|
finally
|
||
|
{
|
||
|
gch.Free();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public static void ByteArrayToStructureEndian(byte[] bytearray, ref object obj, int startoffset)
|
||
|
{
|
||
|
|
||
|
int len = Marshal.SizeOf(obj);
|
||
|
IntPtr i = Marshal.AllocHGlobal(len);
|
||
|
byte[] temparray = (byte[]) bytearray.Clone();
|
||
|
|
||
|
// create structure from ptr
|
||
|
obj = Marshal.PtrToStructure(i, obj.GetType());
|
||
|
|
||
|
// do endian swap
|
||
|
object thisBoxed = obj;
|
||
|
var test = thisBoxed.GetType();
|
||
|
|
||
|
int reversestartoffset = startoffset;
|
||
|
|
||
|
// Enumerate each structure field using reflection.
|
||
|
foreach (var field in test.GetFields())
|
||
|
{
|
||
|
// field.Name has the field's name.
|
||
|
object fieldValue = field.GetValue(thisBoxed); // Get value
|
||
|
|
||
|
// Get the TypeCode enumeration. Multiple types get mapped to a common typecode.
|
||
|
TypeCode typeCode = Type.GetTypeCode(fieldValue.GetType());
|
||
|
|
||
|
if (typeCode != TypeCode.Object)
|
||
|
{
|
||
|
Array.Reverse(temparray, reversestartoffset, Marshal.SizeOf(fieldValue));
|
||
|
reversestartoffset += Marshal.SizeOf(fieldValue);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
var elementsize = Marshal.SizeOf(((Array)fieldValue).GetValue(0));
|
||
|
|
||
|
reversestartoffset += ((Array)fieldValue).Length * elementsize;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
try
|
||
|
{
|
||
|
// copy byte array to ptr
|
||
|
Marshal.Copy(temparray, startoffset, i, len);
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
Console.WriteLine("ByteArrayToStructure FAIL" + ex.ToString());
|
||
|
}
|
||
|
|
||
|
obj = Marshal.PtrToStructure(i, obj.GetType());
|
||
|
|
||
|
Marshal.FreeHGlobal(i);
|
||
|
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Convert a struct to an array of bytes, struct fields being reperesented in
|
||
|
/// little endian (LSB first)
|
||
|
/// </summary>
|
||
|
/// <remarks>Note - assumes little endian host order</remarks>
|
||
|
public static byte[] StructureToByteArray(object obj)
|
||
|
{
|
||
|
int len = Marshal.SizeOf(obj);
|
||
|
byte[] arr = new byte[len];
|
||
|
IntPtr ptr = Marshal.AllocHGlobal(len);
|
||
|
Marshal.StructureToPtr(obj, ptr, true);
|
||
|
Marshal.Copy(ptr, arr, 0, len);
|
||
|
Marshal.FreeHGlobal(ptr);
|
||
|
return arr;
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Convert a struct to an array of bytes, struct fields being reperesented in
|
||
|
/// big endian (MSB first)
|
||
|
/// </summary>
|
||
|
public static byte[] StructureToByteArrayBigEndian(params object[] list)
|
||
|
{
|
||
|
// The copy is made becuase SetValue won't work on a struct.
|
||
|
// Boxing was used because SetValue works on classes/objects.
|
||
|
// Unfortunately, it results in 2 copy operations.
|
||
|
object thisBoxed = list[0]; // Why make a copy?
|
||
|
Type test = thisBoxed.GetType();
|
||
|
|
||
|
int offset = 0;
|
||
|
byte[] data = new byte[Marshal.SizeOf(thisBoxed)];
|
||
|
|
||
|
object fieldValue;
|
||
|
TypeCode typeCode;
|
||
|
|
||
|
byte[] temp;
|
||
|
|
||
|
// Enumerate each structure field using reflection.
|
||
|
foreach (var field in test.GetFields())
|
||
|
{
|
||
|
// field.Name has the field's name.
|
||
|
|
||
|
fieldValue = field.GetValue(thisBoxed); // Get value
|
||
|
|
||
|
// Get the TypeCode enumeration. Multiple types get mapped to a common typecode.
|
||
|
typeCode = Type.GetTypeCode(fieldValue.GetType());
|
||
|
|
||
|
switch (typeCode)
|
||
|
{
|
||
|
case TypeCode.Single: // float
|
||
|
{
|
||
|
temp = BitConverter.GetBytes((Single) fieldValue);
|
||
|
Array.Reverse(temp);
|
||
|
Array.Copy(temp, 0, data, offset, sizeof (Single));
|
||
|
break;
|
||
|
}
|
||
|
case TypeCode.Int32:
|
||
|
{
|
||
|
temp = BitConverter.GetBytes((Int32) fieldValue);
|
||
|
Array.Reverse(temp);
|
||
|
Array.Copy(temp, 0, data, offset, sizeof (Int32));
|
||
|
break;
|
||
|
}
|
||
|
case TypeCode.UInt32:
|
||
|
{
|
||
|
temp = BitConverter.GetBytes((UInt32) fieldValue);
|
||
|
Array.Reverse(temp);
|
||
|
Array.Copy(temp, 0, data, offset, sizeof (UInt32));
|
||
|
break;
|
||
|
}
|
||
|
case TypeCode.Int16:
|
||
|
{
|
||
|
temp = BitConverter.GetBytes((Int16) fieldValue);
|
||
|
Array.Reverse(temp);
|
||
|
Array.Copy(temp, 0, data, offset, sizeof (Int16));
|
||
|
break;
|
||
|
}
|
||
|
case TypeCode.UInt16:
|
||
|
{
|
||
|
temp = BitConverter.GetBytes((UInt16) fieldValue);
|
||
|
Array.Reverse(temp);
|
||
|
Array.Copy(temp, 0, data, offset, sizeof (UInt16));
|
||
|
break;
|
||
|
}
|
||
|
case TypeCode.Int64:
|
||
|
{
|
||
|
temp = BitConverter.GetBytes((Int64) fieldValue);
|
||
|
Array.Reverse(temp);
|
||
|
Array.Copy(temp, 0, data, offset, sizeof (Int64));
|
||
|
break;
|
||
|
}
|
||
|
case TypeCode.UInt64:
|
||
|
{
|
||
|
temp = BitConverter.GetBytes((UInt64) fieldValue);
|
||
|
Array.Reverse(temp);
|
||
|
Array.Copy(temp, 0, data, offset, sizeof (UInt64));
|
||
|
break;
|
||
|
}
|
||
|
case TypeCode.Double:
|
||
|
{
|
||
|
temp = BitConverter.GetBytes((Double) fieldValue);
|
||
|
Array.Reverse(temp);
|
||
|
Array.Copy(temp, 0, data, offset, sizeof (Double));
|
||
|
break;
|
||
|
}
|
||
|
case TypeCode.Byte:
|
||
|
{
|
||
|
data[offset] = (Byte) fieldValue;
|
||
|
break;
|
||
|
}
|
||
|
default:
|
||
|
{
|
||
|
//System.Diagnostics.Debug.Fail("No conversion provided for this type : " + typeCode.ToString());
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
; // switch
|
||
|
if (typeCode == TypeCode.Object)
|
||
|
{
|
||
|
int length = ((byte[]) fieldValue).Length;
|
||
|
Array.Copy(((byte[]) fieldValue), 0, data, offset, length);
|
||
|
offset += length;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
offset += Marshal.SizeOf(fieldValue);
|
||
|
}
|
||
|
} // foreach
|
||
|
|
||
|
return data;
|
||
|
} // Swap
|
||
|
|
||
|
public static MAVLink.message_info GetMessageInfo(this MAVLink.message_info[] source, uint msgid)
|
||
|
{
|
||
|
foreach (var item in source)
|
||
|
{
|
||
|
if (item.msgid == msgid)
|
||
|
return item;
|
||
|
}
|
||
|
|
||
|
Console.WriteLine("Unknown Packet");
|
||
|
return new MAVLink.message_info();
|
||
|
}
|
||
|
}
|