pjson-rs 0.5.2

Priority JSON Streaming Protocol - high-performance priority-based JSON streaming (requires nightly Rust)
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
use std::collections::HashMap;
use std::sync::Arc;
use std::time::{Duration, Instant};
use tokio::sync::RwLock;

use crate::domain::DomainError;
use crate::domain::value_objects::{SessionId, StreamId};

/// Connection state tracking
#[derive(Debug, Clone)]
pub struct ConnectionState {
    pub session_id: SessionId,
    pub stream_id: Option<StreamId>,
    pub connected_at: Instant,
    pub last_activity: Instant,
    pub bytes_sent: usize,
    pub bytes_received: usize,
    pub is_active: bool,
}

/// Connection lifecycle events
#[derive(Debug, Clone)]
pub enum ConnectionEvent {
    Connected(SessionId),
    Disconnected(SessionId),
    Timeout(SessionId),
    Error(SessionId, String),
}

/// Connection manager service
pub struct ConnectionManager {
    connections: Arc<RwLock<HashMap<SessionId, ConnectionState>>>,
    timeout_duration: Duration,
    max_connections: usize,
}

impl ConnectionManager {
    pub fn new(timeout_duration: Duration, max_connections: usize) -> Self {
        Self {
            connections: Arc::new(RwLock::new(HashMap::new())),
            timeout_duration,
            max_connections,
        }
    }

    /// Register a new connection
    pub async fn register_connection(&self, session_id: SessionId) -> Result<(), DomainError> {
        let mut connections = self.connections.write().await;

        if connections.len() >= self.max_connections {
            return Err(DomainError::ValidationError(
                "Maximum connections reached".to_string(),
            ));
        }

        let state = ConnectionState {
            session_id,
            stream_id: None,
            connected_at: Instant::now(),
            last_activity: Instant::now(),
            bytes_sent: 0,
            bytes_received: 0,
            is_active: true,
        };

        connections.insert(session_id, state);
        Ok(())
    }

    /// Update connection activity
    pub async fn update_activity(&self, session_id: &SessionId) -> Result<(), DomainError> {
        let mut connections = self.connections.write().await;

        match connections.get_mut(session_id) {
            Some(state) => {
                state.last_activity = Instant::now();
                Ok(())
            }
            None => Err(DomainError::ValidationError(format!(
                "Connection not found: {session_id}"
            ))),
        }
    }

    /// Update connection metrics
    pub async fn update_metrics(
        &self,
        session_id: &SessionId,
        bytes_sent: usize,
        bytes_received: usize,
    ) -> Result<(), DomainError> {
        let mut connections = self.connections.write().await;

        match connections.get_mut(session_id) {
            Some(state) => {
                state.bytes_sent += bytes_sent;
                state.bytes_received += bytes_received;
                state.last_activity = Instant::now();
                Ok(())
            }
            None => Err(DomainError::ValidationError(format!(
                "Connection not found: {session_id}"
            ))),
        }
    }

    /// Associate stream with connection
    pub async fn set_stream(
        &self,
        session_id: &SessionId,
        stream_id: StreamId,
    ) -> Result<(), DomainError> {
        let mut connections = self.connections.write().await;

        match connections.get_mut(session_id) {
            Some(state) => {
                state.stream_id = Some(stream_id);
                state.last_activity = Instant::now();
                Ok(())
            }
            None => Err(DomainError::ValidationError(format!(
                "Connection not found: {session_id}"
            ))),
        }
    }

    /// Close connection
    pub async fn close_connection(&self, session_id: &SessionId) -> Result<(), DomainError> {
        let mut connections = self.connections.write().await;

        match connections.get_mut(session_id) {
            Some(state) => {
                state.is_active = false;
                Ok(())
            }
            None => Err(DomainError::ValidationError(format!(
                "Connection not found: {session_id}"
            ))),
        }
    }

    /// Remove connection completely
    pub async fn remove_connection(&self, session_id: &SessionId) -> Result<(), DomainError> {
        let mut connections = self.connections.write().await;

        match connections.remove(session_id) {
            Some(_) => Ok(()),
            None => Err(DomainError::ValidationError(format!(
                "Connection not found: {session_id}"
            ))),
        }
    }

    /// Get connection state
    pub async fn get_connection(&self, session_id: &SessionId) -> Option<ConnectionState> {
        let connections = self.connections.read().await;
        connections.get(session_id).cloned()
    }

    /// Get all active connections
    pub async fn get_active_connections(&self) -> Vec<ConnectionState> {
        let connections = self.connections.read().await;
        connections
            .values()
            .filter(|state| state.is_active)
            .cloned()
            .collect()
    }

    /// Check for timed out connections
    pub async fn check_timeouts(&self) -> Vec<SessionId> {
        let now = Instant::now();
        let connections = self.connections.read().await;

        connections
            .values()
            .filter(|state| {
                state.is_active && now.duration_since(state.last_activity) > self.timeout_duration
            })
            .map(|state| state.session_id)
            .collect()
    }

    /// Process timeout check iteration (to be called by infrastructure layer)
    pub async fn process_timeouts(&self) {
        let timed_out = self.check_timeouts().await;
        for session_id in timed_out {
            if let Err(e) = self.close_connection(&session_id).await {
                tracing::warn!("Failed to close timed out connection: {e}");
            }
        }
    }

    /// Get connection statistics
    pub async fn get_statistics(&self) -> ConnectionStatistics {
        let connections = self.connections.read().await;

        let active_count = connections.values().filter(|s| s.is_active).count();
        let total_bytes_sent: usize = connections.values().map(|s| s.bytes_sent).sum();
        let total_bytes_received: usize = connections.values().map(|s| s.bytes_received).sum();

        ConnectionStatistics {
            total_connections: connections.len(),
            active_connections: active_count,
            inactive_connections: connections.len() - active_count,
            total_bytes_sent,
            total_bytes_received,
        }
    }
}

/// Connection statistics
#[derive(Debug, Clone)]
pub struct ConnectionStatistics {
    pub total_connections: usize,
    pub active_connections: usize,
    pub inactive_connections: usize,
    pub total_bytes_sent: usize,
    pub total_bytes_received: usize,
}

#[cfg(test)]
mod tests {
    use super::*;

    #[tokio::test]
    async fn test_connection_lifecycle() {
        let manager = ConnectionManager::new(Duration::from_secs(60), 100);
        let session_id = SessionId::new();

        // Register connection
        assert!(manager.register_connection(session_id).await.is_ok());

        // Get connection state
        let state = manager.get_connection(&session_id).await;
        assert!(state.is_some());
        assert!(state.unwrap().is_active);

        // Update activity
        assert!(manager.update_activity(&session_id).await.is_ok());

        // Update metrics
        assert!(manager.update_metrics(&session_id, 100, 50).await.is_ok());

        // Close connection
        assert!(manager.close_connection(&session_id).await.is_ok());

        // Verify closed
        let state = manager.get_connection(&session_id).await;
        assert!(state.is_some());
        assert!(!state.unwrap().is_active);

        // Remove connection
        assert!(manager.remove_connection(&session_id).await.is_ok());

        // Verify removed
        let state = manager.get_connection(&session_id).await;
        assert!(state.is_none());
    }

    #[tokio::test]
    async fn test_max_connections() {
        let manager = ConnectionManager::new(Duration::from_secs(60), 2);

        // Register max connections
        let session1 = SessionId::new();
        let session2 = SessionId::new();
        let session3 = SessionId::new();

        assert!(manager.register_connection(session1).await.is_ok());
        assert!(manager.register_connection(session2).await.is_ok());

        // Should fail - max reached
        assert!(manager.register_connection(session3).await.is_err());
    }

    #[tokio::test]
    async fn test_timeout_detection() {
        let manager = ConnectionManager::new(Duration::from_millis(100), 10);
        let session_id = SessionId::new();

        assert!(manager.register_connection(session_id).await.is_ok());

        // Wait for timeout
        tokio::time::sleep(Duration::from_millis(150)).await;

        let timed_out = manager.check_timeouts().await;
        assert_eq!(timed_out.len(), 1);
        assert_eq!(timed_out[0], session_id);
    }

    #[tokio::test]
    async fn test_set_stream_success() {
        let manager = ConnectionManager::new(Duration::from_secs(60), 100);
        let session_id = SessionId::new();
        let stream_id = StreamId::new();

        manager.register_connection(session_id).await.unwrap();

        // Initially no stream
        let state = manager.get_connection(&session_id).await.unwrap();
        assert!(state.stream_id.is_none());

        // Set stream
        assert!(manager.set_stream(&session_id, stream_id).await.is_ok());

        // Verify stream is set
        let state = manager.get_connection(&session_id).await.unwrap();
        assert_eq!(state.stream_id, Some(stream_id));
    }

    #[tokio::test]
    async fn test_set_stream_connection_not_found() {
        let manager = ConnectionManager::new(Duration::from_secs(60), 100);
        let session_id = SessionId::new();
        let stream_id = StreamId::new();

        let result = manager.set_stream(&session_id, stream_id).await;
        assert!(result.is_err());
        match result {
            Err(DomainError::ValidationError(msg)) => {
                assert!(msg.contains("Connection not found"));
            }
            _ => panic!("Expected ValidationError"),
        }
    }

    #[tokio::test]
    async fn test_get_active_connections() {
        let manager = ConnectionManager::new(Duration::from_secs(60), 100);

        let session1 = SessionId::new();
        let session2 = SessionId::new();
        let session3 = SessionId::new();

        manager.register_connection(session1).await.unwrap();
        manager.register_connection(session2).await.unwrap();
        manager.register_connection(session3).await.unwrap();

        // All active initially
        let active = manager.get_active_connections().await;
        assert_eq!(active.len(), 3);

        // Close one connection
        manager.close_connection(&session2).await.unwrap();

        // Only 2 active now
        let active = manager.get_active_connections().await;
        assert_eq!(active.len(), 2);
        assert!(active.iter().all(|s| s.session_id != session2));
    }

    #[tokio::test]
    async fn test_get_active_connections_empty() {
        let manager = ConnectionManager::new(Duration::from_secs(60), 100);

        let active = manager.get_active_connections().await;
        assert!(active.is_empty());
    }

    #[tokio::test]
    async fn test_process_timeouts() {
        let manager = ConnectionManager::new(Duration::from_millis(50), 10);

        let session1 = SessionId::new();
        let session2 = SessionId::new();

        manager.register_connection(session1).await.unwrap();
        manager.register_connection(session2).await.unwrap();

        // Wait for timeout
        tokio::time::sleep(Duration::from_millis(100)).await;

        // Process timeouts
        manager.process_timeouts().await;

        // Both connections should be closed (inactive)
        let state1 = manager.get_connection(&session1).await.unwrap();
        let state2 = manager.get_connection(&session2).await.unwrap();
        assert!(!state1.is_active);
        assert!(!state2.is_active);
    }

    #[tokio::test]
    async fn test_process_timeouts_no_timeouts() {
        let manager = ConnectionManager::new(Duration::from_secs(60), 10);
        let session_id = SessionId::new();

        manager.register_connection(session_id).await.unwrap();

        // No timeout should occur (60 seconds timeout)
        manager.process_timeouts().await;

        // Connection should still be active
        let state = manager.get_connection(&session_id).await.unwrap();
        assert!(state.is_active);
    }

    #[tokio::test]
    async fn test_get_statistics() {
        let manager = ConnectionManager::new(Duration::from_secs(60), 100);

        let session1 = SessionId::new();
        let session2 = SessionId::new();

        manager.register_connection(session1).await.unwrap();
        manager.register_connection(session2).await.unwrap();

        // Update metrics for session1
        manager.update_metrics(&session1, 100, 50).await.unwrap();
        manager.update_metrics(&session1, 200, 100).await.unwrap();

        // Update metrics for session2
        manager.update_metrics(&session2, 50, 25).await.unwrap();

        // Close session2
        manager.close_connection(&session2).await.unwrap();

        let stats = manager.get_statistics().await;

        assert_eq!(stats.total_connections, 2);
        assert_eq!(stats.active_connections, 1);
        assert_eq!(stats.inactive_connections, 1);
        assert_eq!(stats.total_bytes_sent, 350); // 300 + 50
        assert_eq!(stats.total_bytes_received, 175); // 150 + 25
    }

    #[tokio::test]
    async fn test_get_statistics_empty() {
        let manager = ConnectionManager::new(Duration::from_secs(60), 100);

        let stats = manager.get_statistics().await;

        assert_eq!(stats.total_connections, 0);
        assert_eq!(stats.active_connections, 0);
        assert_eq!(stats.inactive_connections, 0);
        assert_eq!(stats.total_bytes_sent, 0);
        assert_eq!(stats.total_bytes_received, 0);
    }

    #[tokio::test]
    async fn test_update_activity_not_found() {
        let manager = ConnectionManager::new(Duration::from_secs(60), 100);
        let session_id = SessionId::new();

        let result = manager.update_activity(&session_id).await;
        assert!(result.is_err());
        match result {
            Err(DomainError::ValidationError(msg)) => {
                assert!(msg.contains("Connection not found"));
            }
            _ => panic!("Expected ValidationError"),
        }
    }

    #[tokio::test]
    async fn test_update_metrics_not_found() {
        let manager = ConnectionManager::new(Duration::from_secs(60), 100);
        let session_id = SessionId::new();

        let result = manager.update_metrics(&session_id, 100, 50).await;
        assert!(result.is_err());
        match result {
            Err(DomainError::ValidationError(msg)) => {
                assert!(msg.contains("Connection not found"));
            }
            _ => panic!("Expected ValidationError"),
        }
    }

    #[tokio::test]
    async fn test_close_connection_not_found() {
        let manager = ConnectionManager::new(Duration::from_secs(60), 100);
        let session_id = SessionId::new();

        let result = manager.close_connection(&session_id).await;
        assert!(result.is_err());
        match result {
            Err(DomainError::ValidationError(msg)) => {
                assert!(msg.contains("Connection not found"));
            }
            _ => panic!("Expected ValidationError"),
        }
    }

    #[tokio::test]
    async fn test_remove_connection_not_found() {
        let manager = ConnectionManager::new(Duration::from_secs(60), 100);
        let session_id = SessionId::new();

        let result = manager.remove_connection(&session_id).await;
        assert!(result.is_err());
        match result {
            Err(DomainError::ValidationError(msg)) => {
                assert!(msg.contains("Connection not found"));
            }
            _ => panic!("Expected ValidationError"),
        }
    }

    #[tokio::test]
    async fn test_connection_state_initial_values() {
        let manager = ConnectionManager::new(Duration::from_secs(60), 100);
        let session_id = SessionId::new();

        manager.register_connection(session_id).await.unwrap();

        let state = manager.get_connection(&session_id).await.unwrap();
        assert_eq!(state.session_id, session_id);
        assert!(state.stream_id.is_none());
        assert_eq!(state.bytes_sent, 0);
        assert_eq!(state.bytes_received, 0);
        assert!(state.is_active);
    }

    #[tokio::test]
    async fn test_connection_event_variants() {
        let session_id = SessionId::new();

        // Test all event variants can be constructed
        let connected = ConnectionEvent::Connected(session_id);
        let disconnected = ConnectionEvent::Disconnected(session_id);
        let timeout = ConnectionEvent::Timeout(session_id);
        let error = ConnectionEvent::Error(session_id, "test error".to_string());

        // Verify Debug trait
        assert!(format!("{:?}", connected).contains("Connected"));
        assert!(format!("{:?}", disconnected).contains("Disconnected"));
        assert!(format!("{:?}", timeout).contains("Timeout"));
        assert!(format!("{:?}", error).contains("Error"));
        assert!(format!("{:?}", error).contains("test error"));
    }

    #[tokio::test]
    async fn test_connection_event_clone() {
        let session_id = SessionId::new();
        let event = ConnectionEvent::Error(session_id, "clone test".to_string());
        let cloned = event.clone();

        match cloned {
            ConnectionEvent::Error(id, msg) => {
                assert_eq!(id, session_id);
                assert_eq!(msg, "clone test");
            }
            _ => panic!("Expected Error variant"),
        }
    }

    #[tokio::test]
    async fn test_update_metrics_cumulative() {
        let manager = ConnectionManager::new(Duration::from_secs(60), 100);
        let session_id = SessionId::new();

        manager.register_connection(session_id).await.unwrap();

        // Multiple updates should accumulate
        manager.update_metrics(&session_id, 100, 50).await.unwrap();
        manager.update_metrics(&session_id, 200, 100).await.unwrap();
        manager.update_metrics(&session_id, 50, 25).await.unwrap();

        let state = manager.get_connection(&session_id).await.unwrap();
        assert_eq!(state.bytes_sent, 350);
        assert_eq!(state.bytes_received, 175);
    }

    #[tokio::test]
    async fn test_get_connection_not_found() {
        let manager = ConnectionManager::new(Duration::from_secs(60), 100);
        let session_id = SessionId::new();

        let result = manager.get_connection(&session_id).await;
        assert!(result.is_none());
    }

    #[tokio::test]
    async fn test_connection_statistics_debug() {
        let stats = ConnectionStatistics {
            total_connections: 10,
            active_connections: 8,
            inactive_connections: 2,
            total_bytes_sent: 1000,
            total_bytes_received: 500,
        };

        let debug_str = format!("{:?}", stats);
        assert!(debug_str.contains("total_connections: 10"));
        assert!(debug_str.contains("active_connections: 8"));
    }

    #[tokio::test]
    async fn test_connection_statistics_clone() {
        let stats = ConnectionStatistics {
            total_connections: 5,
            active_connections: 3,
            inactive_connections: 2,
            total_bytes_sent: 500,
            total_bytes_received: 250,
        };

        let cloned = stats.clone();
        assert_eq!(cloned.total_connections, 5);
        assert_eq!(cloned.active_connections, 3);
        assert_eq!(cloned.inactive_connections, 2);
        assert_eq!(cloned.total_bytes_sent, 500);
        assert_eq!(cloned.total_bytes_received, 250);
    }

    #[tokio::test]
    async fn test_timeout_check_excludes_inactive() {
        let manager = ConnectionManager::new(Duration::from_millis(50), 10);

        let session1 = SessionId::new();
        let session2 = SessionId::new();

        manager.register_connection(session1).await.unwrap();
        manager.register_connection(session2).await.unwrap();

        // Close session1 before timeout
        manager.close_connection(&session1).await.unwrap();

        // Wait for timeout
        tokio::time::sleep(Duration::from_millis(100)).await;

        // Only session2 should be in timeout list (session1 is already inactive)
        let timed_out = manager.check_timeouts().await;
        assert_eq!(timed_out.len(), 1);
        assert_eq!(timed_out[0], session2);
    }

    #[tokio::test]
    async fn test_activity_update_prevents_timeout() {
        let manager = ConnectionManager::new(Duration::from_millis(100), 10);
        let session_id = SessionId::new();

        manager.register_connection(session_id).await.unwrap();

        // Wait 50ms, then update activity
        tokio::time::sleep(Duration::from_millis(50)).await;
        manager.update_activity(&session_id).await.unwrap();

        // Wait another 60ms (total 110ms from start, but only 60ms from last activity)
        tokio::time::sleep(Duration::from_millis(60)).await;

        // Should not be timed out yet
        let timed_out = manager.check_timeouts().await;
        assert!(timed_out.is_empty());

        // Wait more to trigger timeout
        tokio::time::sleep(Duration::from_millis(50)).await;

        let timed_out = manager.check_timeouts().await;
        assert_eq!(timed_out.len(), 1);
    }
}