diff --git a/Cargo.toml b/Cargo.toml index 4a8df8e..f4fc7ac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -44,6 +44,7 @@ libc = "0.2.148" log = "0.4.20" nonempty = { version = "0.8.1", features = ["serialize"] } signal-hook = "0.3.17" +smallvec = "1.11.1" # Matrix matrix-sdk = { git = "https://github.com/matrix-org/matrix-rust-sdk.git", rev = "91e7f2f7224b8ada17ab639d60da10dad98aeaf9", features = ["eyre", "markdown"] } diff --git a/src/app.rs b/src/app.rs index 65db3a8..f4c3864 100644 --- a/src/app.rs +++ b/src/app.rs @@ -158,7 +158,7 @@ impl App { for client in &self.clients { for room in client.joined_rooms() { self.buffers.push(Box::new(RoomBuffer::new( - vec![client.clone()], + [client.clone()], room.room_id().to_owned(), ))); } diff --git a/src/buffers/room.rs b/src/buffers/room.rs index 0d6f01c..679c3a2 100644 --- a/src/buffers/room.rs +++ b/src/buffers/room.rs @@ -17,17 +17,23 @@ use matrix_sdk::ruma::OwnedRoomId; use matrix_sdk::Client; use matrix_sdk::Room; +use smallvec::SmallVec; use super::Buffer; pub struct RoomBuffer { - clients: Vec, + // It's unlikely users will join the same room with more than one account; + // avoid a useless heap allocation for the usual case. + clients: SmallVec<[Client; 1]>, room_id: OwnedRoomId, } impl RoomBuffer { - pub fn new(clients: Vec, room_id: OwnedRoomId) -> Self { - RoomBuffer { clients, room_id } + pub fn new>(clients: Clients, room_id: OwnedRoomId) -> Self { + RoomBuffer { + clients: clients.into_iter().collect(), + room_id, + } } }