vote up 0 vote down star

Hi, I have an application I need to analyze. I have the source code here. I already found a way to log the method calls using this code:

Inside Method: logger.MethodTraceLog();

    public void MethodTraceLog()
    {
        var msg = "MethodTraceLog: " 
            + this.log.Logger.Name 
            + " ### "
            + new StackFrame(1).GetMethod().Name ;

        this.log.Debug(msg);
    }

Is there any way to "inject" the logging call into every method of a class, without having to rewrite the whole source code. As I said, I could, but it just is a lot of work. Some "post function call via reflection" in the constructor, or anything similar?

Thanks for tips... If anybody has some links additional for analyzing the "behaviour" of an application, I would not say no to it :-) Any framework out there? (Except breakpoints and a lot of F-Key hitting)

flag

77% accept rate
If you can recompile the code try www.postsharp.org . That can wrap method calls in basically what you have. – Rashack Jul 17 at 13:50
1  
What kind of analysis are you doing? There may be better ways than this to do it. – John Saunders Jul 17 at 13:52
Actually, I need to port an existing application to Silverlight. It growed somehow, using a lot of network features, so first I have to "understand" it. Have to check what is needed minimal, write unit tests, start multi targeting PRISM thing, remove CAB references... Sounds like fun, doesnt it :-) – Christian Jul 17 at 13:59

3 Answers

vote up 3 vote down check

Actually, there is a concept called Aspect Oriented Programming (AOP) and an implementation in c# called PostSharp (http://www.postsharp.org/) that allows you to inject code post compilation.

link|flag
+1 I was just googling for that. I could remember the concept of the tool but not the name :) – Nath Jul 17 at 13:51
Thanks, looks very promising. Will try it and provide some feedback here. – Christian Jul 17 at 13:57
There's also special plugin for Post# called Log4PostSharp, which is exacly what You are looking for I think. – matma Jul 17 at 14:00
Thanks, worked like a charm. For anyone reading this, definitly worth the "trouble" of a 5 min install. Will save me a lot of time. – Christian Jul 17 at 15:07
vote up 0 vote down

I recommend you do two things: one, get NDepend.

Two, get the Visual Studio 2010 beta 1. Run it in a VM if necessary. It will generate sequence diagrams from code, I believe, and has other features to help comprehend a code base at a high level. You don't have to use it for anything other than understanding.

The downside is that I hereby pass along to you the moral obligation to report bugs you find, on http://connect.microsoft.com/visualstudio.

:-)

link|flag
vote up 0 vote down

Visual Studio Team System's Profiler tool, when running in instrumentation mode, can report back metrics like "Most Called Functions"

Performance Report Summary

You may want to look into using this feature if it is included in your version of Visual Studio.

link|flag

Your Answer

Get an OpenID
or

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