summaryrefslogtreecommitdiffstats
path: root/mono/DBusType/Nil.cs
blob: a271db3daf2c06968d0444c50592cb2875857946 (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
using System;
using System.Runtime.InteropServices;
using System.Reflection.Emit;

using DBus;

namespace DBus.DBusType
{
  /// <summary>
  /// Marks a "void"/"unset"/"nonexistent"/"null" argument.
  /// </summary>
  public class Nil : IDBusType
  {
    public const char Code = 'v';
    
    private Nil()
    {
    }
    
    public Nil(object nil, Service service) 
    {
    }

    public Nil(IntPtr iter, Service service)
    {
    }
    
    public void Append(IntPtr iter)
    {
      if (!dbus_message_iter_append_nil(iter))
	throw new ApplicationException("Failed to append NIL argument");
    }

    public static bool Suits(System.Type type) 
    {
      return false;
    }

    public static void EmitMarshalIn(ILGenerator generator, Type type)
    {
      if (type.IsByRef) {
	generator.Emit(OpCodes.Ldind_I1);
      }
    }

    public static void EmitMarshalOut(ILGenerator generator, Type type, bool isReturn) 
    {
      generator.Emit(OpCodes.Unbox, type);
      generator.Emit(OpCodes.Ldind_I1);
      if (!isReturn) {
	generator.Emit(OpCodes.Stind_I1);
      }
    }
    
    public object Get() 
    {
      return null;
    }

    public object Get(System.Type type)
    {
      throw new ArgumentException("Cannot cast DBus.Type.Nil to type '" + type.ToString() + "'");
    }

    [DllImport("dbus-1")]
    private extern static bool dbus_message_iter_append_nil(IntPtr iter);
  }
}