web-dev-qa-db-ja.com

Mutexを使用してアプリケーションの単一インスタンスを実行する

実行中のアプリケーションの単一のインスタンスのみを許可するために、私はmutexを使用しています。コードを以下に示します。これは正しい方法ですか?コードに欠陥はありますか?

ユーザーが2回目にアプリケーションを開こうとしたときに、既に実行中のアプリケーションを表示する方法。現在(以下のコード)、別のインスタンスが既に実行されているというメッセージを表示しています。

    static void Main(string[] args)
    {
        Mutex _mut = null;

        try
        {
            _mut = Mutex.OpenExisting(AppDomain.CurrentDomain.FriendlyName);
        }
        catch
        {
             //handler to be written
        }

        if (_mut == null)
        {
            _mut = new Mutex(false, AppDomain.CurrentDomain.FriendlyName);
        }
        else
        {
            _mut.Close();
            MessageBox.Show("Instance already running");

        }            
    }
25
blitzkriegz

私は一度この方法でそれをしました、それが役に立てば幸いです:

bool createdNew;

Mutex m = new Mutex(true, "myApp", out createdNew);

if (!createdNew)
{
    // myApp is already running...
    MessageBox.Show("myApp is already running!", "Multiple Instances");
    return;
}
16
Peter D
static void Main() 
{
  using(Mutex mutex = new Mutex(false, @"Global\" + appGuid))
  {
    if(!mutex.WaitOne(0, false))
    {
       MessageBox.Show("Instance already running");
       return;
    }

    GC.Collect();                
    Application.Run(new Form1());
  }
}

ソース: http://odetocode.com/Blogs/scott/archive/2004/08/20/401.aspx

7
Milen

私はこれを使います:

    private static Mutex _mutex;

    private static bool IsSingleInstance()
    {
        _mutex = new Mutex(false, _mutexName);

        // keep the mutex reference alive until the normal 
        //termination of the program
        GC.KeepAlive(_mutex);

        try
        {
            return _mutex.WaitOne(0, false);
        }
        catch (AbandonedMutexException)
        {
            // if one thread acquires a Mutex object 
            //that another thread has abandoned 
            //by exiting without releasing it

            _mutex.ReleaseMutex();
            return _mutex.WaitOne(0, false);
        }
    }


    public Form1()
    {
        if (!isSingleInstance())
        {
            MessageBox.Show("Instance already running");
            this.Close();
            return;
        }

        //program body here
    }

    private void Form1_FormClosing(object sender, FormClosingEventArgs e)
    {
        if (_mutex != null)
        {
            _mutex.ReleaseMutex();
        }
    }    
3
algreat

タイムアウトとセキュリティ設定でアプリを使用します。私は自分のカスタムクラスを使用しました:

private class SingleAppMutexControl : IDisposable
    {
        private readonly Mutex _mutex;
        private readonly bool _hasHandle;

        public SingleAppMutexControl(string appGuid, int waitmillisecondsTimeout = 5000)
        {
            bool createdNew;
            var allowEveryoneRule = new MutexAccessRule(new SecurityIdentifier(WellKnownSidType.WorldSid, null),
                MutexRights.FullControl, AccessControlType.Allow);
            var securitySettings = new MutexSecurity();
            securitySettings.AddAccessRule(allowEveryoneRule);
            _mutex = new Mutex(false, "Global\\" + appGuid, out createdNew, securitySettings);
            _hasHandle = false;
            try
            {
                _hasHandle = _mutex.WaitOne(waitmillisecondsTimeout, false);
                if (_hasHandle == false)
                    throw new System.TimeoutException();
            }
            catch (AbandonedMutexException)
            {
                _hasHandle = true;
            }
        }

        public void Dispose()
        {
            if (_mutex != null)
            {
                if (_hasHandle)
                    _mutex.ReleaseMutex();
                _mutex.Dispose();
            }
        }
    }

そしてそれを使う:

    private static void Main(string[] args)
    {
        try
        {
            const string appguid = "{xxxxxxxx-xxxxxxxx}";
            using (new SingleAppMutexControl(appguid))
            {

                Console.ReadLine();
            }
        }
        catch (System.TimeoutException)
        {
            Log.Warn("Application already runned");
        }
        catch (Exception ex)
        {
            Log.Fatal(ex, "Fatal Error on running");
        }
    }
1
vivlav

この質問を見てください

この記事へのリンクがあります: 誤解されたmutex で、mutexの使用法が説明されています。

1
tanascius

このページに示されているコードサンプルを確認してください

つまり、名前付きミューテックスの所有権を取得したかどうかをoutパラメータを介して通知するオーバーロードミューテックスctor(bool, string, out bool)を使用します。あなたが最初のインスタンスである場合、ctorが呼び出された後、このoutパラメータにはtrueが含まれます。この場合、通常どおり続行します。このパラメータがfalseの場合は、別のインスタンスがすでに所有権を持っているか実行中であることを意味します。その場合、「別のインスタンスはすでに実行されています」というエラーメッセージが表示されます。その後、正常に終了します。

1
Gishu
0
aJ.