Skip to content

Commit

Permalink
feat(example): add examples of async
Browse files Browse the repository at this point in the history
  • Loading branch information
meloalright committed Nov 16, 2024
1 parent d37ebfb commit 0a7dcb6
Show file tree
Hide file tree
Showing 6 changed files with 110 additions and 0 deletions.
29 changes: 29 additions & 0 deletions examples/arc.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
use std::thread;
use std::sync::{Arc};
use taitank_safe::*;

fn main() {
let mut root = node_create();
set_align_items(&mut root, FlexAlign::FlexAlignCenter);
set_width(&mut root, 200.0);
set_height(&mut root, 200.0);

layout!(&mut root);

/// Arc
let arc_root = Arc::new(root);

let mut handles = vec![];

for i in 0..5 {
let arc_root = Arc::clone(&arc_root);
let handle = thread::spawn(move || {
println!("{}", i);
println!("{:?}", arc_root);
});
handles.push(handle);
}
for handle in handles {
handle.join().unwrap();
}
}
Empty file removed examples/async.rs
Empty file.
File renamed without changes.
38 changes: 38 additions & 0 deletions examples/mutex.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
use std::thread;
use std::sync::{Arc, Mutex, RwLock};
use taitank_safe::*;

fn main() {
let mut root = node_create();
set_align_items(&mut root, FlexAlign::FlexAlignCenter);
set_width(&mut root, 200.0);
set_height(&mut root, 200.0);

layout!(&mut root);

/// Mutex
let arc_mutex_root = Arc::new(Mutex::new(root));
let mut handles = vec![];

for i in 0..5 {
let arc_mutex_root = Arc::clone(&arc_mutex_root);
let handle = thread::spawn(move || {
// 获取 Mutex 的锁并修改数据
let mut root = arc_mutex_root.lock().unwrap();
let width = get_width(&root);
set_width(&mut root, width + 10.0);
layout!(&mut root);
println!("Mutex {}", i);
println!("{:?}", root);
});
handles.push(handle);
}

for handle in handles {
handle.join().unwrap();
}

let final_data = arc_mutex_root.lock().unwrap();
println!("Mutex final");
println!("{:?}", final_data);
}
39 changes: 39 additions & 0 deletions examples/rwlock.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
use std::thread;
use std::sync::{Arc, Mutex, RwLock};
use taitank_safe::*;

fn main() {
let mut root = node_create();
set_align_items(&mut root, FlexAlign::FlexAlignCenter);
set_width(&mut root, 200.0);
set_height(&mut root, 200.0);

layout!(&mut root);

/// RwLock
let arc_rwlock_root = Arc::new(RwLock::new(root));
let mut handles = vec![];

for i in 0..5 {
let arc_rwlock_root = Arc::clone(&arc_rwlock_root);
let handle = thread::spawn(move || {
let root = arc_rwlock_root.read().unwrap();
let width = get_width(&root);
drop(root);
let mut root = arc_rwlock_root.write().unwrap();
set_width(&mut root, width + 10.0);
layout!(&mut root);
println!("RwLock {}", i);
println!("{:?}", root);
});
handles.push(handle);
}

for handle in handles {
handle.join().unwrap();
}

let final_data = arc_rwlock_root.read().unwrap();
println!("RwLock final");
println!("{:?}", final_data);
}
4 changes: 4 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ impl Debug for TaitankSafeNode {
}
}

unsafe impl Send for TaitankSafeNode {}
unsafe impl Sync for TaitankSafeNode {}


#[repr(i32)]
pub enum Direction {
Inherit = 0,
Expand Down

0 comments on commit 0a7dcb6

Please sign in to comment.