-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make examples work #47
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,7 @@ pub enum MessageToServer { | |
Intent { | ||
intent: Vec<u8>, | ||
client_version: u64, | ||
metadata: IntentMetadata, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ensure backward compatibility when adding Adding the Consider implementing versioning for your messages or providing default values to maintain backward compatibility with older clients and servers. |
||
}, | ||
RequestState { | ||
latest_version: u64, | ||
|
@@ -82,6 +83,7 @@ impl<A: Aper> ClientConnection<A> { | |
(self.message_callback)(MessageToServer::Intent { | ||
intent, | ||
client_version: version, | ||
metadata, | ||
}); | ||
|
||
Ok(()) | ||
|
@@ -163,10 +165,10 @@ impl<A: Aper> ServerHandle<A> { | |
MessageToServer::Intent { | ||
intent, | ||
client_version, | ||
metadata, | ||
} => { | ||
let intent = bincode::deserialize(intent).unwrap(); | ||
let mut server_borrow = self.server.lock().unwrap(); | ||
let metadata = IntentMetadata::new(Some(self.client_id), Utc::now()); | ||
let Ok(mutations) = server_borrow.apply(&intent, &metadata) else { | ||
// still need to ack the client. | ||
|
||
|
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,6 +1,6 @@ | ||||||||||||||||||||||||
use aper::{ | ||||||||||||||||||||||||
data_structures::{atom::Atom, fixed_array::FixedArray}, | ||||||||||||||||||||||||
Aper, AperSync, IntentEvent, | ||||||||||||||||||||||||
Aper, AperSync, IntentMetadata, | ||||||||||||||||||||||||
}; | ||||||||||||||||||||||||
use serde::{Deserialize, Serialize}; | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
|
@@ -154,14 +154,14 @@ impl Aper for DropFourGame { | |||||||||||||||||||||||
type Intent = GameTransition; | ||||||||||||||||||||||||
type Error = (); | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
fn apply(&mut self, event: &IntentEvent<Self::Intent>) -> Result<(), ()> { | ||||||||||||||||||||||||
match event.intent { | ||||||||||||||||||||||||
fn apply(&mut self, intent: &Self::Intent, metadata: &IntentMetadata) -> Result<(), ()> { | ||||||||||||||||||||||||
match intent { | ||||||||||||||||||||||||
GameTransition::Join => { | ||||||||||||||||||||||||
if PlayState::Waiting == self.play_state.get() { | ||||||||||||||||||||||||
if self.player_map.teal_player.get().is_none() { | ||||||||||||||||||||||||
self.player_map.teal_player.set(event.client); | ||||||||||||||||||||||||
self.player_map.teal_player.set(metadata.client); | ||||||||||||||||||||||||
} else if self.player_map.brown_player.get().is_none() { | ||||||||||||||||||||||||
self.player_map.brown_player.set(event.client); | ||||||||||||||||||||||||
self.player_map.brown_player.set(metadata.client); | ||||||||||||||||||||||||
Comment on lines
+162
to
+164
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Handle potential When assigning You can modify the code to check for if self.player_map.teal_player.get().is_none() {
+ if let Some(client_id) = metadata.client {
self.player_map.teal_player.set(Some(client_id));
+ } else {
+ return Err(()); // Handle None client ID appropriately
+ }
} else if self.player_map.brown_player.get().is_none() {
+ if let Some(client_id) = metadata.client {
self.player_map.brown_player.set(Some(client_id));
self.play_state.set(PlayState::Playing);
+ } else {
+ return Err(()); // Handle None client ID appropriately
+ }
}
|
||||||||||||||||||||||||
self.play_state.set(PlayState::Playing); | ||||||||||||||||||||||||
} | ||||||||||||||||||||||||
} | ||||||||||||||||||||||||
|
@@ -171,15 +171,15 @@ impl Aper for DropFourGame { | |||||||||||||||||||||||
if self.winner.get().is_some() { | ||||||||||||||||||||||||
return Ok(()); | ||||||||||||||||||||||||
} // Someone has already won. | ||||||||||||||||||||||||
if self.player_map.id_of_color(self.next_player.get()) != event.client { | ||||||||||||||||||||||||
if self.player_map.id_of_color(self.next_player.get()) != metadata.client { | ||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ensure correct comparison of client IDs The comparison between You might adjust the code as follows: - if self.player_map.id_of_color(self.next_player.get()) != metadata.client {
+ if let (Some(expected_id), Some(actual_id)) = (
+ self.player_map.id_of_color(self.next_player.get()),
+ metadata.client,
+ ) {
+ if expected_id != actual_id {
+ return Ok(()); // Play out of turn.
+ }
+ } else {
+ return Ok(()); // Missing player ID.
+ } 📝 Committable suggestion
Suggested change
|
||||||||||||||||||||||||
return Ok(()); | ||||||||||||||||||||||||
} // Play out of turn. | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
if let Some(insert_row) = self.board.lowest_open_row(c as u32) { | ||||||||||||||||||||||||
if let Some(insert_row) = self.board.lowest_open_row(*c as u32) { | ||||||||||||||||||||||||
self.board | ||||||||||||||||||||||||
.set(insert_row, c as u32, Some(self.next_player.get())); | ||||||||||||||||||||||||
.set(insert_row, *c as u32, Some(self.next_player.get())); | ||||||||||||||||||||||||
Comment on lines
+178
to
+180
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add bounds check for column index to prevent potential panics When casting Apply this diff to add a bounds check: + if (*c as u32) >= BOARD_COLS {
+ return Err(()); // Column index is out of bounds.
+ }
if let Some(insert_row) = self.board.lowest_open_row(*c as u32) {
self.board
.set(insert_row, *c as u32, Some(self.next_player.get()));
|
||||||||||||||||||||||||
|
||||||||||||||||||||||||
let winner = self.board.check_winner_at(insert_row as i32, c as i32); | ||||||||||||||||||||||||
let winner = self.board.check_winner_at(insert_row as i32, *c as i32); | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
self.winner.set(winner); | ||||||||||||||||||||||||
self.next_player.set(self.next_player.get().other()); | ||||||||||||||||||||||||
|
@@ -221,31 +221,36 @@ mod tests { | |||||||||||||||||||||||
#[test] | ||||||||||||||||||||||||
fn test_game() { | ||||||||||||||||||||||||
let mut game = DropFourGame::new(); | ||||||||||||||||||||||||
let dummy_timestamp = Utc.timestamp_millis_opt(0).unwrap(); | ||||||||||||||||||||||||
let player1 = 1; | ||||||||||||||||||||||||
let player2 = 2; | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
let player1_meta = IntentMetadata { | ||||||||||||||||||||||||
client: Some(player1), | ||||||||||||||||||||||||
timestamp: Utc.timestamp_millis_opt(0).unwrap(), | ||||||||||||||||||||||||
}; | ||||||||||||||||||||||||
let player2_meta = IntentMetadata { | ||||||||||||||||||||||||
client: Some(player2), | ||||||||||||||||||||||||
timestamp: Utc.timestamp_millis_opt(0).unwrap(), | ||||||||||||||||||||||||
}; | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
assert_eq!(Waiting, game.play_state.get()); | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
game.apply(&IntentEvent::new(Some(player1), dummy_timestamp, Join)) | ||||||||||||||||||||||||
.unwrap(); | ||||||||||||||||||||||||
game.apply(&Join, &player1_meta).unwrap(); | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
assert_eq!(Waiting, game.play_state.get()); | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
assert_eq!(Some(player1), game.player_map.teal_player.get(),); | ||||||||||||||||||||||||
assert_eq!(Some(player1), game.player_map.teal_player.get()); | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
game.apply(&IntentEvent::new(Some(player2), dummy_timestamp, Join)) | ||||||||||||||||||||||||
.unwrap(); | ||||||||||||||||||||||||
game.apply(&Join, &player2_meta).unwrap(); | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
assert_eq!(game.play_state.get(), Playing,); | ||||||||||||||||||||||||
assert_eq!(Some(player2), game.player_map.brown_player.get(),); | ||||||||||||||||||||||||
assert_eq!(Teal, game.next_player.get(),); | ||||||||||||||||||||||||
assert_eq!(Some(player2), game.player_map.brown_player.get()); | ||||||||||||||||||||||||
assert_eq!(Teal, game.next_player.get()); | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
game.apply(&IntentEvent::new(Some(player1), dummy_timestamp, Drop(4))) | ||||||||||||||||||||||||
.unwrap(); | ||||||||||||||||||||||||
game.apply(&Drop(4), &player1_meta).unwrap(); | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
expect_disc(&game, 5, 4, Teal); | ||||||||||||||||||||||||
assert_eq!(Brown, game.next_player.get(),); | ||||||||||||||||||||||||
assert_eq!(Brown, game.next_player.get()); | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
// v | ||||||||||||||||||||||||
// ....... | ||||||||||||||||||||||||
|
@@ -255,10 +260,9 @@ mod tests { | |||||||||||||||||||||||
// ....... | ||||||||||||||||||||||||
// ....T.. | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
game.apply(&IntentEvent::new(Some(player2), dummy_timestamp, Drop(4))) | ||||||||||||||||||||||||
.unwrap(); | ||||||||||||||||||||||||
game.apply(&Drop(4), &player2_meta).unwrap(); | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
assert_eq!(Teal, game.next_player.get(),); | ||||||||||||||||||||||||
assert_eq!(Teal, game.next_player.get()); | ||||||||||||||||||||||||
expect_disc(&game, 4, 4, Brown); | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
// v | ||||||||||||||||||||||||
|
@@ -269,10 +273,9 @@ mod tests { | |||||||||||||||||||||||
// ....B.. | ||||||||||||||||||||||||
// ....T.. | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
game.apply(&IntentEvent::new(Some(player1), dummy_timestamp, Drop(3))) | ||||||||||||||||||||||||
.unwrap(); | ||||||||||||||||||||||||
game.apply(&Drop(3), &player1_meta).unwrap(); | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
assert_eq!(Brown, game.next_player.get(),); | ||||||||||||||||||||||||
assert_eq!(Brown, game.next_player.get()); | ||||||||||||||||||||||||
expect_disc(&game, 5, 3, Teal); | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
// v | ||||||||||||||||||||||||
|
@@ -283,10 +286,9 @@ mod tests { | |||||||||||||||||||||||
// ....B.. | ||||||||||||||||||||||||
// ...TT.. | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
game.apply(&IntentEvent::new(Some(player2), dummy_timestamp, Drop(5))) | ||||||||||||||||||||||||
.unwrap(); | ||||||||||||||||||||||||
game.apply(&Drop(5), &player2_meta).unwrap(); | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
assert_eq!(Teal, game.next_player.get(),); | ||||||||||||||||||||||||
assert_eq!(Teal, game.next_player.get()); | ||||||||||||||||||||||||
expect_disc(&game, 5, 5, Brown); | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
// v | ||||||||||||||||||||||||
|
@@ -297,10 +299,9 @@ mod tests { | |||||||||||||||||||||||
// ....B.. | ||||||||||||||||||||||||
// ...TTB. | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
game.apply(&IntentEvent::new(Some(player1), dummy_timestamp, Drop(2))) | ||||||||||||||||||||||||
.unwrap(); | ||||||||||||||||||||||||
game.apply(&Drop(2), &player1_meta).unwrap(); | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
assert_eq!(Brown, game.next_player.get(),); | ||||||||||||||||||||||||
assert_eq!(Brown, game.next_player.get()); | ||||||||||||||||||||||||
expect_disc(&game, 5, 2, Teal); | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
// v | ||||||||||||||||||||||||
|
@@ -311,10 +312,9 @@ mod tests { | |||||||||||||||||||||||
// ....B.. | ||||||||||||||||||||||||
// ..TTTB. | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
game.apply(&IntentEvent::new(Some(player2), dummy_timestamp, Drop(2))) | ||||||||||||||||||||||||
.unwrap(); | ||||||||||||||||||||||||
game.apply(&Drop(2), &player2_meta).unwrap(); | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
assert_eq!(Teal, game.next_player.get(),); | ||||||||||||||||||||||||
assert_eq!(Teal, game.next_player.get()); | ||||||||||||||||||||||||
expect_disc(&game, 4, 2, Brown); | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
// v | ||||||||||||||||||||||||
|
@@ -325,12 +325,11 @@ mod tests { | |||||||||||||||||||||||
// ..B.B.. | ||||||||||||||||||||||||
// ..TTTB. | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
game.apply(&IntentEvent::new(Some(player1), dummy_timestamp, Drop(1))) | ||||||||||||||||||||||||
.unwrap(); | ||||||||||||||||||||||||
game.apply(&Drop(1), &player1_meta).unwrap(); | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
assert_eq!(Brown, game.next_player.get(),); | ||||||||||||||||||||||||
assert_eq!(Brown, game.next_player.get()); | ||||||||||||||||||||||||
expect_disc(&game, 5, 1, Teal); | ||||||||||||||||||||||||
assert_eq!(Some(Teal), game.winner.get(),); | ||||||||||||||||||||||||
assert_eq!(Some(Teal), game.winner.get()); | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
// v | ||||||||||||||||||||||||
// ....... | ||||||||||||||||||||||||
|
@@ -340,9 +339,8 @@ mod tests { | |||||||||||||||||||||||
// ..B.B.. | ||||||||||||||||||||||||
// .TTTTB. | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
game.apply(&IntentEvent::new(Some(player1), dummy_timestamp, Reset)) | ||||||||||||||||||||||||
.unwrap(); | ||||||||||||||||||||||||
game.apply(&Reset, &player1_meta).unwrap(); | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
assert_eq!(None, game.winner.get(),); | ||||||||||||||||||||||||
assert_eq!(None, game.winner.get()); | ||||||||||||||||||||||||
} | ||||||||||||||||||||||||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
[build] | ||
target = "wasm32-wasi" | ||
target = "wasm32-wasip1" |
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,4 +1,4 @@ | ||||||||||||||||||||||||||||||||||||
use aper::{data_structures::atom::Atom, Aper, AperSync, IntentEvent}; | ||||||||||||||||||||||||||||||||||||
use aper::{data_structures::atom::Atom, Aper, AperSync, IntentMetadata}; | ||||||||||||||||||||||||||||||||||||
use chrono::{DateTime, Duration, Utc}; | ||||||||||||||||||||||||||||||||||||
use serde::{Deserialize, Serialize}; | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
|
@@ -18,25 +18,25 @@ impl Aper for Timer { | |||||||||||||||||||||||||||||||||||
type Intent = TimerIntent; | ||||||||||||||||||||||||||||||||||||
type Error = (); | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
fn apply(&mut self, event: &IntentEvent<Self::Intent>) -> Result<(), ()> { | ||||||||||||||||||||||||||||||||||||
match event.intent { | ||||||||||||||||||||||||||||||||||||
fn apply(&mut self, intent: &Self::Intent, metadata: &IntentMetadata) -> Result<(), ()> { | ||||||||||||||||||||||||||||||||||||
match intent { | ||||||||||||||||||||||||||||||||||||
TimerIntent::Reset => self.value.set(0), | ||||||||||||||||||||||||||||||||||||
TimerIntent::Increment => { | ||||||||||||||||||||||||||||||||||||
self.value.set(self.value.get() + 1); | ||||||||||||||||||||||||||||||||||||
self.last_increment.set(event.timestamp); | ||||||||||||||||||||||||||||||||||||
self.last_increment.set(metadata.timestamp); | ||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
Ok(()) | ||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
fn suspended_event(&self) -> Option<IntentEvent<TimerIntent>> { | ||||||||||||||||||||||||||||||||||||
fn suspended_event(&self) -> Option<(DateTime<Utc>, TimerIntent)> { | ||||||||||||||||||||||||||||||||||||
let next_event = self | ||||||||||||||||||||||||||||||||||||
.last_increment | ||||||||||||||||||||||||||||||||||||
.get() | ||||||||||||||||||||||||||||||||||||
.checked_add_signed(Duration::seconds(1)) | ||||||||||||||||||||||||||||||||||||
.unwrap(); | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
Some(IntentEvent::new(None, next_event, TimerIntent::Increment)) | ||||||||||||||||||||||||||||||||||||
Some((next_event, TimerIntent::Increment)) | ||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||
Comment on lines
+33
to
+40
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Avoid potential panic by handling Using Consider handling the fn suspended_event(&self) -> Option<(DateTime<Utc>, TimerIntent)> {
let next_event = self
.last_increment
.get()
- .checked_add_signed(Duration::seconds(1))
- .unwrap();
+ .checked_add_signed(Duration::seconds(1))?;
Some((next_event, TimerIntent::Increment))
} This change ensures that if an overflow occurs, the function gracefully returns 📝 Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use the original timestamp when constructing
IntentMetadata
Currently,
IntentMetadata
is initialized with the current time usingUtc::now()
. To accurately reflect the intended execution time of the suspended intent, consider using the original timestamp_timestamp
extracted fromself.suspended_event
.Apply this diff to use the scheduled timestamp:
metadata: IntentMetadata::new(None, Utc::now()), +metadata: IntentMetadata::new(None, _timestamp),