~ubuntu-branches/ubuntu/trusty/mono-addins/trusty-proposed

« back to all changes in this revision

Viewing changes to Mono.Addins.CecilReflector/Mono.Cecil/Mono.Cecil/MarshalInfo.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2011-04-25 11:11:33 UTC
  • mfrom: (4.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20110425111133-t05u5p7o5fxx70fu
Tags: 0.6-2
Upload to Unstable

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//
 
2
// MarshalInfo.cs
 
3
//
 
4
// Author:
 
5
//   Jb Evain (jbevain@gmail.com)
 
6
//
 
7
// Copyright (c) 2008 - 2010 Jb Evain
 
8
//
 
9
// Permission is hereby granted, free of charge, to any person obtaining
 
10
// a copy of this software and associated documentation files (the
 
11
// "Software"), to deal in the Software without restriction, including
 
12
// without limitation the rights to use, copy, modify, merge, publish,
 
13
// distribute, sublicense, and/or sell copies of the Software, and to
 
14
// permit persons to whom the Software is furnished to do so, subject to
 
15
// the following conditions:
 
16
//
 
17
// The above copyright notice and this permission notice shall be
 
18
// included in all copies or substantial portions of the Software.
 
19
//
 
20
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 
21
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 
22
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 
23
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 
24
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 
25
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 
26
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
27
//
 
28
 
 
29
using System;
 
30
 
 
31
namespace Mono.Cecil {
 
32
 
 
33
        public class MarshalInfo {
 
34
 
 
35
                internal NativeType native;
 
36
 
 
37
                public NativeType NativeType {
 
38
                        get { return native; }
 
39
                        set { native = value; }
 
40
                }
 
41
 
 
42
                public MarshalInfo (NativeType native)
 
43
                {
 
44
                        this.native = native;
 
45
                }
 
46
        }
 
47
 
 
48
        public sealed class ArrayMarshalInfo : MarshalInfo {
 
49
 
 
50
                internal NativeType element_type;
 
51
                internal int size_parameter_index;
 
52
                internal int size;
 
53
                internal int size_parameter_multiplier;
 
54
 
 
55
                public NativeType ElementType {
 
56
                        get { return element_type; }
 
57
                        set { element_type = value; }
 
58
                }
 
59
 
 
60
                public int SizeParameterIndex {
 
61
                        get { return size_parameter_index; }
 
62
                        set { size_parameter_index = value; }
 
63
                }
 
64
 
 
65
                public int Size {
 
66
                        get { return size; }
 
67
                        set { size = value; }
 
68
                }
 
69
 
 
70
                public int SizeParameterMultiplier {
 
71
                        get { return size_parameter_multiplier; }
 
72
                        set { size_parameter_multiplier = value; }
 
73
                }
 
74
 
 
75
                public ArrayMarshalInfo ()
 
76
                        : base (NativeType.Array)
 
77
                {
 
78
                        element_type = NativeType.None;
 
79
                        size_parameter_index = -1;
 
80
                        size = -1;
 
81
                        size_parameter_multiplier = -1;
 
82
                }
 
83
        }
 
84
 
 
85
        public sealed class CustomMarshalInfo : MarshalInfo {
 
86
 
 
87
                internal Guid guid;
 
88
                internal string unmanaged_type;
 
89
                internal TypeReference managed_type;
 
90
                internal string cookie;
 
91
 
 
92
                public Guid Guid {
 
93
                        get { return guid; }
 
94
                        set { guid = value; }
 
95
                }
 
96
 
 
97
                public string UnmanagedType {
 
98
                        get { return unmanaged_type; }
 
99
                        set { unmanaged_type = value; }
 
100
                }
 
101
 
 
102
                public TypeReference ManagedType {
 
103
                        get { return managed_type; }
 
104
                        set { managed_type = value; }
 
105
                }
 
106
 
 
107
                public string Cookie {
 
108
                        get { return cookie; }
 
109
                        set { cookie = value; }
 
110
                }
 
111
 
 
112
                public CustomMarshalInfo ()
 
113
                        : base (NativeType.CustomMarshaler)
 
114
                {
 
115
                }
 
116
        }
 
117
 
 
118
        public sealed class SafeArrayMarshalInfo : MarshalInfo {
 
119
 
 
120
                internal VariantType element_type;
 
121
 
 
122
                public VariantType ElementType {
 
123
                        get { return element_type; }
 
124
                        set { element_type = value; }
 
125
                }
 
126
 
 
127
                public SafeArrayMarshalInfo ()
 
128
                        : base (NativeType.SafeArray)
 
129
                {
 
130
                        element_type = VariantType.None;
 
131
                }
 
132
        }
 
133
 
 
134
        public sealed class FixedArrayMarshalInfo : MarshalInfo {
 
135
 
 
136
                internal NativeType element_type;
 
137
                internal int size;
 
138
 
 
139
                public NativeType ElementType {
 
140
                        get { return element_type; }
 
141
                        set { element_type = value; }
 
142
                }
 
143
 
 
144
                public int Size {
 
145
                        get { return size; }
 
146
                        set { size = value; }
 
147
                }
 
148
 
 
149
                public FixedArrayMarshalInfo ()
 
150
                        : base (NativeType.FixedArray)
 
151
                {
 
152
                        element_type = NativeType.None;
 
153
                }
 
154
        }
 
155
 
 
156
        public sealed class FixedSysStringMarshalInfo : MarshalInfo {
 
157
 
 
158
                internal int size;
 
159
 
 
160
                public int Size {
 
161
                        get { return size; }
 
162
                        set { size = value; }
 
163
                }
 
164
 
 
165
                public FixedSysStringMarshalInfo ()
 
166
                        : base (NativeType.FixedSysString)
 
167
                {
 
168
                        size = -1;
 
169
                }
 
170
        }
 
171
}