]> git.sesse.net Git - vlc/blob - bindings/cil/src/marshal.cs
Start rewriting the CIL bindings
[vlc] / bindings / cil / src / marshal.cs
1 /**
2  * @file marshal.cs
3  * @brief Common LibVLC objects marshalling utilities
4  * @ingroup Internals
5  */
6
7 /**********************************************************************
8  *  Copyright (C) 2007-2009 RĂ©mi Denis-Courmont.                      *
9  *  This program is free software; you can redistribute and/or modify *
10  *  it under the terms of the GNU General Public License as published *
11  *  by the Free Software Foundation; version 2 of the license, or (at *
12  *  your option) any later version.                                   *
13  *                                                                    *
14  *  This program is distributed in the hope that it will be useful,   *
15  *  but WITHOUT ANY WARRANTY; without even the implied warranty of    *
16  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.              *
17  *  See the GNU General Public License for more details.              *
18  *                                                                    *
19  *  You should have received a copy of the GNU General Public License *
20  *  along with this program; if not, you can get it from:             *
21  *  http://www.gnu.org/copyleft/gpl.html                              *
22  **********************************************************************/
23
24 using System;
25 using System.Runtime.InteropServices;
26
27 namespace VideoLAN.LibVLC
28 {
29     /**
30      * @brief NonNullHandle: abstract safe handle class for non-NULL pointers
31      * @ingroup Internals
32      * Microsoft.* namespace has a similar class. However we want to use the
33      * System.* namespace only.
34      */
35     internal abstract class NonNullHandle : SafeHandle
36     {
37         protected NonNullHandle ()
38             : base (IntPtr.Zero, true)
39         {
40         }
41
42         /**
43          * System.Runtime.InteropServices.SafeHandle::IsInvalid.
44          */
45         public override bool IsInvalid
46         {
47             get
48             {
49                 return handle == IntPtr.Zero;
50             }
51         }
52
53         protected abstract void Destroy ();
54
55         /**
56          * System.Runtime.InteropServices.SafeHandle::ReleaseHandle.
57          */
58         protected override bool ReleaseHandle ()
59         {
60             Destroy ();
61             return true;
62         }
63
64     };
65
66     /**
67      * @brief BaseObject: generic wrapper around a safe handle.
68      * @ingroup Internals
69      * This is the baseline for all managed LibVLC objects which wrap
70      * an unmanaged LibVLC pointer.
71      */
72     public class BaseObject : IDisposable
73     {
74         protected NativeException ex; /**< buffer for LibVLC exceptions */
75         protected SafeHandle handle; /**< wrapped safe handle */
76
77         internal BaseObject ()
78         {
79             ex = new NativeException ();
80             this.handle = null;
81         }
82
83         protected void Raise ()
84         {
85             ex.Raise ();
86         }
87
88         /**
89          * IDisposable::Dispose.
90          */
91         public void Dispose ()
92         {
93             ex.Dispose ();
94             handle.Close ();
95         }
96     };
97 };