It's easy enough to find all your external dependencies. Just run the program and open up the Modules info window. But how can I find all my internal dependencies? I know the program keeps a list of all the units, because I've traced my way through the initialization code a time or two. But is there any easy way to access this list from the debugger?
|
|
Have you looked at Pascal Analyzer or the free limited version, Icarus, from Peganza Software? They will create "uses reports" telling you what module uses what others, so that should give you the info you're after. Marc |
||
|
|
|
|
I know of at least two ways you could try to get a view of all the units used in your project
|
||
|
|
|
|
There is a (rather old) utility called UsgParse. It builds a treeview of all units referenced by a project. I found a copy on the NexusDB site via http://coding.derkeiler.com/Archive/Delphi/borland.public.delphi.thirdpartytools.general/2004-03/0231.html source: http://www.nexusdb.com/downloads/USGParse/USGParse_src.zip binary: http://www.nexusdb.com/downloads/USGParse/USGParse.zip |
||
|
|
|
|
GExperts has a Project Dependencies tool. I have used it before when trying to track down used units. You can't search in it but you can export the list to a CSV file and search there. This also only lists what is in the uses section. If you have a module included that is not being used it will still show up. |
||
|
|
|
|
I use the GExperts Project Dependencies. Here's the help: Project Dependencies The project dependency expert enables you to see what units a particular unit uses, and in turn what units use a particular unit. When this expert is activated, it parses all of the current project's source code for uses clauses and builds up a list of dependencies. To view the dependency information for a particular unit, click on it in the left pane. The right pane will contain the dependency information. Indirect dependencies are units that are used by used units of a particular unit. You can refresh the dependency information at any time by clicking the refresh button on the toolbar and you can sort the file listing by clicking on the column headers. OTOH, you can also use free Peganza's ICARUS as a more detailed reporting tool but less interactive... |
||
|
|
|
|
Another, but rather cumbersome way, is to generate a map file, it contains a list of all units used in a program. |
||
|
|

