aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/compositor.rs
diff options
context:
space:
mode:
authorGokul Soumya2022-03-03 01:14:50 +0000
committerGitHub2022-03-03 01:14:50 +0000
commit5c810e5e52a3409a5e70aeae14e6f28dd440c681 (patch)
tree166b82b45dcab93b9febb8c3f3dfec9fed77cf00 /helix-term/src/compositor.rs
parent86b1236b46286b64da2c030a36e8f38ddad0a1d0 (diff)
Fix bug with auto replacing components in compositor (#1711)
* Fix bug with auto replacing components in compositor This was last known to be working with 5995568c at the time of commit, but now doesn't work with latest rust stable. The issue probably stems from using std::any::type_name() for finding a component in the compositor, for which the docs explicitly warn against considering it as a unique identifier for types. `replace_or_push()` takes a boxed `Component` and passes it to `find_id()` which compares this with a bare Component. `type_name()` returns `Box<T>` for the former and `T` for latter and we have a false negative. This has been solved by using a generics instead of trait objects to pass in a `T: Component` and then use it for comparison. I'm not exactly sure how this worked fine at the time of commit of 5995568c; maybe the internal implementation of `type_name()` changed to properly indicate indirection with Box. * Do not compare by type name in compositor find_id
Diffstat (limited to 'helix-term/src/compositor.rs')
-rw-r--r--helix-term/src/compositor.rs7
1 files changed, 3 insertions, 4 deletions
diff --git a/helix-term/src/compositor.rs b/helix-term/src/compositor.rs
index 2f80de00..4f988ace 100644
--- a/helix-term/src/compositor.rs
+++ b/helix-term/src/compositor.rs
@@ -128,11 +128,11 @@ impl Compositor {
/// Replace a component that has the given `id` with the new layer and if
/// no component is found, push the layer normally.
- pub fn replace_or_push(&mut self, id: &'static str, layer: Box<dyn Component>) {
+ pub fn replace_or_push<T: Component>(&mut self, id: &'static str, layer: T) {
if let Some(component) = self.find_id(id) {
*component = layer;
} else {
- self.push(layer)
+ self.push(Box::new(layer))
}
}
@@ -221,10 +221,9 @@ impl Compositor {
}
pub fn find_id<T: 'static>(&mut self, id: &'static str) -> Option<&mut T> {
- let type_name = std::any::type_name::<T>();
self.layers
.iter_mut()
- .find(|component| component.type_name() == type_name && component.id() == Some(id))
+ .find(|component| component.id() == Some(id))
.and_then(|component| component.as_any_mut().downcast_mut())
}
}