cpu-endian 0.1.1

`cpu-endian` is a portable crate to detect CPU byte order. It detects how CPU native scalar type is ordered; little-endian or big-endian, or something else (like PDP-endian, mixed-endian, middle-endian, and so on.)
Documentation
<!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="Source to the Rust file `src/lib.rs`."><meta name="keywords" content="rust, rustlang, rust-lang"><title>lib.rs.html -- source</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="../../light.css"  id="themeStyle"><link rel="stylesheet" type="text/css" href="../../dark.css" disabled ><link rel="stylesheet" type="text/css" href="../../ayu.css" disabled ><script src="../../storage.js"></script><noscript><link rel="stylesheet" href="../../noscript.css"></noscript><link rel="icon" type="image/svg+xml" href="../../favicon.svg">
<link rel="alternate icon" type="image/png" href="../../favicon-16x16.png">
<link rel="alternate icon" type="image/png" href="../../favicon-32x32.png"><style type="text/css">#crate-search{background-image:url("../../down-arrow.svg");}</style></head><body class="rustdoc source"><!--[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='../../cpu_endian/index.html'><div class='logo-container rust-logo'><img src='../../rust-logo.png' alt='logo'></div></a></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"><div class="search-container"><div><select id="crate-search"><option value="All crates">All crates</option></select><input class="search-input" name="search" disabled autocomplete="off" spellcheck="false" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"></div><span class="help-button">?</span>
                <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"><pre class="line-numbers"><span id="1">  1</span>
<span id="2">  2</span>
<span id="3">  3</span>
<span id="4">  4</span>
<span id="5">  5</span>
<span id="6">  6</span>
<span id="7">  7</span>
<span id="8">  8</span>
<span id="9">  9</span>
<span id="10"> 10</span>
<span id="11"> 11</span>
<span id="12"> 12</span>
<span id="13"> 13</span>
<span id="14"> 14</span>
<span id="15"> 15</span>
<span id="16"> 16</span>
<span id="17"> 17</span>
<span id="18"> 18</span>
<span id="19"> 19</span>
<span id="20"> 20</span>
<span id="21"> 21</span>
<span id="22"> 22</span>
<span id="23"> 23</span>
<span id="24"> 24</span>
<span id="25"> 25</span>
<span id="26"> 26</span>
<span id="27"> 27</span>
<span id="28"> 28</span>
<span id="29"> 29</span>
<span id="30"> 30</span>
<span id="31"> 31</span>
<span id="32"> 32</span>
<span id="33"> 33</span>
<span id="34"> 34</span>
<span id="35"> 35</span>
<span id="36"> 36</span>
<span id="37"> 37</span>
<span id="38"> 38</span>
<span id="39"> 39</span>
<span id="40"> 40</span>
<span id="41"> 41</span>
<span id="42"> 42</span>
<span id="43"> 43</span>
<span id="44"> 44</span>
<span id="45"> 45</span>
<span id="46"> 46</span>
<span id="47"> 47</span>
<span id="48"> 48</span>
<span id="49"> 49</span>
<span id="50"> 50</span>
<span id="51"> 51</span>
<span id="52"> 52</span>
<span id="53"> 53</span>
<span id="54"> 54</span>
<span id="55"> 55</span>
<span id="56"> 56</span>
<span id="57"> 57</span>
<span id="58"> 58</span>
<span id="59"> 59</span>
<span id="60"> 60</span>
<span id="61"> 61</span>
<span id="62"> 62</span>
<span id="63"> 63</span>
<span id="64"> 64</span>
<span id="65"> 65</span>
<span id="66"> 66</span>
<span id="67"> 67</span>
<span id="68"> 68</span>
<span id="69"> 69</span>
<span id="70"> 70</span>
<span id="71"> 71</span>
<span id="72"> 72</span>
<span id="73"> 73</span>
<span id="74"> 74</span>
<span id="75"> 75</span>
<span id="76"> 76</span>
<span id="77"> 77</span>
<span id="78"> 78</span>
<span id="79"> 79</span>
<span id="80"> 80</span>
<span id="81"> 81</span>
<span id="82"> 82</span>
<span id="83"> 83</span>
<span id="84"> 84</span>
<span id="85"> 85</span>
<span id="86"> 86</span>
<span id="87"> 87</span>
<span id="88"> 88</span>
<span id="89"> 89</span>
<span id="90"> 90</span>
<span id="91"> 91</span>
<span id="92"> 92</span>
<span id="93"> 93</span>
<span id="94"> 94</span>
<span id="95"> 95</span>
<span id="96"> 96</span>
<span id="97"> 97</span>
<span id="98"> 98</span>
<span id="99"> 99</span>
<span id="100">100</span>
<span id="101">101</span>
<span id="102">102</span>
<span id="103">103</span>
<span id="104">104</span>
<span id="105">105</span>
<span id="106">106</span>
<span id="107">107</span>
<span id="108">108</span>
<span id="109">109</span>
<span id="110">110</span>
<span id="111">111</span>
<span id="112">112</span>
<span id="113">113</span>
<span id="114">114</span>
<span id="115">115</span>
<span id="116">116</span>
<span id="117">117</span>
<span id="118">118</span>
<span id="119">119</span>
<span id="120">120</span>
<span id="121">121</span>
<span id="122">122</span>
<span id="123">123</span>
<span id="124">124</span>
<span id="125">125</span>
<span id="126">126</span>
<span id="127">127</span>
<span id="128">128</span>
<span id="129">129</span>
<span id="130">130</span>
<span id="131">131</span>
<span id="132">132</span>
<span id="133">133</span>
<span id="134">134</span>
<span id="135">135</span>
<span id="136">136</span>
<span id="137">137</span>
<span id="138">138</span>
<span id="139">139</span>
<span id="140">140</span>
<span id="141">141</span>
<span id="142">142</span>
<span id="143">143</span>
<span id="144">144</span>
<span id="145">145</span>
<span id="146">146</span>
<span id="147">147</span>
<span id="148">148</span>
<span id="149">149</span>
<span id="150">150</span>
<span id="151">151</span>
<span id="152">152</span>
<span id="153">153</span>
<span id="154">154</span>
<span id="155">155</span>
<span id="156">156</span>
<span id="157">157</span>
<span id="158">158</span>
<span id="159">159</span>
<span id="160">160</span>
<span id="161">161</span>
<span id="162">162</span>
<span id="163">163</span>
<span id="164">164</span>
<span id="165">165</span>
<span id="166">166</span>
<span id="167">167</span>
<span id="168">168</span>
<span id="169">169</span>
<span id="170">170</span>
<span id="171">171</span>
<span id="172">172</span>
<span id="173">173</span>
<span id="174">174</span>
<span id="175">175</span>
<span id="176">176</span>
<span id="177">177</span>
<span id="178">178</span>
<span id="179">179</span>
<span id="180">180</span>
<span id="181">181</span>
<span id="182">182</span>
<span id="183">183</span>
<span id="184">184</span>
<span id="185">185</span>
<span id="186">186</span>
<span id="187">187</span>
<span id="188">188</span>
<span id="189">189</span>
<span id="190">190</span>
<span id="191">191</span>
<span id="192">192</span>
</pre><div class="example-wrap"><pre class="rust ">
<span class="comment">// Copyright 2020 Shin Yoshida</span>
<span class="comment">//</span>
<span class="comment">// &quot;LGPL-3.0-or-later OR Apache-2.0 OR BSD-2-Clause OR MIT&quot;</span>
<span class="comment">//</span>
<span class="comment">// This is part of cpu-endian</span>
<span class="comment">//</span>
<span class="comment">//  cpu-endian is free software: you can redistribute it and/or modify</span>
<span class="comment">//  it under the terms of the GNU Lesser General Public License as published by</span>
<span class="comment">//  the Free Software Foundation, either version 3 of the License, or</span>
<span class="comment">//  any later version.</span>
<span class="comment">//</span>
<span class="comment">//  cpu-endian is distributed in the hope that it will be useful,</span>
<span class="comment">//  but WITHOUT ANY WARRANTY; without even the implied warranty of</span>
<span class="comment">//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the</span>
<span class="comment">//  GNU Lesser General Public License for more details.</span>
<span class="comment">//</span>
<span class="comment">//  You should have received a copy of the GNU Lesser General Public License</span>
<span class="comment">//  along with cpu-endian.  If not, see &lt;http://www.gnu.org/licenses/&gt;.</span>
<span class="comment">//</span>
<span class="comment">//</span>
<span class="comment">// Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);</span>
<span class="comment">// you may not use this file except in compliance with the License.</span>
<span class="comment">// You may obtain a copy of the License at</span>
<span class="comment">//</span>
<span class="comment">//     http://www.apache.org/licenses/LICENSE-2.0</span>
<span class="comment">//</span>
<span class="comment">// Unless required by applicable law or agreed to in writing, software</span>
<span class="comment">// distributed under the License is distributed on an &quot;AS IS&quot; BASIS,</span>
<span class="comment">// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</span>
<span class="comment">// See the License for the specific language governing permissions and</span>
<span class="comment">// limitations under the License.</span>
<span class="comment">//</span>
<span class="comment">//</span>
<span class="comment">// Redistribution and use in source and binary forms, with or without modification, are permitted</span>
<span class="comment">// provided that the following conditions are met:</span>
<span class="comment">//</span>
<span class="comment">// 1. Redistributions of source code must retain the above copyright notice, this list of</span>
<span class="comment">//    conditions and the following disclaimer.</span>
<span class="comment">// 2. Redistributions in binary form must reproduce the above copyright notice, this</span>
<span class="comment">//    list of conditions and the following disclaimer in the documentation and/or other</span>
<span class="comment">//    materials provided with the distribution.</span>
<span class="comment">//</span>
<span class="comment">// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS &quot;AS IS&quot; AND</span>
<span class="comment">// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED</span>
<span class="comment">// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.</span>
<span class="comment">// IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,</span>
<span class="comment">// INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT</span>
<span class="comment">// NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR</span>
<span class="comment">// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,</span>
<span class="comment">// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)</span>
<span class="comment">// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE</span>
<span class="comment">// POSSIBILITY OF SUCH DAMAGE.</span>
<span class="comment">//</span>
<span class="comment">//</span>
<span class="comment">// Permission is hereby granted, free of charge, to any person obtaining a copy of this software</span>
<span class="comment">// and associated documentation files (the &quot;Software&quot;), to deal in the Software without</span>
<span class="comment">// restriction, including without limitation the rights to use, copy, modify, merge, publish,</span>
<span class="comment">// distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the</span>
<span class="comment">// Software is furnished to do so, subject to the following conditions:</span>
<span class="comment">//</span>
<span class="comment">// The above copyright notice and this permission notice (including the next paragraph) shall be</span>
<span class="comment">// included in all copies or substantial portions of the Software.</span>
<span class="comment">//</span>
<span class="comment">// THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING</span>
<span class="comment">// BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND</span>
<span class="comment">// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,</span>
<span class="comment">// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,</span>
<span class="comment">// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</span>

<span class="attribute">#![<span class="ident">deny</span>(<span class="ident">missing_docs</span>)]</span>

<span class="doccomment">//! # cpu-endian</span>
<span class="doccomment">//!</span>
<span class="doccomment">//! `cpu-endian` is a portable crate to detect CPU byte order.</span>
<span class="doccomment">//!</span>
<span class="doccomment">//! It detects how CPU native scalar type is ordered; little-endian or big-endian, or something else (like PDP-endian, mixed-endian, middle-endian, and so on.)</span>
<span class="doccomment">//!</span>
<span class="doccomment">//! ## Examples</span>
<span class="doccomment">//!</span>
<span class="doccomment">//! ```</span>
<span class="doccomment">//! use cpu_endian::{Endian, working};</span>
<span class="doccomment">//!</span>
<span class="doccomment">//! // Takes first octet of 0x00ff: u16.</span>
<span class="doccomment">//! let v: u16 = 0x00ff;</span>
<span class="doccomment">//! let first_octet: u8 = unsafe {</span>
<span class="doccomment">//!     let ptr = &amp;v as *const u16;</span>
<span class="doccomment">//!     let ptr = ptr as *const u8;</span>
<span class="doccomment">//!     *ptr</span>
<span class="doccomment">//! };</span>
<span class="doccomment">//!</span>
<span class="doccomment">//! // If the byte-order is little-endian, the first octet should be 0xff, or if big-endian,</span>
<span class="doccomment">//! // it should be 0x00.</span>
<span class="doccomment">//! match working() {</span>
<span class="doccomment">//!     Endian::Little =&gt; assert_eq!(0xff, first_octet),</span>
<span class="doccomment">//!     Endian::Big =&gt; assert_eq!(0x00, first_octet),</span>
<span class="doccomment">//!     _ =&gt; {},</span>
<span class="doccomment">//! }</span>
<span class="doccomment">//! ```</span>

<span class="kw">use</span> <span class="ident">core</span>::<span class="ident">cell</span>::<span class="ident">Cell</span>;

<span class="doccomment">/// Byte order of scalar types.</span>
<span class="attribute">#[<span class="ident">derive</span>(<span class="ident">Debug</span>, <span class="ident">Clone</span>, <span class="ident">Copy</span>, <span class="ident">PartialEq</span>, <span class="ident">Eq</span>)]</span>
<span class="kw">pub</span> <span class="kw">enum</span> <span class="ident">Endian</span> {
    <span class="doccomment">/// little-endian</span>
    <span class="ident">Little</span>,
    <span class="doccomment">/// big-endian</span>
    <span class="ident">Big</span>,
    <span class="doccomment">/// Neither little-endian nor big-endian. For example, PDP-endian, mixed-endian, middle-endian, and so on.</span>
    <span class="doccomment">/// (Such endian is very rare today.)</span>
    <span class="ident">Minor</span>,
}

<span class="macro">thread_local</span><span class="macro">!</span>(
    <span class="doccomment">/// Cache of native_().</span>
    <span class="doccomment">///</span>
    <span class="doccomment">/// Some CPUs change the byte order, however I don&#39;t think none of them changes it after process started.</span>
    <span class="kw">static</span> <span class="ident">CACHE</span>: <span class="ident">Cell</span><span class="op">&lt;</span><span class="ident">u8</span><span class="op">&gt;</span> <span class="op">=</span> <span class="ident">Cell</span>::<span class="ident">new</span>(<span class="number">0</span>)
);

<span class="doccomment">/// Returns the CPU byte order.</span>
<span class="doccomment">///</span>
<span class="doccomment">/// ```</span>
<span class="doccomment">/// use cpu_endian::*;</span>
<span class="doccomment">///</span>
<span class="doccomment">/// // Takes first octet of 0x00ff: u16.</span>
<span class="doccomment">/// let v: u16 = 0x00ff;</span>
<span class="doccomment">/// let first_octet: u8 = unsafe {</span>
<span class="doccomment">///     let ptr = &amp;v as *const u16;</span>
<span class="doccomment">///     let ptr = ptr as *const u8;</span>
<span class="doccomment">///     *ptr</span>
<span class="doccomment">/// };</span>
<span class="doccomment">///</span>
<span class="doccomment">/// // If the byte-order is little-endian, the first octet should be 0xff, or if big-endian,</span>
<span class="doccomment">/// // it should be 0x00.</span>
<span class="doccomment">/// match working() {</span>
<span class="doccomment">///     Endian::Little =&gt; assert_eq!(0xff, first_octet),</span>
<span class="doccomment">///     Endian::Big =&gt; assert_eq!(0x00, first_octet),</span>
<span class="doccomment">///     _ =&gt; {},</span>
<span class="doccomment">/// }</span>
<span class="doccomment">/// ```</span>
<span class="attribute">#[<span class="ident">inline</span>]</span>
<span class="kw">pub</span> <span class="kw">fn</span> <span class="ident">working</span>() <span class="op">-</span><span class="op">&gt;</span> <span class="ident">Endian</span> {
    <span class="ident">inner_working</span>()
}

<span class="doccomment">/// Implementation for `working` .</span>
<span class="doccomment">///</span>
<span class="doccomment">/// This function is only for `x86` and `x86_64` architecture, and const function to return</span>
<span class="doccomment">/// `Endian::Little` . ( `x86` and `x86_64` are typical little-endian CPU.)</span>
<span class="attribute">#[<span class="ident">cfg</span>(<span class="ident">any</span>(<span class="ident">target_arch</span> <span class="op">=</span> <span class="string">&quot;x86&quot;</span>, <span class="ident">target_arch</span> <span class="op">=</span> <span class="string">&quot;x86_64&quot;</span>))]</span>
<span class="kw">const</span> <span class="kw">fn</span> <span class="ident">inner_working</span>() <span class="op">-</span><span class="op">&gt;</span> <span class="ident">Endian</span> {
    <span class="ident">Endian</span>::<span class="ident">Little</span>
}

<span class="doccomment">/// Implementation for `working` .</span>
<span class="doccomment">///</span>
<span class="doccomment">/// This function is for CPUs but `x86` nor `x86_64` and calls C function to detect the endian.</span>
<span class="doccomment">/// (Some CPUs can switch the endian, so it is difficult to hard cord.)</span>
<span class="attribute">#[<span class="ident">cfg</span>(<span class="ident">not</span>(<span class="ident">any</span>(<span class="ident">target_arch</span> <span class="op">=</span> <span class="string">&quot;x86&quot;</span>, <span class="ident">target_arch</span> <span class="op">=</span> <span class="string">&quot;x86_64&quot;</span>)))]</span>
<span class="attribute">#[<span class="ident">inline</span>]</span>
<span class="kw">fn</span> <span class="ident">inner_working</span>() <span class="op">-</span><span class="op">&gt;</span> <span class="ident">Endian</span> {
    <span class="comment">// No cache is hit.</span>
    <span class="comment">// Because native()_ always returns the same value, Ordering::Relaxed will do.</span>
    <span class="kw">if</span> <span class="ident">CACHE</span>.<span class="ident">with</span>(<span class="op">|</span><span class="ident">c</span><span class="op">|</span> <span class="ident">c</span>.<span class="ident">get</span>()) <span class="op">=</span><span class="op">=</span> <span class="number">0</span> {
        <span class="kw">let</span> <span class="ident">order</span> <span class="op">=</span> <span class="kw">unsafe</span> { <span class="ident">native_</span>() };
        <span class="macro">debug_assert_ne</span><span class="macro">!</span>(<span class="number">0</span>, <span class="ident">order</span>);

        <span class="ident">CACHE</span>.<span class="ident">with</span>(<span class="op">|</span><span class="ident">c</span><span class="op">|</span> <span class="ident">c</span>.<span class="ident">set</span>(<span class="ident">order</span> <span class="kw">as</span> <span class="ident">u8</span>));
    }

    <span class="kw">match</span> <span class="ident">CACHE</span>.<span class="ident">with</span>(<span class="op">|</span><span class="ident">c</span><span class="op">|</span> <span class="ident">c</span>.<span class="ident">get</span>()) {
        <span class="number">1</span> <span class="op">=</span><span class="op">&gt;</span> <span class="ident">Endian</span>::<span class="ident">Little</span>,
        <span class="number">2</span> <span class="op">=</span><span class="op">&gt;</span> <span class="ident">Endian</span>::<span class="ident">Big</span>,
        <span class="kw">_</span> <span class="op">=</span><span class="op">&gt;</span> <span class="ident">Endian</span>::<span class="ident">Minor</span>,
    }
}

<span class="attribute">#[<span class="ident">cfg</span>(<span class="ident">not</span>(<span class="ident">any</span>(<span class="ident">target_arch</span> <span class="op">=</span> <span class="string">&quot;x86&quot;</span>, <span class="ident">target_arch</span> <span class="op">=</span> <span class="string">&quot;x86_64&quot;</span>)))]</span>
<span class="kw">use</span> <span class="ident">std</span>::<span class="ident">os</span>::<span class="ident">raw</span>::<span class="ident">c_int</span>;

<span class="attribute">#[<span class="ident">link</span>(<span class="ident">name</span> <span class="op">=</span> <span class="string">&quot;native_endian_&quot;</span>)]</span>
<span class="attribute">#[<span class="ident">cfg</span>(<span class="ident">not</span>(<span class="ident">any</span>(<span class="ident">target_arch</span> <span class="op">=</span> <span class="string">&quot;x86&quot;</span>, <span class="ident">target_arch</span> <span class="op">=</span> <span class="string">&quot;x86_64&quot;</span>)))]</span>
<span class="kw">extern</span> <span class="string">&quot;C&quot;</span> {

    <span class="doccomment">/// Returns the cpu native endian.</span>
    <span class="doccomment">///</span>
    <span class="doccomment">/// - Little endian: 1</span>
    <span class="doccomment">/// - Big endian: 2</span>
    <span class="doccomment">/// - Other: 3</span>
    <span class="kw">fn</span> <span class="ident">native_</span>() <span class="op">-</span><span class="op">&gt;</span> <span class="ident">c_int</span>;
}
</pre></div>
</section><section id="search" class="content hidden"></section><section class="footer"></section><script>window.rootPath = "../../";window.currentCrate = "cpu_endian";</script><script src="../../main.js"></script><script src="../../source-script.js"></script><script src="../../source-files.js"></script><script defer src="../../search-index.js"></script></body></html>