Determine if only one instance is running: Difference between revisions

From Rosetta Code
Content added Content deleted
m (code revision)
mNo edit summary
Line 26: Line 26:
=={{header|Python}}==
=={{header|Python}}==
===Linux (including cygwin) and Mac OSX Leopard===
===Linux (including cygwin) and Mac OSX Leopard===
'''Language Version:''' 2.5
'''Language Version:''' 2.6


Must be run from an application, not the interpreter.
Must be run from an application, not the interpreter.

Revision as of 20:51, 9 December 2007

Task
Determine if only one instance is running
You are encouraged to solve this task according to the task description, using any language you may know.

This task is to determine if there is only one instance of an application running.

C++

Microsoft Windows

Operating System: Windows 2000 or later.

This line needs to be near the top of the file (or in stdafx.h, if you use one.)

#include <afx.h>

You need a variable of type HANDLE with the same lifetime as your program. Perhaps as a member of your CWinApp object.

HANDLE mutex;

At the earliest possible point in your program, you need to initialize it and perform your check. "MyApp" should be a string unique to your application. See here for full details.

mutex = CreateMutex( NULL, TRUE, "MyApp" );
if ( GetLastError() == ERROR_ALREADY_EXISTS )
{
     // There's another instance running.  What do you do?
}

Finally, near the end of your program, you need to close the mutex.

CloseHandle( mutex );

Python

Linux (including cygwin) and Mac OSX Leopard

Language Version: 2.6

Must be run from an application, not the interpreter.

import __main__, os

def isOnlyInstance():
    # Determine if there are more than the current instance of the application
    # running at the current time. If not, return 0. If so, return 1.
    if not os.system('(( $(ps -ef | grep \'[' + __main__.__file__[0] + ']' + \
    __main__.__file__[1:len(__main__.__file__)] + '\' | wc -l) > 1 ))'):
        return 0
    else:
        return 1

Visual Basic

Language Version: 6

 Dim onlyInstance as Boolean
 onlyInstance = not App.PrevInstance