C#多线程系列之进程同步Mutex类
mutex 中文为互斥,mutex 类叫做互斥锁。它还可用于进程间同步的同步基元。
mutex 跟 lock 相似,但是 mutex 支持多个进程。mutex 大约比 lock 慢 20 倍。
互斥锁(mutex),用于多线程中防止两条线程同时对一个公共资源进行读写的机制。
windows 操作系统中,mutex 同步对象有两个状态:
- signaled:未被任何对象拥有;
- nonsignaled:被一个线程拥有;
mutex 只能在获得锁的线程中,释放锁。
构造函数和方法
mutex 类其构造函数如下:
构造函数 | 说明 |
---|---|
mutex() | 使用默认属性初始化 mutex类的新实例。 |
mutex(boolean) | 使用 boolean 值(指示调用线程是否应具有互斥体的初始所有权)初始化 mutex 类的新实例。 |
mutex(boolean, string) | 使用 boolean 值(指示调用线程是否应具有互斥体的初始所有权以及字符串是否为互斥体的名称)初始化 mutex 类的新实例。 |
mutex(boolean, string, boolean) | 使用可指示调用线程是否应具有互斥体的初始所有权以及字符串是否为互斥体的名称的 boolean 值和当线程返回时可指示调用线程是否已赋予互斥体的初始所有权的 boolean 值初始化 mutex 类的新实例。 |
mutex 对于进程同步有所帮助,例如其应用场景主要是控制系统只能运行一个此程序的实例。
mutex 构造函数中的 string类型参数 叫做互斥量而互斥量是全局的操作系统对象。
mutex 只要考虑实现进程间的同步,它会耗费比较多的资源,进程内请考虑 monitor/lock。
mutex 的常用方法如下:
方法 | 说明 |
---|---|
close() | 释放由当前 waithandle 占用的所有资源。 |
dispose() | 释放由 waithandle 类的当前实例占用的所有资源。 |
openexisting(string) | 打开指定的已命名的互斥体(如果已经存在)。 |
releasemutex() | 释放 mutex一次。 |
tryopenexisting(string, mutex) | 打开指定的已命名的互斥体(如果已经存在),并返回指示操作是否成功的值。 |
waitone() | 阻止当前线程,直到当前 waithandle 收到信号。 |
waitone(int32) | 阻止当前线程,直到当前 waithandle 收到信号,同时使用 32 位带符号整数指定时间间隔(以毫秒为单位)。 |
waitone(int32, boolean) | 阻止当前线程,直到当前的 waithandle 收到信号为止,同时使用 32 位带符号整数指定时间间隔,并指定是否在等待之前退出同步域。 |
waitone(timespan) | 阻止当前线程,直到当前实例收到信号,同时使用 timespan 指定时间间隔。 |
waitone(timespan, boolean) | 阻止当前线程,直到当前实例收到信号为止,同时使用 timespan 指定时间间隔,并指定是否在等待之前退出同步域。 |
关于 mutex 类,我们可以先通过几个示例去了解它。
系统只能运行一个程序的实例
下面是一个示例,用于控制系统只能运行一个此程序的实例,不允许同时启动多次。
class program { // 第一个程序 const string name = "www.whuanle.cn"; private static mutex m; static void main(string[] args) { // 本程序是否是 mutex 的拥有者 bool firstinstance; m = new mutex(false,name,out firstinstance); if (!firstinstance) { console.writeline("程序已在运行!按下回车键退出!"); console.readkey(); return; } console.writeline("程序已经启动"); console.writeline("按下回车键退出运行"); console.readkey(); m.releasemutex(); m.close(); return; } }
上面的代码中,有些地方前面没有讲,没关系,我们运行一下生成的程序先。
解释一下上面的示例
mutex 的工作原理:
当两个或两个以上的线程同时访问共享资源时,操作系统需要一个同步机制来确保每次只有一个线程使用资源。
mutex 是一种同步基元,mutex 仅向一个线程授予独占访问共享资源的权限。这个权限依据就是 互斥体,当一个线程获取到互斥体后,其它线程也在试图获取互斥体时,就会被挂起(阻塞),直到第一个线程释放互斥体。
对应我们上一个代码示例中,实例化 mutex 类的构造函数如下:
m = new mutex(false,name,out firstinstance);
其构造函数原型如下:
public mutex (bool initiallyowned, string name, out bool creatednew);
前面我们提出过,mutex 对象有两种状态,signaled 和 nonsignaled。
通过 new 来实例化 mutex 类,会检查系统中此互斥量 name 是否已经被使用,如果没有被使用,则会创建 name 互斥量并且此线程拥有此互斥量的使用权;此时 creatednew == true
。
那么 initiallyowned ,它的作用是是否允许线程是否能够获取到此互斥量的初始化所有权。因为我们希望只有一个程序能够在后台运行,因此我们要设置为 false。
驱动开发中关于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()
方法来等待别的进程释放互斥量,即模拟排队;releasemutex()
方法解除对坑位的占用。
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.releasemutex(); thread.sleep(1000); console.writeline(" 洗手"); } }
此时,我们使用了
m = new mutex(true,name,out firstinstance);
一个程序结束后,要允许其它线程能够创建 mutex 对象获取互斥量,需要将构造函数的第一个参数设置为 true。
你也可以改成 false,看看会报什么异常。
你可以使用 waitone(int32)
来设置等待时间,单位是毫秒,超过这个时间就不排队了,去别的地方上厕所。
为了避免出现问题,请考虑在 finally 块中执行 m.releasemutex()
。
进程同步示例
这里我们实现一个这样的场景:
父进程 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.releasemutex(); // 结束程序 return; } else { console.writeline("莫名其妙的异常,直接退出"); } } private static void dowork() { for (int i = 0; i < 5; i++) { console.writeline("子线程工作中"); thread.sleep(timespan.fromseconds(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.fromseconds(3)); console.writeline("父进程启动!"); new thread(() => { // 启动子进程 process process = new process(); process.startinfo.useshellexecute = true; process.startinfo.createnowindow = false; 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.fromseconds(1)); // 获取互斥体 bool firstinstance; m = new mutex(true, name, out firstinstance); // 说明子进程还在运行 if (!firstinstance) { // 等待子进程运行结束 console.writeline("等待子进程运行结束"); m.waitone(); console.writeline("子进程运行结束,程序将在3秒后自动退出"); m.releasemutex(); thread.sleep(timespan.fromseconds(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/dotnet/api/system.threading.mutex.tryopenexisting?view=netcore-3.1
到此这篇关于c#多线程系列之进程同步mutex类的文章就介绍到这了。希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: C#多线程系列之原子操作
下一篇: C#多线程系列之线程通知