blob: 368fdf63de2506f3e7fc2b8e184bbe6e352dd0bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
using System;
using System.Runtime.InteropServices;
using System.Reflection.Emit;
using DBus;
namespace DBus.DBusType
{
/// <summary>
/// 64-bit integer.
/// </summary>
public class Int64 : IDBusType
{
public const char Code = 'x';
private System.Int64 val;
private Int64()
{
}
public Int64(System.Int64 val, Service service)
{
this.val = val;
}
public Int64(IntPtr iter, Service service)
{
this.val = dbus_message_iter_get_int64(iter);
}
public void Append(IntPtr iter)
{
if (!dbus_message_iter_append_int64(iter, val))
throw new ApplicationException("Failed to append INT64 argument:" + val);
}
public static bool Suits(System.Type type)
{
if (type.IsEnum && type.UnderlyingSystemType == typeof(System.Int64)) {
return true;
}
switch (type.ToString()) {
case "System.Int64":
case "System.Int64&":
return true;
}
return false;
}
public static void EmitMarshalIn(ILGenerator generator, Type type)
{
if (type.IsByRef) {
generator.Emit(OpCodes.Ldind_I8);
}
}
public static void EmitMarshalOut(ILGenerator generator, Type type, bool isReturn)
{
generator.Emit(OpCodes.Unbox, type);
generator.Emit(OpCodes.Ldind_I8);
if (!isReturn) {
generator.Emit(OpCodes.Stind_I8);
}
}
public object Get()
{
return this.val;
}
public object Get(System.Type type)
{
if (type.IsEnum) {
return Enum.ToObject(type, this.val);
}
switch (type.ToString()) {
case "System.Int64":
case "System.Int64&":
return this.val;
default:
throw new ArgumentException("Cannot cast DBus.Type.Int64 to type '" + type.ToString() + "'");
}
}
[DllImport("dbus-1")]
private extern static System.Int64 dbus_message_iter_get_int64(IntPtr iter);
[DllImport("dbus-1")]
private extern static bool dbus_message_iter_append_int64(IntPtr iter, System.Int64 value);
}
}
|