Compare commits

...

3 Commits

Author SHA1 Message Date
bitfl0wer 21699e5899
Loosen bounds on IntoShared<T> 2024-01-22 15:00:46 +01:00
bitfl0wer 5372d2c475
Make IntoShared trait with blanket implementation 2024-01-22 14:56:23 +01:00
bitfl0wer 29f3ee802a
Fix errors by moving into_shared out of Composite 2024-01-22 14:50:33 +01:00
3 changed files with 21 additions and 17 deletions

View File

@ -71,9 +71,9 @@ pub trait Composite<T: Updateable + Clone + Debug> {
async fn watch_whole(self, gateway: &GatewayHandle) -> Self; async fn watch_whole(self, gateway: &GatewayHandle) -> Self;
async fn option_observe_fn( async fn option_observe_fn(
value: Option<Arc<RwLock<T>>>, value: Option<Shared<T>>,
gateway: &GatewayHandle, gateway: &GatewayHandle,
) -> Option<Arc<RwLock<T>>> ) -> Option<Shared<T>>
where where
T: Composite<T> + Debug, T: Composite<T> + Debug,
{ {
@ -86,9 +86,9 @@ pub trait Composite<T: Updateable + Clone + Debug> {
} }
async fn option_vec_observe_fn( async fn option_vec_observe_fn(
value: Option<Vec<Arc<RwLock<T>>>>, value: Option<Vec<Shared<T>>>,
gateway: &GatewayHandle, gateway: &GatewayHandle,
) -> Option<Vec<Arc<RwLock<T>>>> ) -> Option<Vec<Shared<T>>>
where where
T: Composite<T>, T: Composite<T>,
{ {
@ -103,17 +103,14 @@ pub trait Composite<T: Updateable + Clone + Debug> {
} }
} }
async fn value_observe_fn(value: Arc<RwLock<T>>, gateway: &GatewayHandle) -> Arc<RwLock<T>> async fn value_observe_fn(value: Shared<T>, gateway: &GatewayHandle) -> Shared<T>
where where
T: Composite<T>, T: Composite<T>,
{ {
gateway.observe(value).await gateway.observe(value).await
} }
async fn vec_observe_fn( async fn vec_observe_fn(value: Vec<Shared<T>>, gateway: &GatewayHandle) -> Vec<Shared<T>>
value: Vec<Arc<RwLock<T>>>,
gateway: &GatewayHandle,
) -> Vec<Arc<RwLock<T>>>
where where
T: Composite<T>, T: Composite<T>,
{ {
@ -123,17 +120,20 @@ pub trait Composite<T: Updateable + Clone + Debug> {
} }
vec vec
} }
}
pub trait IntoShared {
/// Uses [`Shared`] to provide an ergonomic alternative to `Arc::new(RwLock::new(obj))`. /// Uses [`Shared`] to provide an ergonomic alternative to `Arc::new(RwLock::new(obj))`.
/// ///
/// [`Shared<Self>`] can then be observed using the [`Gateway`], turning the underlying /// [`Shared<Self>`] can then be observed using the [`Gateway`], turning the underlying
/// `dyn Composite<Self>` into a self-updating struct, which is a tracked variant of a chorus /// `dyn Composite<Self>` into a self-updating struct, which is a tracked variant of a chorus
/// entity struct, updating its' held information when new information concerning itself arrives /// entity struct, updating its' held information when new information concerning itself arrives
/// over the [`Gateway`] connection, reducing the need for expensive network-API calls. /// over the [`Gateway`] connection, reducing the need for expensive network-API calls.
fn into_shared(self) -> Shared<Self> fn into_shared(self) -> Shared<Self>;
where }
Self: Sized,
{ impl<T: Sized> IntoShared for T {
fn into_shared(self) -> Shared<Self> {
Arc::new(RwLock::new(self)) Arc::new(RwLock::new(self))
} }
} }

View File

@ -1,5 +1,5 @@
use chorus::gateway::{Gateway, Shared}; use chorus::gateway::{Gateway, Shared};
use chorus::types::Composite; use chorus::types::IntoShared;
use chorus::{ use chorus::{
instance::{ChorusUser, Instance}, instance::{ChorusUser, Instance},
types::{ types::{

View File

@ -2,7 +2,7 @@ mod common;
use chorus::errors::GatewayError; use chorus::errors::GatewayError;
use chorus::gateway::*; use chorus::gateway::*;
use chorus::types::{self, ChannelModifySchema, Composite, RoleCreateModifySchema, RoleObject}; use chorus::types::{self, ChannelModifySchema, IntoShared, RoleCreateModifySchema, RoleObject};
#[cfg(target_arch = "wasm32")] #[cfg(target_arch = "wasm32")]
use wasm_bindgen_test::*; use wasm_bindgen_test::*;
#[cfg(target_arch = "wasm32")] #[cfg(target_arch = "wasm32")]
@ -95,7 +95,11 @@ async fn test_recursive_self_updating_structs() {
.await .await
.unwrap(); .unwrap();
// Watch role; // Watch role;
bundle.user.gateway.observe(role.into_shared()).await; bundle
.user
.gateway
.observe(role.clone().into_shared())
.await;
// Update Guild and check for Guild // Update Guild and check for Guild
let inner_guild = guild.read().unwrap().clone(); let inner_guild = guild.read().unwrap().clone();
assert!(inner_guild.roles.is_some()); assert!(inner_guild.roles.is_some());
@ -107,7 +111,7 @@ async fn test_recursive_self_updating_structs() {
let role_inner = bundle let role_inner = bundle
.user .user
.gateway .gateway
.observe_and_into_inner(role.into_shared()) .observe_and_into_inner(role.clone().into_shared())
.await; .await;
assert_eq!(role_inner.name, "yippieee"); assert_eq!(role_inner.name, "yippieee");
// Check if the change propagated // Check if the change propagated