I'm trying to make some way of figuring out who to "blame" when an exception is thrown in our application (at work). It could be me causing it of course but I can accept that :). But to do this I need the history of a file in TFS so I can check who last made a change at the line of the exception. Its of course not always at the row of the exception that the erroneous change was inserted, so I would probably also need to check any changes to the same file and lastly any check-ins made very recently. I'm not sure how I will work out this but I would like to check with the community first if there is any already existing solutions for this? I have no experience with the TFS API yet so I have no way of telling whats possible and whats not. I guess I would integrate this into our app in the unhandled exceptions-handler. When some candidates of the exception is found I need to inform them by email. In the process it would be nice to log how many times a certain exception has been thrown by any user on our intranet, who, when, how etc. It could save us a lot of time (and money).

link|improve this question

54% accept rate
feedback

2 Answers

up vote 1 down vote accepted

I like the spirit! The TFS API is very powerful and you can go to any level of depth for the information you are interested in.

public static void GetMergeDetailsForChangeSet() { var tfs = TfsTeamProjectCollectionFactory.GetTeamProjectCollection(new Uri("Enter the url of team project")); var versionControl = tfs.GetService();

        var a = versionControl.GetChangeset(12322);

        VersionSpec changeSpec = new ChangesetVersionSpec(a.Changes[0].Item.ChangesetId);

        var abc = a.Changes[0].Item.VersionControlServer.QueryMergesWithDetails(
            null,
            null,
            0,
            a.Changes[0].Item.ServerItem,
            changeSpec,
            a.Changes[0].Item.DeletionId,
            changeSpec,
            changeSpec,
            RecursionType.Full);

    }
  • Now that you would have the actual code, you can run a set of StyleCop http://www.codeproject.com/KB/cs/StyleCop.aspx rules against that code block and on finding possible exceptions or general code analysis results could be recorded in a database and emailed to the user.

Sounds interesting. But, alternatively, you could use the Annote feature in TFS to see the series of changes done by a developer on a file and associate code analysis to your CI build defination and get constant feedback on code changes done by the developers in your team.

HTH.

Cheers, Tarun

link|improve this answer
Thanks! Lots of good ideas... – Andreas Zita Jul 1 '11 at 6:58
feedback

Does this really make sense? Consider in how much scenarios an exception is caused by a change at the point it is thrown. Usually the reason for the exception is somewhere up or not even within the callstack at the time of the throw. You should not invest time in something that will not help you in 99% of the scenarios.

link|improve this answer
I wouldnt say usually, but I agree its hard to pinpoint the actual change that caused the exception. If I at least could match the recent changes with the callstack I think I could find probably around 70% depending of the structure of the application. I mean if a change is not matched with the callstack, then its obviously only a bi-effect of some other change and then its much harder to find the cause, maybee not possible. Anyway with a big company and a lot of exceptions not finding its way to the causing developer very fast, a lot of time is wasted... – Andreas Zita Jun 30 '11 at 10:41
feedback

Your Answer

 
or
required, but never shown

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