Click here to Skip to main content
Licence Ms-PL
First Posted 5 May 2006
Views 128,842
Downloads 631
Bookmarked 138 times

Generic Singleton Pattern using Reflection, in C#

By | 9 Jun 2009 | Article
Use a generic class to create all your Singletons.

Introduction

This article presents a generic class that uses Reflection to create a single instance of any class. It can be used to instantiate Singletons from public classes with non-public constructors, and Singletons from non-public classes as well.

The main motivation for this solution is to have the Singleton pattern written in only one place, reusable by all classes that need to follow that pattern.

Simply use Singleton<T>.Instance to get a Singleton instance.

Background

There are already very good articles (Lazy vs. Eager Init Singletons / Double-Check Lock Pattern and Implementing the Singleton Pattern in C#) that describe the challenges and caveats of developing a Singleton in .NET; I won't go into the details again. There are also some Singletons using Generics here and there (see Generic Singleton Provider as an example), but none were solving the problem of creating a single instance of a class with a non-accessible constructor (something that all Singletons should have).

Design

Singleton<T> uses the Double-Check Lock Pattern rather than static type initialization. The motivation behind this choice is that error-recovery and retries after a type-initializer failure are impossible in .NET (once a type-initializer fails, trying to create a class instance will always throw an exception, even if the error was meanwhile resolved). The chosen implementation strategy provides more flexibility for better error recovery.

Singleton<T> also forces the target class constructor to be private or protected to prevent casual class instantiation.

Singleton<T>

This is the generic Singleton class:

public static class Singleton<T>
       where T : class
{
  static volatile T _instance;
  static object _lock = new object();

  static Singleton()
  {
  }

  public static T Instance
  {
    get
    {
      if (_instance == null)
        lock (_lock)
        {
          if (_instance == null)
          {
            ConstructorInfo constructor = null;

            try
            {
              // Binding flags exclude public constructors.
              constructor = typeof(T).GetConstructor(BindingFlags.Instance | 
                            BindingFlags.NonPublic, null, new Type[0], null);
            }
            catch (Exception exception)
            {
              throw new SingletonException(exception);
            }

            if (constructor == null || constructor.IsAssembly)
            // Also exclude internal constructors.
              throw new SingletonException(string.Format("A private or " + 
                    "protected constructor is missing for '{0}'.", typeof(T).Name));

            _instance = (T)constructor.Invoke(null);
          }
        }

      return _instance;
    }
  }
}

The type parameter T represents the class that must be instantiated like a Singleton.

Singleton<T> uses the class constraint to force the type parameter to be a reference type. The new() constraint, which forces the type parameter to have a public parameterless constructor, is not used here, because the goal of the generic class is to provide single instance creation for classes with non-public constructors.

_instance is defined using the volatile keyword, and a dummy object, _lock, is used to synchronize threads with the double-check lock pattern. See Lazy vs. Eager Init Singletons / Double-Check Lock Pattern for the details of this strategy.

Singleton<T> has a static constructor: it simply makes sure that static fields initialization occurs when the Instance property is called the first time and not before.

The initialization of the _instance field is made by Reflection using the type parameter. typeof(T) first gets the type of the type parameter, then GetConstructor gets its constructor, and Invoke finally returns the new instance. The BindingFlags tells GetConstructor to search the constructor in the non-public (BindingFlags.NonPublic) instance members (BindingFlags.Instance) of the type. The search doesn't include public members, and the last if statement excludes internal constructors, as it is a best practice to keep Singleton constructors private or protected (you don't want anybody else to instantiate these classes).

As you can presume, GetConstructor can throw an exception if the type parameter is not a class, as the class constraint also allows interface, delegate, or array types. There's just so much you can do with these constraints.

Using Singleton<T>

Another best practice of the Singleton pattern is to have every Singleton return its own single instance. This is usually done by a static property named Instance. The following code snippet shows how to use Singleton<T> in a property.

public static SingleInstanceClass Instance
{
  get
  {
    return Singleton<SingleInstanceClass>.Instance;
  }
}

Demo

The demo shows the life cycle of the SingleInstanceClass singleton. The code is self-explanatory:

// SingleInstanceClass is a Singleton.

public class SingleInstanceClass
{
  // Private constructor to prevent
  // casual instantiation of this class.
  private SingleInstanceClass() 
  {
    Console.ForegroundColor = ConsoleColor.Red;
    Console.WriteLine("SingleInstanceClass created.");
    Console.ResetColor();

    _count++;
  }
  
  // Gets the single instance of SingleInstanceClass.
  public static SingleInstanceClass Instance 
  { 
    get { return Singleton<SingleInstanceClass>.Instance; } 
  }

  public static int Count { get { return _count; } }
  public static void DoStatic()
      { Console.WriteLine("DoStatic() called."); }
  public void DoInstance()
      { Console.WriteLine("DoInstance() called."); }

  // Instance counter.
  private static int _count = 0;
}

class Program
{
  static void Main()
  {
    // Show that initially the count is 0; calls
    // a static property which doesn't create the Singleton.
    Console.WriteLine("---");
    Console.WriteLine("Initial instance count: {0}", 
                      SingleInstanceClass.Count);

    // Similar to above; show explicitly that calling
    // a static methods doesn't create the Singleton.
    Console.WriteLine("---");
    Console.WriteLine("Calling DoStatic()");
    SingleInstanceClass.DoStatic();
    Console.WriteLine("Instance count after DoStatic(): {0}", 
                      SingleInstanceClass.Count);

    // Show that getting the instance creates the Singleton.
    Console.WriteLine("---");
    Console.WriteLine("Calling DoInstance()");
    SingleInstanceClass.Instance.DoInstance();
    Console.WriteLine("Instance count after first DoInstance(): {0}", 
                      SingleInstanceClass.Count);

    // Show that getting the instance
    // again doesn't re-instantiate the class.
    Console.WriteLine("---");
    Console.WriteLine("Calling DoInstance()");
    SingleInstanceClass.Instance.DoInstance();
    Console.WriteLine("Instance count after second DoInstance(): {0}", 
                      SingleInstanceClass.Count);
    Console.ReadKey();
  }
}

The program output is:

Running the Singleton demo...

Conclusion

There are many ways to implement the Singleton pattern in C#. Singleton<T> uses Reflection to make it a write-once-for-all solution.

History

  • 2009-04-18: Refactored to use the double-check lock pattern and the volatile keyword rather than a type-initializer. Also added SingletonException.
  • 2009-06-07: Replaced typeof(T).InvokeMember with typeof(T).GetConstructor to support the Compact Framework.

License

This article, along with any associated source code and files, is licensed under The Microsoft Public License (Ms-PL)

About the Author

Martin Lapierre

Web Developer

Canada Canada

Member



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
GeneralCheck out my idea. [modified] PinmemberSvetlin Ralchev0:46 28 Jul '09  
GeneralRe: Check out my idea. PinmemberMartin Lapierre2:30 28 Jul '09  
GeneralRe: Check out my idea. PinmemberSvetlin Ralchev2:40 28 Jul '09  
GeneralAlternative for Compact Framework users PinmemberRobert.AC.Allen3:13 3 Jun '09  
GeneralRe: Alternative for Compact Framework users PinmemberMartin Lapierre6:30 7 Jun '09  
QuestionWhat happens If . . .? PinmemberKrazyKZ9:38 12 May '09  
AnswerRe: What happens If . . .? PinmemberMartin Lapierre13:38 12 May '09  
QuestionWhat happens If . . .? PinmemberKrazyKZ9:32 12 May '09  
GeneralI find the nested method better and easier to understand Pinmemberbinarycheese9:39 2 May '09  
GeneralRe: I find the nested method better and easier to understand PinmemberMartin Lapierre10:02 2 May '09  
GeneralNice approach Pinmemberdarrellp1:35 23 Apr '09  
QuestionWhy not use a Dependency Injection Container? PinmemberJeff Doolittle18:41 20 Apr '09  
AnswerRe: Why not use a Dependency Injection Container? PinmemberMartin Lapierre5:05 21 Apr '09  
GeneralRe: Why not use a Dependency Injection Container? PinmemberKrazyKZ9:24 12 May '09  
RantEasier way Pinmemberinet91120:30 26 Aug '08  
GeneralRe: Easier way PinmemberMartin Lapierre1:56 27 Aug '08  
GeneralNot convinced PinmemberPIEBALDconsult18:53 14 Jun '08  
GeneralRe: Not convinced PinmemberMartin Lapierre1:48 15 Jun '08  
GeneralRe: Not convinced PinmemberPIEBALDconsult7:22 15 Jun '08  
GeneralRe: Not convinced PinmemberMartin Lapierre11:35 15 Jun '08  
Like I said, there's nothing in .NET (maybe beside obfuscation, remoting or offering your service classes from Web Services) that you can do to prevent a developer to instanciate more than one instance of a class.
 
With reflection, you can tweak any private state member, instance members, etc in order to be able to create more than one instance of a class.
 
What Singleton<T> offers you is a standard way to use the singleton pattern, but it is in no mean meant to prevent developers to hack the system you may build in .NET Smile | :)
GeneralRe: Not convinced Pinmembergiammin22:27 20 Apr '09  
AnswerRe: Not convinced [modified] PinmemberMartin Lapierre4:16 21 Apr '09  
GeneralRe: Not convinced Pinmembergiammin7:15 21 Apr '09  
GeneralRe: Not convinced PinmemberErich Ledesma3:45 21 Apr '09  
GeneralRe: Not convinced PinmemberMartin Lapierre4:57 21 Apr '09  

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
Web02 | 2.5.120529.1 | Last Updated 9 Jun 2009
Article Copyright 2006 by Martin Lapierre
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid