Skip to content

Commit 09f820f

Browse files
committed
Change TypeId size to 128 bits
rust-lang/rust#109953 made std TypeId 128 bits and its new Hash impl prevents the use of TypeIdHasher so I'll be using a pointer cast going forward
1 parent 59912c3 commit 09f820f

File tree

3 files changed

+22
-12
lines changed

3 files changed

+22
-12
lines changed

src/scheduler/into_workload.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ where
169169
let unique_id = unique_id();
170170

171171
let name = Box::new(WorkloadLabel {
172-
type_id: TypeId(unique_id),
172+
type_id: TypeId(unique_id as u128),
173173
name: unique_id.to_string().as_label(),
174174
});
175175

@@ -211,7 +211,7 @@ macro_rules! impl_into_workload {
211211
let unique_id = unique_id();
212212

213213
let name = Box::new(WorkloadLabel {
214-
type_id: TypeId(unique_id),
214+
type_id: TypeId(unique_id as u128),
215215
name: unique_id.to_string().as_label(),
216216
});
217217

@@ -241,7 +241,7 @@ macro_rules! impl_into_workload {
241241
let unique_id = unique_id();
242242

243243
let name = Box::new(WorkloadLabel {
244-
type_id: TypeId(unique_id),
244+
type_id: TypeId(unique_id as u128),
245245
name: unique_id.to_string().as_label(),
246246
});
247247

src/type_id/hasher.rs

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ impl Hasher for TypeIdHasher {
1515
}
1616
}
1717

18+
#[cfg(feature = "std")]
1819
#[test]
1920
fn hasher() {
2021
fn verify<T: 'static + ?Sized>() {

src/type_id/mod.rs

+18-9
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use core::hash::{Hash, Hasher};
88
#[derive(Clone, Copy, PartialEq, Eq, Hash, Debug, PartialOrd, Ord)]
99
#[cfg_attr(feature = "serde1", derive(serde::Serialize, serde::Deserialize))]
1010

11-
pub struct TypeId(pub(crate) u64);
11+
pub struct TypeId(pub(crate) u128);
1212

1313
impl TypeId {
1414
pub(crate) fn of<T: ?Sized + 'static>() -> Self {
@@ -22,21 +22,30 @@ impl TypeId {
2222

2323
impl From<core::any::TypeId> for TypeId {
2424
fn from(type_id: core::any::TypeId) -> Self {
25-
let mut hasher = TypeIdHasher::default();
25+
match core::mem::size_of::<core::any::TypeId>() {
26+
8 => {
27+
let mut hasher = TypeIdHasher::default();
2628

27-
type_id.hash(&mut hasher);
29+
type_id.hash(&mut hasher);
2830

29-
TypeId(hasher.finish())
31+
TypeId(hasher.finish() as u128)
32+
}
33+
16 => unsafe {
34+
// This is technically unsound, core::any::TypeId has rust layout
35+
// but there is no other way to get the full value anymore
36+
37+
let type_id_ptr: *const core::any::TypeId = &type_id;
38+
let type_id_ptr = type_id_ptr as *const TypeId;
39+
*type_id_ptr
40+
},
41+
_ => panic!("Compiler version not supported"),
42+
}
3043
}
3144
}
3245

3346
impl From<&core::any::TypeId> for TypeId {
3447
fn from(type_id: &core::any::TypeId) -> Self {
35-
let mut hasher = TypeIdHasher::default();
36-
37-
type_id.hash(&mut hasher);
38-
39-
TypeId(hasher.finish())
48+
type_id.into()
4049
}
4150
}
4251

0 commit comments

Comments
 (0)