mutex 中文为互斥,mutex 类叫做互斥锁。它还可用于进程间同步的同步基元。
mutex 跟 lock 相似,但是 mutex 支持多个进程。mutex 大约比 lock 慢 20 倍。
互斥锁(mutex),用于多线程中防止两条线程同时对一个公共资源进行读写的机制。
windows 操作系统中,mutex 同步对象有两个状态:
signaled:未被任何对象拥有;nonsignaled:被一个线程拥有;mutex 只能在获得锁的线程中,释放锁。
mutex 类其构造函数如下:
mutex 对于进程同步有所帮助,例如其应用场景主要是控制系统只能运行一个此程序的实例。
mutex 构造函数中的 string类型参数 叫做互斥量而互斥量是全局的操作系统对象。
mutex 只要考虑实现进程间的同步,它会耗费比较多的资源,进程内请考虑 monitor/lock。
mutex 的常用方法如下:
关于 mutex 类,我们可以先通过几个示例去了解它。
下面是一个示例,用于控制系统只能运行一个此程序的实例,不允许同时启动多次。
class program { // 第一个程序 const string name = "www.whuanle.cn"; private static mutex m; static void main(string[] args) { // 本程序是否是 mutex 的拥有者 bool firstinstance; m = new mutex(fal,name,out firstinstance); if (!firstinstance) { console.writeline("程序已在运行!按下回车键退出!"); console.readkey(); return; } console.writeline("程序已经启动"); console.writeline("按下回车键退出运行"); console.readkey(); m.releamutex(); m.clo(); return; } }
上面的代码中,有些地方前面没有讲,没关系,我们运行一下生成的程序先。
mutex 的工作原理:
当两个或两个以上的线程同时访问共享资源时,操作系统需要一个同步机制来确保每次只有一个线程使用资源。
mutex 是一种同步基元,mutex 仅向一个线程授予独占访问共享资源的权限。这个权限依据就是 互斥体,当一个线程获取到互斥体后,其它线程也在试图获取互斥体时,就会被挂起(阻塞),直到第一个线程释放互斥体。
对应我们上一个代码示例中,实例化 mutex 类的构造函数如下:
m = new mutex(fal,name,out firstinstance);
其构造函数原型如下:
public mutex (bool initiallyowned, string name, out bool creatednew);
前面我们提出过,mutex 对象有两种状态,signaled 和 nonsignaled。
通过 new 来实例化 mutex 类,会检查系统中此互斥量 name 是否已经被使用,如果没有被使用,则会创建 name 互斥量并且此线程拥有此互斥量的使用权;此时creatednew == true
。
那么 initiallyowned ,它的作用是是否允许线程是否能够获取到此互斥量的初始化所有权。因为我们希望只有一个程序能够在后台运行,因此我们要设置为 fal。
驱动开发中关于mutex :https://docs.microsoft.com/zh-cn/windows-hardware/drivers/kernel/introduction-to-mutex-objects
对了, mutex 的 参数中,name 是非常有讲究的。
在运行终端服务的服务器上,命名系统 mutex 可以有两个级别的可见性。
如果其名称以前缀 “global” 开头,则 mutex 在所有终端服务器会话中可见。如果其名称以前缀 “local” 开头,则 mutex 仅在创建它的终端服务器会话中可见。 在这种情况下,可以在服务器上的其他每个终端服务器会话中存在具有相同名称的单独 mutex。如果在创建已命名的 mutex 时未指定前缀,则采用前缀 “local”。 在终端服务器会话中,两个互斥体的名称只是它们的前缀不同,它们都是对终端服务器会话中的所有进程都可见。
也就是说,前缀名称 “global” 和 “local” 描述互斥体名称相对于终端服务器会话的作用域,而不是相对于进程。
请参考:
https://docs.microsoft.com/zh-cn/dotnet/api/system.threading.mutex?view=netcore-3.1#methods
这里要实现,当同时点击一个程序时,只能有一个实例a可以运行,其它实例进入等待队列,等待a运行完毕后,然后继续运行队列中的下一个实例。
我们将每个程序比作一个人,模拟一个厕所坑位,每次只能有一个人上厕所,其他人需要排队等候。
使用waitone()
方法来等待别的进程释放互斥量,即模拟排队;releamutex()
方法解除对坑位的占用。
class program { // 第一个程序 const string name = "www.whuanle.cn"; private static mutex m; static void main(string[] args) { // wc 还有没有位置 bool firstinstance; m = new mutex(true,name,out firstinstance); // 已经有人在上wc if (!firstinstance) { // 等待运行的实例退出,此进程才能运行。 console.writeline("排队等待"); m.waitone(); gowc(); return; } gowc(); return; } private static void gowc() { console.writeline(" 开始上wc"); thread.sleep(1000); console.writeline(" 开门"); thread.sleep(1000); console.writeline(" 关门"); thread.sleep(1000); console.writeline(" xxx"); thread.sleep(1000); console.writeline(" 开门"); thread.sleep(1000); console.writeline(" 离开wc"); m.releamutex(); thread.sleep(1000); console.writeline(" 洗手"); } }
此时,我们使用了
m = new mutex(true,name,out firstinstance);
一个程序结束后,要允许其它线程能够创建 mutex 对象获取互斥量,需要将构造函数的第一个参数设置为 true。
你也可以改成 fal,看看会报什么异常。
你可以使用waitone(int32)
来设置等待时间,单位是毫秒,超过这个时间就不排队了,去别的地方上厕所。
为了避免出现问题,请考虑在 finally 块中执行m.releamutex()
。
这里我们实现一个这样的场景:
父进程 parent 启动子进程 children ,等待子进程 children 执行完毕,子进程退出,父进程退出。
新建一个 .net core 控制台项目,名称为 children,其 progarm 中的代码如下
using system;using system.threading;namespace children{ class program { const string name = "进程同步示例"; private static mutex m; static void main(string[] args) { console.writeline("子进程被启动..."); bool firstinstance; // 子进程创建互斥体 m = new mutex(true, name, out firstinstance); // 按照我们设计的程序,创建一定是成功的 if (firstinstance) { console.writeline("子线程执行任务"); dowork(); console.writeline("子线程任务完成"); // 释放互斥体 m.releamutex(); // 结束程序 return; } el { console.writeline("莫名其妙的异常,直接退出"); } } private static void dowork() { for (int i = 0; i < 5; i++) { console.writeline("子线程工作中"); thread.sleep(timespan.fromconds(1)); } } }}
然后发布或生成项目,打开程序文件位置,复制线程文件路径。
创建一个新项目,名为 parent 的 .net core 控制台,其 program 中的代码如下:
using system;using system.diagnostics;using system.threading;namespace parent{ class program { const string name = "进程同步示例"; private static mutex m; static void main(string[]参加展会总结 args) { // 晚一些再优秀共产党员的事迹执行,我录屏要对正窗口位置 thread.sleep(timespan.fromconds(3)); console.writeline("父进程启动!"); new thread(() => { // 启动子进程 process process = new process(); process.startinfo.ushellexecute = true; 中学英语怎么说 process.startinfo.createnowindow = fal; process.startinfo.workingdirectory = @"../../../consoleapp9\children\bin\debug\netcoreapp3.1"; process.startinfo.filename = @"../../../consoleapp9\children\bin\debug\netcoreapp3.1\children.exe"; process.start(); process.waitforexit(); }).start(); // 子进程启动需要一点时间 同位语从句 thread.sleep(timespan.fromconds(1)); // 获取互斥体 bool firstinstance; m = new mutex(true, name, out firstinstance); // 说明子进程还在运行 if (!firstinstance) { // 等待子进程运行结束 console.writeline("等待子进程运行结束"); m.waitone(); console.writeline("子进程运行结束,程序将在3秒后自动退出"); m.releamutex(); thread.sleep(timespan.fromconds(3)); return; } } }}
请将 children 项目的程序文件路径,替换到 parent 项目启动子进程的那部分字符串中。
然后启动 parent.exe,可以观察到如下图的运行过程:
构造函数中,如果为name
指定null
或空字符串,则将创建一个本地 mutex 对象,只会在进程内有效。
mutex 有些使用方法比较隐晦,可以参考https://docs.microsoft.com/zh-cn/dotnet/api/system.threading.mutex.-ctor?view=netcore-3.1#system_threading_mutex__ctor_system_boolean_
另外打开互斥体,请参考
https://docs.microsoft.com/zh-cn/dotnet/api/system.threading.mutex.openexisting?view=netcore-3.1
https://docs.microsoft.com/zh-cn/d猷的解释otnet/api/system.threading.mutex.tryopenexisting?view=netcore-3.1
到此这篇关于c#多线程系列之进程同步mutex类的文章就介绍到这了。希望对大家的学习有所帮助,也希望大家多多支持www.887551.com。
本文发布于:2023-04-05 00:22:09,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/c16178a35119dc8c69b1f512e817e888.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:C#多线程系列之进程同步Mutex类.doc
本文 PDF 下载地址:C#多线程系列之进程同步Mutex类.pdf
留言与评论(共有 0 条评论) |