Ensure the game_view_model handler aborts when the view_model gets dropped

This commit is contained in:
Savanni D'Gerinel 2024-02-27 23:01:09 -05:00 committed by savanni
parent 74b00d94b1
commit f6c82cbcb0
1 changed files with 18 additions and 13 deletions

View File

@ -14,10 +14,7 @@ General Public License for more details.
You should have received a copy of the GNU General Public License along with Kifu. If not, see <https://www.gnu.org/licenses/>.
*/
use async_std::{
channel::Receiver,
task::{spawn, yield_now, JoinHandle},
};
use async_std::{channel::Receiver, task::yield_now};
use kifu_core::{Color, Core, CoreNotification, Goban, Observable, Player};
use std::{cell::RefCell, rc::Rc, time::Duration};
@ -40,6 +37,7 @@ struct GameViewModelPrivate {
/// The Game View Model manages the current state of the game. It shows the two player cards, the board, the current capture count, the current player, and it maintains the UI for the clock (bearing in mind that the real clock is managed in the core). This view model should only be created once the details of the game, whether a game in progress or a new game (this view model won't know the difference) is known.
pub struct GameViewModel {
core: Core,
notification_handler: glib::JoinHandle<()>,
widget: gtk::Box,
data: Rc<RefCell<GameViewModelPrivate>>,
}
@ -56,17 +54,18 @@ impl GameViewModel {
state: game,
}));
let s = Self {
core,
widget: gtk::Box::new(gtk::Orientation::Horizontal, 0),
data,
let notification_handler = {
let notifications = core.subscribe();
let data: Rc<RefCell<GameViewModelPrivate>> = data.clone();
glib::spawn_future_local(Self::listen(notifications, data))
};
let notifications = s.core.subscribe();
let data = s.data.clone();
glib::spawn_future_local(Self::listen(notifications, data));
s
Self {
core,
notification_handler,
widget: gtk::Box::new(gtk::Orientation::Horizontal, 0),
data,
}
}
async fn listen(
@ -84,3 +83,9 @@ impl GameViewModel {
}
}
}
impl Drop for GameViewModel {
fn drop(&mut self) {
self.notification_handler.abort();
}
}