ece4997062ea161fd46fa1f847239f081c3556e8
[mono.git] / mcs / tools / cil-strip / Mono.Cecil / CallSite.cs
1 //
2 // CallSite.cs
3 //
4 // Author:
5 //   Jb Evain (jbevain@gmail.com)
6 //
7 // (C) 2005 - 2007 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 namespace Mono.Cecil {
30
31         using System.Collections;
32         using System.Text;
33
34         using Mono.Cecil.Metadata;
35
36         internal sealed class CallSite : IMethodSignature, IAnnotationProvider, IMetadataTokenProvider {
37
38                 MethodReference m_function;
39
40                 public bool HasThis {
41                         get { return m_function.HasThis; }
42                         set { m_function.HasThis = value; }
43                 }
44
45                 public bool ExplicitThis {
46                         get { return m_function.ExplicitThis; }
47                         set { m_function.ExplicitThis = value; }
48                 }
49
50                 public MethodCallingConvention CallingConvention {
51                         get { return m_function.CallingConvention; }
52                         set { m_function.CallingConvention = value; }
53                 }
54
55                 public bool HasParameters {
56                         get { return m_function.HasParameters; }
57                 }
58
59                 public ParameterDefinitionCollection Parameters {
60                         get { return m_function.Parameters; }
61                 }
62
63                 public MethodReturnType ReturnType {
64                         get { return m_function.ReturnType; }
65                         set { m_function.ReturnType = value; }
66                 }
67
68                 public MetadataToken MetadataToken {
69                         get { return m_function.MetadataToken; }
70                         set { m_function.MetadataToken = value; }
71                 }
72
73                 IDictionary IAnnotationProvider.Annotations {
74                         get { return ((IAnnotationProvider) m_function).Annotations; }
75                 }
76
77                 public CallSite (bool hasThis, bool explicitThis, MethodCallingConvention callConv, MethodReturnType retType)
78                 {
79                         m_function = new MethodReference (string.Empty, hasThis, explicitThis, callConv);
80                         m_function.ReturnType = retType;
81                 }
82
83                 public int GetSentinel ()
84                 {
85                         return m_function.GetSentinel ();
86                 }
87
88                 public override string ToString ()
89                 {
90                         int sentinel = GetSentinel ();
91                         StringBuilder sb = new StringBuilder ();
92                         sb.Append (m_function.ReturnType.ReturnType.FullName);
93                         sb.Append ("(");
94                         if (m_function.HasParameters) {
95                                 for (int i = 0; i < m_function.Parameters.Count; i++) {
96                                         if (i > 0)
97                                                 sb.Append (",");
98
99                                         if (i == sentinel)
100                                                 sb.Append ("...,");
101
102                                         sb.Append (m_function.Parameters [i].ParameterType.FullName);
103                                 }
104                         }
105                         sb.Append (")");
106                         return sb.ToString ();
107                 }
108         }
109 }