2014-08-13 10:39:27 +01:00
|
|
|
//
|
|
|
|
// System.Diagnostics.StackTrace.cs
|
|
|
|
//
|
|
|
|
// Author:
|
|
|
|
// Alexander Klyubin (klyubin@aqris.com)
|
|
|
|
// Dietmar Maurer (dietmar@ximian.com)
|
|
|
|
//
|
|
|
|
// (C) 2001
|
|
|
|
// Copyright (C) 2004-2005 Novell, Inc (http://www.novell.com)
|
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
// a copy of this software and associated documentation files (the
|
|
|
|
// "Software"), to deal in the Software without restriction, including
|
|
|
|
// without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
// distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
// permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
// the following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be
|
|
|
|
// included in all copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
|
|
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
|
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
|
|
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
//
|
|
|
|
|
2018-08-07 15:19:03 +00:00
|
|
|
using System.Collections;
|
2014-08-13 10:39:27 +01:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Globalization;
|
|
|
|
using System.Reflection;
|
|
|
|
using System.Runtime.CompilerServices;
|
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
using System.Security;
|
|
|
|
using System.Security.Permissions;
|
|
|
|
using System.Text;
|
|
|
|
using System.Threading;
|
2016-08-03 10:59:49 +00:00
|
|
|
using System.IO;
|
2014-08-13 10:39:27 +01:00
|
|
|
|
|
|
|
namespace System.Diagnostics {
|
|
|
|
|
|
|
|
[Serializable]
|
|
|
|
[ComVisible (true)]
|
|
|
|
[MonoTODO ("Serialized objects are not compatible with .NET")]
|
|
|
|
public class StackTrace {
|
|
|
|
|
2015-04-07 09:35:12 +01:00
|
|
|
// TraceFormat is Used to specify options for how the
|
|
|
|
// string-representation of a StackTrace should be generated.
|
|
|
|
internal enum TraceFormat
|
|
|
|
{
|
|
|
|
Normal,
|
|
|
|
TrailingNewLine, // include a trailing new line character
|
|
|
|
NoResourceLookup // to prevent infinite resource recusion
|
|
|
|
}
|
|
|
|
|
2014-08-13 10:39:27 +01:00
|
|
|
public const int METHODS_TO_SKIP = 0;
|
2018-04-24 09:31:23 +00:00
|
|
|
const string prefix = " at ";
|
2014-08-13 10:39:27 +01:00
|
|
|
|
|
|
|
private StackFrame[] frames;
|
2015-08-26 07:17:56 -04:00
|
|
|
readonly StackTrace[] captured_traces;
|
2017-04-10 11:41:01 +00:00
|
|
|
#pragma warning disable 414
|
2014-08-13 10:39:27 +01:00
|
|
|
private bool debug_info;
|
2017-04-10 11:41:01 +00:00
|
|
|
#pragma warning restore
|
2016-08-03 10:59:49 +00:00
|
|
|
|
|
|
|
[MethodImplAttribute (MethodImplOptions.NoInlining)]
|
2014-08-13 10:39:27 +01:00
|
|
|
public StackTrace ()
|
|
|
|
{
|
|
|
|
init_frames (METHODS_TO_SKIP, false);
|
|
|
|
}
|
|
|
|
|
2016-11-10 13:04:39 +00:00
|
|
|
[MethodImplAttribute (MethodImplOptions.NoInlining)]
|
2014-08-13 10:39:27 +01:00
|
|
|
public StackTrace (bool fNeedFileInfo)
|
|
|
|
{
|
|
|
|
init_frames (METHODS_TO_SKIP, fNeedFileInfo);
|
|
|
|
}
|
|
|
|
|
2016-11-10 13:04:39 +00:00
|
|
|
[MethodImplAttribute (MethodImplOptions.NoInlining)]
|
2014-08-13 10:39:27 +01:00
|
|
|
public StackTrace (int skipFrames)
|
|
|
|
{
|
|
|
|
init_frames (skipFrames, false);
|
|
|
|
}
|
|
|
|
|
2016-11-10 13:04:39 +00:00
|
|
|
[MethodImplAttribute (MethodImplOptions.NoInlining)]
|
2014-08-13 10:39:27 +01:00
|
|
|
public StackTrace (int skipFrames, bool fNeedFileInfo)
|
|
|
|
{
|
|
|
|
init_frames (skipFrames, fNeedFileInfo);
|
|
|
|
}
|
|
|
|
|
2016-11-10 13:04:39 +00:00
|
|
|
[MethodImplAttribute (MethodImplOptions.NoInlining)]
|
2014-08-13 10:39:27 +01:00
|
|
|
void init_frames (int skipFrames, bool fNeedFileInfo)
|
|
|
|
{
|
|
|
|
if (skipFrames < 0)
|
|
|
|
throw new ArgumentOutOfRangeException ("< 0", "skipFrames");
|
|
|
|
|
|
|
|
StackFrame sf;
|
|
|
|
var l = new List<StackFrame> ();
|
|
|
|
|
|
|
|
skipFrames += 2;
|
|
|
|
|
|
|
|
while ((sf = new StackFrame (skipFrames, fNeedFileInfo)) != null &&
|
|
|
|
sf.GetMethod () != null) {
|
|
|
|
|
|
|
|
l.Add (sf);
|
|
|
|
skipFrames++;
|
|
|
|
};
|
|
|
|
|
|
|
|
debug_info = fNeedFileInfo;
|
|
|
|
frames = l.ToArray ();
|
|
|
|
}
|
|
|
|
|
|
|
|
[MethodImplAttribute(MethodImplOptions.InternalCall)]
|
|
|
|
extern static StackFrame [] get_trace (Exception e, int skipFrames, bool fNeedFileInfo);
|
|
|
|
|
|
|
|
public StackTrace (Exception e)
|
|
|
|
: this (e, METHODS_TO_SKIP, false)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public StackTrace (Exception e, bool fNeedFileInfo)
|
|
|
|
: this (e, METHODS_TO_SKIP, fNeedFileInfo)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public StackTrace (Exception e, int skipFrames)
|
|
|
|
: this (e, skipFrames, false)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public StackTrace (Exception e, int skipFrames, bool fNeedFileInfo)
|
|
|
|
{
|
|
|
|
if (e == null)
|
|
|
|
throw new ArgumentNullException ("e");
|
|
|
|
if (skipFrames < 0)
|
|
|
|
throw new ArgumentOutOfRangeException ("< 0", "skipFrames");
|
|
|
|
|
|
|
|
frames = get_trace (e, skipFrames, fNeedFileInfo);
|
|
|
|
|
2015-08-26 07:17:56 -04:00
|
|
|
captured_traces = e.captured_traces;
|
2014-08-13 10:39:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public StackTrace (StackFrame frame)
|
|
|
|
{
|
|
|
|
this.frames = new StackFrame [1];
|
|
|
|
this.frames [0] = frame;
|
|
|
|
}
|
|
|
|
|
|
|
|
[MonoLimitation ("Not possible to create StackTraces from other threads")]
|
|
|
|
[Obsolete]
|
|
|
|
public StackTrace (Thread targetThread, bool needFileInfo)
|
|
|
|
{
|
|
|
|
if (targetThread == Thread.CurrentThread){
|
|
|
|
init_frames (METHODS_TO_SKIP, needFileInfo);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
throw new NotImplementedException ();
|
|
|
|
}
|
|
|
|
|
2016-02-22 11:00:01 -05:00
|
|
|
internal StackTrace (StackFrame[] frames) {
|
|
|
|
this.frames = frames;
|
|
|
|
}
|
|
|
|
|
2014-08-13 10:39:27 +01:00
|
|
|
public virtual int FrameCount {
|
|
|
|
get {
|
|
|
|
return (frames == null) ? 0 : frames.Length;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public virtual StackFrame GetFrame (int index)
|
|
|
|
{
|
|
|
|
if ((index < 0) || (index >= FrameCount)) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return frames [index];
|
|
|
|
}
|
|
|
|
|
|
|
|
[ComVisibleAttribute (false)]
|
|
|
|
public virtual StackFrame[] GetFrames ()
|
|
|
|
{
|
2018-08-07 15:19:03 +00:00
|
|
|
if (captured_traces == null)
|
|
|
|
return frames;
|
|
|
|
|
|
|
|
var accum = new List<StackFrame> ();
|
|
|
|
foreach (var t in captured_traces)
|
|
|
|
accum.AddRange(t.GetFrames ());
|
|
|
|
|
|
|
|
accum.AddRange (frames);
|
|
|
|
return accum.ToArray ();
|
2014-08-13 10:39:27 +01:00
|
|
|
}
|
|
|
|
|
2016-08-23 13:20:38 +00:00
|
|
|
static bool isAotidSet;
|
|
|
|
static string aotid;
|
|
|
|
static string GetAotId ()
|
|
|
|
{
|
|
|
|
if (!isAotidSet) {
|
|
|
|
aotid = Assembly.GetAotId ();
|
|
|
|
if (aotid != null)
|
|
|
|
aotid = new Guid (aotid).ToString ("N");
|
|
|
|
isAotidSet = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return aotid;
|
|
|
|
}
|
|
|
|
|
2018-08-07 15:19:03 +00:00
|
|
|
bool AddFrames (StringBuilder sb, bool separator, out bool isAsync)
|
2014-08-13 10:39:27 +01:00
|
|
|
{
|
2018-08-07 15:19:03 +00:00
|
|
|
isAsync = false;
|
2018-04-24 09:31:23 +00:00
|
|
|
bool any_frame = false;
|
2015-08-26 07:17:56 -04:00
|
|
|
|
2018-04-24 09:31:23 +00:00
|
|
|
for (int i = 0; i < FrameCount; i++) {
|
2014-08-13 10:39:27 +01:00
|
|
|
StackFrame frame = GetFrame (i);
|
2015-08-26 07:17:56 -04:00
|
|
|
|
|
|
|
if (frame.GetMethod () == null) {
|
2018-08-07 15:19:03 +00:00
|
|
|
if (any_frame || separator)
|
2018-04-24 09:31:23 +00:00
|
|
|
sb.Append (Environment.NewLine);
|
|
|
|
sb.Append (prefix);
|
|
|
|
|
2015-08-26 07:17:56 -04:00
|
|
|
string internal_name = frame.GetInternalMethodName ();
|
|
|
|
if (internal_name != null)
|
|
|
|
sb.Append (internal_name);
|
|
|
|
else
|
2018-04-24 09:31:23 +00:00
|
|
|
sb.AppendFormat ("<0x{0:x5} + 0x{1:x5}> <unknown method>", frame.GetMethodAddress (), frame.GetNativeOffset ());
|
2015-08-26 07:17:56 -04:00
|
|
|
} else {
|
2018-08-07 15:19:03 +00:00
|
|
|
GetFullNameForStackTrace (sb, frame.GetMethod (), any_frame || separator, out var skipped, out isAsync);
|
2018-04-24 09:31:23 +00:00
|
|
|
if (skipped)
|
|
|
|
continue;
|
2015-08-26 07:17:56 -04:00
|
|
|
|
2015-11-12 04:30:02 -05:00
|
|
|
if (frame.GetILOffset () == -1) {
|
|
|
|
sb.AppendFormat (" <0x{0:x5} + 0x{1:x5}>", frame.GetMethodAddress (), frame.GetNativeOffset ());
|
|
|
|
if (frame.GetMethodIndex () != 0xffffff)
|
|
|
|
sb.AppendFormat (" {0}", frame.GetMethodIndex ());
|
|
|
|
} else {
|
|
|
|
sb.AppendFormat (" [0x{0:x5}]", frame.GetILOffset ());
|
2014-08-13 10:39:27 +01:00
|
|
|
}
|
2015-08-26 07:17:56 -04:00
|
|
|
|
2016-08-23 13:20:38 +00:00
|
|
|
var filename = frame.GetSecureFileName ();
|
|
|
|
if (filename[0] == '<') {
|
|
|
|
var mvid = frame.GetMethod ().Module.ModuleVersionId.ToString ("N");
|
|
|
|
var aotid = GetAotId ();
|
|
|
|
if (frame.GetILOffset () != -1 || aotid == null) {
|
|
|
|
filename = string.Format ("<{0}>", mvid);
|
|
|
|
} else {
|
|
|
|
filename = string.Format ("<{0}#{1}>", mvid, aotid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-24 09:31:23 +00:00
|
|
|
sb.AppendFormat (" in {0}:{1} ", filename, frame.GetFileLineNumber ());
|
2014-08-13 10:39:27 +01:00
|
|
|
}
|
2018-04-24 09:31:23 +00:00
|
|
|
|
|
|
|
any_frame = true;
|
2015-08-26 07:17:56 -04:00
|
|
|
}
|
|
|
|
|
2018-04-24 09:31:23 +00:00
|
|
|
return any_frame;
|
2015-08-26 07:17:56 -04:00
|
|
|
}
|
|
|
|
|
2018-08-07 15:19:03 +00:00
|
|
|
void GetFullNameForStackTrace (StringBuilder sb, MethodBase mi, bool needsNewLine, out bool skipped, out bool isAsync)
|
2015-08-26 07:17:56 -04:00
|
|
|
{
|
2018-08-07 15:19:03 +00:00
|
|
|
Type declaringType = mi.DeclaringType;
|
2015-08-26 07:17:56 -04:00
|
|
|
|
|
|
|
// Get generic definition
|
2018-04-24 09:31:23 +00:00
|
|
|
if (declaringType.IsGenericType && !declaringType.IsGenericTypeDefinition) {
|
|
|
|
declaringType = declaringType.GetGenericTypeDefinition ();
|
|
|
|
|
|
|
|
const BindingFlags bindingflags = BindingFlags.Instance | BindingFlags.Static |
|
|
|
|
BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.DeclaredOnly;
|
|
|
|
foreach (var m in declaringType.GetMethods (bindingflags)) {
|
|
|
|
if (m.MetadataToken == mi.MetadataToken) {
|
|
|
|
mi = m;
|
|
|
|
break;
|
|
|
|
}
|
2014-08-13 10:39:27 +01:00
|
|
|
}
|
2015-08-26 07:17:56 -04:00
|
|
|
}
|
|
|
|
|
2018-08-07 15:19:03 +00:00
|
|
|
isAsync = typeof (IAsyncStateMachine).IsAssignableFrom (declaringType);
|
|
|
|
skipped = mi.IsDefined (typeof (StackTraceHiddenAttribute)) || declaringType.IsDefined (typeof (StackTraceHiddenAttribute));
|
2018-04-24 09:31:23 +00:00
|
|
|
if (skipped)
|
|
|
|
return;
|
|
|
|
|
2018-08-07 15:19:03 +00:00
|
|
|
if (isAsync) {
|
|
|
|
ConvertAsyncStateMachineMethod (ref mi, ref declaringType);
|
|
|
|
}
|
|
|
|
|
2018-04-24 09:31:23 +00:00
|
|
|
if (needsNewLine)
|
|
|
|
sb.Append (Environment.NewLine);
|
|
|
|
sb.Append (prefix);
|
|
|
|
|
2015-08-26 07:17:56 -04:00
|
|
|
sb.Append (declaringType.ToString ());
|
2014-08-13 10:39:27 +01:00
|
|
|
|
2015-08-26 07:17:56 -04:00
|
|
|
sb.Append (".");
|
|
|
|
sb.Append (mi.Name);
|
|
|
|
|
|
|
|
if (mi.IsGenericMethod) {
|
2018-04-24 09:31:23 +00:00
|
|
|
mi = ((MethodInfo)mi).GetGenericMethodDefinition ();
|
2015-08-26 07:17:56 -04:00
|
|
|
Type[] gen_params = mi.GetGenericArguments ();
|
|
|
|
sb.Append ("[");
|
|
|
|
for (int j = 0; j < gen_params.Length; j++) {
|
|
|
|
if (j > 0)
|
|
|
|
sb.Append (",");
|
|
|
|
sb.Append (gen_params [j].Name);
|
|
|
|
}
|
|
|
|
sb.Append ("]");
|
|
|
|
}
|
|
|
|
|
2016-08-03 10:59:49 +00:00
|
|
|
ParameterInfo[] p = mi.GetParameters ();
|
2015-08-26 07:17:56 -04:00
|
|
|
|
|
|
|
sb.Append (" (");
|
|
|
|
for (int i = 0; i < p.Length; ++i) {
|
|
|
|
if (i > 0)
|
|
|
|
sb.Append (", ");
|
|
|
|
|
|
|
|
Type pt = p[i].ParameterType;
|
|
|
|
if (pt.IsGenericType && ! pt.IsGenericTypeDefinition)
|
|
|
|
pt = pt.GetGenericTypeDefinition ();
|
|
|
|
|
2016-08-03 10:59:49 +00:00
|
|
|
sb.Append (pt.ToString());
|
|
|
|
|
2015-08-26 07:17:56 -04:00
|
|
|
if (p [i].Name != null) {
|
|
|
|
sb.Append (" ");
|
|
|
|
sb.Append (p [i].Name);
|
2014-08-13 10:39:27 +01:00
|
|
|
}
|
|
|
|
}
|
2015-08-26 07:17:56 -04:00
|
|
|
sb.Append (")");
|
2018-04-24 09:31:23 +00:00
|
|
|
}
|
2018-08-07 15:19:03 +00:00
|
|
|
|
|
|
|
static void ConvertAsyncStateMachineMethod (ref MethodBase method, ref Type declaringType)
|
|
|
|
{
|
|
|
|
Type parentType = declaringType.DeclaringType;
|
|
|
|
if (parentType == null)
|
|
|
|
return;
|
|
|
|
|
|
|
|
MethodInfo[] methods = parentType.GetMethods (BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Static | BindingFlags.Instance | BindingFlags.DeclaredOnly);
|
|
|
|
if (methods == null)
|
|
|
|
return;
|
|
|
|
|
|
|
|
foreach (MethodInfo candidateMethod in methods) {
|
|
|
|
var attributes = candidateMethod.GetCustomAttributes<AsyncStateMachineAttribute> ();
|
|
|
|
if (attributes == null)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
foreach (var attr in attributes) {
|
|
|
|
if (attr.StateMachineType == declaringType) {
|
|
|
|
method = candidateMethod;
|
|
|
|
declaringType = candidateMethod.DeclaringType;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-08-26 07:17:56 -04:00
|
|
|
|
|
|
|
public override string ToString ()
|
|
|
|
{
|
|
|
|
StringBuilder sb = new StringBuilder ();
|
|
|
|
|
|
|
|
//
|
|
|
|
// Add traces captured using ExceptionDispatchInfo
|
|
|
|
//
|
2018-08-07 15:19:03 +00:00
|
|
|
bool has_frames = false;
|
2015-08-26 07:17:56 -04:00
|
|
|
if (captured_traces != null) {
|
|
|
|
foreach (var t in captured_traces) {
|
2018-08-07 15:19:03 +00:00
|
|
|
has_frames = t.AddFrames (sb, has_frames, out var isAsync);
|
|
|
|
if (!has_frames)
|
2015-08-26 07:17:56 -04:00
|
|
|
continue;
|
|
|
|
|
2018-08-07 15:19:03 +00:00
|
|
|
if (!isAsync) {
|
|
|
|
sb.Append (Environment.NewLine);
|
|
|
|
sb.Append ("--- End of stack trace from previous location where exception was thrown ---");
|
|
|
|
sb.Append (Environment.NewLine);
|
|
|
|
}
|
2015-08-26 07:17:56 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-07 15:19:03 +00:00
|
|
|
AddFrames (sb, has_frames, out _);
|
2016-08-03 10:59:49 +00:00
|
|
|
|
2014-08-13 10:39:27 +01:00
|
|
|
return sb.ToString ();
|
|
|
|
}
|
2015-04-07 09:35:12 +01:00
|
|
|
|
|
|
|
internal String ToString (TraceFormat traceFormat)
|
|
|
|
{
|
|
|
|
// TODO:
|
|
|
|
return ToString ();
|
|
|
|
}
|
2014-08-13 10:39:27 +01:00
|
|
|
}
|
|
|
|
}
|