Click here to Skip to main content
6,593,923 members and growing! (12,933 online)
Email Password   helpLost your password?
Languages » C# » General     Intermediate License: A Public Domain dedication

Single Process Instance Object

By Michael Potter

An object that enforces a rule that only one instance of a program can be running at a time.
C#, Windows, .NET 1.0, Visual Studio, Dev
Posted:9 Oct 2002
Views:134,864
Bookmarked:67 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
43 votes for this article.
Popularity: 7.52 Rating: 4.60 out of 5
4 votes, 10.8%
1
1 vote, 2.7%
2

3
6 votes, 16.2%
4
26 votes, 70.3%
5

Introduction

Enforcing a rule that only one instance of process is running is an interesting task. There are many ways to code the algorithm on Win32. I solved the problem by creating a reusable C# class that encapsulates one of the quirks of the Win32 API and makes the identification of another "same" process more certain.

This article was triggered (and borrows heavily from) another article written by Marc Clifton, "Detect if another process is running and bring it to the foreground" which is also available on CodeProject. When implementing Marc's code I ran into a few issues:

  • The code was not in an easily reusable format.
  • Identifying processes by name alone can be error prone when the name is common.
  • The multi-threaded nature of Win32 could conceivably have an undesirable effect on the reporting of an initial "same" process instance.
  • Long assembly names trigger partially hidden process names in Win32.

Solution

In order to enhance the detection of other instances of a process, I decided to use a named mutex synchronization object. By definition, Win32 dictates that only one instance of a named mutex will exist on a system and any given time. Win32 further guarantees that only one thread will own the mutex at any given time. Since a mutex can cross the process boundary, it became a good choice for identifying existing processes.

I encapsulated the mutex in a class (SingleProgramInstance) and had the constructors attempt to create and gain ownership of the mutex immediately. Failure to gain ownership indicates the existence of another "same" process currently running. If the object successfully acquires ownership the program will hold onto it during its operation and therefore, announce to the system that it is the initial one and only process. A property (IsSingleInstance) is used to indicate this state.

There are two constructors for the object. One of the constructors accepts no parameters and uses the current assembly name to name the mutex. Because assembly names can be common between different applications, I created a second constructor that accepts a string parameter. The object appends this string to the assembly name to help differentiate it from other applications. The programmer can pass in a few meaningless characters to greatly reduce the likelihood of name duplication.

UI Concerns

When another "same" process is identified, it is usually nice to present the previous instance to the user before terminating the redundant process. I separated this code from the detection code because it may not be desirable in all circumstances (i.e. tray icon applications). Essentially, I ask Windows for the all of the processes that match the current process name and use some Win32 Interop calls to restore and bring the process to the foreground. Herein lies a small quirk with Win32.

Only the first 15 characters of a process name are made available when you ask for a process name. Unfortunately, when you ask for all of the processes of a certain name (via Process.GetProcessesByName), Windows uses the whole name (which may exceed 15 characters) when performing the test. That leaves us the choice of looping through all the processes ourselves and testing only the first 15 characters or find out our full process name and ask windows to return only those that match. Since the first 15 characters may not be unique enough for a good test, I choose the second approach. Luckily, it seems that the assembly name and the full (hidden) process name are one and the same. Using the assembly name, Win32 returns only the processes that match the full process name and I can easily ignore my own process by testing the process id.

Cleanup

Since this object is reliant on a system resource (mutex) a good method for clean up should be employed. I chose to use the IDisposable interface to guarantee a deterministic release of the mutex object. When used properly, the mutex will be released immediately upon program termination so that an additional process can again be started. This should happen anyway due to the nature of a mutex but that is no excuse for sloppy code. Below is a example of the proper use of this object. Notice that the using statement neatly wraps the Application.Run().

using SpecialServices;

....

[STAThread]
static void Main() 
{
    using(SingleProgramInstance spi = new SingleProgramInstance("x5k6yz"))
    {
        if (spi.IsSingleInstance)
        {
            Application.Run(new Form1());
        }
        else
        {
            spi.RaiseOtherProcess();
        }
    }
}

....

Object Source

using System;
using System.Diagnostics;
using System.Runtime.InteropServices;
using System.Threading;
using System.Reflection;

namespace SpecialServices
{
    //SingleProgamInstance uses a mutex synchronization 

    //object to ensure that only one copy of process is running 

    //at a particular time.  It also allows for UI identification

    // of the intial process by bringing that window to the foreground.

public class SingleProgramInstance : IDisposable
{

    //Win32 API calls necesary to raise an unowned processs main window

    [DllImport("user32.dll")] 
    private static extern bool SetForegroundWindow(IntPtr hWnd);
    [DllImport("user32.dll")] 
    private static extern bool ShowWindowAsync(IntPtr hWnd,int nCmdShow);
    [DllImport("user32.dll")] 
    private static extern bool IsIconic(IntPtr hWnd);

    private const int SW_RESTORE = 9;

    //private members 

    private Mutex _processSync;
    private bool _owned = false;


    public SingleProgramInstance()
    {   
        //Initialize a named mutex and attempt to

        // get ownership immediately 

        _processSync = new Mutex(
            true, // desire intial ownership

            Assembly.GetExecutingAssembly().GetName().Name,
            out _owned);
    }

    public SingleProgramInstance(string identifier)
    {   
        //Initialize a named mutex and attempt to

        // get ownership immediately.

        //Use an addtional identifier to lower

        // our chances of another process creating

        // a mutex with the same name.

        _processSync = new Mutex(
            true, // desire intial ownership

            Assembly.GetExecutingAssembly().GetName().Name + identifier,
            out _owned);
    }

    ~SingleProgramInstance()
    {
        //Release mutex (if necessary) 

        //This should have been accomplished using Dispose() 

        Release();
    }

    public bool IsSingleInstance
    {
        //If we don't own the mutex than

        // we are not the first instance.

        get {return _owned;}
    }

    public void RaiseOtherProcess()
    {
        Process proc = Process.GetCurrentProcess();
        // Using Process.ProcessName does not function properly when

        // the actual name exceeds 15 characters. Using the assembly 

        // name takes care of this quirk and is more accruate than 

        // other work arounds.

        string assemblyName = 
            Assembly.GetExecutingAssembly().GetName().Name;
        foreach (Process otherProc in 
            Process.GetProcessesByName(assemblyName))
        {
            //ignore "this" process

            if (proc.Id != otherProc.Id)
            {
                // Found a "same named process".

                // Assume it is the one we want brought to the foreground.

                // Use the Win32 API to bring it to the foreground.

                IntPtr hWnd = otherProc.MainWindowHandle;
                if (IsIconic(hWnd))
                {
                    ShowWindowAsync(hWnd,SW_RESTORE);
                }
                SetForegroundWindow(hWnd);
                break;
            }
        }
    }

    private void Release()
    {
        if (_owned)
        {
            //If we own the mutex than release it so that

            // other "same" processes can now start.

            _processSync.ReleaseMutex();
            _owned = false;
        }
    }

#region Implementation of IDisposable
    public void Dispose()
    {
        //release mutex (if necessary) and notify 

        // the garbage collector to ignore the destructor

        Release();
        GC.SuppressFinalize(this);
    }
#endregion
}
}

Summary

I would like to thank Marc Clifton for his insightful article that drove me to create the above solution. Hopefully, others will expand upon what we have done to produce an even more solid solution.

License

This article, along with any associated source code and files, is licensed under A Public Domain dedication

About the Author

Michael Potter


Member

Occupation: Chief Technology Officer
Location: United States United States

Other popular C# articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 59 (Total in Forum: 59) (Refresh)FirstPrevNext
GeneralGood process but I 've bug Pinmembertheanhsts17:04 24 Jan '08  
GeneralNice article, but one bug [modified] Pinmemberjeffb429:43 8 Nov '06  
GeneralRe: Nice article, but one bug Pinmemberjeffb429:46 8 Nov '06  
GeneralRe: Nice article, but one bug PinmemberBalazs Zoltan3:56 9 Jan '07  
GeneralRe: Nice article, but one bug Pinmemberjeffb4212:05 15 Mar '07  
GeneralRe: Nice article, but one bug Pinmembermelchizedek9:23 1 Jun '07  
GeneralRe: Nice article, but one bug PinmemberThe Last Gunslinger16:05 18 Jul '07  
GeneralVery good project PinmemberFlow843:20 13 Jul '06  
GeneralHow to implement... Pinmemberh4rdw4re11:29 19 Jun '06  
Generalfinalizer Pinmemberswidenerccf11:31 11 May '06  
GeneralRe: finalizer [modified] PinmemberCKret3:53 4 Dec '07  
GeneralRe: finalizer PinmemberAkademy8:17 29 Oct '08  
GeneralShowWindowAsync doesn't work in 98 PinmemberDave Midgley7:14 3 Jan '06  
GeneralThanks PinmemberJoe Pardue5:19 17 Dec '05  
GeneralSuggested improvement PinmemberPhil J Pearson9:26 12 Dec '05  
GeneralRe: Suggested improvement PinmemberStan Shillis9:08 27 Dec '05  
GeneralRe: Suggested improvement PinmemberPhil J Pearson9:27 27 Dec '05  
GeneralRe: Suggested improvement Pinmembersaud_ad1:01 15 Feb '08  
GeneralGood Work Pinmemberjunkmegently15:47 6 Nov '05  
GeneralNice Class PinsussDavid Roh6:27 20 Oct '05  
GeneralVB Pinmemberlaxwy8:43 9 Sep '05  
GeneralTray Icon PinmemberAngelo Dimech1:06 29 Jul '05  
GeneralRe: Tray Icon PinmemberThe_Mega_ZZTer3:57 17 Oct '05  
GeneralRe: Tray Icon Pinmembersaud_ad1:03 15 Feb '08  
GeneralRe: Tray Icon Pinmemberlaufruhe5:23 23 Aug '08  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 9 Oct 2002
Editor: Nishant Sivakumar
Copyright 2002 by Michael Potter
Everything else Copyright © CodeProject, 1999-2009
Web20 | Advertise on the Code Project