/*
* Greenshot - a free and open source screenshot tool
* Copyright (C) 2007-2012 Thomas Braun, Jens Klingen, Robin Krom
*
* For more information see: http://getgreenshot.org/
* The Greenshot project is hosted on Sourceforge: http://sourceforge.net/projects/greenshot/
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 1 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
using System;
using System.Runtime.InteropServices;
namespace GreenshotPlugin.Core {
///
/// A helper class which does the mashalling for structs
///
public static class BinaryStructHelper {
///
/// Get a struct from a byte array
///
/// typeof struct
/// byte[]
/// struct
public static T FromByteArray(byte[] bytes) where T : struct {
IntPtr ptr = IntPtr.Zero;
try {
int size = Marshal.SizeOf(typeof(T));
ptr = Marshal.AllocHGlobal(size);
Marshal.Copy(bytes, 0, ptr, size);
return FromIntPtr(ptr);
} finally {
if (ptr != IntPtr.Zero) {
Marshal.FreeHGlobal(ptr);
}
}
}
///
/// Get a struct from a byte array
///
/// typeof struct
/// byte[]
/// struct
public static T FromIntPtr(IntPtr intPtr) where T : struct {
object obj = Marshal.PtrToStructure(intPtr, typeof(T));
return (T)obj;
}
///
/// copy a struct to a byte array
///
/// typeof struct
/// struct
/// byte[]
public static byte[] ToByteArray(T obj) where T : struct {
IntPtr ptr = IntPtr.Zero;
try {
int size = Marshal.SizeOf(typeof(T));
ptr = Marshal.AllocHGlobal(size);
Marshal.StructureToPtr(obj, ptr, true);
return FromPtrToByteArray(ptr);
} finally {
if (ptr != IntPtr.Zero) {
Marshal.FreeHGlobal(ptr);
}
}
}
///
/// copy a struct from a pointer to a byte array
///
/// typeof struct
/// IntPtr to struct
/// byte[]
public static byte[] FromPtrToByteArray(IntPtr ptr) where T : struct {
int size = Marshal.SizeOf(typeof(T));
byte[] bytes = new byte[size];
Marshal.Copy(ptr, bytes, 0, size);
return bytes;
}
}
}