Merge pull request #2819 from BrzVlad/fix-major-log
[mono.git] / mcs / class / corlib / System.Diagnostics / StackTraceHelper.cs
1 //
2 // System.Diagnostics.StackTraceHelper.cs
3 //
4 // Author:
5 //      Marcos Henrich (marcos.henrich@xamarin.com)
6 //
7 // Copyright (C) Xamarin, Inc (http://www.xamarin.com)
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 System.Diagnostics {
30
31         using System.Text;
32 #if INSIDE_CORLIB
33         using System.Reflection;
34 #else
35         using IKVM.Reflection;
36         using IKVM.Reflection.Reader;
37         using Type = IKVM.Reflection.Type;
38 #endif
39         // This class exists so tools such as mono-symbolicate can use it directly.
40         class StackTraceHelper {
41                 
42                 public static void GetFullNameForStackTrace (StringBuilder sb, MethodBase mi)
43                 {
44                         var declaringType = mi.DeclaringType;
45                         if (declaringType.IsGenericType && !declaringType.IsGenericTypeDefinition)
46                                 declaringType = declaringType.GetGenericTypeDefinition ();
47
48                         // Get generic definition
49                         var bindingflags = BindingFlags.Instance | BindingFlags.Static | BindingFlags.Public | BindingFlags.NonPublic;
50                         foreach (var m in declaringType.GetMethods (bindingflags)) {
51                                 if (m.MetadataToken == mi.MetadataToken) {
52                                         mi = m;
53                                         break;
54                                 }
55                         }
56
57                         sb.Append (declaringType.ToString ());
58
59                         sb.Append (".");
60                         sb.Append (mi.Name);
61
62                         if (mi.IsGenericMethod) {
63                                 Type[] gen_params = mi.GetGenericArguments ();
64                                 sb.Append ("[");
65                                 for (int j = 0; j < gen_params.Length; j++) {
66                                         if (j > 0)
67                                                 sb.Append (",");
68                                         sb.Append (gen_params [j].Name);
69                                 }
70                                 sb.Append ("]");
71                         }
72
73                         ParameterInfo[] p = mi.GetParameters ();
74
75                         sb.Append (" (");
76                         for (int i = 0; i < p.Length; ++i) {
77                                 if (i > 0)
78                                         sb.Append (", ");
79
80                                 Type pt = p[i].ParameterType;
81                                 if (pt.IsGenericType && ! pt.IsGenericTypeDefinition)
82                                         pt = pt.GetGenericTypeDefinition ();
83
84                                 sb.Append (pt.ToString());
85
86                                 if (p [i].Name != null) {
87                                         sb.Append (" ");
88                                         sb.Append (p [i].Name);
89                                 }
90                         }
91                         sb.Append (")");
92                 }
93         }
94 }