Ideal way to single-instance apps on the Mac - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T18:41:49Z http://stackoverflow.com/feeds/question/1081218 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1081218/ideal-way-to-single-instance-apps-on-the-mac 1 Ideal way to single-instance apps on the Mac psychotik 2009-07-04T00:42:12Z 2009-07-07T03:19:48Z <p>On Windows, it's common practice to create a named mutex and use the presence of that to determine that an instance of a given app is already running. This has its drawbacks, but mostly works.</p> <p>I can think of a ways to do this on the Mac:</p> <ol> <li>named pthread mutexes</li> <li>enumerate running processes and look for one that matches</li> <li>create and lock a file</li> </ol> <p>Is there something built into Cocoa/Carbon that's easier than the options above? If not, which of the three are most used on the mac? I would assume 2 or 3... </p> http://stackoverflow.com/questions/1081218/ideal-way-to-single-instance-apps-on-the-mac/1081255#1081255 8 Answer by Simon for Ideal way to single-instance apps on the Mac Simon 2009-07-04T01:03:10Z 2009-07-04T01:03:10Z <p>Macs do not have instances in the same way as Windows does. Generally speaking you want the application running twice you physically need to copy the binary and then double click on the copied version as well.</p> <p>If you need two instances of an application running then you are not thinking like a Mac user :).</p> http://stackoverflow.com/questions/1081218/ideal-way-to-single-instance-apps-on-the-mac/1081281#1081281 0 Answer by Stephen Hoffman for Ideal way to single-instance apps on the Mac Stephen Hoffman 2009-07-04T01:18:48Z 2009-07-04T01:18:48Z <p>Mapping process management among disparate operating systems doesn't work. Or doesn't work well. By default and without particular effort, you get one copy and only one copy of the application.</p> <p>Here's a previous similar question that goes a step further than this current question, and with some replies that discuss interlocking when there are multiple copies of an image, or multiple applications that need coordination.</p> <p><a href="http://stackoverflow.com/questions/684911/how-to-detect-whether-an-os-x-application-is-already-launched">http://stackoverflow.com/questions/684911/how-to-detect-whether-an-os-x-application-is-already-launched</a></p> <p>For an introduction to the run-time context and particularly around Mac OS X daemons and agents (and for those cases when you do need to have multiple copies of an executable running, as a pool or such and akin to Apache), see:</p> <p><a href="http://developer.apple.com/technotes/tn2005/tn2083.html" rel="nofollow">http://developer.apple.com/technotes/tn2005/tn2083.html</a></p> http://stackoverflow.com/questions/1081218/ideal-way-to-single-instance-apps-on-the-mac/1081287#1081287 0 Answer by Ben Gotow for Ideal way to single-instance apps on the Mac Ben Gotow 2009-07-04T01:27:54Z 2009-07-04T01:27:54Z <p>If you're writing a Cocoa application, you can use NSWorkspace to see if another process is running with your bundle identifier. I've seen a few apps that present a dialog and say: "An instance of this app is already running" - I think Firefox does it, actually. </p> <p>It's not a very "mac-ish" approach, but it will get the job done. </p> http://stackoverflow.com/questions/1081218/ideal-way-to-single-instance-apps-on-the-mac/1083068#1083068 0 Answer by Jon Steinmetz for Ideal way to single-instance apps on the Mac Jon Steinmetz 2009-07-04T22:16:23Z 2009-07-04T22:16:23Z <p>To elaborate further on using NSWorkspace. Try using launchedApplications in NSWorkspace. This returns an NSArray containing a dictionary for each launched application. You can loop through the array to see if the app you are looking for is already running. I would advise that you use the value with the key NSApplicationBundleIdentifier which will have a value like "com.mycompany.myapp" rather than looking for the name. If you need to find the bundle identifier for an app you can look at its info.plist file in the app package.</p> http://stackoverflow.com/questions/1081218/ideal-way-to-single-instance-apps-on-the-mac/1089241#1089241 0 Answer by cruelfate for Ideal way to single-instance apps on the Mac cruelfate 2009-07-06T21:12:00Z 2009-07-06T21:12:00Z <p>If you were to deploy your application with Java Web Start (JWS), you could use <a href="http://java.sun.com/j2se/1.5.0/docs/guide/javaws/jnlp/index.html?javax/jnlp/SingleInstanceService.html" rel="nofollow">javax.jnlp.SingleInstanceService</a>. JWS provisioning would also provide automatic program updates. </p>