![]() |
Web Development »
ASP »
General
Intermediate
ASP Code AnalyzerBy fschudelA 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
|
|
Advanced Search Add to IE Search |
|
|
||||||||||||||||||

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.
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.
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.
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.
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.
Now for the tricky part: Finding unused global variables and subs/functions.
By examining file groups instead of files, an include file is tested in all possible contexts.
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)
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.
Despite its shortcomings the ASP Code Analyzer should give you a good impression on how clean your code actually is.
// comments. | You must Sign In to use this message board. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
General
News
Question
Answer
Joke
Rant
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 |