You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Trac3r-rust/doc/mio/index.html

99 lines
12 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="rustdoc"><meta name="description" content="API documentation for the Rust `mio` crate."><meta name="keywords" content="rust, rustlang, rust-lang, mio"><title>mio - Rust</title><link rel="stylesheet" type="text/css" href="../normalize.css"><link rel="stylesheet" type="text/css" href="../rustdoc.css" id="mainThemeStyle"><link rel="stylesheet" type="text/css" href="../dark.css"><link rel="stylesheet" type="text/css" href="../light.css" id="themeStyle"><script src="../storage.js"></script><noscript><link rel="stylesheet" href="../noscript.css"></noscript><link rel="shortcut icon" href="../favicon.ico"><style type="text/css">#crate-search{background-image:url("../down-arrow.svg");}</style></head><body class="rustdoc mod"><!--[if lte IE 8]><div class="warning">This old browser is unsupported and will most likely display funky things.</div><![endif]--><nav class="sidebar"><div class="sidebar-menu">&#9776;</div><a href='../mio/index.html'><div class='logo-container'><img src='../rust-logo.png' alt='logo'></div></a><p class='location'>Crate mio</p><div class="sidebar-elems"><a id='all-types' href='all.html'><p>See all mio's items</p></a><div class="block items"><ul><li><a href="#modules">Modules</a></li><li><a href="#structs">Structs</a></li></ul></div><p class='location'></p><script>window.sidebarCurrent = {name: 'mio', ty: 'mod', relpath: '../'};</script></div></nav><div class="theme-picker"><button id="theme-picker" aria-label="Pick another theme!"><img src="../brush.svg" width="18" alt="Pick another theme!"></button><div id="theme-choices"></div></div><script src="../theme.js"></script><nav class="sub"><form class="search-form js-only"><div class="search-container"><div><select id="crate-search"><option value="All crates">All crates</option></select><input class="search-input" name="search" autocomplete="off" spellcheck="false" placeholder="Click or press S to search, ? for more options…" type="search"></div><a id="settings-menu" href="../settings.html"><img src="../wheel.svg" width="18" alt="Change settings"></a></div></form></nav><section id="main" class="content"><h1 class='fqn'><span class='out-of-band'><span id='render-detail'><a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs">[<span class='inner'>&#x2212;</span>]</a></span><a class='srclink' href='../src/mio/lib.rs.html#1-311' title='goto source code'>[src]</a></span><span class='in-band'>Crate <a class="mod" href=''>mio</a></span></h1><div class='docblock'><p>A fast, low-level IO library for Rust focusing on non-blocking APIs, event
notification, and other useful utilities for building high performance IO
apps.</p>
<h1 id="features" class="section-header"><a href="#features">Features</a></h1>
<ul>
<li>Non-blocking TCP, UDP</li>
<li>I/O event notification queue backed by epoll, kqueue, and IOCP</li>
<li>Zero allocations at runtime</li>
<li>Platform specific extensions</li>
</ul>
<h1 id="non-goals" class="section-header"><a href="#non-goals">Non-goals</a></h1>
<p>The following are specifically omitted from Mio and are left to the user or higher-level libraries.</p>
<ul>
<li>File operations</li>
<li>Thread pools / multi-threaded event loop</li>
<li>Timers</li>
</ul>
<h1 id="platforms" class="section-header"><a href="#platforms">Platforms</a></h1>
<p>Currently supported platforms:</p>
<ul>
<li>Linux</li>
<li>OS X</li>
<li>Windows</li>
<li>FreeBSD</li>
<li>NetBSD</li>
<li>Android</li>
<li>iOS</li>
</ul>
<p>mio can handle interfacing with each of the event notification systems of the aforementioned platforms. The details of
their implementation are further discussed in <a href="struct.Poll.html"><code>Poll</code></a>.</p>
<h1 id="usage" class="section-header"><a href="#usage">Usage</a></h1>
<p>Using mio starts by creating a <a href="struct.Poll.html"><code>Poll</code></a>, which reads events from the OS and
put them into <a href="struct.Events.html"><code>Events</code></a>. You can handle IO events from the OS with it.</p>
<p>For more detail, see <a href="struct.Poll.html"><code>Poll</code></a>.</p>
<h1 id="example" class="section-header"><a href="#example">Example</a></h1>
<div class="example-wrap"><pre class="rust rust-example-rendered">
<span class="kw">use</span> <span class="ident">mio</span>::<span class="kw-2">*</span>;
<span class="kw">use</span> <span class="ident">mio</span>::<span class="ident">net</span>::{<span class="ident">TcpListener</span>, <span class="ident">TcpStream</span>};
<span class="comment">// Setup some tokens to allow us to identify which event is</span>
<span class="comment">// for which socket.</span>
<span class="kw">const</span> <span class="ident">SERVER</span>: <span class="ident">Token</span> <span class="op">=</span> <span class="ident">Token</span>(<span class="number">0</span>);
<span class="kw">const</span> <span class="ident">CLIENT</span>: <span class="ident">Token</span> <span class="op">=</span> <span class="ident">Token</span>(<span class="number">1</span>);
<span class="kw">let</span> <span class="ident">addr</span> <span class="op">=</span> <span class="string">&quot;127.0.0.1:13265&quot;</span>.<span class="ident">parse</span>().<span class="ident">unwrap</span>();
<span class="comment">// Setup the server socket</span>
<span class="kw">let</span> <span class="ident">server</span> <span class="op">=</span> <span class="ident">TcpListener</span>::<span class="ident">bind</span>(<span class="kw-2">&amp;</span><span class="ident">addr</span>).<span class="ident">unwrap</span>();
<span class="comment">// Create a poll instance</span>
<span class="kw">let</span> <span class="ident">poll</span> <span class="op">=</span> <span class="ident">Poll</span>::<span class="ident">new</span>().<span class="ident">unwrap</span>();
<span class="comment">// Start listening for incoming connections</span>
<span class="ident">poll</span>.<span class="ident">register</span>(<span class="kw-2">&amp;</span><span class="ident">server</span>, <span class="ident">SERVER</span>, <span class="ident">Ready</span>::<span class="ident">readable</span>(),
<span class="ident">PollOpt</span>::<span class="ident">edge</span>()).<span class="ident">unwrap</span>();
<span class="comment">// Setup the client socket</span>
<span class="kw">let</span> <span class="ident">sock</span> <span class="op">=</span> <span class="ident">TcpStream</span>::<span class="ident">connect</span>(<span class="kw-2">&amp;</span><span class="ident">addr</span>).<span class="ident">unwrap</span>();
<span class="comment">// Register the socket</span>
<span class="ident">poll</span>.<span class="ident">register</span>(<span class="kw-2">&amp;</span><span class="ident">sock</span>, <span class="ident">CLIENT</span>, <span class="ident">Ready</span>::<span class="ident">readable</span>(),
<span class="ident">PollOpt</span>::<span class="ident">edge</span>()).<span class="ident">unwrap</span>();
<span class="comment">// Create storage for events</span>
<span class="kw">let</span> <span class="kw-2">mut</span> <span class="ident">events</span> <span class="op">=</span> <span class="ident">Events</span>::<span class="ident">with_capacity</span>(<span class="number">1024</span>);
<span class="kw">loop</span> {
<span class="ident">poll</span>.<span class="ident">poll</span>(<span class="kw-2">&amp;</span><span class="kw-2">mut</span> <span class="ident">events</span>, <span class="prelude-val">None</span>).<span class="ident">unwrap</span>();
<span class="kw">for</span> <span class="ident">event</span> <span class="kw">in</span> <span class="ident">events</span>.<span class="ident">iter</span>() {
<span class="kw">match</span> <span class="ident">event</span>.<span class="ident">token</span>() {
<span class="ident">SERVER</span> <span class="op">=</span><span class="op">&gt;</span> {
<span class="comment">// Accept and drop the socket immediately, this will close</span>
<span class="comment">// the socket and notify the client of the EOF.</span>
<span class="kw">let</span> <span class="kw">_</span> <span class="op">=</span> <span class="ident">server</span>.<span class="ident">accept</span>();
}
<span class="ident">CLIENT</span> <span class="op">=</span><span class="op">&gt;</span> {
<span class="comment">// The server just shuts down the socket, let&#39;s just exit</span>
<span class="comment">// from our event loop.</span>
<span class="kw">return</span>;
}
<span class="kw">_</span> <span class="op">=</span><span class="op">&gt;</span> <span class="macro">unreachable</span><span class="macro">!</span>(),
}
}
}
</pre></div>
</div><h2 id='modules' class='section-header'><a href="#modules">Modules</a></h2>
<table><tr class='module-item'><td><a class="mod" href="event/index.html" title='mio::event mod'>event</a></td><td class='docblock-short'><p>Readiness event types and utilities.</p>
</td></tr><tr class='module-item'><td><a class="mod" href="net/index.html" title='mio::net mod'>net</a></td><td class='docblock-short'><p>Networking primitives</p>
</td></tr><tr class='module-item'><td><a class="mod" href="unix/index.html" title='mio::unix mod'>unix</a></td><td class='docblock-short'><p>Unix only extensions</p>
</td></tr></table><h2 id='structs' class='section-header'><a href="#structs">Structs</a></h2>
<table><tr class='module-item'><td><a class="struct" href="struct.Events.html" title='mio::Events struct'>Events</a></td><td class='docblock-short'><p>A collection of readiness events.</p>
</td></tr><tr class='module-item'><td><a class="struct" href="struct.Poll.html" title='mio::Poll struct'>Poll</a></td><td class='docblock-short'><p>Polls for readiness events on all registered values.</p>
</td></tr><tr class='module-item'><td><a class="struct" href="struct.PollOpt.html" title='mio::PollOpt struct'>PollOpt</a></td><td class='docblock-short'><p>Options supplied when registering an <code>Evented</code> handle with <code>Poll</code></p>
</td></tr><tr class='module-item'><td><a class="struct" href="struct.Ready.html" title='mio::Ready struct'>Ready</a></td><td class='docblock-short'><p>A set of readiness event kinds</p>
</td></tr><tr class='module-item'><td><a class="struct" href="struct.Registration.html" title='mio::Registration struct'>Registration</a></td><td class='docblock-short'><p>Handle to a user space <code>Poll</code> registration.</p>
</td></tr><tr class='module-item'><td><a class="struct" href="struct.SetReadiness.html" title='mio::SetReadiness struct'>SetReadiness</a></td><td class='docblock-short'><p>Updates the readiness state of the associated <code>Registration</code>.</p>
</td></tr><tr class='module-item'><td><a class="struct" href="struct.Token.html" title='mio::Token struct'>Token</a></td><td class='docblock-short'><p>Associates readiness notifications with <a href="event/trait.Evented.html"><code>Evented</code></a> handles.</p>
</td></tr></table></section><section id="search" class="content hidden"></section><section class="footer"></section><aside id="help" class="hidden"><div><h1 class="hidden">Help</h1><div class="shortcuts"><h2>Keyboard Shortcuts</h2><dl><dt><kbd>?</kbd></dt><dd>Show this help dialog</dd><dt><kbd>S</kbd></dt><dd>Focus the search field</dd><dt><kbd></kbd></dt><dd>Move up in search results</dd><dt><kbd></kbd></dt><dd>Move down in search results</dd><dt><kbd></kbd></dt><dd>Switch tab</dd><dt><kbd>&#9166;</kbd></dt><dd>Go to active search result</dd><dt><kbd>+</kbd></dt><dd>Expand all sections</dd><dt><kbd>-</kbd></dt><dd>Collapse all sections</dd></dl></div><div class="infos"><h2>Search Tricks</h2><p>Prefix searches with a type followed by a colon (e.g., <code>fn:</code>) to restrict the search to a given type.</p><p>Accepted types are: <code>fn</code>, <code>mod</code>, <code>struct</code>, <code>enum</code>, <code>trait</code>, <code>type</code>, <code>macro</code>, and <code>const</code>.</p><p>Search functions by type signature (e.g., <code>vec -> usize</code> or <code>* -> vec</code>)</p><p>Search multiple things at once by splitting your query with comma (e.g., <code>str,u8</code> or <code>String,struct:Vec,test</code>)</p></div></div></aside><script>window.rootPath = "../";window.currentCrate = "mio";</script><script src="../aliases.js"></script><script src="../main.js"></script><script defer src="../search-index.js"></script></body></html>