Skip to content

Commit 1fc3700

Browse files
committed
Auto merge of #8847 - Xanewok:from-le-bytes, r=alexcrichton
Use u32/64::to/from_le_bytes instead of bit fiddling What it says on the tin; it's just something I've spotted when browsing through the code and decided to search for other occurrences of casting to/from bytes.
2 parents cc12919 + aab416f commit 1fc3700

File tree

4 files changed

+10
-45
lines changed

4 files changed

+10
-45
lines changed

crates/crates-io/lib.rs

+2-20
Original file line numberDiff line numberDiff line change
@@ -172,27 +172,9 @@ impl Registry {
172172
let stat = tarball.metadata()?;
173173
let header = {
174174
let mut w = Vec::new();
175-
w.extend(
176-
[
177-
(json.len() >> 0) as u8,
178-
(json.len() >> 8) as u8,
179-
(json.len() >> 16) as u8,
180-
(json.len() >> 24) as u8,
181-
]
182-
.iter()
183-
.cloned(),
184-
);
175+
w.extend(&(json.len() as u32).to_le_bytes());
185176
w.extend(json.as_bytes().iter().cloned());
186-
w.extend(
187-
[
188-
(stat.len() >> 0) as u8,
189-
(stat.len() >> 8) as u8,
190-
(stat.len() >> 16) as u8,
191-
(stat.len() >> 24) as u8,
192-
]
193-
.iter()
194-
.cloned(),
195-
);
177+
w.extend(&(stat.len() as u32).to_le_bytes());
196178
w
197179
};
198180
let size = stat.len() as usize + header.len();

src/cargo/core/compiler/fingerprint.rs

+3-10
Original file line numberDiff line numberDiff line change
@@ -313,6 +313,7 @@
313313
//! <https://github.com/rust-lang/cargo/issues?q=is%3Aissue+is%3Aopen+label%3AA-rebuild-detection>
314314
315315
use std::collections::hash_map::{Entry, HashMap};
316+
use std::convert::TryInto;
316317
use std::env;
317318
use std::hash::{self, Hasher};
318319
use std::path::{Path, PathBuf};
@@ -1906,12 +1907,7 @@ impl EncodedDepInfo {
19061907
fn read_usize(bytes: &mut &[u8]) -> Option<usize> {
19071908
let ret = bytes.get(..4)?;
19081909
*bytes = &bytes[4..];
1909-
Some(
1910-
((ret[0] as usize) << 0)
1911-
| ((ret[1] as usize) << 8)
1912-
| ((ret[2] as usize) << 16)
1913-
| ((ret[3] as usize) << 24),
1914-
)
1910+
Some(u32::from_le_bytes(ret.try_into().unwrap()) as usize)
19151911
}
19161912

19171913
fn read_u8(bytes: &mut &[u8]) -> Option<u8> {
@@ -1960,10 +1956,7 @@ impl EncodedDepInfo {
19601956
}
19611957

19621958
fn write_usize(dst: &mut Vec<u8>, val: usize) {
1963-
dst.push(val as u8);
1964-
dst.push((val >> 8) as u8);
1965-
dst.push((val >> 16) as u8);
1966-
dst.push((val >> 24) as u8);
1959+
dst.extend(&u32::to_le_bytes(val as u32));
19671960
}
19681961
}
19691962
}

src/cargo/util/hex.rs

+1-10
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,7 @@ use std::hash::{Hash, Hasher};
44
use std::io::Read;
55

66
pub fn to_hex(num: u64) -> String {
7-
hex::encode(&[
8-
(num >> 0) as u8,
9-
(num >> 8) as u8,
10-
(num >> 16) as u8,
11-
(num >> 24) as u8,
12-
(num >> 32) as u8,
13-
(num >> 40) as u8,
14-
(num >> 48) as u8,
15-
(num >> 56) as u8,
16-
])
7+
hex::encode(num.to_le_bytes())
178
}
189

1910
pub fn hash_u64<H: Hash>(hashable: H) -> u64 {

tests/testsuite/dep_info.rs

+4-5
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ use cargo_test_support::{
77
basic_bin_manifest, basic_manifest, is_nightly, main_file, project, rustc_host, Project,
88
};
99
use filetime::FileTime;
10+
use std::convert::TryInto;
1011
use std::fs;
1112
use std::path::Path;
1213
use std::str;
@@ -37,10 +38,8 @@ fn assert_deps(project: &Project, fingerprint: &str, test_cb: impl Fn(&Path, &[(
3738
fn read_usize(bytes: &mut &[u8]) -> usize {
3839
let ret = &bytes[..4];
3940
*bytes = &bytes[4..];
40-
(ret[0] as usize)
41-
| ((ret[1] as usize) << 8)
42-
| ((ret[2] as usize) << 16)
43-
| ((ret[3] as usize) << 24)
41+
42+
u32::from_le_bytes(ret.try_into().unwrap()) as usize
4443
}
4544

4645
fn read_u8(bytes: &mut &[u8]) -> u8 {
@@ -50,7 +49,7 @@ fn assert_deps(project: &Project, fingerprint: &str, test_cb: impl Fn(&Path, &[(
5049
}
5150

5251
fn read_bytes<'a>(bytes: &mut &'a [u8]) -> &'a [u8] {
53-
let n = read_usize(bytes) as usize;
52+
let n = read_usize(bytes);
5453
let ret = &bytes[..n];
5554
*bytes = &bytes[n..];
5655
ret

0 commit comments

Comments
 (0)