Skip to content

Commit

Permalink
Merge pull request #231 from Anders429/serde_bug
Browse files Browse the repository at this point in the history
Check foreign_identifier_lookup when inserting with an entity type.
  • Loading branch information
Anders429 committed Aug 10, 2023
2 parents 709a6df + 208618b commit 9f3654d
Show file tree
Hide file tree
Showing 7 changed files with 62 additions and 48 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Unreleased
### Fixed
- Dynamic scheduling now respects both `EntryViews` and `ResourceViews`.
- Mutating a deserialized `World` no longer creates duplicate `Archetype`s, instead correctly looking up the existing deserialized `Archetype`.

## 0.9.0 - 2023-04-22
### Changed
Expand Down
6 changes: 1 addition & 5 deletions src/archetype/identifier/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -318,11 +318,7 @@ where
R: Registry,
{
fn clone(&self) -> Self {
Self {
registry: PhantomData,

pointer: self.pointer,
}
*self
}
}

Expand Down
74 changes: 37 additions & 37 deletions src/archetypes/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -186,9 +186,6 @@ where
}
}

/// # Safety
/// `component_map` must contain an entry for each component in the entity `E`. Each entry must
/// correspond to its component's location in the registry `R`.
pub(crate) unsafe fn get_mut_or_insert_new_for_entity<E, P>(&mut self) -> &mut Archetype<R>
where
E: Entity,
Expand All @@ -209,48 +206,51 @@ where
None => unsafe { unreachable_unchecked() },
}
} else {
let identifier = R::create_archetype_identifier();

let hash = Self::make_hash(
// SAFETY: The `IdentifierRef` obtained here does not live longer than the
// `identifier_buffer`.
unsafe { identifier.as_ref() },
&self.hash_builder,
);
// Although type id lookup failed, that doesn't mean the archetype does not exist. We
// instead look up by the raw slice using `foreign_identifier_lookup`.
let identifier_buffer = R::create_archetype_identifier();

if let Some(archetype_bucket) = self.raw_archetypes.find(
hash,
Self::equivalent_identifier(
// SAFETY: The `IdentifierRef` obtained here does not live longer than the
// `identifier_buffer`.
unsafe { identifier.as_ref() },
),
let archetype = if let Some(&identifier) = self.foreign_identifier_lookup.get(
// SAFETY: The slice created here does not outlive the `identifier_buffer`.
unsafe { identifier_buffer.as_slice() },
) {
// SAFETY: This reference to the archetype contained in this bucket is unique.
unsafe { archetype_bucket.as_mut() }
if let Some(archetype) = self.raw_archetypes.get_mut(
Self::make_hash(identifier, &self.hash_builder),
Self::equivalent_identifier(identifier),
) {
archetype
} else {
// SAFETY: Since the identifier was present in `foreign_identifier_lookup`, it
// is guaranteed to have an associated `archetype`.
unsafe { unreachable_unchecked() }

Check warning on line 225 in src/archetypes/mod.rs

View check run for this annotation

Codecov / codecov/patch

src/archetypes/mod.rs#L225

Added line #L225 was not covered by tests
}
} else {
self.type_id_lookup.insert(
TypeId::of::<E>(),
// SAFETY: The `IdentifierRef` obtained here does not live longer than the
// `identifier_buffer`.
unsafe { identifier.as_ref() },
);
// SAFETY: Since the archetype is not contained anywhere in this container, it is
// invariantly guaranteed that the identifier is not contained in
// `foreign_identifier_lookup` either. Additionally, both the slice and
// `IdentifierRef` created here do not outlive `identifier`.
// SAFETY: This identifier has already been verified to not be contained in
// `foreign_identifier_lookup`. Additionally, the slice and `IdentifierRef` created
// here will not outlive the `identifier_buffer`.
unsafe {
self.foreign_identifier_lookup.insert_unique_unchecked(
&*(identifier.as_slice() as *const [u8]),
identifier.as_ref(),
&*(identifier_buffer.as_slice() as *const [u8]),
identifier_buffer.as_ref(),
);
}
self.raw_archetypes.insert_entry(
hash,
Archetype::new(identifier),
// SAFETY: The `IdentifierRef` created here does not outlive the
// `identifier_buffer`.
Self::make_hash(unsafe { identifier_buffer.as_ref() }, &self.hash_builder),
Archetype::new(identifier_buffer),
Self::make_hasher(&self.hash_builder),
)
}
};

self.type_id_lookup.insert(
TypeId::of::<E>(),
// SAFETY: The `IdentifierRef` obtained here does not live longer than the
// `identifier_buffer`.
unsafe { archetype.identifier() },
);

archetype
}
}

Expand Down Expand Up @@ -439,7 +439,7 @@ where
}
}

for (&type_id, identifier) in self.type_id_lookup.iter() {
for (&type_id, identifier) in &self.type_id_lookup {
cloned_archetypes.type_id_lookup.insert(
type_id,
// SAFETY: Each identifier in `self.type_id_lookup` is guaranteed to be found in
Expand Down Expand Up @@ -515,7 +515,7 @@ where
//
// Note that no type id entries are removed here. New ones are just added, since the old
// archetypes were just cleared, not removed entirely.
for (&type_id, identifier) in source.type_id_lookup.iter() {
for (&type_id, identifier) in &source.type_id_lookup {
self.type_id_lookup.insert(
type_id,
// SAFETY: Each identifier in `source.type_id_lookup` is guaranteed to be found in
Expand Down
5 changes: 1 addition & 4 deletions src/entity/allocator/location.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,7 @@ where
R: Registry,
{
fn clone(&self) -> Self {
Self {
identifier: self.identifier,
index: self.index,
}
*self

Check warning on line 62 in src/entity/allocator/location.rs

View check run for this annotation

Codecov / codecov/patch

src/entity/allocator/location.rs#L62

Added line #L62 was not covered by tests
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/query/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ impl<Views, Filters, ResourceViews, EntryViews> Clone
for Query<Views, Filters, ResourceViews, EntryViews>
{
fn clone(&self) -> Self {
Self::new()
*self
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/system/schedule/sendable.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ where
R: Registry,
{
fn clone(&self) -> Self {
Self(self.0)
*self

Check warning on line 33 in src/system/schedule/sendable.rs

View check run for this annotation

Codecov / codecov/patch

src/system/schedule/sendable.rs#L33

Added line #L33 was not covered by tests
}
}

Expand Down
20 changes: 20 additions & 0 deletions src/world/impl_serde.rs
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ mod tests {
use alloc::vec;
use claims::{
assert_err_eq,
assert_ok,
assert_ok_eq,
};
use serde::{
Expand Down Expand Up @@ -493,4 +494,23 @@ mod tests {
Error::invalid_length(2, &"serialized World")
);
}

#[test]
fn deserialize_then_mutate() {
let mut world = World::<Registry>::new();
world.insert(entity!(A(0)));

let serializer = Serializer::builder().build();
let tokens = assert_ok!(world.serialize(&serializer));

let mut deserializer = Deserializer::builder().tokens(tokens).build();
let mut deserialized_world = assert_ok!(World::<Registry, Resources!()>::deserialize(
&mut deserializer
));

world.insert(entity!(A(1)));
deserialized_world.insert(entity!(A(1)));

assert_eq!(world, deserialized_world);
}
}

0 comments on commit 9f3654d

Please sign in to comment.