Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Domain Walker

0.00/5 (No votes)
22 Jan 2006 1  
An object that allows you to explore the topology of the internet.

What is it?

DomainWalker in action DomainWalker is an object that discovers domains reachable from a URL.  Unlike traditional crawlers and site downloaders that identify all reachable URLs on a page, DomainWalker explores a subset of the world wide web's topology by targeting root URLs only.  DomainWalker guarantees that its walk will complete in a finite amount of time by ensuring that duplicate domains are never crawled.

DomainWalker is an example of a WebResourceProvider and uses my StringParser utility class, both of which are published elsewhere at this site.  As an aside, the demo application shows how to spin off a worker thread from a GUI and have it update the GUI in a safe manner.  This is done by having the app respond to events fired by the worker thread.

How do I use it?

You use DomainWalker by initializing it, calling its Walk() method, and getting its results.

  1. Initialize the DomainWalker instance
    // Initialize the DomainWalker
    
    DomainWalker dw = new DomainWalker();
    dw.StartUrl = "www.ravib.com";
    dw.MaxDepth = 3;
  2. Do the walk
    // Do walk
    
    dw.walk();
  3. Get the results
    // Get results
    
    HashTable domainTree = dw.DomainTree;
    printHashTableAsTree (domainTree);   // left as an exercise to the reader

Getting DomainWalker's results

You retrieve DomainWalker's results by accessing its DomainTree property at the end of the walk and/or responding to the OnNotifyUrlBeingTraversed event.

DomainTree property

DomainWalker's result is a tree of discovered domains obtained from the object's DomainTree property. The tree is actually a nested Hashtable, where each collection of child nodes is stored in a new Hashtable.

Domain tree retrieved by DomainWalker

OnNotifyUrlBeingTraversed event

It may be more convenient to get at DomainWalker's results by being notified every time a new URL is discovered. This is done by subscribing to the object's OnNotifyUrlBeingTraversed event and is the approach taken by the demo app. Domain discovery notifications are received by registering a OnNotifyUrlBeingTraversed delegate which has the following signature:

  /// <summary>

  /// Notifies an observer when a url is about to be traversed.

  /// </summary>

  /// <param name="strParentUrl">The parent url (may be null).</param>

  /// <param name="strUrlBeingTraversed">The url being traversed.</param>

  /// <param name="nCurrentDepth">Current traversal depth.</param>

  /// <param name="nDomains">Number of domains discovered so far.</param>

  /// <param name="tsElapsed">Time elapsed since start of crawl.</param>

  public delegate void OnNotifyUrlBeingTraversed
    (string strParentUrl,
     string strUrlBeingTraversed,
     int nCurrentDepth,
     int nDomains,
     TimeSpan tsElapsed);

The demo app responds to the OnNotifyUrlBeingTraversed event by adding strUrlBeingTraversed to a list box. The string is indented by an appropriate number of spaces proportional to nCurrentDepth. Other useful information such as the elapsed walk time (tsElapsed) is displayed in a label control.

OnNotifyWalkCompleted event

DomainWalker also fires the OnNotifyWalkCompleted event at the end of a walk. The OnNotifyWalkCompleted delegate has the following signature:

  /// <summary>

  /// Notifies an observer when the walk has completed.

  /// </summary>

  /// <param name="nDomains">Number of domains discovered.</param>

  /// <param name="tsElapsed">Time taken to complete crawl.</param>

  public delegate void OnNotifyWalkCompleted
    (int nDomains,
     TimeSpan tsElapsed);

Revision History

  • 22 Jan 2006
    • Corrected DomainWalkerForm delegates to ensure controls are accessed from the GUI thread. (Thanks, Birgir K!)
    • Added missing .resx file to project.
    • Upgraded project to VS2005.
  • 15 Jan 2006
    Initial version.

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