問題:
互斥鎖(Mutex)的使用可能比較棘手,尤其對於全局互斥鎖。在C#中創建和使用全局互斥鎖的可靠且安全的模式是什麼?
答案:
1. 使用唯一標識符:
使用應用程序的GUID創建一個全局互斥鎖的唯一標識符。這確保了互斥鎖是特定於您的應用程序的,並且不會與其他應用程序衝突。
2. 正確創建和釋放:
使用Mutex(bool, string, out bool)
構造函數(其中createdNew
設置為true
)實例化互斥鎖。這確保瞭如果互斥鎖不存在則創建它,或者如果它已經存在則獲取它。完成後,請務必使用ReleaseMutex()
釋放互斥鎖。
3. 處理被放棄的互斥鎖:
將WaitOne()
調用包裝在try/catch
塊中以捕獲AbandonedMutexException
。當先前持有互斥鎖的進程終止而未釋放它時,會發生此異常。在這種情況下,可以忽略此異常,並且仍然可以獲取互斥鎖。
4. 設置安全權限(多用戶設置):
如果多個用戶將訪問該應用程序,請使用MutexSecurity
設置互斥鎖的安全設置。向用戶組或特定用戶授予相應的權限。
5. 處理超時:
不要無限期等待,請考慮為WaitOne()
設置超時。如果無法獲取互斥鎖,這將防止程序無限期掛起。
代碼示例:
<code class="language-csharp">// 获取应用程序GUID string appGuid = ((GuidAttribute)Assembly.GetExecutingAssembly(). GetCustomAttributes(typeof(GuidAttribute), false). GetValue(0)).Value.ToString(); // 唯一的全局互斥锁ID string mutexId = string.Format("Global\{{{0}}}", appGuid); // 使用安全设置创建或获取互斥锁 var securitySettings = new MutexSecurity(); var allowEveryoneRule = new MutexAccessRule( new SecurityIdentifier(WellKnownSidType.WorldSid, null), MutexRights.FullControl, AccessControlType.Allow); securitySettings.AddAccessRule(allowEveryoneRule); using (var mutex = new Mutex(false, mutexId, out bool createdNew, securitySettings)) { bool hasHandle = false; try { hasHandle = mutex.WaitOne(5000, false); // 设置5秒超时 if (!hasHandle) throw new TimeoutException("等待独占访问超时"); } catch (AbandonedMutexException) { hasHandle = true; } // 执行工作 if (hasHandle) mutex.ReleaseMutex(); }</code>
以上是如何在C#中安全可靠地使用全局靜音?的詳細內容。更多資訊請關注PHP中文網其他相關文章!