Click here to Skip to main content
15,881,248 members
Articles / Desktop Programming / Windows Forms

BoxCop – Static Assembly Analyzer Tool

Rate me:
Please Sign up or sign in to vote.
3.33/5 (2 votes)
8 Feb 2013LGPL38 min read 25.8K   9   7
A small tool called BoxCop which is basically a static analyzer just like FxCop

In this article, I am going to explain about a small tool which I developed as my personal project for a couple of weekends in between my busy schedules. This small tool, which I like to call BoxCop is basically a static analyzer just like FxCop. I conceived this idea when I was working with FxCop for quite some time at work. I would not even claim that this tool is anywhere similar to FxCop in terms of supported features.

A Bit of History

Basically, I was working with FxCop for a week or so at my work place because I am supposed to fix all the FxCop violations in our production code. While doing so, I found many codes which were doing a lot of boxing operations (confirmed by looking into IL most of the time). We already know that this operation is really a big pain if used extensively. So at that time, I started to look if FxCop does support this rule so that we can refactor it so that boxing is minimized. But I did not find any, may be fxcop purpose is not for this? No idea.

You might have noticed from my past blog articles that I do spend a lot of time looking at IL for learning purposes. So I was doing the same and I got the idea of developing this small (tiny) tool which could save at least as small as 1% of a programmers/reviewers time.

Please download either of the below packages:

Note: The packages are uploaded in .doc format due to wordpress issues. Please save as .zip package or change the extension from .doc to .zip of the above files when downloaded.

Introduction

I started to think of developing a small tool (tiny you may call) which could help me to find my mistakes itself in my code in the first place. So as said already, boxing is one of those mistakes (not always though) I might do in my code.

You might argue now that boxing is not always harmful. Yes it’s not, if you use it wisely. Many times, it so happens that we programmers due to many reasons write code urgently and finish off the task but fail to see if what we did is really worthy. You might think that these flaws are easily caught when you ask your code to be reviewed by somebody. But not always effective, I would say. Because your reviewer is not the person who has written the code in the first place, the reviewer may try to understand your code as much as possible, but due to his/her reasons some things may be overlooked.

It’s always a pain to review an old code which you are supposed to do refactoring on because it’s not documented properly? The original programmer is no more available? etc. But you got to do it.

Anyways, I do agree that boxing is not the only reason for refactoring a code. But it could be one of those pitfalls you might look for.

How It Works

The application analyses the assembly which is given as input and its associated PDB file in searching for boxing instructions in IL as well as related source code information in the PDB file. This tool searched for all the methods defined in each module or types in an assembly and for each of those methods collected, its equivalent pdb information is fetched. Once both of the data is collected, it aggregates the result as per the required format which is displayed over UI.

Let me show you a few screenshots of the application:

Image 1

The above screenshot shows the basic UI window of this tool. First, the user has to select an assembly by clicking the browse button.

Image 2

Once the .NET assembly (EXE or DLL) is selected, the selected file path is shown on the UI. Hovering mouse on the path shows the complete path (if path is too long) as shown in the above image.

Once assembly is selected, you need to then press analyze button. Once it is clicked, the tool analyzes the assemblies for boxing instructions. The tool automatically tries to look for the pdb information for the selected assembly in the same location internally. In case the pdb is missing, the tool reports an error as shown:

Image 3

Upon selecting correct assembly with valid pdb information, the tool successfully analyses the assembly for all the boxing instructions for each method in each module and type in an assembly. Once analyses are done, the UI list view displays all the information needed as shown:

Image 4

As you can see from the above image, the list view component on the UI displays detailed information about boxing instructions usage in your C# code.

The first column simply displays a serial number, second displays Namespace.Class information, third column displays Method name and the last column displays information about source code path and line, column information appended to it.

You can export the above UI output to a CSV format by right clicking on the listview component as shown in the below image and selecting Export to CSV menu item:

Image 5

Upon selecting the context menu, a save file dialog is displayed as shown:

Image 6

When Save is clicked, the report is exported and a success message box is displayed to the user.

In case of any exceptions or crashes generated by this application, a log is created with file name BoxCop.log present in the same location as of this application.

As of now, it supports only target assemblies built for 32 bit .NET 3.5 or earlier frameworks. Any non compatible assemblies selected, the tools displays an error as shown below:

Image 7

Before using this tool, please make sure that the following steps are taken care of:

  • .NET 3.5 framework is installed but not 3.5 client profile
  • All dependency assemblies for the targeted assemblies present in the same directory as the targeted assembly
  • All pdb files are present in the same directory as the assemblies and are updated.

Internal Details

This section explains in detail about the code parts which this tool uses internally. So if you are non-techie, it may no more interest you.

This tool has 3 parts in it:

  1. BoxCop
  2. ILCodeAnalyzerLib
  3. PDBDataReader

BoxCop: This module is responsible for all the UI components associated with this tool.

This module has the following components in it:

  • BoxCopForm: UI form which is only responsible for displaying UI components and handling related events from the components.
  • AnalyzeAssembly: This component is responsible for invoking all related methods for analyzing assemblies and getting pdb information from related modules.
  • AnalyzedData: This component is just a helper component to hold all the collected data which is used to display in the UI.

ILCodeAnalyzerLib: This module is responsible for analyzing, reading all the IL instructions from the assembly.

This module has the following components:

  • AssemblyLoader: This component just loads the selected .NET assembly into memory via reflection. It also checks for availability of the pdb file associated with this assembly:

    Image 8

    The above method loads the assembly into memory. If there is any problem related to it, an error is sent back. It also checks for pdb information in the same location as of assembly.

  • AssemblyReader: This component just finds all the methods available in the assembly modules and types. Once it is collected, a list is built to hold all the information for further analysis.

    Image 9

    The above code gets all the method in an assembly module and type wise. Once all methods are found, it builds up a MethodInfo list having all the details about a method. This list is later used to get further information about each method.

  • ILInstructionFormat: This component is just a helper class which just holds all the required format of IL instructions.
  • MethodBodyAnalyzer: As the name suggests, this component just analyzes all the method body having MSIL instructions. It reads the method body code as a byte array and then converts the byte array to an appropriate IL instruction sets.

    Image 10The above method reads and analyzes the IL byte array. Each opcode which is in byte value is identified from a standard dictionary of opcodes value based on singlebyte or double byte. Single byte instructions are like nop, break, ldarg, etc. whereas double byte instructions are ceq, stloc, etc.

  • OpCodesBuilder: This component is a singleton class which exposes 2 dictionaries which hold single byte and double byte MSIL.

PDBDataReader: This module is responsible for reading the program debug data base file (.pdb) of an assembly. It uses OLE32 native calls to read this file.

Following are the components in this module:

  • PDBReader: This component is responsible for invoking ole32 native calls to fetch the source information from pdb file for specific method. This component collects all the data viz. Source Lines, Columns, End lines, Source code location, etc.
  • NativePDBReaderWrapper: This component wraps all the native calls to ole32.dll. The native calls are used to get all the source information which is stored in the custom format file called .pdb (Program Database).

Following are few activities which I will be carrying out in the next couple of days if possible:

To Do

  • Improve design of the classes wherever necessary.
  • Add features if needed and if feasible
  • Make it bug free ;)
  • Central repositories of error strings either in app.config or resource.
  • Unit test cases, although I have done few system tests to test the tool. Its working fine for all production code.
  • Compiler warnings and FxCop fixes if any.

Feel Free To

  • Submit bug via blog comments or email. Do not forget to provide as many details as possible.
  • Improving the design/code. Kindly, keep me updated on the same.
  • Fixing bug yourself. Again keep me updated.
  • Any better ways to do? Add a comment.

References

Hope you liked it.

Your comments/votes are much appreciated. Feel free to get back for any clarification required.

Happy coding. Thanks! Smile | :)

Filed under: C#, CodeProject, Dotnet, Tools
Tagged: .NET, Analyzer, blog, C#, codeproject, Dotnet, tips, Tool
Image 13 Image 14 Image 15 Image 16 Image 17 Image 18 Image 19 Image 20

 

License

This article, along with any associated source code and files, is licensed under The GNU Lesser General Public License (LGPLv3)


Written By
Software Developer (Senior) Siemens
India India
A .net developer since 4+ years, wild, curious and adventurous nerd.

Loves Trekking/Hiking, animals and nature.

A FOSS/Linux maniac by default Wink | ;)

An MVP aspirant and loves blogging -> https://adventurouszen.wordpress.com/

Comments and Discussions

 
QuestionNeeded a tool for .net version 4.6.1 Pin
manjuv@codeproject24-Apr-17 23:29
manjuv@codeproject24-Apr-17 23:29 
GeneralMy vote of 3 Pin
peteSJ2-Aug-13 20:35
peteSJ2-Aug-13 20:35 
GeneralMy vote of 4 Pin
John Brett11-Feb-13 2:51
John Brett11-Feb-13 2:51 
GeneralRe: My vote of 4 Pin
zenwalker198511-Feb-13 15:04
zenwalker198511-Feb-13 15:04 
GeneralMy vote of 1 Pin
peteSJ25-Dec-11 14:14
peteSJ25-Dec-11 14:14 
GeneralRe: My vote of 1 Pin
zenwalker198525-Dec-11 16:47
zenwalker198525-Dec-11 16:47 
GeneralRe: My vote of 1 Pin
John Brett11-Feb-13 2:49
John Brett11-Feb-13 2:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.