|
|
|
|
<!DOCTYPE HTML>
|
|
|
|
|
<html lang="zh-CN" class="light" dir="ltr">
|
|
|
|
|
<head>
|
|
|
|
|
<!-- Book generated using mdBook -->
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<title>线程同步:锁、Condvar 和信号量 - Rust语言圣经(Rust Course)</title>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Custom HTML head -->
|
|
|
|
|
|
|
|
|
|
<meta name="description" content="">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
<meta name="theme-color" content="#ffffff">
|
|
|
|
|
|
|
|
|
|
<link rel="icon" href="../../favicon.svg">
|
|
|
|
|
<link rel="shortcut icon" href="../../favicon.png">
|
|
|
|
|
<link rel="stylesheet" href="../../css/variables.css">
|
|
|
|
|
<link rel="stylesheet" href="../../css/general.css">
|
|
|
|
|
<link rel="stylesheet" href="../../css/chrome.css">
|
|
|
|
|
<link rel="stylesheet" href="../../css/print.css" media="print">
|
|
|
|
|
|
|
|
|
|
<!-- Fonts -->
|
|
|
|
|
<link rel="stylesheet" href="../../FontAwesome/css/font-awesome.css">
|
|
|
|
|
<link rel="stylesheet" href="../../fonts/fonts.css">
|
|
|
|
|
|
|
|
|
|
<!-- Highlight.js Stylesheets -->
|
|
|
|
|
<link rel="stylesheet" href="../../highlight.css">
|
|
|
|
|
<link rel="stylesheet" href="../../tomorrow-night.css">
|
|
|
|
|
<link rel="stylesheet" href="../../ayu-highlight.css">
|
|
|
|
|
|
|
|
|
|
<!-- Custom theme stylesheets -->
|
|
|
|
|
<link rel="stylesheet" href="../../theme/style.css">
|
|
|
|
|
|
|
|
|
|
</head>
|
|
|
|
|
<body class="sidebar-visible no-js">
|
|
|
|
|
<div id="body-container">
|
|
|
|
|
<!-- Provide site root to javascript -->
|
|
|
|
|
<script>
|
|
|
|
|
var path_to_root = "../../";
|
|
|
|
|
var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "navy" : "light";
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<!-- Work around some values being stored in localStorage wrapped in quotes -->
|
|
|
|
|
<script>
|
|
|
|
|
try {
|
|
|
|
|
var theme = localStorage.getItem('mdbook-theme');
|
|
|
|
|
var sidebar = localStorage.getItem('mdbook-sidebar');
|
|
|
|
|
|
|
|
|
|
if (theme.startsWith('"') && theme.endsWith('"')) {
|
|
|
|
|
localStorage.setItem('mdbook-theme', theme.slice(1, theme.length - 1));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (sidebar.startsWith('"') && sidebar.endsWith('"')) {
|
|
|
|
|
localStorage.setItem('mdbook-sidebar', sidebar.slice(1, sidebar.length - 1));
|
|
|
|
|
}
|
|
|
|
|
} catch (e) { }
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<!-- Set the theme before any content is loaded, prevents flash -->
|
|
|
|
|
<script>
|
|
|
|
|
var theme;
|
|
|
|
|
try { theme = localStorage.getItem('mdbook-theme'); } catch(e) { }
|
|
|
|
|
if (theme === null || theme === undefined) { theme = default_theme; }
|
|
|
|
|
var html = document.querySelector('html');
|
|
|
|
|
html.classList.remove('light')
|
|
|
|
|
html.classList.add(theme);
|
|
|
|
|
var body = document.querySelector('body');
|
|
|
|
|
body.classList.remove('no-js')
|
|
|
|
|
body.classList.add('js');
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<input type="checkbox" id="sidebar-toggle-anchor" class="hidden">
|
|
|
|
|
|
|
|
|
|
<!-- Hide / unhide sidebar before it is displayed -->
|
|
|
|
|
<script>
|
|
|
|
|
var body = document.querySelector('body');
|
|
|
|
|
var sidebar = null;
|
|
|
|
|
var sidebar_toggle = document.getElementById("sidebar-toggle-anchor");
|
|
|
|
|
if (document.body.clientWidth >= 1080) {
|
|
|
|
|
try { sidebar = localStorage.getItem('mdbook-sidebar'); } catch(e) { }
|
|
|
|
|
sidebar = sidebar || 'visible';
|
|
|
|
|
} else {
|
|
|
|
|
sidebar = 'hidden';
|
|
|
|
|
}
|
|
|
|
|
sidebar_toggle.checked = sidebar === 'visible';
|
|
|
|
|
body.classList.remove('sidebar-visible');
|
|
|
|
|
body.classList.add("sidebar-" + sidebar);
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<nav id="sidebar" class="sidebar" aria-label="Table of contents">
|
|
|
|
|
<div class="sidebar-scrollbox">
|
|
|
|
|
<ol class="chapter"><li class="chapter-item affix "><a href="../../about-book.html">关于本书</a></li><li class="chapter-item affix "><a href="../../into-rust.html">进入 Rust 编程世界</a></li><li class="chapter-item affix "><a href="../../first-try/sth-you-should-not-do.html">避免从入门到放弃</a></li><li class="chapter-item affix "><a href="../../community.html">社区和锈书</a></li><li class="spacer"></li><li class="chapter-item affix "><a href="../../some-thoughts.html">Xobserve: 一切皆可观测</a></li><li class="chapter-item affix "><a href="../../beat-ai.html">BeatAI: 工程师 AI 入门圣经</a></li><li class="chapter-item affix "><li class="part-title">Rust 语言基础学习</li><li class="spacer"></li><li class="chapter-item "><a href="../../first-try/intro.html"><strong aria-hidden="true">1.</strong> 寻找牛刀,以便小试</a><a class="toggle"><div>❱</div></a></li><li><ol class="section"><li class="chapter-item "><a href="../../first-try/installation.html"><strong aria-hidden="true">1.1.</strong> 安装 Rust 环境</a></li><li class="chapter-item "><a href="../../first-try/editor.html"><strong aria-hidden="true">1.2.</strong> 墙推 VSCode!</a></li><li class="chapter-item "><a href="../../first-try/cargo.html"><strong aria-hidden="true">1.3.</strong> 认识 Cargo</a></li><li class="chapter-item "><a href="../../first-try/hello-world.html"><strong aria-hidden="true">1.4.</strong> 不仅仅是 Hello world</a></li><li class="chapter-item "><a href="../../first-try/slowly-downloading.html"><strong aria-hidden="true">1.5.</strong> 下载依赖太慢了?</a></li></ol></li><li class="chapter-item "><a href="../../basic/intro.html"><strong aria-hidden="true">2.</strong> Rust 基础入门</a><a class="toggle"><div>❱</div></a></li><li><ol class="section"><li class="chapter-item "><a href="../../basic/variable.html"><strong aria-hidden="true">2.1.</strong> 变量绑定与解构</a></li><li class="chapter-item "><a href="../../basic/base-type/index.html"><strong aria-hidden="true">2.2.</strong> 基本类型</a><a class="toggle"><div>❱</div></a></li><li><ol class="section"><li class="chapter-item "><a href="../../basic/base-type/numbers.html"><strong aria-hidden="true">2.2.1.</strong> 数值类型</a></li><li class="chapter-item "><a href="../../basic/base-type/char-bool.html"><strong aria-hidden="true">2.2.2.</strong> 字符、布尔、单元类型</a></li><li class="chapter-item "><a href="../../basic/base-type/statement-expression.html"><strong aria-hidden="true">2.2.3.</strong> 语句与表达式</a></li><li class="chapter-item "><a href="../../basic/base-type/function.html"><strong aria-hidden="true">2.2.4.</strong> 函数</a></li></ol></li><li class="chapter-item "><a href="../../basic/ownership/index.html"><strong aria-hidden="true">2.3.</strong> 所有权和借用</a><a class="toggle"><div>❱</div></a></li><li><ol class="section"><li class="chapter-item "><a href="../../basic/ownership/ownership.html"><strong aria-hidden="true">2.3.1.</strong> 所有权</a></li><li class="chapter-item "><a href="../../basic/ownership/borrowing.html"><strong aria-hidden="true">2.3.2.</strong> 引用与借用</a></li></ol></li><li class="chapter-item "><a href="../../basic/compound-type/intro.html"><strong aria-hidden="true">2.4.</strong> 复合类型</a><a class="toggle"><div>❱</div></a></li><li><ol class="section"><li class="chapter-item "><a href="../../basic/compound-type/string-slice.html"><strong aria-hidden="true">2.4.1.</strong> 字符串与切片</a></li><li class="chapter-item "><a href="../../basic/compound-type/tuple.html"><strong aria-hidden="true">2.4.2.</strong> 元组</a></li><li class="chapter-item "><a href="../../basic/compound-type/struct.html"><strong aria-hidden="true">2.4.3.</strong> 结构体</a></li><li class="chapter-item "><a href="../../basic/compound-type/enum.html"><strong aria-hidden="true">2.4.4.</strong> 枚举</a></li><li class="chapter-item "><a href="../../basic/compound-type/array.html"><strong aria-hidden="true">2.4.5.</strong> 数组</a></l
|
|
|
|
|
</div>
|
|
|
|
|
<div id="sidebar-resize-handle" class="sidebar-resize-handle">
|
|
|
|
|
<div class="sidebar-resize-indicator"></div>
|
|
|
|
|
</div>
|
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
|
|
<!-- Track and set sidebar scroll position -->
|
|
|
|
|
<script>
|
|
|
|
|
var sidebarScrollbox = document.querySelector('#sidebar .sidebar-scrollbox');
|
|
|
|
|
sidebarScrollbox.addEventListener('click', function(e) {
|
|
|
|
|
if (e.target.tagName === 'A') {
|
|
|
|
|
sessionStorage.setItem('sidebar-scroll', sidebarScrollbox.scrollTop);
|
|
|
|
|
}
|
|
|
|
|
}, { passive: true });
|
|
|
|
|
var sidebarScrollTop = sessionStorage.getItem('sidebar-scroll');
|
|
|
|
|
sessionStorage.removeItem('sidebar-scroll');
|
|
|
|
|
if (sidebarScrollTop) {
|
|
|
|
|
// preserve sidebar scroll position when navigating via links within sidebar
|
|
|
|
|
sidebarScrollbox.scrollTop = sidebarScrollTop;
|
|
|
|
|
} else {
|
|
|
|
|
// scroll sidebar to current active section when navigating via "next/previous chapter" buttons
|
|
|
|
|
var activeSection = document.querySelector('#sidebar .active');
|
|
|
|
|
if (activeSection) {
|
|
|
|
|
activeSection.scrollIntoView({ block: 'center' });
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<div id="page-wrapper" class="page-wrapper">
|
|
|
|
|
|
|
|
|
|
<div class="page">
|
|
|
|
|
<div id="menu-bar-hover-placeholder"></div>
|
|
|
|
|
<div id="menu-bar" class="menu-bar sticky">
|
|
|
|
|
<div class="left-buttons">
|
|
|
|
|
<label id="sidebar-toggle" class="icon-button" for="sidebar-toggle-anchor" title="Toggle Table of Contents" aria-label="Toggle Table of Contents" aria-controls="sidebar">
|
|
|
|
|
<i class="fa fa-bars"></i>
|
|
|
|
|
</label>
|
|
|
|
|
<button id="theme-toggle" class="icon-button" type="button" title="Change theme" aria-label="Change theme" aria-haspopup="true" aria-expanded="false" aria-controls="theme-list">
|
|
|
|
|
<i class="fa fa-paint-brush"></i>
|
|
|
|
|
</button>
|
|
|
|
|
<ul id="theme-list" class="theme-popup" aria-label="Themes" role="menu">
|
|
|
|
|
<li role="none"><button role="menuitem" class="theme" id="light">Light</button></li>
|
|
|
|
|
<li role="none"><button role="menuitem" class="theme" id="rust">Rust</button></li>
|
|
|
|
|
<li role="none"><button role="menuitem" class="theme" id="coal">Coal</button></li>
|
|
|
|
|
<li role="none"><button role="menuitem" class="theme" id="navy">Navy</button></li>
|
|
|
|
|
<li role="none"><button role="menuitem" class="theme" id="ayu">Ayu</button></li>
|
|
|
|
|
</ul>
|
|
|
|
|
<button id="search-toggle" class="icon-button" type="button" title="Search. (Shortkey: s)" aria-label="Toggle Searchbar" aria-expanded="false" aria-keyshortcuts="S" aria-controls="searchbar">
|
|
|
|
|
<i class="fa fa-search"></i>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<h1 class="menu-title">Rust语言圣经(Rust Course)</h1>
|
|
|
|
|
|
|
|
|
|
<div class="right-buttons">
|
|
|
|
|
<a href="../../print.html" title="Print this book" aria-label="Print this book">
|
|
|
|
|
<i id="print-button" class="fa fa-print"></i>
|
|
|
|
|
</a>
|
|
|
|
|
<a href="https://github.com/sunface/rust-course" title="Git repository" aria-label="Git repository">
|
|
|
|
|
<i id="git-repository-button" class="fa fa-github"></i>
|
|
|
|
|
</a>
|
|
|
|
|
<a href="https://github.com/sunface/rust-course/edit/main/src/advance/concurrency-with-threads/sync1.md" title="Suggest an edit" aria-label="Suggest an edit">
|
|
|
|
|
<i id="git-edit-button" class="fa fa-edit"></i>
|
|
|
|
|
</a>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="search-wrapper" class="hidden">
|
|
|
|
|
<form id="searchbar-outer" class="searchbar-outer">
|
|
|
|
|
<input type="search" id="searchbar" name="searchbar" placeholder="Search this book ..." aria-controls="searchresults-outer" aria-describedby="searchresults-header">
|
|
|
|
|
</form>
|
|
|
|
|
<div id="searchresults-outer" class="searchresults-outer hidden">
|
|
|
|
|
<div id="searchresults-header" class="searchresults-header"></div>
|
|
|
|
|
<ul id="searchresults">
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- Apply ARIA attributes after the sidebar and the sidebar toggle button are added to the DOM -->
|
|
|
|
|
<script>
|
|
|
|
|
document.getElementById('sidebar-toggle').setAttribute('aria-expanded', sidebar === 'visible');
|
|
|
|
|
document.getElementById('sidebar').setAttribute('aria-hidden', sidebar !== 'visible');
|
|
|
|
|
Array.from(document.querySelectorAll('#sidebar a')).forEach(function(link) {
|
|
|
|
|
link.setAttribute('tabIndex', sidebar === 'visible' ? 0 : -1);
|
|
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<div id="content" class="content">
|
|
|
|
|
<!-- Page table of contents -->
|
|
|
|
|
<div class="sidetoc"><nav class="pagetoc"></nav></div>
|
|
|
|
|
<main>
|
|
|
|
|
<h1 id="线程同步锁condvar-和信号量"><a class="header" href="#线程同步锁condvar-和信号量">线程同步:锁、Condvar 和信号量</a></h1>
|
|
|
|
|
<p>在多线程编程中,同步性极其的重要,当你需要同时访问一个资源、控制不同线程的执行次序时,都需要使用到同步性。</p>
|
|
|
|
|
<p>在 Rust 中有多种方式可以实现同步性。在上一节中讲到的消息传递就是同步性的一种实现方式,例如我们可以通过消息传递来控制不同线程间的执行次序。还可以使用共享内存来实现同步性,例如通过锁和原子操作等并发原语来实现多个线程同时且安全地去访问一个资源。</p>
|
|
|
|
|
<h2 id="该如何选择"><a class="header" href="#该如何选择">该如何选择</a></h2>
|
|
|
|
|
<p>共享内存可以说是同步的灵魂,因为消息传递的底层实际上也是通过共享内存来实现,两者的区别如下:</p>
|
|
|
|
|
<ul>
|
|
|
|
|
<li>共享内存相对消息传递能节省多次内存拷贝的成本</li>
|
|
|
|
|
<li>共享内存的实现简洁的多</li>
|
|
|
|
|
<li>共享内存的锁竞争更多</li>
|
|
|
|
|
</ul>
|
|
|
|
|
<p>消息传递适用的场景很多,我们下面列出了几个主要的使用场景:</p>
|
|
|
|
|
<ul>
|
|
|
|
|
<li>需要可靠和简单的(简单不等于简洁)实现时</li>
|
|
|
|
|
<li>需要模拟现实世界,例如用消息去通知某个目标执行相应的操作时</li>
|
|
|
|
|
<li>需要一个任务处理流水线(管道)时,等等</li>
|
|
|
|
|
</ul>
|
|
|
|
|
<p>而使用共享内存(并发原语)的场景往往就比较简单粗暴:需要简洁的实现以及更高的性能时。</p>
|
|
|
|
|
<p>总之,消息传递类似一个单所有权的系统:一个值同时只能有一个所有者,如果另一个线程需要该值的所有权,需要将所有权通过消息传递进行转移。而共享内存类似于一个多所有权的系统:多个线程可以同时访问同一个值。</p>
|
|
|
|
|
<h2 id="互斥锁-mutex"><a class="header" href="#互斥锁-mutex">互斥锁 Mutex</a></h2>
|
|
|
|
|
<p>既然是共享内存,那并发原语自然是重中之重,先来一起看看皇冠上的明珠: 互斥锁<code>Mutex</code>(mutual exclusion 的缩写)。</p>
|
|
|
|
|
<p><code>Mutex</code>让多个线程并发的访问同一个值变成了排队访问:同一时间,只允许一个线程<code>A</code>访问该值,其它线程需要等待<code>A</code>访问完成后才能继续。</p>
|
|
|
|
|
<h4 id="单线程中使用-mutex"><a class="header" href="#单线程中使用-mutex">单线程中使用 Mutex</a></h4>
|
|
|
|
|
<p>先来看看单线程中<code>Mutex</code>该如何使用:</p>
|
|
|
|
|
<pre><pre class="playground"><code class="language-rust edition2021">use std::sync::Mutex;
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
// 使用`Mutex`结构体的关联函数创建新的互斥锁实例
|
|
|
|
|
let m = Mutex::new(5);
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
// 获取锁,然后deref为`m`的引用
|
|
|
|
|
// lock返回的是Result
|
|
|
|
|
let mut num = m.lock().unwrap();
|
|
|
|
|
*num = 6;
|
|
|
|
|
// 锁自动被drop
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
println!("m = {:?}", m);
|
|
|
|
|
}</code></pre></pre>
|
|
|
|
|
<p>在注释中,已经大致描述了代码的功能,不过有一点需要注意:和<code>Box</code>类似,数据被<code>Mutex</code>所拥有,要访问内部的数据,需要使用方法<code>m.lock()</code>向<code>m</code>申请一个锁, 该方法会<strong>阻塞当前线程,直到获取到锁</strong>,因此当多个线程同时访问该数据时,只有一个线程能获取到锁,其它线程只能阻塞着等待,这样就保证了数据能被安全的修改!</p>
|
|
|
|
|
<p><strong><code>m.lock()</code>方法也有可能报错</strong>,例如当前正在持有锁的线程<code>panic</code>了。在这种情况下,其它线程不可能再获得锁,因此<code>lock</code>方法会返回一个错误。</p>
|
|
|
|
|
<p>这里你可能奇怪,<code>m.lock</code>明明返回一个锁,怎么就变成我们的<code>num</code>数值了?聪明的读者可能会想到智能指针,没错,因为<code>Mutex<T></code>是一个智能指针,准确的说是<code>m.lock()</code>返回一个智能指针<code>MutexGuard<T></code>:</p>
|
|
|
|
|
<ul>
|
|
|
|
|
<li>它实现了<code>Deref</code>特征,会被自动解引用后获得一个引用类型,该引用指向<code>Mutex</code>内部的数据</li>
|
|
|
|
|
<li>它还实现了<code>Drop</code>特征,在超出作用域后,自动释放锁,以便其它线程能继续获取锁</li>
|
|
|
|
|
</ul>
|
|
|
|
|
<p>正因为智能指针的使用,使得我们无需任何操作就能获取其中的数据。 如果释放锁,你需要做的仅仅是做好锁的作用域管理,例如上述代码的内部花括号使用,建议读者尝试下去掉内部的花括号,然后再次尝试获取第二个锁<code>num1</code>,看看会发生什么,友情提示:不会报错,但是主线程会永远阻塞,因为不幸发生了死锁。</p>
|
|
|
|
|
<pre><pre class="playground"><code class="language-rust edition2021">use std::sync::Mutex;
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
let m = Mutex::new(5);
|
|
|
|
|
|
|
|
|
|
let mut num = m.lock().unwrap();
|
|
|
|
|
*num = 6;
|
|
|
|
|
// 锁还没有被 drop 就尝试申请下一个锁,导致主线程阻塞
|
|
|
|
|
// drop(num); // 手动 drop num ,可以让 num1 申请到下个锁
|
|
|
|
|
let mut num1 = m.lock().unwrap();
|
|
|
|
|
*num1 = 7;
|
|
|
|
|
// drop(num1); // 手动 drop num1 ,观察打印结果的不同
|
|
|
|
|
|
|
|
|
|
println!("m = {:?}", m);
|
|
|
|
|
}</code></pre></pre>
|
|
|
|
|
<h4 id="多线程中使用-mutex"><a class="header" href="#多线程中使用-mutex">多线程中使用 Mutex</a></h4>
|
|
|
|
|
<p>单线程中使用锁,说实话纯粹是为了演示功能,毕竟多线程才是锁的舞台。 现在,我们再来看看,如何在多线程下使用<code>Mutex</code>来访问同一个资源.</p>
|
|
|
|
|
<h5 id="无法运行的rct"><a class="header" href="#无法运行的rct">无法运行的<code>Rc<T></code></a></h5>
|
|
|
|
|
<pre><pre class="playground"><code class="language-rust edition2021">use std::rc::Rc;
|
|
|
|
|
use std::sync::Mutex;
|
|
|
|
|
use std::thread;
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
// 通过`Rc`实现`Mutex`的多所有权
|
|
|
|
|
let counter = Rc::new(Mutex::new(0));
|
|
|
|
|
let mut handles = vec![];
|
|
|
|
|
|
|
|
|
|
for _ in 0..10 {
|
|
|
|
|
let counter = Rc::clone(&counter);
|
|
|
|
|
// 创建子线程,并将`Mutex`的所有权拷贝传入到子线程中
|
|
|
|
|
let handle = thread::spawn(move || {
|
|
|
|
|
let mut num = counter.lock().unwrap();
|
|
|
|
|
|
|
|
|
|
*num += 1;
|
|
|
|
|
});
|
|
|
|
|
handles.push(handle);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 等待所有子线程完成
|
|
|
|
|
for handle in handles {
|
|
|
|
|
handle.join().unwrap();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 输出最终的计数结果
|
|
|
|
|
println!("Result: {}", *counter.lock().unwrap());
|
|
|
|
|
}</code></pre></pre>
|
|
|
|
|
<p>由于子线程需要通过<code>move</code>拿走锁的所有权,因此我们需要使用多所有权来保证每个线程都拿到数据的独立所有权,恰好智能指针<a href="https://course.rs/advance/smart-pointer/rc-arc.html"><code>Rc<T></code></a>可以做到(<strong>上面代码会报错</strong>!具体往下看,别跳过-, -)。</p>
|
|
|
|
|
<p>以上代码实现了在多线程中计数的功能,由于多个线程都需要去修改该计数器,因此我们需要使用锁来保证同一时间只有一个线程可以修改计数器,否则会导致脏数据:想象一下 A 线程和 B 线程同时拿到计数器,获取了当前值<code>1</code>, 并且同时对其进行了修改,最后值变成<code>2</code>,你会不会在风中凌乱?毕竟正确的值是<code>3</code>,因为两个线程各自加 1。</p>
|
|
|
|
|
<p>可能有人会说,有那么巧的事情吗?事实上,对于人类来说,因为干啥啥慢,并没有那么多巧合,所以人总会存在巧合心理。但是对于计算机而言,每秒可以轻松运行上亿次,在这种频次下,一切巧合几乎都将必然发生,因此千万不要有任何侥幸心理。</p>
|
|
|
|
|
<blockquote>
|
|
|
|
|
<p>如果事情有变坏的可能,不管这种可能性有多小,它都会发生! - 在计算机领域歪打正着的墨菲定律</p>
|
|
|
|
|
</blockquote>
|
|
|
|
|
<p>事实上,上面的代码会报错:</p>
|
|
|
|
|
<pre><code class="language-console">error[E0277]: `Rc<Mutex<i32>>` cannot be sent between threads safely
|
|
|
|
|
// `Rc`无法在线程中安全的传输
|
|
|
|
|
--> src/main.rs:11:22
|
|
|
|
|
|
|
|
|
|
|
13 | let handle = thread::spawn(move || {
|
|
|
|
|
| ______________________^^^^^^^^^^^^^_-
|
|
|
|
|
| | |
|
|
|
|
|
| | `Rc<Mutex<i32>>` cannot be sent between threads safely
|
|
|
|
|
14 | | let mut num = counter.lock().unwrap();
|
|
|
|
|
15 | |
|
|
|
|
|
16 | | *num += 1;
|
|
|
|
|
17 | | });
|
|
|
|
|
| |_________- within this `[closure@src/main.rs:11:36: 15:10]`
|
|
|
|
|
|
|
|
|
|
|
= help: within `[closure@src/main.rs:11:36: 15:10]`, the trait `Send` is not implemented for `Rc<Mutex<i32>>`
|
|
|
|
|
// `Rc`没有实现`Send`特征
|
|
|
|
|
= note: required because it appears within the type `[closure@src/main.rs:11:36: 15:10]`
|
|
|
|
|
</code></pre>
|
|
|
|
|
<p>错误中提到了一个关键点:<code>Rc<T></code>无法在线程中传输,因为它没有实现<code>Send</code>特征(在下一节将详细介绍),而该特征可以确保数据在线程中安全的传输。</p>
|
|
|
|
|
<h5 id="多线程安全的-arct"><a class="header" href="#多线程安全的-arct">多线程安全的 <code>Arc<T></code></a></h5>
|
|
|
|
|
<p>好在,我们有<code>Arc<T></code>,得益于它的<a href="https://course.rs/advance/smart-pointer/rc-arc.html#%E5%A4%9A%E7%BA%BF%E7%A8%8B%E6%97%A0%E5%8A%9B%E7%9A%84rc">内部计数器</a>是多线程安全的,因此可以在多线程环境中使用:</p>
|
|
|
|
|
<pre><pre class="playground"><code class="language-rust edition2021">use std::sync::{Arc, Mutex};
|
|
|
|
|
use std::thread;
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
let counter = Arc::new(Mutex::new(0));
|
|
|
|
|
let mut handles = vec![];
|
|
|
|
|
|
|
|
|
|
for _ in 0..10 {
|
|
|
|
|
let counter = Arc::clone(&counter);
|
|
|
|
|
let handle = thread::spawn(move || {
|
|
|
|
|
let mut num = counter.lock().unwrap();
|
|
|
|
|
|
|
|
|
|
*num += 1;
|
|
|
|
|
});
|
|
|
|
|
handles.push(handle);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for handle in handles {
|
|
|
|
|
handle.join().unwrap();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
println!("Result: {}", *counter.lock().unwrap());
|
|
|
|
|
}</code></pre></pre>
|
|
|
|
|
<p>以上代码可以顺利运行:</p>
|
|
|
|
|
<pre><code class="language-console">Result: 10
|
|
|
|
|
</code></pre>
|
|
|
|
|
<h4 id="内部可变性"><a class="header" href="#内部可变性">内部可变性</a></h4>
|
|
|
|
|
<p>在之前章节,我们提到过<a href="https://course.rs/advance/smart-pointer/cell-refcell.html#%E5%86%85%E9%83%A8%E5%8F%AF%E5%8F%98%E6%80%A7">内部可变性</a>,其中<code>Rc<T></code>和<code>RefCell<T></code>的结合,可以实现单线程的内部可变性。</p>
|
|
|
|
|
<p>现在我们又有了新的武器,由于<code>Mutex<T></code>可以支持修改内部数据,当结合<code>Arc<T></code>一起使用时,可以实现多线程的内部可变性。</p>
|
|
|
|
|
<p>简单总结下:<code>Rc<T>/RefCell<T></code>用于单线程内部可变性, <code>Arc<T>/Mutex<T></code>用于多线程内部可变性。</p>
|
|
|
|
|
<h4 id="需要小心使用的-mutex"><a class="header" href="#需要小心使用的-mutex">需要小心使用的 Mutex</a></h4>
|
|
|
|
|
<p>如果有其它语言的编程经验,就知道互斥锁这家伙不好对付,想要正确使用,你得牢记在心:</p>
|
|
|
|
|
<ul>
|
|
|
|
|
<li>在使用数据前必须先获取锁</li>
|
|
|
|
|
<li>在数据使用完成后,必须<strong>及时</strong>的释放锁,比如文章开头的例子,使用内部语句块的目的就是为了及时的释放锁</li>
|
|
|
|
|
</ul>
|
|
|
|
|
<p>这两点看起来不起眼,但要正确的使用,其实是相当不简单的,对于其它语言,忘记释放锁是经常发生的,虽然 Rust 通过智能指针的<code>drop</code>机制帮助我们避免了这一点,但是由于不及时释放锁导致的性能问题也是常见的。</p>
|
|
|
|
|
<p>正因为这种困难性,导致很多用户都热衷于使用消息传递的方式来实现同步,例如 Go 语言直接把<code>channel</code>内置在语言特性中,甚至还有无锁的语言,例如<code>erlang</code>,完全使用<code>Actor</code>模型,依赖消息传递来完成共享和同步。幸好 Rust 的类型系统、所有权机制、智能指针等可以很好的帮助我们减轻使用锁时的负担。</p>
|
|
|
|
|
<p>另一个值的注意的是在使用<code>Mutex<T></code>时,Rust 无法帮我们避免所有的逻辑错误,例如在之前章节,我们提到过使用<code>Rc<T></code>可能会导致<a href="https://course.rs/advance/circle-self-ref/circle-reference.html">循环引用的问题</a>。类似的,<code>Mutex<T></code>也存在使用上的风险,例如创建死锁(deadlock):当一个操作试图锁住两个资源,然后两个线程各自获取其中一个锁,并试图获取另一个锁时,就会造成死锁。</p>
|
|
|
|
|
<h2 id="死锁"><a class="header" href="#死锁">死锁</a></h2>
|
|
|
|
|
<p>在 Rust 中有多种方式可以创建死锁,了解这些方式有助于你提前规避可能的风险,一起来看看。</p>
|
|
|
|
|
<h4 id="单线程死锁"><a class="header" href="#单线程死锁">单线程死锁</a></h4>
|
|
|
|
|
<p>这种死锁比较容易规避,但是当代码复杂后还是有可能遇到:</p>
|
|
|
|
|
<pre><pre class="playground"><code class="language-rust edition2021">use std::sync::Mutex;
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
let data = Mutex::new(0);
|
|
|
|
|
let d1 = data.lock();
|
|
|
|
|
let d2 = data.lock();
|
|
|
|
|
} // d1锁在此处释放</code></pre></pre>
|
|
|
|
|
<p>非常简单,只要你在另一个锁还未被释放时去申请新的锁,就会触发,当代码复杂后,这种情况可能就没有那么显眼。</p>
|
|
|
|
|
<h4 id="多线程死锁"><a class="header" href="#多线程死锁">多线程死锁</a></h4>
|
|
|
|
|
<p>当我们拥有两个锁,且两个线程各自使用了其中一个锁,然后试图去访问另一个锁时,就可能发生死锁:</p>
|
|
|
|
|
<pre><pre class="playground"><code class="language-rust edition2021">use std::{sync::{Mutex, MutexGuard}, thread};
|
|
|
|
|
use std::thread::sleep;
|
|
|
|
|
use std::time::Duration;
|
|
|
|
|
|
|
|
|
|
use lazy_static::lazy_static;
|
|
|
|
|
lazy_static! {
|
|
|
|
|
static ref MUTEX1: Mutex<i64> = Mutex::new(0);
|
|
|
|
|
static ref MUTEX2: Mutex<i64> = Mutex::new(0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
// 存放子线程的句柄
|
|
|
|
|
let mut children = vec![];
|
|
|
|
|
for i_thread in 0..2 {
|
|
|
|
|
children.push(thread::spawn(move || {
|
|
|
|
|
for _ in 0..1 {
|
|
|
|
|
// 线程1
|
|
|
|
|
if i_thread % 2 == 0 {
|
|
|
|
|
// 锁住MUTEX1
|
|
|
|
|
let guard: MutexGuard<i64> = MUTEX1.lock().unwrap();
|
|
|
|
|
|
|
|
|
|
println!("线程 {} 锁住了MUTEX1,接着准备去锁MUTEX2 !", i_thread);
|
|
|
|
|
|
|
|
|
|
// 当前线程睡眠一小会儿,等待线程2锁住MUTEX2
|
|
|
|
|
sleep(Duration::from_millis(10));
|
|
|
|
|
|
|
|
|
|
// 去锁MUTEX2
|
|
|
|
|
let guard = MUTEX2.lock().unwrap();
|
|
|
|
|
// 线程2
|
|
|
|
|
} else {
|
|
|
|
|
// 锁住MUTEX2
|
|
|
|
|
let _guard = MUTEX2.lock().unwrap();
|
|
|
|
|
|
|
|
|
|
println!("线程 {} 锁住了MUTEX2, 准备去锁MUTEX1", i_thread);
|
|
|
|
|
|
|
|
|
|
let _guard = MUTEX1.lock().unwrap();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 等子线程完成
|
|
|
|
|
for child in children {
|
|
|
|
|
let _ = child.join();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
println!("死锁没有发生");
|
|
|
|
|
}</code></pre></pre>
|
|
|
|
|
<p>在上面的描述中,我们用了"可能"二字,原因在于死锁在这段代码中不是必然发生的,总有一次运行你能看到最后一行打印输出。这是由于子线程的初始化顺序和执行速度并不确定,我们无法确定哪个线程中的锁先被执行,因此也无法确定两个线程对锁的具体使用顺序。</p>
|
|
|
|
|
<p>但是,可以简单的说明下死锁发生的必然条件:线程 1 锁住了<code>MUTEX1</code>并且线程<code>2</code>锁住了<code>MUTEX2</code>,然后线程 1 试图去访问<code>MUTEX2</code>,同时线程<code>2</code>试图去访问<code>MUTEX1</code>,就会死锁。 因为线程 2 需要等待线程 1 释放<code>MUTEX1</code>后,才会释放<code>MUTEX2</code>,而与此同时,线程 1 需要等待线程 2 释放<code>MUTEX2</code>后才能释放<code>MUTEX1</code>,这种情况造成了两个线程都无法释放对方需要的锁,最终死锁。</p>
|
|
|
|
|
<p>那么为何某些时候,死锁不会发生?原因很简单,线程 2 在线程 1 锁<code>MUTEX1</code>之前,就已经全部执行完了,随之线程 2 的<code>MUTEX2</code>和<code>MUTEX1</code>被全部释放,线程 1 对锁的获取将不再有竞争者。 同理,线程 1 若全部被执行完,那线程 2 也不会被锁,因此我们在线程 1 中间加一个睡眠,增加死锁发生的概率。如果你在线程 2 中同样的位置也增加一个睡眠,那死锁将必然发生!</p>
|
|
|
|
|
<h4 id="try_lock"><a class="header" href="#try_lock">try_lock</a></h4>
|
|
|
|
|
<p>与<code>lock</code>方法不同,<code>try_lock</code>会<strong>尝试</strong>去获取一次锁,如果无法获取会返回一个错误,因此<strong>不会发生阻塞</strong>:</p>
|
|
|
|
|
<pre><pre class="playground"><code class="language-rust edition2021">use std::{sync::{Mutex, MutexGuard}, thread};
|
|
|
|
|
use std::thread::sleep;
|
|
|
|
|
use std::time::Duration;
|
|
|
|
|
|
|
|
|
|
use lazy_static::lazy_static;
|
|
|
|
|
lazy_static! {
|
|
|
|
|
static ref MUTEX1: Mutex<i64> = Mutex::new(0);
|
|
|
|
|
static ref MUTEX2: Mutex<i64> = Mutex::new(0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
// 存放子线程的句柄
|
|
|
|
|
let mut children = vec![];
|
|
|
|
|
for i_thread in 0..2 {
|
|
|
|
|
children.push(thread::spawn(move || {
|
|
|
|
|
for _ in 0..1 {
|
|
|
|
|
// 线程1
|
|
|
|
|
if i_thread % 2 == 0 {
|
|
|
|
|
// 锁住MUTEX1
|
|
|
|
|
let guard: MutexGuard<i64> = MUTEX1.lock().unwrap();
|
|
|
|
|
|
|
|
|
|
println!("线程 {} 锁住了MUTEX1,接着准备去锁MUTEX2 !", i_thread);
|
|
|
|
|
|
|
|
|
|
// 当前线程睡眠一小会儿,等待线程2锁住MUTEX2
|
|
|
|
|
sleep(Duration::from_millis(10));
|
|
|
|
|
|
|
|
|
|
// 去锁MUTEX2
|
|
|
|
|
let guard = MUTEX2.try_lock();
|
|
|
|
|
println!("线程 {} 获取 MUTEX2 锁的结果: {:?}", i_thread, guard);
|
|
|
|
|
// 线程2
|
|
|
|
|
} else {
|
|
|
|
|
// 锁住MUTEX2
|
|
|
|
|
let _guard = MUTEX2.lock().unwrap();
|
|
|
|
|
|
|
|
|
|
println!("线程 {} 锁住了MUTEX2, 准备去锁MUTEX1", i_thread);
|
|
|
|
|
sleep(Duration::from_millis(10));
|
|
|
|
|
let guard = MUTEX1.try_lock();
|
|
|
|
|
println!("线程 {} 获取 MUTEX1 锁的结果: {:?}", i_thread, guard);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 等子线程完成
|
|
|
|
|
for child in children {
|
|
|
|
|
let _ = child.join();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
println!("死锁没有发生");
|
|
|
|
|
}</code></pre></pre>
|
|
|
|
|
<p>为了演示<code>try_lock</code>的作用,我们特定使用了之前必定会死锁的代码,并且将<code>lock</code>替换成<code>try_lock</code>,与之前的结果不同,这段代码将不会再有死锁发生:</p>
|
|
|
|
|
<pre><code class="language-console">线程 0 锁住了MUTEX1,接着准备去锁MUTEX2 !
|
|
|
|
|
线程 1 锁住了MUTEX2, 准备去锁MUTEX1
|
|
|
|
|
线程 1 获取 MUTEX1 锁的结果: Err("WouldBlock")
|
|
|
|
|
线程 0 获取 MUTEX2 锁的结果: Ok(0)
|
|
|
|
|
死锁没有发生
|
|
|
|
|
</code></pre>
|
|
|
|
|
<p>如上所示,当<code>try_lock</code>失败时,会报出一个错误:<code>Err("WouldBlock")</code>,接着线程中的剩余代码会继续执行,不会被阻塞。</p>
|
|
|
|
|
<blockquote>
|
|
|
|
|
<p>一个有趣的命名规则:在 Rust 标准库中,使用<code>try_xxx</code>都会尝试进行一次操作,如果无法完成,就立即返回,不会发生阻塞。例如消息传递章节中的<code>try_recv</code>以及本章节中的<code>try_lock</code></p>
|
|
|
|
|
</blockquote>
|
|
|
|
|
<h2 id="读写锁-rwlock"><a class="header" href="#读写锁-rwlock">读写锁 RwLock</a></h2>
|
|
|
|
|
<p><code>Mutex</code>会对每次读写都进行加锁,但某些时候,我们需要大量的并发读,<code>Mutex</code>就无法满足需求了,此时就可以使用<code>RwLock</code>:</p>
|
|
|
|
|
<pre><pre class="playground"><code class="language-rust edition2021">use std::sync::RwLock;
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
let lock = RwLock::new(5);
|
|
|
|
|
|
|
|
|
|
// 同一时间允许多个读
|
|
|
|
|
{
|
|
|
|
|
let r1 = lock.read().unwrap();
|
|
|
|
|
let r2 = lock.read().unwrap();
|
|
|
|
|
assert_eq!(*r1, 5);
|
|
|
|
|
assert_eq!(*r2, 5);
|
|
|
|
|
} // 读锁在此处被drop
|
|
|
|
|
|
|
|
|
|
// 同一时间只允许一个写
|
|
|
|
|
{
|
|
|
|
|
let mut w = lock.write().unwrap();
|
|
|
|
|
*w += 1;
|
|
|
|
|
assert_eq!(*w, 6);
|
|
|
|
|
|
|
|
|
|
// 以下代码会阻塞发生死锁,因为读和写不允许同时存在
|
|
|
|
|
// 写锁w直到该语句块结束才被释放,因此下面的读锁依然处于`w`的作用域中
|
|
|
|
|
// let r1 = lock.read();
|
|
|
|
|
// println!("{:?}",r1);
|
|
|
|
|
}// 写锁在此处被drop
|
|
|
|
|
}</code></pre></pre>
|
|
|
|
|
<p><code>RwLock</code>在使用上和<code>Mutex</code>区别不大,只有在多个读的情况下不阻塞程序,其他如读写、写读、写写情况下均会对后获取锁的操作进行阻塞。</p>
|
|
|
|
|
<p>我们也可以使用<code>try_write</code>和<code>try_read</code>来尝试进行一次写/读,若失败则返回错误:</p>
|
|
|
|
|
<pre><code class="language-console">Err("WouldBlock")
|
|
|
|
|
</code></pre>
|
|
|
|
|
<p>简单总结下<code>RwLock</code>:</p>
|
|
|
|
|
<ol>
|
|
|
|
|
<li>同时允许多个读,但最多只能有一个写</li>
|
|
|
|
|
<li>读和写不能同时存在</li>
|
|
|
|
|
<li>读可以使用<code>read</code>、<code>try_read</code>,写<code>write</code>、<code>try_write</code>, 在实际项目中,<code>try_xxx</code>会安全的多</li>
|
|
|
|
|
</ol>
|
|
|
|
|
<h2 id="mutex-还是-rwlock"><a class="header" href="#mutex-还是-rwlock">Mutex 还是 RwLock</a></h2>
|
|
|
|
|
<p>首先简单性上<code>Mutex</code>完胜,因为使用<code>RwLock</code>你得操心几个问题:</p>
|
|
|
|
|
<ul>
|
|
|
|
|
<li>读和写不能同时发生,如果使用<code>try_xxx</code>解决,就必须做大量的错误处理和失败重试机制</li>
|
|
|
|
|
<li>当读多写少时,写操作可能会因为一直无法获得锁导致连续多次失败(<a href="https://stackoverflow.com/questions/2190090/how-to-prevent-writer-starvation-in-a-read-write-lock-in-pthreads">writer starvation</a>)</li>
|
|
|
|
|
<li>RwLock 其实是操作系统提供的,实现原理要比<code>Mutex</code>复杂的多,因此单就锁的性能而言,比不上原生实现的<code>Mutex</code></li>
|
|
|
|
|
</ul>
|
|
|
|
|
<p>再来简单总结下两者的使用场景:</p>
|
|
|
|
|
<ul>
|
|
|
|
|
<li>追求高并发读取时,使用<code>RwLock</code>,因为<code>Mutex</code>一次只允许一个线程去读取</li>
|
|
|
|
|
<li>如果要保证写操作的成功性,使用<code>Mutex</code></li>
|
|
|
|
|
<li>不知道哪个合适,统一使用<code>Mutex</code></li>
|
|
|
|
|
</ul>
|
|
|
|
|
<p>需要注意的是,<code>RwLock</code>虽然看上去貌似提供了高并发读取的能力,但这个不能说明它的性能比<code>Mutex</code>高,事实上<code>Mutex</code>性能要好不少,后者<strong>唯一的问题也仅仅在于不能并发读取</strong>。</p>
|
|
|
|
|
<p>一个常见的、错误的使用<code>RwLock</code>的场景就是使用<code>HashMap</code>进行简单读写,因为<code>HashMap</code>的读和写都非常快,<code>RwLock</code>的复杂实现和相对低的性能反而会导致整体性能的降低,因此一般来说更适合使用<code>Mutex</code>。</p>
|
|
|
|
|
<p>总之,如果你要使用<code>RwLock</code>要确保满足以下两个条件:<strong>并发读,且需要对读到的资源进行"长时间"的操作</strong>,<code>HashMap</code>也许满足了并发读的需求,但是往往并不能满足后者:"长时间"的操作。</p>
|
|
|
|
|
<blockquote>
|
|
|
|
|
<p>benchmark 永远是你在迷茫时最好的朋友!</p>
|
|
|
|
|
</blockquote>
|
|
|
|
|
<h2 id="三方库提供的锁实现"><a class="header" href="#三方库提供的锁实现">三方库提供的锁实现</a></h2>
|
|
|
|
|
<p>标准库在设计时总会存在取舍,因为往往性能并不是最好的,如果你追求性能,可以使用三方库提供的并发原语:</p>
|
|
|
|
|
<ul>
|
|
|
|
|
<li><a href="https://crates.io/crates/parking_lot">parking_lot</a>, 功能更完善、稳定,社区较为活跃,star 较多,更新较为活跃</li>
|
|
|
|
|
<li><a href="https://crates.io/crates/spin">spin</a>, 在多数场景中性能比<code>parking_lot</code>高一点,最近没怎么更新</li>
|
|
|
|
|
</ul>
|
|
|
|
|
<p>如果不是追求特别极致的性能,建议选择前者。</p>
|
|
|
|
|
<h2 id="用条件变量condvar控制线程的同步"><a class="header" href="#用条件变量condvar控制线程的同步">用条件变量(Condvar)控制线程的同步</a></h2>
|
|
|
|
|
<p><code>Mutex</code>用于解决资源安全访问的问题,但是我们还需要一个手段来解决资源访问顺序的问题。而 Rust 考虑到了这一点,为我们提供了条件变量(Condition Variables),它经常和<code>Mutex</code>一起使用,可以让线程挂起,直到某个条件发生后再继续执行,其实<code>Condvar</code>我们在之前的多线程章节就已经见到过,现在再来看一个不同的例子:</p>
|
|
|
|
|
<pre><pre class="playground"><code class="language-rust edition2021">use std::sync::{Arc,Mutex,Condvar};
|
|
|
|
|
use std::thread::{spawn,sleep};
|
|
|
|
|
use std::time::Duration;
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
let flag = Arc::new(Mutex::new(false));
|
|
|
|
|
let cond = Arc::new(Condvar::new());
|
|
|
|
|
let cflag = flag.clone();
|
|
|
|
|
let ccond = cond.clone();
|
|
|
|
|
|
|
|
|
|
let hdl = spawn(move || {
|
|
|
|
|
let mut lock = cflag.lock().unwrap();
|
|
|
|
|
let mut counter = 0;
|
|
|
|
|
|
|
|
|
|
while counter < 3 {
|
|
|
|
|
while !*lock {
|
|
|
|
|
// wait方法会接收一个MutexGuard<'a, T>,且它会自动地暂时释放这个锁,使其他线程可以拿到锁并进行数据更新。
|
|
|
|
|
// 同时当前线程在此处会被阻塞,直到被其他地方notify后,它会将原本的MutexGuard<'a, T>还给我们,即重新获取到了锁,同时唤醒了此线程。
|
|
|
|
|
lock = ccond.wait(lock).unwrap();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*lock = false;
|
|
|
|
|
|
|
|
|
|
counter += 1;
|
|
|
|
|
println!("inner counter: {}", counter);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
let mut counter = 0;
|
|
|
|
|
loop {
|
|
|
|
|
sleep(Duration::from_millis(1000));
|
|
|
|
|
*flag.lock().unwrap() = true;
|
|
|
|
|
counter += 1;
|
|
|
|
|
if counter > 3 {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
println!("outside counter: {}", counter);
|
|
|
|
|
cond.notify_one();
|
|
|
|
|
}
|
|
|
|
|
hdl.join().unwrap();
|
|
|
|
|
println!("{:?}", flag);
|
|
|
|
|
}</code></pre></pre>
|
|
|
|
|
<p>例子中通过主线程来触发子线程实现交替打印输出:</p>
|
|
|
|
|
<pre><code class="language-console">outside counter: 1
|
|
|
|
|
inner counter: 1
|
|
|
|
|
outside counter: 2
|
|
|
|
|
inner counter: 2
|
|
|
|
|
outside counter: 3
|
|
|
|
|
inner counter: 3
|
|
|
|
|
Mutex { data: true, poisoned: false, .. }
|
|
|
|
|
</code></pre>
|
|
|
|
|
<h2 id="信号量-semaphore"><a class="header" href="#信号量-semaphore">信号量 Semaphore</a></h2>
|
|
|
|
|
<p>在多线程中,另一个重要的概念就是信号量,使用它可以让我们精准的控制当前正在运行的任务最大数量。想象一下,当一个新游戏刚开服时(有些较火的老游戏也会,比如<code>wow</code>),往往会控制游戏内玩家的同时在线数,一旦超过某个临界值,就开始进行排队进服。而在实际使用中,也有很多时候,我们需要通过信号量来控制最大并发数,防止服务器资源被撑爆。</p>
|
|
|
|
|
<p>本来 Rust 在标准库中有提供一个<a href="https://doc.rust-lang.org/1.8.0/std/sync/struct.Semaphore.html">信号量实现</a>, 但是由于各种原因这个库现在已经不再推荐使用了,因此我们推荐使用<code>tokio</code>中提供的<code>Semaphore</code>实现: <a href="https://github.com/tokio-rs/tokio/blob/master/tokio/src/sync/semaphore.rs"><code>tokio::sync::Semaphore</code></a>。</p>
|
|
|
|
|
<pre><pre class="playground"><code class="language-rust edition2021">use std::sync::Arc;
|
|
|
|
|
use tokio::sync::Semaphore;
|
|
|
|
|
|
|
|
|
|
#[tokio::main]
|
|
|
|
|
async fn main() {
|
|
|
|
|
let semaphore = Arc::new(Semaphore::new(3));
|
|
|
|
|
let mut join_handles = Vec::new();
|
|
|
|
|
|
|
|
|
|
for _ in 0..5 {
|
|
|
|
|
let permit = semaphore.clone().acquire_owned().await.unwrap();
|
|
|
|
|
join_handles.push(tokio::spawn(async move {
|
|
|
|
|
//
|
|
|
|
|
// 在这里执行任务...
|
|
|
|
|
//
|
|
|
|
|
drop(permit);
|
|
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for handle in join_handles {
|
|
|
|
|
handle.await.unwrap();
|
|
|
|
|
}
|
|
|
|
|
}</code></pre></pre>
|
|
|
|
|
<p>上面代码创建了一个容量为 3 的信号量,当正在执行的任务超过 3 时,剩下的任务需要等待正在执行任务完成并减少信号量后到 3 以内时,才能继续执行。</p>
|
|
|
|
|
<p>这里的关键其实说白了就在于:信号量的申请和归还,使用前需要申请信号量,如果容量满了,就需要等待;使用后需要释放信号量,以便其它等待者可以继续。</p>
|
|
|
|
|
<h2 id="总结"><a class="header" href="#总结">总结</a></h2>
|
|
|
|
|
<p>在很多时候,消息传递都是非常好用的手段,它可以让我们的数据在任务流水线上不断流转,实现起来非常优雅。</p>
|
|
|
|
|
<p>但是它并不能优雅的解决所有问题,因为我们面临的真实世界是非常复杂的,无法用某一种银弹统一解决。当面临消息传递不太适用的场景时,或者需要更好的性能和简洁性时,我们往往需要用锁来解决这些问题,因为锁允许多个线程同时访问同一个资源,简单粗暴。</p>
|
|
|
|
|
<p>除了锁之外,其实还有一种并发原语可以帮助我们解决并发访问数据的问题,那就是原子类型 Atomic,在下一章节中,我们会对其进行深入讲解。</p>
|
|
|
|
|
|
|
|
|
|
<div id="giscus-container"></div>
|
|
|
|
|
</main>
|
|
|
|
|
|
|
|
|
|
<nav class="nav-wrapper" aria-label="Page navigation">
|
|
|
|
|
<!-- Mobile navigation buttons -->
|
|
|
|
|
<a rel="prev" href="../../advance/concurrency-with-threads/message-passing.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left">
|
|
|
|
|
<i class="fa fa-angle-left"></i>
|
|
|
|
|
</a>
|
|
|
|
|
|
|
|
|
|
<a rel="next prefetch" href="../../advance/concurrency-with-threads/sync2.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right">
|
|
|
|
|
<i class="fa fa-angle-right"></i>
|
|
|
|
|
</a>
|
|
|
|
|
|
|
|
|
|
<div style="clear: both"></div>
|
|
|
|
|
</nav>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<nav class="nav-wide-wrapper" aria-label="Page navigation">
|
|
|
|
|
<a rel="prev" href="../../advance/concurrency-with-threads/message-passing.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left">
|
|
|
|
|
<i class="fa fa-angle-left"></i>
|
|
|
|
|
</a>
|
|
|
|
|
|
|
|
|
|
<a rel="next prefetch" href="../../advance/concurrency-with-threads/sync2.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right">
|
|
|
|
|
<i class="fa fa-angle-right"></i>
|
|
|
|
|
</a>
|
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
window.playground_copyable = true;
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<script src="../../ace.js"></script>
|
|
|
|
|
<script src="../../editor.js"></script>
|
|
|
|
|
<script src="../../mode-rust.js"></script>
|
|
|
|
|
<script src="../../theme-dawn.js"></script>
|
|
|
|
|
<script src="../../theme-tomorrow_night.js"></script>
|
|
|
|
|
|
|
|
|
|
<script src="../../elasticlunr.min.js"></script>
|
|
|
|
|
<script src="../../mark.min.js"></script>
|
|
|
|
|
<script src="../../searcher.js"></script>
|
|
|
|
|
|
|
|
|
|
<script src="../../clipboard.min.js"></script>
|
|
|
|
|
<script src="../../highlight.js"></script>
|
|
|
|
|
<script src="../../book.js"></script>
|
|
|
|
|
|
|
|
|
|
<script type="text/javascript" charset="utf-8">
|
|
|
|
|
var pagePath = "advance/concurrency-with-threads/sync1.md"
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Custom JS scripts -->
|
|
|
|
|
<script src="../../assets/custom.js"></script>
|
|
|
|
|
<script src="../../assets/bigPicture.js"></script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|