| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- /* This file is part of DarkFi (https://dark.fi)
- *
- * Copyright (C) 2020-2023 Dyne.org foundation
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
- use std::sync::{Arc, OnceLock, Weak};
- /// Sometimes you need a parent-child relationship which results in code like:
- /// ```rust
- /// struct Parent {
- /// child: Mutex<Option<Arc<Child>>>
- /// }
- /// impl Parent {
- /// fn new() -> Arc<Self> {
- /// let self_ = Arc::new(Self {
- /// child: Mutex::new(None)
- /// };
- /// let parent = Arc::downgrade(&self_);
- /// *self_.child.lock().await = Some(Child::new(parent));
- /// self_
- /// }
- /// }
- /// struct Child {
- /// parent: Weak<Parent>
- /// }
- /// impl Child {
- /// fn new(parent: Weak<Parent>) -> Self {
- /// Self { parent }
- /// }
- /// fn upgrade(&self) -> Arc<Parent> {
- /// self.parent.upgrade().unwrap()
- /// }
- /// }
- /// ```
- /// This class simplifies the above code by allowing us instead to do:
- /// ```rust
- /// struct Parent {
- /// child: Arc<Child>
- /// }
- /// impl Parent {
- /// fn new() -> Arc<Self> {
- /// let self_ = Arc::new(Self {
- /// child: Child::new()
- /// };
- /// self_.child.parent.init(self_.clone());
- /// self_
- /// }
- /// }
- /// struct Child {
- /// parent: LazyWeak<Parent>
- /// }
- /// impl Child {
- /// fn new() -> Self {
- /// Self { parent: LazyWeak::new() }
- /// }
- /// fn upgrade(&self) -> Arc<Parent> {
- /// self.parent.upgrade()
- /// }
- /// }
- /// ```
- pub struct LazyWeak<Parent>(OnceLock<Weak<Parent>>);
- impl<Parent> LazyWeak<Parent> {
- /// Create an empty `LazyWeak`, which must immediately be followed by `weak.init()`.
- pub fn new() -> Self {
- Self(OnceLock::new())
- }
- /// Must be called within the same scope as `new()`.
- pub fn init(&self, parent: Arc<Parent>) {
- assert!(self.0.get().is_none());
- let parent = Arc::downgrade(&parent);
- self.0.set(parent).unwrap();
- }
- /// Access the `Arc<Parent>` pointer
- pub fn upgrade(&self) -> Arc<Parent> {
- self.0.get().unwrap().upgrade().unwrap()
- }
- }
- impl<Parent> Default for LazyWeak<Parent> {
- fn default() -> Self {
- Self::new()
- }
- }
|