Ryujinx-GtkSharp/glib/time_t_CustomMarshaler.cs
Zoltan Varga fed2de1fe7 2004-05-18 Zoltan Varga <vargaz@freemail.hu>
* glib/time_t_CustomMarshaler.cs: Fix custom marshalling after runtime
	changes.

svn path=/trunk/gtk-sharp/; revision=27621
2004-05-18 19:19:37 +00:00

77 lines
1.8 KiB
C#

// time_t_CustomMarshaler.cs - Custom marshaling between time_t and DateTime
//
// Author: Mike Kestner <mkestner@ximian.com>
//
// Copyright (c) 2004 Novell, Inc.
namespace GLib {
using System;
using System.Runtime.InteropServices;
public class time_t_CustomMarshaler : ICustomMarshaler {
static time_t_CustomMarshaler marshaler;
int utc_offset;
DateTime local_epoch;
private time_t_CustomMarshaler ()
{
utc_offset = (int) DateTime.Now.Subtract (DateTime.UtcNow).TotalSeconds;
local_epoch = new DateTime (1970, 1, 1, 0, 0, 0);
}
public static ICustomMarshaler GetInstance (string cookie)
{
if (marshaler == null)
marshaler = new time_t_CustomMarshaler ();
return marshaler;
}
public IntPtr MarshalManagedToNative (object obj)
{
DateTime dt = (DateTime) obj;
int size = GetNativeDataSize ();
IntPtr ptr = Marshal.AllocCoTaskMem (size);
int secs = ((int)dt.Subtract (local_epoch).TotalSeconds) + utc_offset;
if (GetNativeDataSize () == 4)
Marshal.WriteInt32 (ptr, secs);
else if (GetNativeDataSize () == 8)
Marshal.WriteInt64 (ptr, secs);
else
throw new Exception ("Unexpected native size for time_t.");
return ptr;
}
public void CleanUpNativeData (IntPtr data)
{
Marshal.FreeCoTaskMem (data);
}
public object MarshalNativeToManaged (IntPtr data)
{
long secs;
if (GetNativeDataSize () == 4)
secs = (int)data;
else if (GetNativeDataSize () == 8)
secs = (long)data;
else
throw new Exception ("Unexpected native size for time_t.");
TimeSpan span = new TimeSpan ((int)secs - utc_offset);
return local_epoch.Add (span);
}
public void CleanUpManagedData (object obj) {}
[DllImport ("glibsharpglue")]
static extern int gtksharp_time_t_sizeof ();
public int GetNativeDataSize ()
{
return gtksharp_time_t_sizeof ();
}
}
}