Skip to Content
詳解 Rustアトミック操作とロック ―並行処理実装のための低レイヤプログラミング
book

詳解 Rustアトミック操作とロック ―並行処理実装のための低レイヤプログラミング

by Mara Bos, 中田 秀基
November 2023
Intermediate to advanced
236 pages
3h 24m
Japanese
O'Reilly Japan, Inc.
Content preview from 詳解 Rustアトミック操作とロック ―並行処理実装のための低レイヤプログラミング

6章Arcの実装

「1.3.3 参照カウント」で、参照カウントを用いて共有所有を実現するstd::sync::Arc<T>について説明した。Arc::new関数はBox::newと同様にメモリを新たに確保する。しかしBoxとは異なり、Arcをクローンすると、新しくメモリを確保せずに、元の領域を共有する。この共有されたメモリ領域は、Arcとそのすべてのクローンがドロップされた際にだけドロップされる。

この型の実装に関連して考えなければならないメモリオーダリングは非常に興味深い。本章では、独自のArc<T>を実装することで、理論から実践に重心を移す。まず基本的なバージョンを作成し、次に循環構造をサポートできるようにweakポインタを用いたバージョンを作る。そして最後には、最適化されたバージョンを作る。この最後のバージョンは、標準ライブラリの実装とほぼ同じになる。

6.1 基本的な参照カウント

最初のバージョンの参照カウントは、1つのメモリ領域を共有するArcオブジェクトの数をカウントするためにAtomicUsizeを1つ使う。まず、このカウンタとTオブジェクトを保持する構造体を定義しよう。

struct ArcData<T> {
    ref_count: AtomicUsize,
    data: T,
}

この構造体がパブリックでないことに気を付けよう。これは我々のArcの内部実装で外からは見えない。

次に、Arc<T>構造体そのものを考えよう。これは実質的にはArcData<T>オブジェクトへの(共有)ポインタにすぎない。

標準のBoxを使ってヒープ上のArcData<T>を管理するようにして、Box<ArcData<T>>のラッパとして実装したくなるかもしれない。しかし、Box

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

データ保護完全ガイド ―あらゆるデータの保全と回復を可能にする

データ保護完全ガイド ―あらゆるデータの保全と回復を可能にする

W. Curtis Preston, 佐野 泰之, 池田 祥孝
作って動かすALife ―実装を通した人工生命モデル理論入門

作って動かすALife ―実装を通した人工生命モデル理論入門

岡 瑞起, 池上 高志, ドミニク チェン, 青木 竜太, 丸山 典宏

Publisher Resources

ISBN: 9784814400515Publisher Website