[bcl] Add more reflection types to monotouch
[mono.git] / mcs / class / corlib / System.Reflection.Emit / LocalBuilder.cs
1
2 //
3 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
4 //
5 // Permission is hereby granted, free of charge, to any person obtaining
6 // a copy of this software and associated documentation files (the
7 // "Software"), to deal in the Software without restriction, including
8 // without limitation the rights to use, copy, modify, merge, publish,
9 // distribute, sublicense, and/or sell copies of the Software, and to
10 // permit persons to whom the Software is furnished to do so, subject to
11 // the following conditions:
12 // 
13 // The above copyright notice and this permission notice shall be
14 // included in all copies or substantial portions of the Software.
15 // 
16 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 //
24
25 //
26 // System.Reflection.Emit/LocalBuilder.cs
27 //
28 // Authors:
29 //   Paolo Molaro (lupus@ximian.com)
30 //   Martin Baulig (martin@gnome.org)
31 //   Miguel de Icaza (miguel@ximian.com)
32 //
33 // (C) 2001, 2002 Ximian, Inc.  http://www.ximian.com
34 //
35
36 using System;
37 using System.Reflection;
38 using System.Globalization;
39 using System.Runtime.CompilerServices;
40 using System.Runtime.InteropServices;
41 using System.Diagnostics.SymbolStore;
42
43 namespace System.Reflection.Emit {
44         [ComVisible (true)]
45 #if !FULL_AOT_RUNTIME
46         [ComDefaultInterface (typeof (_LocalBuilder))]
47 #endif
48         [ClassInterface (ClassInterfaceType.None)]
49         [StructLayout (LayoutKind.Sequential)]
50         public sealed class LocalBuilder : LocalVariableInfo
51 #if !FULL_AOT_RUNTIME
52                 , _LocalBuilder
53 #endif
54         {
55
56                 // Some fields are already defined in LocalVariableInfo
57                 #region Sync with reflection.h
58                 private string name;
59                 #endregion
60                 
61                 internal ILGenerator ilgen;
62                 int startOffset;
63                 int endOffset;
64
65                 internal LocalBuilder (Type t, ILGenerator ilgen)
66                 {
67                         this.type = t;
68                         this.ilgen = ilgen;
69                 }
70
71                 public void SetLocalSymInfo (string name, int startOffset, int endOffset)
72                 {
73                         this.name = name;
74                         this.startOffset = startOffset;
75                         this.endOffset = endOffset;
76                 }
77
78                 public void SetLocalSymInfo (string name)
79                 {
80                         SetLocalSymInfo (name, 0, 0);
81                 }
82
83                 public override Type LocalType
84                 {
85                         get {
86                                 return type;
87                         }
88                 }
89
90                 public override bool IsPinned
91                 {
92                         get {
93                                 return is_pinned;
94                         }
95                 }
96
97                 public override int LocalIndex
98                 {
99                         get {
100                                 return position;
101                         }
102                 }
103
104                 internal string Name {
105                         get { return name; }
106                 }
107                 
108                 internal int StartOffset {
109                         get { return startOffset; }
110                 }
111                 
112                 internal int EndOffset {
113                         get { return endOffset; }
114                 }
115 #if !FULL_AOT_RUNTIME
116                 void _LocalBuilder.GetIDsOfNames ([In] ref Guid riid, IntPtr rgszNames, uint cNames, uint lcid, IntPtr rgDispId)
117                 {
118                         throw new NotImplementedException ();
119                 }
120
121                 void _LocalBuilder.GetTypeInfo (uint iTInfo, uint lcid, IntPtr ppTInfo)
122                 {
123                         throw new NotImplementedException ();
124                 }
125
126                 void _LocalBuilder.GetTypeInfoCount (out uint pcTInfo)
127                 {
128                         throw new NotImplementedException ();
129                 }
130
131                 void _LocalBuilder.Invoke (uint dispIdMember, [In] ref Guid riid, uint lcid, short wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr)
132                 {
133                         throw new NotImplementedException ();
134                 }
135 #endif
136         }
137 }