Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
RustからX Window Systemを触る
Search
garasubo
January 27, 2020
0
610
RustからX Window Systemを触る
garasubo
January 27, 2020
Tweet
Share
More Decks by garasubo
See All by garasubo
Cancel Safetyとスレッドリーク
garasubo
1
410
RustでISUCONに勝つには
garasubo
1
620
Rustでの自作OSをやってきて
garasubo
0
1k
Armの仮想化支援機構を用いてハイパーバイザーを自作する
garasubo
3
6.9k
Rustで始める自作組込みOS
garasubo
1
3.4k
クラウド向けOS(?)Unikernelとは何か
garasubo
0
1.7k
論文紹介:KVM/ARM: The Design and Implementation of the Linux ARM Hypervisor
garasubo
0
560
Featured
See All Featured
The Illustrated Children's Guide to Kubernetes
chrisshort
48
49k
The Invisible Side of Design
smashingmag
299
50k
GraphQLとの向き合い方2022年版
quramy
44
13k
Imperfection Machines: The Place of Print at Facebook
scottboms
267
13k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
45
2.3k
Templates, Plugins, & Blocks: Oh My! Creating the theme that thinks of everything
marktimemedia
28
2.2k
The MySQL Ecosystem @ GitHub 2015
samlambert
250
12k
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
49
2.2k
Building Your Own Lightsaber
phodgson
104
6.2k
ピンチをチャンスに:未来をつくるプロダクトロードマップ #pmconf2020
aki_iinuma
113
50k
Measuring & Analyzing Core Web Vitals
bluesmoon
5
210
Done Done
chrislema
182
16k
Transcript
RustからX Window Systemを触る @garasubo
きっかけ Mozillaの新しいブラウザエンジンのServoのIssueに取り掛 かろうとした https://github.com/servo/servo/issues/24724 Servoの依存するライブラリに変更が必要なことがわかり、 x11を触ることに
X Window System (X11) Linuxのウィンドウシステムの1つ C言語用のインタフェースが提供されている RustもC言語インターフェースを呼び出しをサポート しているので、Rustでも使える
RustからX11ライブラリを触る バインディングのクレートが存在している https://crates.io/crates/x11-dl いくつか対応していないインターフェースもある
RustとC言語はデータ表現が違う 構造体にはrepr(C)をつける 文字列ではStringではなくCstring、CStrを使う 関数ポインタはOptionでラップする Rustでは関数ポインタは0(Null)にならないが、Cではなりえる
Optionは0になりなりえない型ではNoneを0とする最適化を行う
C言語の型はゆるい 例:XIMのPreedit Start Callback 型定義 typedef void (*XIMProc)(XIM,XPointer,XPointer); 現実 static
int preedit_start_callback( XIC xim, XPointer client_data, XPointer call_data){}
C言語にはライフタイムがない 一度参照から生ポインタに変換するとライフタイムや Mutabilityのチェックが消える C言語から渡されてくる生ポインタにもライフタイムがな い 例:C言語からくる文字列ポインタをCString::from_rawに 渡してしまう
Rust側にオーナーシップを渡してしまい、勝手にリソースを開放し てしまう CStrを使うのが正解
まとめ C言語とRustのデータ表現の差異から来る罠はたくさんある ただのC言語バインディングではRustの旨味が消えてしまう 適切にC言語ライブラリをラップして汚いところを隠蔽しま しょう X11直接触るよりはそれをラップしたwinitを使うと楽
https://github.com/rust-windowing/winit