Click here to Skip to main content
6,595,854 members and growing! (19,290 online)
Email Password   helpLost your password?
Web Development » ASP » General     Intermediate

ASP Code Analyzer

By fschudel

A simple tool to find unused subs, functions and variables in your ASP code.
C#, Windows, .NET 1.1, ASP, IIS 5.1, IIS 6, VS.NET2003, Dev
Posted:16 Jul 2005
Updated:6 Dec 2006
Views:59,128
Bookmarked:67 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
Prize winner in Competition "ASP.NET Jun 2005"
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
15 votes for this article.
Popularity: 5.43 Rating: 4.61 out of 5
1 vote, 6.7%
1

2
1 vote, 6.7%
3
3 votes, 20.0%
4
10 votes, 66.7%
5

Introduction

The goal of this tool is to check an ASP project/folder for unused code elements. These elements include unused constants, global variables, functions, subs, and local variables. This comes in very handy if you undertake large changes in a project, or use include files from previous ASP projects and want to be sure, that you do not deploy unnecessary code.

This article will not describe in detail how the code works, since the main topic is how to get rid of unused elements, and the code is actually written in C#. It will, however, give you an understanding of how the tool operates and what its limitations are.

Using the analyzer

The ASP Code Analyzer is very easy to use. First download the executable, unzip it and run ASPCodeAnalyzer.exe. Next you can browse for the directory that contains your ASP project. Hit the 'Go' button and the analyzer will do its work. I would like to stress on the point that the analyzer will not change your files. It will merely point to the portions in your code where there are unused code elements.

If you have UltraEdit32 installed in your machine and if you double click on the findings list, the tool will automatically start UltraEdit32 and open the file on the corresponding code line. If you use a different editor, you can use the File/Options dialog to define your editor and the parameters used to open a specified file on a given line.

Your code has to be syntactically correct. Otherwise the analyzer will not work properly.

How the analyzer operates

Pass one

  • First the analyzer lists all the .asp and .inc files in the given directory and all its sub directories and puts them in a queue.
  • Now all the files in the queue are read. If the analyzer encounters include statements, it adds the referenced file to the queue if it's not already in it. If the included file does not exist on the hard disk, the analyzer writes a message to the error list at the bottom of the window.
  • While reading a file it strips all the HTML Code, all comments (including rem comments) and all texts that are surrounded by double quotes. The parser is smart enough to treat two consecutive double quotes as one single double quote.
  • Now that only the code is left of the original file, the analyzer creates an internal "code tree":
    • constants
    • global variables
    • global code
    • subs/functions
      • local variables
      • code
    • classes
      • methods
        • local variables
        • code

    The analyzer does not test whether classes are used in the code. Nor is it able to test whether specific members and methods of a class are used. It does however check, if local variables are used.

  • The local variables of subs, functions and methods are tested for usage while building the code tree. This is done by testing if the variable name is used in the code block.

Pass two

Now for the tricky part: Finding unused global variables and subs/functions.

  • First, all elements are considered unused.
  • Now all the files are processed again in groups. A group consists of a file plus all referenced files.
  • All elements of the current file group are examined. If the name of an element is used anywhere in the code of the file group, that element is considered used.

By examining file groups instead of files, an include file is tested in all possible contexts.

Matching the elements against the code

Let's say the analyzer wants to know if the sub WriteTd is used in a code block, then the following statements are matched:

  call WriteTd( someVar)
  call WriteTd ( someVar)

The following statements do not match, since the sub's name is actually just a part of the whole identifier:

   call WriteTd2( someVar)
   call MyWriteTd( someVar)

Limitations

Be warned: Due to it's heuristic nature, the algorithm is probably not able to find all the unused elements in your code. On the positive side all its findings should really be unused elements.

The analyzer is unable to detected the following:

  function test
    dim unusedVar
    unusedVar = 12
  end function

Although the variable unusedVar is technically useless, since it is not used for processing anywhere, the analyzer will not notify you. Generally speaking, the analyzer will only point out those code blocks that you can delete without breaking the code.

Also, if you use local variables that shadow global variables the global variables are always considered used.

  dim unusedGlobal

  function test
    dim unusedGlobal ' Shadows the global variable

    unusedGlobal = 12
    Response.Write( unusedGlobal)
  end function

Variables should not be defined in more than one line. In the following code:

   dim a,b,c, _
       d,e,f

the analyzer will only identify a, b and c as variables.

Conclusion

Despite its shortcomings the ASP Code Analyzer should give you a good impression on how clean your code actually is.

History

  • July 17th, 2005 - Initial release.
  • July 23rd, 2006 - Adjusted code to correct biggun's false positive.
  • December 6th, 2006 - Added handling of // comments.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

fschudel


Member

Occupation: Web Developer
Location: Switzerland Switzerland

Other popular ASP articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 16 of 16 (Total in Forum: 16) (Refresh)FirstPrevNext
GeneralEnforcing CodingStandards PinmemberVasudevan Deepak Kumar8:14 6 Dec '06  
GeneralRe: Enforcing CodingStandards Pinmemberfschudel21:54 6 Dec '06  
GeneralRelated Tool PinmemberVasudevan Deepak Kumar8:13 6 Dec '06  
GeneralError Pinmembervalamas_salmat19:26 5 Dec '06  
GeneralRe: Error Pinmemberfschudel21:32 5 Dec '06  
GeneralVirtual Folders (IIS) vs FileSystem base approach Pinmembertobias4216:25 4 Dec '06  
GeneralRe: Virtual Folders (IIS) vs FileSystem base approach Pinmemberfschudel9:17 4 Dec '06  
Generalthanks. PinmemberMagallanes200612:22 8 Aug '06  
GeneralCheck unused CONST Pinmembertkdmaster5:58 25 Jul '06  
GeneralRe: Check unused CONST Pinmemberfschudel22:35 28 Jul '06  
QuestionFalse positive [modified] Pinmemberbiggun15:15 13 Jul '06  
AnswerRe: False positive Pinmemberfschudel8:06 15 Jul '06  
GeneralRe: False positive Pinmemberbiggun2:41 19 Jul '06  
GeneralThanks! Pinmemberwk63314:19 12 Jul '06  
GeneralInteresting tool PinmemberDon Miguel22:31 28 Jul '05  
GeneralRe: Interesting tool PinmemberHavoxx6:55 3 Aug '05  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 6 Dec 2006
Editor: Smitha Vijayan
Copyright 2005 by fschudel
Everything else Copyright © CodeProject, 1999-2009
Web16 | Advertise on the Code Project