Click here to Skip to main content
Licence CPOL
First Posted 19 Nov 2008
Views 13,833
Downloads 34
Bookmarked 16 times

A DiagnosticDictionary

By | 19 Nov 2008 | Article
Making the "the given key was not present" message more informative.

Introduction

I hope I am not the only person to have ever experienced the dreaded KeyNotFoundException message:

Unhandled Exception: System.Collections.Generic.KeyNotFoundException: The given key was not present in the dictionary.

This leaves everyone wondering, what was the key? What was the dictionary?

Certainly, the programmer could wrap every line of code that uses a dictionary indexer with a try-catch block, or at least some outer method, but even then, the exception does not tell you the key that caused the exception. So, this is a very short article presenting a simple implementation which overrides the Dictionary<> class. I also look at whether extension methods are suitable to achieve the desired behavior.

The DiagnosticDictionary Class

To help with this problem, I've created a DiagnosticDictionary that overrides (with the loathsome "new" keyword) the indexer of the generic dictionary. It catches KeyNotFoundException, and re-throws it with an attempt to describe the key and the dictionary name, which can be supplied in the constructor. As a bonus, I've also added a Tag property that can be used to associate any object with the dictionary.

Implementation

Copy and paste the following code, and replace your Dictionary constructor with DiagnosticDictionary.

using System;
using System.Collections.Generic;

namespace Clifton.Collections.Generic
{
  /// <summary>
  /// A dictionary with an indexer that produces an informative
  /// KeyNotFoundException message.
  /// </summary>
  public class DiagnosticDictionary<TKey, TValue> : Dictionary<TKey, TValue>
  {
    protected object tag;
    protected string name = "unknown";

    /// <summary>
    /// Gets/sets an object that you can associate with the dictionary.
    /// </summary>
    public object Tag
    {
      get { return tag; }
      set { tag = value; }
    }

    /// <summary>
    /// The dictionary name. The default is "unknown". 
    /// Used to enhance the KeyNotFoundException.
    /// </summary>
    public string Name
    {
      get { return name; }
      set { name = value; }
    }

    /// <summary>
    /// Parameterless constructor.
    /// </summary>
    public DiagnosticDictionary()
    {
    }

    /// <summary>
    /// Constructor that takes a name.
    /// </summary>
    public DiagnosticDictionary(string name)
    {
      this.name = name;
    }

    /// <summary>
    /// Indexer that produces a more useful KeyNotFoundException.
    /// </summary>
    public new TValue this[TKey key]
    {
      get
      {
        try
        {
          return base[key];
        }
        catch (KeyNotFoundException)
        {
          throw new KeyNotFoundException("The key '" + key.ToString() + 
             "' was not found in the dictionary '"+name+"'");
        }
      }

      set { base[key] = value;}
    }
  }
}

Given the test code:

DiagnosticDictionary<string, string> d2 = 
       new DiagnosticDictionary<string, string>("Test");
string b = d2["b"];

the DiagnosticDictionary will throw a more useful exception:

Unhandled Exception: System.Collections.Generic.KeyNotFoundException: The key 
   'b' was not found in the dictionary 'Test'

Note that it now tells you the key and the dictionary name.

Alternate Implementation: Extension Methods

The following illustrates using an Extension Method (courtesy of CPian Wouter Ballet, see the article comments below):

public static class DiagnosticDictionary
{
  public static TValue DiagItem<TKey, TValue>(this IDictionary<TKey, 
                                              TValue> d, TKey key)
  {
    try
    {
      return d[key];
    }
    catch (KeyNotFoundException)
    {
      throw new KeyNotFoundException("The key '" + key + 
          "' was not found in the dictionary.");
    }
  }
}

You will, though, have to change how you index the key:

Dictionary<string, string> d2 = new Dictionary<string, string>();
string b = d2.DiagItem("b");

So, I think it's more an architectural choice that one needs to make early in the project. In my opinion, if you are starting a project, then using an Extension Method makes more sense than refactoring all the indexers in an existing project.

Why Wouldn't You Use DiagnosticDictionary?

First is the performance hit of going through the DiagnosticDictionary indexer, which then calls the base class indexer.

Second is security. Let's say, you have a dictionary defined like (dubious at best, but it's an example):

Dictionary<Hash password, Rights rights>

You certainly wouldn't want the exception to emit the password key!

What About That ToString() ?

The call to key.ToString() is fine for value types and strings. If you have a more complex structure or class for the key, then you might consider overriding the ToString() method to provide a more informative description of the contents of the struct/class.

Conclusion

Hopefully, people will find this implementation as useful as my client's QA folks, the DB admin guru, devs, and even myself. :)

Special thanks to CPian Wouter Ballet for showing me how to use Generics in an Extension Method.

License

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

About the Author

Marc Clifton



United States United States

Member

Marc is the creator of two open source projets, MyXaml, a declarative (XML) instantiation engine and the Advanced Unit Testing framework, and Interacx, a commercial n-tier RAD application suite.  Visit his website, www.marcclifton.com, where you will find many of his articles and his blog.
 
Marc lives in Philmont, NY with his son Ian.

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

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 1 PinmemberJoe Sonderegger3:29 25 Nov '08  
GeneralRe: My vote of 1 PinprotectorMarc Clifton2:45 26 Nov '08  
Well, just because you don't understand doesn't mean you should vote a 1. I thought I clearly explained that the purpose of the DiagDictionary is to provide the developer/tester with more useful information than the general "key not found" exception that .NET throws.
 
Marc
 

GeneralThoughts PinmemberPIEBALDconsult3:14 20 Nov '08  
GeneralRe: Thoughts Pinmembersupercat98:58 20 Nov '08  
GeneralSome suggestions... PinmemberWouter Ballet21:50 19 Nov '08  
GeneralRe: Some suggestions... PinprotectorMarc Clifton1:16 20 Nov '08  
GeneralRe: Some suggestions... PinmemberWouter Ballet1:32 20 Nov '08  
GeneralRe: Some suggestions... PinprotectorMarc Clifton2:07 20 Nov '08  
GeneralRe: Some suggestions... PinmemberPIEBALDconsult3:00 20 Nov '08  

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web03 | 2.5.120604.1 | Last Updated 19 Nov 2008
Article Copyright 2008 by Marc Clifton
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid