refactor(scenegraph): use parking_lot

This commit is contained in:
Nova
2022-06-12 02:04:39 -04:00
parent 66c6e2e3d4
commit 8a34286a22

View File

@@ -3,11 +3,11 @@ use crate::nodes::core::Node;
use anyhow::Result;
use libstardustxr::scenegraph;
use libstardustxr::scenegraph::ScenegraphError;
use parking_lot::RwLock;
use rccell::RcCell;
use std::cell::RefCell;
use std::collections::HashMap;
use std::rc::{Rc, Weak};
use std::sync::RwLock;
#[derive(Default)]
pub struct Scenegraph<'a> {
@@ -27,16 +27,16 @@ impl<'a> Scenegraph<'a> {
pub fn add_node(&self, node: Node<'a>) -> RcCell<Node<'a>> {
let path = node.get_path().to_string();
let node_rc = RcCell::new(node);
self.nodes.write().unwrap().insert(path, node_rc.clone());
self.nodes.write().insert(path, node_rc.clone());
node_rc
}
pub fn get_node(&self, path: &str) -> Option<RcCell<Node<'a>>> {
Some(self.nodes.read().ok()?.get(path)?.clone())
Some(self.nodes.read().get(path)?.clone())
}
pub fn remove_node(&self, path: &str) -> Option<RcCell<Node<'a>>> {
self.nodes.write().unwrap().remove(path)
self.nodes.write().remove(path)
}
}