sockudo-core 4.4.0

Core traits, types, error handling, and configuration for Sockudo
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
use crate::app::AppManager;
use crate::channel::PresenceMemberInfo;
use crate::error::{Error, Result};
use crate::utils::wildcard_pattern_matches;
use crate::websocket::{SocketId, WebSocket, WebSocketBufferConfig, WebSocketRef};
use ahash::AHashMap as HashMap;
use ahash::AHashSet;
use dashmap::{DashMap, DashSet};
use futures_util::future::join_all;
use sockudo_ws::axum_integration::WebSocketWriter;
use std::sync::Arc;
use tracing::{debug, error, info, warn};

// Represents a namespace, typically tied to a specific application ID.
pub struct Namespace {
    pub app_id: String,
    pub sockets: DashMap<SocketId, WebSocketRef>,
    pub channels: DashMap<String, DashSet<SocketId>>,
    wildcard_channels: DashSet<String>,
    pub users: DashMap<String, DashSet<WebSocketRef>>,
}

pub struct SocketInitOptions {
    pub buffer_config: WebSocketBufferConfig,
    pub protocol_version: sockudo_protocol::ProtocolVersion,
    pub wire_format: sockudo_protocol::WireFormat,
    pub echo_messages: bool,
}

impl Namespace {
    pub fn new(app_id: String) -> Self {
        Self {
            app_id,
            sockets: DashMap::new(),
            channels: DashMap::new(),
            wildcard_channels: DashSet::new(),
            users: DashMap::new(),
        }
    }

    pub async fn add_socket(
        &self,
        socket_id: SocketId,
        socket_writer: WebSocketWriter,
        app_manager: Arc<dyn AppManager + Send + Sync>,
        init: SocketInitOptions,
    ) -> Result<WebSocketRef> {
        let app_config = match app_manager.find_by_id(&self.app_id).await {
            Ok(Some(app)) => app,
            Ok(None) => {
                error!(
                    "App not found for app_id: {}. Cannot initialize socket: {}",
                    self.app_id, socket_id
                );
                return Err(Error::ApplicationNotFound);
            }
            Err(e) => {
                error!(
                    "Failed to get app {} for socket {}: {}",
                    self.app_id, socket_id, e
                );
                return Err(Error::Internal(format!(
                    "Failed to retrieve app config: {e}"
                )));
            }
        };

        let mut websocket =
            WebSocket::with_buffer_config(socket_id, socket_writer, init.buffer_config);
        websocket.state.app = Some(app_config);
        websocket.state.protocol_version = init.protocol_version;
        websocket.state.wire_format = init.wire_format;
        websocket.state.echo_messages = init.echo_messages;

        let websocket_ref = WebSocketRef::new(websocket);
        self.sockets.insert(socket_id, websocket_ref.clone());

        debug!(socket_id = %socket_id, "WebSocket connection added successfully");

        Ok(websocket_ref)
    }

    pub fn get_connection(&self, socket_id: &SocketId) -> Option<WebSocketRef> {
        self.sockets
            .get(socket_id)
            .map(|conn_ref| conn_ref.value().clone())
    }

    pub async fn get_channel_members(
        &self,
        channel: &str,
    ) -> Result<HashMap<String, PresenceMemberInfo>> {
        let mut presence_members = HashMap::new();

        if let Some(socket_ids_ref) = self.channels.get(channel) {
            let socket_ids_snapshot = socket_ids_ref.clone();
            drop(socket_ids_ref);

            for socket_id_entry in socket_ids_snapshot.iter() {
                let socket_id = socket_id_entry.key();
                if let Some(connection) = self.get_connection(socket_id) {
                    let presence_data = {
                        let conn_guard = connection.inner.lock().await;
                        conn_guard
                            .state
                            .presence
                            .as_ref()
                            .and_then(|p_map| p_map.get(channel).cloned())
                    };
                    if let Some(presence_info) = presence_data {
                        presence_members.insert(presence_info.user_id.clone(), presence_info);
                    }
                }
            }
        } else {
            info!(
                "get_channel_members called on non-existent channel: {}",
                channel
            );
        }
        Ok(presence_members)
    }

    pub fn get_channel_socket_count(&self, channel: &str) -> usize {
        self.channels
            .get(channel)
            .map(|set_ref| set_ref.len())
            .unwrap_or(0)
    }

    #[inline]
    pub fn get_channel_sockets(&self, channel: &str) -> Vec<SocketId> {
        if let Some(channel_sockets_ref) = self.channels.get(channel) {
            channel_sockets_ref
                .iter()
                .map(|entry| *entry.key())
                .collect()
        } else {
            debug!(
                "get_channel_sockets called on non-existent channel: {}",
                channel
            );
            Vec::new()
        }
    }

    pub fn get_channel_socket_refs_except(
        &self,
        channel: &str,
        except: Option<&SocketId>,
    ) -> Vec<WebSocketRef> {
        let Some(channel_sockets_ref) = self.channels.get(channel) else {
            debug!(
                "get_channel_socket_refs_except called on non-existent channel: {}",
                channel
            );
            return Vec::new();
        };

        let mut socket_refs = Vec::with_capacity(channel_sockets_ref.len());

        for socket_id_entry in channel_sockets_ref.iter() {
            let socket_id = socket_id_entry.key();
            if except == Some(socket_id) {
                continue;
            }

            if let Some(socket_ref) = self.get_connection(socket_id) {
                socket_refs.push(socket_ref);
            }
        }

        socket_refs
    }

    pub fn get_matching_channel_socket_refs_except(
        &self,
        channel: &str,
        except: Option<&SocketId>,
    ) -> Vec<WebSocketRef> {
        if channel.contains('*') {
            return self
                .get_matching_channel_socket_ids_except(channel, except)
                .into_iter()
                .filter_map(|socket_id| self.get_connection(&socket_id))
                .collect();
        }

        let mut socket_refs = self.get_channel_socket_refs_except(channel, except);
        if self.wildcard_channels.is_empty() {
            return socket_refs;
        }

        let mut seen_socket_ids = None;
        self.collect_matching_socket_refs(channel, except, &mut seen_socket_ids, &mut socket_refs);
        socket_refs
    }

    pub fn get_matching_channel_socket_refs_partitioned_except(
        &self,
        channel: &str,
        except: Option<&SocketId>,
    ) -> (Vec<WebSocketRef>, Vec<WebSocketRef>) {
        if channel.contains('*') {
            let mut v1_refs = Vec::new();
            let mut v2_refs = Vec::new();

            for socket_id in self.get_matching_channel_socket_ids_except(channel, except) {
                if let Some(socket_ref) = self.get_connection(&socket_id) {
                    Self::push_socket_ref_by_protocol(socket_ref, &mut v1_refs, &mut v2_refs);
                }
            }

            return (v1_refs, v2_refs);
        }

        let mut v1_refs = Vec::new();
        let mut v2_refs = Vec::new();

        if let Some(channel_sockets_ref) = self.channels.get(channel) {
            for socket_id_entry in channel_sockets_ref.iter() {
                let socket_id = socket_id_entry.key();
                if except == Some(socket_id) {
                    continue;
                }

                if let Some(socket_ref) = self.get_connection(socket_id) {
                    Self::push_socket_ref_by_protocol(socket_ref, &mut v1_refs, &mut v2_refs);
                }
            }
        }

        if self.wildcard_channels.is_empty() {
            return (v1_refs, v2_refs);
        }

        let mut seen_socket_ids = None;
        self.collect_matching_socket_refs_partitioned(
            channel,
            except,
            &mut seen_socket_ids,
            &mut v1_refs,
            &mut v2_refs,
        );

        (v1_refs, v2_refs)
    }

    pub fn get_matching_channel_socket_ids_except(
        &self,
        channel: &str,
        except: Option<&SocketId>,
    ) -> AHashSet<SocketId> {
        let mut socket_ids = AHashSet::new();

        if channel.contains('*') {
            self.collect_matching_socket_ids(channel, except, &mut socket_ids, true);
            return socket_ids;
        }

        self.collect_exact_channel_socket_ids(channel, except, &mut socket_ids);
        self.collect_matching_socket_ids(channel, except, &mut socket_ids, false);
        socket_ids
    }

    fn collect_exact_channel_socket_ids(
        &self,
        channel: &str,
        except: Option<&SocketId>,
        socket_ids: &mut AHashSet<SocketId>,
    ) {
        if let Some(channel_sockets_ref) = self.channels.get(channel) {
            for socket_id_entry in channel_sockets_ref.iter() {
                let socket_id = socket_id_entry.key();
                if except != Some(socket_id) {
                    socket_ids.insert(*socket_id);
                }
            }
        }
    }

    fn collect_matching_socket_ids(
        &self,
        channel: &str,
        except: Option<&SocketId>,
        socket_ids: &mut AHashSet<SocketId>,
        include_exact_channels: bool,
    ) {
        for wildcard_channel in self.wildcard_channels.iter() {
            let subscribed_channel = wildcard_channel.key();
            if !wildcard_pattern_matches(channel, subscribed_channel) {
                continue;
            }

            if let Some(channel_sockets_ref) = self.channels.get(subscribed_channel) {
                for socket_id_entry in channel_sockets_ref.iter() {
                    let socket_id = socket_id_entry.key();
                    if except != Some(socket_id) {
                        socket_ids.insert(*socket_id);
                    }
                }
            }
        }

        if include_exact_channels {
            self.collect_exact_channel_socket_ids(channel, except, socket_ids);
        }
    }

    fn collect_matching_socket_refs(
        &self,
        channel: &str,
        except: Option<&SocketId>,
        seen_socket_ids: &mut Option<AHashSet<SocketId>>,
        socket_refs: &mut Vec<WebSocketRef>,
    ) {
        for wildcard_channel in self.wildcard_channels.iter() {
            let subscribed_channel = wildcard_channel.key();
            if !wildcard_pattern_matches(channel, subscribed_channel) {
                continue;
            }

            let seen_socket_ids = seen_socket_ids.get_or_insert_with(|| {
                let mut seen = AHashSet::with_capacity(socket_refs.len().saturating_mul(2));
                for socket_ref in socket_refs.iter() {
                    seen.insert(*socket_ref.get_socket_id_sync());
                }
                seen
            });

            if let Some(channel_sockets_ref) = self.channels.get(subscribed_channel) {
                for socket_id_entry in channel_sockets_ref.iter() {
                    let socket_id = socket_id_entry.key();
                    if except == Some(socket_id) || !seen_socket_ids.insert(*socket_id) {
                        continue;
                    }

                    if let Some(socket_ref) = self.get_connection(socket_id) {
                        socket_refs.push(socket_ref);
                    }
                }
            }
        }
    }

    fn collect_matching_socket_refs_partitioned(
        &self,
        channel: &str,
        except: Option<&SocketId>,
        seen_socket_ids: &mut Option<AHashSet<SocketId>>,
        v1_refs: &mut Vec<WebSocketRef>,
        v2_refs: &mut Vec<WebSocketRef>,
    ) {
        for wildcard_channel in self.wildcard_channels.iter() {
            let subscribed_channel = wildcard_channel.key();
            if !wildcard_pattern_matches(channel, subscribed_channel) {
                continue;
            }

            let seen_socket_ids = seen_socket_ids.get_or_insert_with(|| {
                let mut seen =
                    AHashSet::with_capacity((v1_refs.len() + v2_refs.len()).saturating_mul(2));
                for socket_ref in v1_refs.iter().chain(v2_refs.iter()) {
                    seen.insert(*socket_ref.get_socket_id_sync());
                }
                seen
            });

            if let Some(channel_sockets_ref) = self.channels.get(subscribed_channel) {
                for socket_id_entry in channel_sockets_ref.iter() {
                    let socket_id = socket_id_entry.key();
                    if except == Some(socket_id) || !seen_socket_ids.insert(*socket_id) {
                        continue;
                    }

                    if let Some(socket_ref) = self.get_connection(socket_id) {
                        Self::push_socket_ref_by_protocol(socket_ref, v1_refs, v2_refs);
                    }
                }
            }
        }
    }

    fn push_socket_ref_by_protocol(
        socket_ref: WebSocketRef,
        v1_refs: &mut Vec<WebSocketRef>,
        v2_refs: &mut Vec<WebSocketRef>,
    ) {
        if socket_ref.protocol_version == sockudo_protocol::ProtocolVersion::V1 {
            v1_refs.push(socket_ref);
        } else {
            v2_refs.push(socket_ref);
        }
    }

    #[inline]
    pub async fn get_user_sockets(&self, user_id: &str) -> Result<Vec<WebSocketRef>> {
        match self.users.get(user_id) {
            Some(user_sockets_ref) => Ok(user_sockets_ref.iter().map(|r| r.clone()).collect()),
            None => Ok(Vec::new()),
        }
    }

    pub async fn cleanup_connection(&self, ws_ref: WebSocketRef) {
        let socket_id = ws_ref.get_socket_id().await;

        // Signal reader and writer tasks to stop
        ws_ref.shutdown();

        let channels_to_check: Vec<String> = self
            .channels
            .iter()
            .filter(|entry| entry.value().contains(&socket_id))
            .map(|entry| entry.key().clone())
            .collect();

        for channel_name in channels_to_check {
            self.channels.remove_if(&channel_name, |_, set| {
                set.remove(&socket_id);
                set.is_empty()
            });
            if channel_name.contains('*') && !self.channels.contains_key(&channel_name) {
                self.wildcard_channels.remove(&channel_name);
            }
        }

        let user_id_option = ws_ref.get_user_id().await;

        if let Some(user_id) = user_id_option
            && let Some(user_sockets_ref) = self.users.get_mut(&user_id)
        {
            user_sockets_ref.remove(&ws_ref);
            let is_empty = user_sockets_ref.is_empty();
            drop(user_sockets_ref);
            if is_empty {
                self.users.remove(&user_id);
                debug!("Removed empty user entry for: {}", user_id);
            }
        }

        if self.sockets.remove(&socket_id).is_some() {
            debug!("Removed socket {} from main map.", socket_id);
        } else {
            warn!(
                "Socket {} already removed from main map during cleanup.",
                socket_id
            );
        }
    }

    pub async fn terminate_user_connections(&self, user_id: &str) -> Result<()> {
        if let Some(user_sockets_ref) = self.users.get(user_id) {
            let user_sockets_snapshot = user_sockets_ref.clone();
            drop(user_sockets_ref);

            let cleanup_tasks: Vec<_> = user_sockets_snapshot
                .iter()
                .map(|ws_ref| async move {
                    if let Err(e) = ws_ref
                        .close(4009, "You got disconnected by the app.".to_string())
                        .await
                    {
                        warn!("Failed to close connection: {}", e);
                    }
                })
                .collect();

            join_all(cleanup_tasks).await;
        }
        Ok(())
    }

    pub fn add_channel_to_socket(&self, channel: &str, socket_id: &SocketId) -> bool {
        let t_start = std::time::Instant::now();

        let t_before_entry = t_start.elapsed().as_nanos();
        let result = self
            .channels
            .entry(channel.to_string())
            .or_default()
            .insert(*socket_id);
        let t_after_entry = t_start.elapsed().as_nanos();

        if channel.contains('*') {
            self.wildcard_channels.insert(channel.to_string());
        }

        tracing::debug!(
            "PERF[NS_ADD_CHAN] channel={} socket={} entry_op={}ns inserted={}",
            channel,
            socket_id,
            t_after_entry - t_before_entry,
            result
        );

        result
    }

    pub fn remove_channel_from_socket(&self, channel: &str, socket_id: &SocketId) -> bool {
        if let Some(channel_sockets_ref) = self.channels.get(channel) {
            let removed = channel_sockets_ref.remove(socket_id);
            drop(channel_sockets_ref);

            if self
                .channels
                .remove_if(channel, |_, set| set.is_empty())
                .is_some()
            {
                if channel.contains('*') {
                    self.wildcard_channels.remove(channel);
                }
                debug!("Removed empty channel entry: {}", channel);
            }
            return removed.is_some();
        }
        false
    }

    pub fn remove_connection(&self, socket_id: &SocketId) {
        if self.sockets.remove(socket_id).is_some() {
            debug!("Explicitly removed socket: {}", socket_id);
        }
    }

    pub fn get_channel(&self, channel: &str) -> Result<DashSet<SocketId>> {
        Ok(self
            .channels
            .get(channel)
            .map(|channel_data| channel_data.value().clone())
            .unwrap_or_default())
    }

    pub fn remove_channel(&self, channel: &str) {
        self.channels.remove(channel);
        if channel.contains('*') {
            self.wildcard_channels.remove(channel);
        }
        debug!("Removed channel entry: {}", channel);
    }

    pub fn is_in_channel(&self, channel: &str, socket_id: &SocketId) -> bool {
        self.channels
            .get(channel)
            .is_some_and(|channel_sockets| channel_sockets.contains(socket_id))
    }

    pub async fn get_presence_member(
        &self,
        channel: &str,
        socket_id: &SocketId,
    ) -> Option<PresenceMemberInfo> {
        if let Some(connection) = self.get_connection(socket_id) {
            let conn_guard = connection.inner.lock().await;
            conn_guard
                .state
                .presence
                .as_ref()
                .and_then(|presence_map| presence_map.get(channel))
                .cloned()
        } else {
            None
        }
    }

    pub async fn add_user(&self, ws_ref: WebSocketRef) -> Result<()> {
        let user_id_option = ws_ref.get_user_id().await;

        if let Some(user_id) = user_id_option {
            let user_sockets_ref = self.users.entry(user_id.clone()).or_default();
            user_sockets_ref.insert(ws_ref.clone());
            let socket_id = ws_ref.get_socket_id().await;
            debug!("Added socket {} to user {}", socket_id, user_id);
        } else {
            let socket_id = ws_ref.get_socket_id().await;
            warn!(
                "User data found for socket {} but missing user ID.",
                socket_id
            );
        }
        Ok(())
    }

    pub async fn remove_user(&self, ws_ref: WebSocketRef) -> Result<()> {
        let user_id_option = ws_ref.get_user_id().await;
        let socket_id = ws_ref.get_socket_id().await;

        if let Some(user_id) = user_id_option {
            if let Some(user_sockets_ref) = self.users.get_mut(&user_id) {
                let removed = user_sockets_ref.remove(&ws_ref);
                let is_empty = user_sockets_ref.is_empty();
                drop(user_sockets_ref);
                if removed.is_some() {
                    debug!("Removed socket {} from user {}", socket_id, user_id);
                }
                if is_empty {
                    self.users.remove(&user_id);
                    debug!("Removed empty user entry for: {}", user_id);
                }
            }
        } else {
            warn!(
                "User data found for socket {} during removal but missing user ID.",
                socket_id
            );
        }
        Ok(())
    }

    pub async fn remove_user_socket(&self, user_id: &str, socket_id: &SocketId) -> Result<()> {
        if let Some(user_sockets_ref) = self.users.get_mut(user_id) {
            let mut found_socket = None;

            for ws_ref in user_sockets_ref.iter() {
                let ws_socket_id = ws_ref.get_socket_id().await;
                if ws_socket_id == *socket_id {
                    found_socket = Some(ws_ref.clone());
                    break;
                }
            }

            if let Some(ws_ref) = found_socket {
                user_sockets_ref.remove(&ws_ref);
            }

            let is_empty = user_sockets_ref.is_empty();
            drop(user_sockets_ref);

            if is_empty {
                self.users.remove(user_id);
                debug!("Removed empty user entry for: {}", user_id);
            }

            debug!("Removed socket {} from user {}", socket_id, user_id);
        } else {
            debug!(
                "User {} not found when removing socket {}",
                user_id, socket_id
            );
        }
        Ok(())
    }

    pub async fn count_user_connections_in_channel(
        &self,
        user_id: &str,
        channel: &str,
        excluding_socket: Option<&SocketId>,
    ) -> Result<usize> {
        let mut count = 0;

        if let Some(user_sockets_ref) = self.users.get(user_id) {
            for ws_ref in user_sockets_ref.iter() {
                let socket_state_guard = ws_ref.inner.lock().await;
                let socket_id = &socket_state_guard.state.socket_id;
                let is_subscribed = socket_state_guard.state.is_subscribed(channel);

                let should_exclude = excluding_socket == Some(socket_id);

                if is_subscribed && !should_exclude {
                    count += 1;
                }
            }
        }

        Ok(count)
    }

    pub async fn get_channels_with_socket_count(&self) -> Result<HashMap<String, usize>> {
        let mut channels_with_count: HashMap<String, usize> = HashMap::new();
        for channel_ref in self.channels.iter() {
            let channel_name = channel_ref.key().clone();
            let socket_count = channel_ref.value().len();
            channels_with_count.insert(channel_name, socket_count);
        }
        Ok(channels_with_count)
    }

    #[inline]
    pub async fn get_sockets(&self) -> Result<Vec<(SocketId, WebSocketRef)>> {
        Ok(self
            .sockets
            .iter()
            .map(|entry| (*entry.key(), entry.value().clone()))
            .collect())
    }
}

#[cfg(test)]
mod tests {
    use super::Namespace;
    use crate::app::{App, AppManager, AppPolicy};
    use crate::namespace::SocketInitOptions;
    use crate::websocket::SocketId;
    use async_trait::async_trait;
    use sockudo_protocol::{ProtocolVersion, WireFormat};
    use sockudo_ws::Config as WsConfig;
    use sockudo_ws::Http1;
    use sockudo_ws::WebSocketStream;
    use sockudo_ws::axum_integration::{WebSocket, WebSocketWriter};
    use sockudo_ws::client::WebSocketClient;
    use std::sync::Arc;
    use tokio::net::{TcpListener, TcpStream};

    #[derive(Clone)]
    struct TestAppManager {
        app: App,
    }

    #[async_trait]
    impl AppManager for TestAppManager {
        async fn init(&self) -> crate::error::Result<()> {
            Ok(())
        }

        async fn create_app(&self, _config: App) -> crate::error::Result<()> {
            Ok(())
        }

        async fn update_app(&self, _config: App) -> crate::error::Result<()> {
            Ok(())
        }

        async fn delete_app(&self, _app_id: &str) -> crate::error::Result<()> {
            Ok(())
        }

        async fn get_apps(&self) -> crate::error::Result<Vec<App>> {
            Ok(vec![self.app.clone()])
        }

        async fn find_by_id(&self, app_id: &str) -> crate::error::Result<Option<App>> {
            Ok((app_id == self.app.id).then(|| self.app.clone()))
        }

        async fn find_by_key(&self, key: &str) -> crate::error::Result<Option<App>> {
            Ok((key == self.app.key).then(|| self.app.clone()))
        }

        async fn check_health(&self) -> crate::error::Result<()> {
            Ok(())
        }
    }

    async fn create_server_writer() -> WebSocketWriter {
        let listener = TcpListener::bind("127.0.0.1:0").await.unwrap();
        let local_addr = listener.local_addr().unwrap();

        let server_task = tokio::spawn(async move {
            let (mut stream, _) = listener.accept().await.unwrap();
            let _ = sockudo_ws::handshake::server_handshake(&mut stream)
                .await
                .unwrap();
            let ws = WebSocket::from_tcp(stream, WsConfig::default());
            let (_reader, writer) = ws.split();
            writer
        });

        let client_stream = TcpStream::connect(local_addr).await.unwrap();
        let client = WebSocketClient::<Http1>::new(WsConfig::default());
        let (_client_ws, _): (WebSocketStream<sockudo_ws::Stream<Http1>>, _) = client
            .connect(client_stream, &local_addr.to_string(), "/", None)
            .await
            .unwrap();

        server_task.await.unwrap()
    }

    #[test]
    fn exact_channel_matching_uses_exact_and_wildcard_memberships_only() {
        let namespace = Namespace::new("app".to_string());
        let exact_socket = SocketId::new();
        let wildcard_socket = SocketId::new();
        let unrelated_socket = SocketId::new();

        namespace.add_channel_to_socket("room-42", &exact_socket);
        namespace.add_channel_to_socket("room-*", &wildcard_socket);
        namespace.add_channel_to_socket("other-room", &unrelated_socket);

        let matches = namespace.get_matching_channel_socket_ids_except("room-42", None);

        assert!(matches.contains(&exact_socket));
        assert!(matches.contains(&wildcard_socket));
        assert!(!matches.contains(&unrelated_socket));
    }

    #[test]
    fn wildcard_index_is_removed_when_last_subscription_leaves() {
        let namespace = Namespace::new("app".to_string());
        let socket_id = SocketId::new();

        namespace.add_channel_to_socket("room-*", &socket_id);
        assert!(namespace.wildcard_channels.contains("room-*"));

        namespace.remove_channel_from_socket("room-*", &socket_id);

        assert!(!namespace.wildcard_channels.contains("room-*"));
    }

    #[tokio::test]
    async fn wildcard_only_subscription_matches_concrete_channel_in_partitioned_lookup() {
        let namespace = Namespace::new("app".to_string());
        let wildcard_socket = SocketId::new();
        let writer = create_server_writer().await;
        let app_manager: Arc<dyn AppManager + Send + Sync> = Arc::new(TestAppManager {
            app: App::from_policy(
                "app".to_string(),
                "app-key".to_string(),
                "app-secret".to_string(),
                true,
                AppPolicy::default(),
            ),
        });

        namespace
            .add_socket(
                wildcard_socket,
                writer,
                app_manager,
                SocketInitOptions {
                    buffer_config: crate::websocket::WebSocketBufferConfig::default(),
                    protocol_version: ProtocolVersion::V2,
                    wire_format: WireFormat::Json,
                    echo_messages: true,
                },
            )
            .await
            .unwrap();

        namespace.add_channel_to_socket("room-*", &wildcard_socket);

        let (v1, v2) =
            namespace.get_matching_channel_socket_refs_partitioned_except("room-42", None);

        assert!(v1.is_empty());
        assert_eq!(v2.len(), 1);
        assert_eq!(*v2[0].get_socket_id_sync(), wildcard_socket);
    }
}