up vote 24 down vote favorite
21
share [g+] share [fb]

Is there a Pythonic way to have only one instance of a program running?

The only reasonable solution I've come up with is trying to run it as a server on some port, then second program trying to bind to same port - fails. But it's not really a great idea, maybe there's something more lightweight than this?

(Take into consideration that program is expected to fail sometimes, i.e. segfault - so things like "lock file" won't work)

Update: the solutions offered are much more complex and less reliant than just having a port occupied with a non-existent server, so I'd have to go with that one.

link|improve this question

Perhaps your life would be easier if you tracked down and fixed the segfault. Not that it's an easy thing to do. – David Locke Dec 19 '08 at 15:53
It's not in my library, it's in python's libxml bindings and extremely shy - fires only once a couple days. – Slava N Dec 20 '08 at 17:51
2  
Python's standard library supports flock(), which is The Right Thing for modern UNIX programs. Opening a port uses a spot in a much more constrained namespace, whereas pidfiles are more complex as you need to check running processes to invalidate them safely; flock has neither problem. – Charles Duffy Dec 20 '08 at 19:02
feedback

10 Answers

up vote 20 down vote accepted

The above code should do the job, it is cross-platform and runs on Python 2.4-3.2. I tested it on Windows, OS X and Linux.

from tendo import singleton
me = singleton.SingleInstance() # will sys.exit(-1) if other instance is running

The latest code version is available singleton.py. Please file bugs here.

You can install tend using one of the following methods:

link|improve this answer
1  
Seems to work just fine under Mac OS X, too. – Clinton Blackmore Aug 26 '09 at 2:42
Works under Linux, but only if the class is defined in the same file. That is, if you tried, "from singlething import SingleInstance" and then used "me = SingleInstance()", it would not lock the file. – Lionel Dec 31 '10 at 8:25
Should NOT we close the file and unlock in the destructor in case of non windows? – Gnu Engineer May 9 '11 at 21:37
1  
I updated the answer and included a link to the latest version. If you find a bug please submit it to github and I will solve it as soon as possible. – sorin May 10 '11 at 14:42
I like this solution, but it failed(winXP32,python-3.2). You can see the Error here: pastebin.com/a40kj7ae It failed because of wrong path(lockfile: e:\somepath\temp\E:\testLock\test_fileLock.lock) I modified line 9: used relpath instead of abspath. I hope nothing will break by changing this. Sorry, i dont know how to use github. – Johny_M Jul 2 '11 at 20:39
show 4 more comments
feedback

I don't know if it's pythonic enough, but in the Java world listening on a defined port is a pretty widely used solution, as it works on all major platforms and doesn't have any problems with crashing programs.

Another advantage of listening to a port is that you could send a command to the running instance. For example when the users starts the program a second time, you could send the running instance a command to tell it to open another window (that's what Firefox does, for example. I don't know if they use TCP ports or named pipes or something like that, 'though).

link|improve this answer
1  
I'm sorry, but which way is "that"? – Slava N Dec 19 '08 at 12:49
1  
Sorry, I was refering to listing to a port, I've clarified my answer. – Joachim Sauer Dec 19 '08 at 12:50
+1 to this, specially since it allows me to notify the running instance, so it creates another window, pops up, etc. – Hugo Jun 17 '11 at 3:16
feedback

Use a pid file. You have some known location, "/path/to/pidfile" and at startup you do something like this (partially pseudocode because I'm pre-coffee and don't want to work all that hard):

import os, os.path
pidfilePath = """/path/to/pidfile"""
if os.path.exists(pidfilePath):
   pidfile = open(pidfilePath,"r")
   pidString = pidfile.read()
   if <pidString is equal to os.getpid()>:
      # something is real weird
      Sys.exit(BADCODE)
   else:
      <use ps or pidof to see if the process with pid pidString is still running>
      if  <process with pid == 'pidString' is still running>:
          Sys.exit(ALREADAYRUNNING)
      else:
          # the previous server must have crashed
          <log server had crashed>
          <reopen pidfilePath for writing>
          pidfile.write(os.getpid())
else:
    <open pidfilePath for writing>
    pidfile.write(os.getpid())

So, in other words, you're checking if a pidfile exists; if not, write your pid to that file. If the pidfile does exist, then check to see if the pid is the pid of a running process; if so, then you've got another live process running, so just shut down. If not, then the previous process crashed, so log it, and then write your own pid to the file in place of the old one. Then continue.

link|improve this answer
This has a race condition. The test-then-write sequence may raise an exception of two programs start almost simultaneously, find no file and try to open for write concurrently. It should raise an exception on one, allowing the other to proceed. – S.Lott Dec 19 '08 at 14:42
1  
Well, I said I'd had no coffee yet. – Charlie Martin Dec 19 '08 at 16:06
feedback

Simple, cross-platform solution, found in another question by zgoda:

import fcntl, sys
pid_file = 'program.pid'
fp = open(pid_file, 'w')
try:
    fcntl.lockf(fp, fcntl.LOCK_EX | fcntl.LOCK_NB)
except IOError:
    # another instance is running
    sys.exit(0)

Alot like S.Lott's suggestion, but with the code.

link|improve this answer
Out of curiosity: is this really cross-platform? Does it work on Windows? – Joachim Sauer Dec 21 '08 at 14:08
There is no fcntl module on Windows (though the functionality could be emulated). – J.F. Sebastian Dec 21 '08 at 14:25
This is not "cross platform" (and I did not pretend it is). For Windows you have to use mutexes to achieve similar result - but I don't do Windows anymore and I have no code to share. – zgoda Dec 22 '08 at 9:28
The problem here is that if you want to write any data to the pid_file (like the PID), you will lose it. See: coding.derkeiler.com/Archive/Python/comp.lang.python/2008-06/… – benno Jul 8 '09 at 2:38
feedback

You already found reply to similar question in another thread, so for completeness sake see how to achieve the same on Windows uning named mutex.

http://code.activestate.com/recipes/474070/

link|improve this answer
feedback

This may work.

  1. Attempt create a PID file to a known location. If you fail, someone has the file locked, you're done.

  2. When you finish normally, close and remove the PID file, so someone else can overwrite it.

You can wrap your program in a shell script that removes the PID file even if your program crashes.

You can, also, use the PID file to kill the program if it hangs.

link|improve this answer
feedback

I've been wondering how to achieve just this, thanks to this question I've now. Couldn't get any simpler.

try:
    import socket
    s = socket.socket()
    host = socket.gethostname()
    port = 35636    #make sure this port is not used on this system
    s.bind((host, port))
    my_singlerun_function()
except:
    pass
link|improve this answer
feedback

Using a lock-file is a quite common approach on unix. If it crashes, you have to clean up manually. You could stor the PID in the file, and on startup check if there is a process with this PID, overriding the lock-file if not. (However, you also need a lock around the read-file-check-pid-rewrite-file). You will find what you need for getting and checking pid in the os-package. The common way of checking if there exists a process with a given pid, is to send it a non-fatal signal.

Other alternatives could be combining this with flock or posix semaphores.

Opening a network socket, as saua proposed, would probably be the easiest and most portable.

link|improve this answer
feedback

I'm posting this as an answer because I'm a new user and Stack Overflow won't let me vote yet.

Sorin Sbarnea's solution works for me under OS X, Linux and Windows, and I am grateful for it.

However, tempfile.gettempdir() behaves one way under OS X and Windows and another under other some/many/all(?) *nixes (ignoring the fact that OS X is also Unix!). The difference is important to this code.

OS X and Windows have user-specific temp directories, so a tempfile created by one user isn't visible to another user. By contrast, under many versions of *nix (I tested Ubuntu 9, RHEL 5, OpenSolaris 2008 and FreeBSD 8), the temp dir is /tmp for all users.

That means that when the lockfile is created on a multi-user machine, it's created in /tmp and only the user who creates the lockfile the first time will be able to run the application.

A possible solution is to embed the current username in the name of the lock file.

It's worth noting that the OP's solution of grabbing a port will also misbehave on a multi-user machine.

link|improve this answer
feedback

Never written python before, but this is what I've just implemented in mycheckpoint, to prevent it being started twice or more by crond:

import os
import sys
import fcntl
fh=0
def run_once():
    global fh
    fh=open(os.path.realpath(__file__),'r')
    try:
        fcntl.flock(fh,fcntl.LOCK_EX|fcntl.LOCK_NB)
    except:
        os._exit(0)

run_once()

Found Slava-N's suggestion after posting this in another issue (http://stackoverflow.com/questions/2959474). This one is called as a function, locks the executing scripts file (not a pid file) and maintains the lock until the script ends (normal or error).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.