I have created a wrapper for log4net (which I may be dropping in favor of NLog, haven't decided yet), and I indent the logged messages result to give an idea of calling structure. For example:

2011-04-03 00:20:30,271 [CT] DEBUG  -     Merlinia.ProcessManager.CentralThread.ProcessAdminCommand - ProcStart - User Info Repository
2011-04-03 00:20:30,271 [CT] DEBUG  -      Merlinia.ProcessManager.CentralThread.StartOneProcess - User Info Repository
2011-04-03 00:20:30,411 [CT] DEBUG  -       Merlinia.ProcessManager.CentralThread.SetProcessStatus - Process = User Info Repository, status = ProcStarting
2011-04-03 00:20:30,411 [CT] DEBUG  -        Merlinia.ProcessManager.CentralThread.SendProcessStatusInfo
2011-04-03 00:20:30,411 [CT] DEBUG  -         Merlinia.CommonClasses.MhlAdminLayer.SendToAllAdministrators - ProcessTable
2011-04-03 00:20:30,411 [CT] DEBUG  -          Merlinia.CommonClasses.MReflection.CopyToBinary
2011-04-03 00:20:30,411 [CT] DEBUG  -           Merlinia.CommonClasses.MReflection.CopyToBinary - False
2011-04-03 00:20:30,411 [CT] DEBUG  -          Merlinia.CommonClasses.MhlBasicLayer.SendToAllConnections - 228 - True - False
2011-04-03 00:20:30,411 [CT] DEBUG  -           Merlinia.CommonClasses.MmlNonThreaded.SendObject - 228
2011-04-03 00:20:30,411 [CT] DEBUG  -            Merlinia.CommonClasses.MllTcpSocket.SendMessage - 228 - True
2011-04-03 00:20:32,174 [10] DEBUG  -    Merlinia.CommonClasses.MReflection.CreateFromBinary
2011-04-03 00:20:32,174 [10] DEBUG  -     Merlinia.CommonClasses.MReflection.CopyFromBinary - Bytes = 71
2011-04-03 00:20:32,174 [CT] DEBUG  - Merlinia.ProcessManager.CentralThread.MessagingCallback - User Info Repository - ProcessInfoAndRequests
2011-04-03 00:20:32,174 [CT] DEBUG  -  Merlinia.ProcessManager.CentralThread.ProcessProcessInfoAndRequests - User Info Repository

I do this using System.Diagnostics.StackTrace and counting StackFrames.

Now here's the question: Is there any more efficient way of doing this? I only need to determine the (relative) call stack depth, i.e., is the current depth plus or minus what it was the last time my logging wrapper was called. (Note that I do not actually use the StackFrame objects - I get the method names otherwise.)

What I'm hoping for is some simple high-performance way of querying the call stack depth or stack usage.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

I may be missing something here but why aren't you simply using the StackTrace.FrameCount property and compare it to the previously recorded FrameCount. FYI FrameCount probably is the fastest method to retrieve the actual frame count since it only returns the internal m_iNumOfFrames field back to you.

link|improve this answer
Thanks for your answer. I may be wrong, but I'm assuming that when you create a StackTrace object that all of the StackFrame objects are also created. You're saying this is not the case? – RenniePet May 14 '11 at 1:56
2  
new StackFrame() object is not that expensive if you don't use it but if you really need to top performance, read on to some twisted Reflection.Emit stuff: ayende.com/blog/3879/reducing-the-cost-of-getting-a-stack-trace – Teoman Soygul May 14 '11 at 2:09
Wow, I'm impressed. Also feeling like my abilities are not up to understanding what you've done. I'll try to analyze and understand it later when I have more time. But what does "Func<object>" mean? (I'm using .Net 2, and that construction is flagged as undefined.) – RenniePet May 14 '11 at 13:10
It's a C# 3.0 feature which is a shorthand generic delegate. Func<object> is similar to old style delegate like public delegate object MyDelegate(object o). By the way I didn't write the code snippet, credit goes to the original author. – Teoman Soygul May 14 '11 at 14:11
@Teoman, right, I mistakenly thought that was your blog, but still kudos to you for pointing me in that direction. I now have the code running, and have done a bit of research, and I do think this may be the solution I'm looking for. But I have one more question. I need to access the StackFrameHelper.iFrameCount field. Now, the Visual Studio debugger knows about this field and willingly displays it, no problem. But the Visual Studio C# compiler refuses to give me access because StackFrameHelper is "internal". Do you have a recommendation for how I should access that field? Thanks. – RenniePet May 15 '11 at 1:12
show 2 more comments
feedback

Thanks to Teoman Soygul and especially to Oren Eini, whose blog Teoman provided a link to.

The following is some "proof of concept" code that I think is the solution I'll be using - although I must admit I haven't done any timing tests.

   class TestProgram
   {
      static void Main(string[] args)
      {
         OneTimeSetup();

         int i = GetCallStackDepth();   // i = 10 on my test machine
         i = AddOneToNesting();         // Now i = 11
      }


      private delegate object DGetStackFrameHelper();

      private static DGetStackFrameHelper _getStackFrameHelper;

      private static FieldInfo _frameCount;


      private static void OneTimeSetup()
      {
         Type stackFrameHelperType =
            typeof(object).Assembly.GetType("System.Diagnostics.StackFrameHelper");


         MethodInfo getStackFramesInternal =
            Type.GetType("System.Diagnostics.StackTrace, mscorlib").GetMethod(
                            "GetStackFramesInternal", BindingFlags.Static | BindingFlags.NonPublic);


         DynamicMethod dynamicMethod = new DynamicMethod(
                      "GetStackFrameHelper", typeof(object), new Type[0], typeof(StackTrace), true);

         ILGenerator generator = dynamicMethod.GetILGenerator();
         generator.DeclareLocal(stackFrameHelperType);
         generator.Emit(OpCodes.Ldc_I4_0);
         generator.Emit(OpCodes.Ldnull);
         generator.Emit(OpCodes.Newobj,
                  stackFrameHelperType.GetConstructor(new Type[] { typeof(bool), typeof(Thread) }));
         generator.Emit(OpCodes.Stloc_0);
         generator.Emit(OpCodes.Ldloc_0);
         generator.Emit(OpCodes.Ldc_I4_0);
         generator.Emit(OpCodes.Ldnull);
         generator.Emit(OpCodes.Call, getStackFramesInternal);
         generator.Emit(OpCodes.Ldloc_0);
         generator.Emit(OpCodes.Ret);


         _getStackFrameHelper =
                   (DGetStackFrameHelper)dynamicMethod.CreateDelegate(typeof(DGetStackFrameHelper));


         _frameCount = stackFrameHelperType.GetField(
                                     "iFrameCount", BindingFlags.NonPublic | BindingFlags.Instance);
      }


      private static int GetCallStackDepth()
      {
         return (int)_frameCount.GetValue(_getStackFrameHelper());
      }


      private static int AddOneToNesting()
      {
         return GetCallStackDepth();
      }
   }
link|improve this answer
+1, nice job there. – Teoman Soygul May 15 '11 at 2:27
Not really, it's almost 100% Oren Eini's code, just regressed to .Net 2. – RenniePet May 15 '11 at 10:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.