Click here to Skip to main content
Click here to Skip to main content

Collision Finder

By , 12 Jul 2006
 

Sample Image

Introduction

The Collision Finder application is intended to help a development team to find colliding references to external DLLs.

Background

During the development of our system, we encountered a problem regarding referencing different versions of external DLLs. The problem gets worse when there is second stage reference from an external DLL to another one, which has a wrong version.

In order to solve this problem, I developed an application that helps the development team to find collisions during integration (rather than at run time).

Using the code

There are three projects:

  1. Console application: Returns a value of 1 if there is any collision, and 0 otherwise. The colliding DLLs will be printed out to the console.
  2. Windows application: This application helps the developer to analyze the external references by showing all the relations between the DLLs that are being used in a specific folder.
  3. Class library: The code beneath….
    • Find: This method uses an input parameter of string type that represents the path to the folder to analyze, and returns true/false according to the existence of a collision.
    • CollisionOutPut: get property, returns a string with all the collisions that were found.
    • Data: returns a dataset of the analyzed data.

How to execute from a console application:

FindCollisions c = new FindCollisions();
bool reply = c.Find(args[0]); /// rgss[0] = your  directory
Console.Write(c.CollisionsOutPut); 
if (reply == false)
   return 1;
else
   return 0;

How to find all the references of the current DLL:

ReferenceCollisionDataSet.DllTableRow dllRow = 
                             _ds.DllTable.NewDllTableRow(); 
// file  = the curent dll/exe path
Assembly asm = Assembly.LoadFile(file);
AssemblyName asmName = asm.GetName(); 
//  the name of the dll/exe
dllRow.Name = asmName.Name;
// the version of the dll
dllRow.Version = asmName.Version.ToString();
_ds.DllTable.Rows.Add(dllRow); 
//run on all the references of the curent Assembly 
foreach (AssemblyName refName in asm.GetReferencedAssemblies())
{ 
  try { 
       //check if this reference is not a system reference 
      if (IsNotSystemRef(refName))
      {
          ReferenceCollisionDataSet.ReferenceTableRow refRow = 
                    _ds.ReferenceTable.NewReferenceTableRow();
          refRow.Dll_Name = asmName.Name; 
          refRow.Reference_Name = refName.Name;
          refRow.Version = refName.Version.ToString();
          _ds.ReferenceTable.Rows.Add(refRow);
      } 
  catch { } 
}

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

nadav42
Web Developer
Israel Israel
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
Generalfinding dll reference in a compact framework applicationmemberDJMJBJM2 Feb '10 - 21:25 
Thanks a lot for this great application.
I would like to know if its possible to use the same in a compact framework application.
 
[I have an HHT application in dotnet compact framework and an Patchupdater application to find out the latest version.
In HHT ,even if we delete all the running programs ,some times a particular dll is getting referenced from some point.
Becuase of this patchupdation application is failing.]
QuestionContext Switch DeadlockmemberWirelessBen18 Jul '06 - 11:33 
AnswerRe: Context Switch DeadlockmemberNadav_h20 Jul '06 - 22:32 
GeneralRe: Context Switch Deadlockmemberhoneysip16 Jul '07 - 0:42 
GeneralRe: Context Switch Deadlockmembermaheshjadhav_it19 Jul '07 - 4:25 

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

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 12 Jul 2006
Article Copyright 2006 by nadav42
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid