ipfrs-transport 0.1.0

Transport protocols and zero-copy data exchange for IPFRS distributed system
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
839
840
841
842
843
844
845
# ipfrs-transport Architecture

This document provides architectural diagrams and explanations for the ipfrs-transport crate.

## Table of Contents
1. [Component Overview]#component-overview
2. [Core Protocol Layers]#core-protocol-layers
3. [Message Flow Diagrams]#message-flow-diagrams
4. [State Machines]#state-machines
5. [Data Flow]#data-flow
6. [Concurrency Model]#concurrency-model

---

## Component Overview

The ipfrs-transport crate consists of several interconnected components:

```
┌────────────────────────────────────────────────────────────────────┐
│                        Application Layer                            │
│  ┌──────────┐  ┌──────────┐  ┌──────────┐  ┌──────────────────┐  │
│  │ Session  │  │ GraphSync│  │TensorSwap│  │ Gradient Exchange│  │
│  │ Manager  │  │          │  │          │  │                  │  │
│  └────┬─────┘  └────┬─────┘  └────┬─────┘  └────────┬─────────┘  │
└───────┼─────────────┼─────────────┼─────────────────┼─────────────┘
        │             │             │                 │
┌───────┼─────────────┼─────────────┼─────────────────┼─────────────┐
│       │             │             │                 │              │
│  ┌────▼─────────────▼─────────────▼─────────────────▼──────────┐  │
│  │                 Exchange Layer (Bitswap)                     │  │
│  │  ┌──────────────┐  ┌───────────────┐  ┌─────────────────┐  │  │
│  │  │  Want List   │  │ Peer Manager  │  │ Message Handler │  │  │
│  │  │   Manager    │  │   & Scoring   │  │   & Routing     │  │  │
│  │  └──────────────┘  └───────────────┘  └─────────────────┘  │  │
│  └──────────────────────────────────────────────────────────────┘  │
│                                                                     │
│  ┌──────────────────────────────────────────────────────────────┐  │
│  │              Advanced Features Layer                          │  │
│  │  ┌──────────┐ ┌──────────┐ ┌──────────┐ ┌────────────────┐ │  │
│  │  │Prefetch  │ │Multicast │ │Erasure   │ │Content Routing │ │  │
│  │  │Engine    │ │Manager   │ │Coding    │ │& CDN Edge      │ │  │
│  │  └──────────┘ └──────────┘ └──────────┘ └────────────────┘ │  │
│  └──────────────────────────────────────────────────────────────┘  │
└───────────────────────────────────┬─────────────────────────────────┘
┌───────────────────────────────────▼─────────────────────────────────┐
│                       Transport Layer                                │
│  ┌──────────────────────────────────────────────────────────────┐  │
│  │  Multi-Transport Manager                                      │  │
│  │    ┌──────────┐  ┌──────────┐  ┌──────────┐  ┌───────────┐  │  │
│  │    │  QUIC    │  │   TCP    │  │WebSocket │  │   NAT     │  │  │
│  │    │ (quinn)  │  │ Fallback │  │ Gateway  │  │ Traversal │  │  │
│  │    └──────────┘  └──────────┘  └──────────┘  └───────────┘  │  │
│  └──────────────────────────────────────────────────────────────┘  │
│                                                                     │
│  ┌──────────────────────────────────────────────────────────────┐  │
│  │  Quality of Service                                           │  │
│  │    ┌──────────┐  ┌──────────┐  ┌──────────┐  ┌───────────┐  │  │
│  │    │Throttle  │  │Partition │  │Recovery  │  │ Circuit   │  │  │
│  │    │(Bandwidth│  │Detection │  │Strategies│  │ Breaker   │  │  │
│  │    └──────────┘  └──────────┘  └──────────┘  └───────────┘  │  │
│  └──────────────────────────────────────────────────────────────┘  │
└─────────────────────────────────────────────────────────────────────┘
```

---

## Core Protocol Layers

### Layer Architecture

```
┌───────────────────────────────────────────────────────────────┐
│  Layer 4: Application Protocol                                 │
│  ┌──────────────┐  ┌──────────────┐  ┌────────────────────┐  │
│  │  Sessions    │  │  Tensor      │  │  Gradient          │  │
│  │  (Batching)  │  │  Streaming   │  │  Aggregation       │  │
│  └──────────────┘  └──────────────┘  └────────────────────┘  │
└───────────────────────────────────────────────────────────────┘
┌───────────────────────────────────────────────────────────────┐
│  Layer 3: Block Exchange Protocol (Bitswap/TensorSwap)        │
│  ┌──────────────────────────────────────────────────────────┐ │
│  │  Want List Management  │  Peer Selection  │  Ledgers     │ │
│  ├──────────────────────────────────────────────────────────┤ │
│  │  Block Requests/Responses │  Have/DontHave Notifications │ │
│  └──────────────────────────────────────────────────────────┘ │
└───────────────────────────────────────────────────────────────┘
┌───────────────────────────────────────────────────────────────┐
│  Layer 2: Message Protocol                                     │
│  ┌──────────────────────────────────────────────────────────┐ │
│  │  Message Serialization (bincode)                         │ │
│  ├──────────────────────────────────────────────────────────┤ │
│  │  Message Types: WantList, Block, Have, DontHave, Cancel │ │
│  └──────────────────────────────────────────────────────────┘ │
└───────────────────────────────────────────────────────────────┘
┌───────────────────────────────────────────────────────────────┐
│  Layer 1: Transport Protocol                                   │
│  ┌──────────┐  ┌──────────┐  ┌──────────┐  ┌──────────────┐ │
│  │  QUIC    │  │   TCP    │  │WebSocket │  │ WebTransport │ │
│  └──────────┘  └──────────┘  └──────────┘  └──────────────┘ │
└───────────────────────────────────────────────────────────────┘
```

---

## Message Flow Diagrams

### 1. Simple Block Request Flow

```
Peer A                          Peer B
  │                               │
  │  1. Want(CID, priority=100)   │
  │─────────────────────────────>│
  │                               │
  │  2. Have(CID) [optional]      │
  │<─────────────────────────────│
  │                               │
  │  3. Block(CID, data)          │
  │<─────────────────────────────│
  │                               │
  │  4. Cancel(CID)               │
  │─────────────────────────────>│
  │                               │
```

### 2. Multi-Peer Request with Fallback

```
Client          Peer A          Peer B          Peer C
  │               │               │               │
  │ Want(CID)     │               │               │
  │─────────────>│               │               │
  │               │               │               │
  │         DontHave(CID)         │               │
  │<─────────────│               │               │
  │               │               │               │
  │        Want(CID)              │               │
  │───────────────────────────────>│              │
  │               │               │               │
  │               │         DontHave(CID)         │
  │<───────────────────────────────│              │
  │               │               │               │
  │        Want(CID)                              │
  │───────────────────────────────────────────────>│
  │               │               │               │
  │                         Block(CID, data)      │
  │<───────────────────────────────────────────────│
  │               │               │               │
  │ Cancel(CID)   │               │               │
  │─────────────>│               │               │
  │ Cancel(CID)   │               │               │
  │───────────────────────────────>│              │
  │               │               │               │
```

### 3. Tensor Streaming Flow

```
Client                             Server
  │                                  │
  │ 1. Want(TensorMetadata)          │
  │─────────────────────────────────>│
  │                                  │
  │ 2. Metadata(chunks=[C1,C2,C3])   │
  │<─────────────────────────────────│
  │                                  │
  │ 3. Want(C1, priority=High)       │
  │─────────────────────────────────>│
  │                                  │
  │ 4. Want(C2, priority=Normal)     │
  │─────────────────────────────────>│
  │                                  │
  │ 5. Want(C3, priority=Low)        │
  │─────────────────────────────────>│
  │                                  │
  │ 6. Block(C1, data) [first]       │
  │<─────────────────────────────────│
  │                                  │
  │ 7. Block(C2, data)               │
  │<─────────────────────────────────│
  │                                  │
  │ 8. Block(C3, data)               │
  │<─────────────────────────────────│
  │                                  │
  │ 9. Progress: 100%                │
  │<─────────────────────────────────│
  │                                  │
```

### 4. Session-based Block Exchange

```
Client                        Manager                       Peer Pool
  │                              │                              │
  │ 1. CreateSession([CID1..N])  │                              │
  │─────────────────────────────>│                              │
  │                              │                              │
  │                              │ 2. SelectPeers()             │
  │                              │─────────────────────────────>│
  │                              │                              │
  │                              │ 3. Peers=[A,B,C]             │
  │                              │<─────────────────────────────│
  │                              │                              │
  │                              │ 4. Want(CID1) -> Peer A      │
  │                              │─────────────────────────────>│
  │                              │                              │
  │                              │ 5. Want(CID2) -> Peer B      │
  │                              │─────────────────────────────>│
  │                              │                              │
  │                              │ 6. Block(CID1)               │
  │                              │<─────────────────────────────│
  │                              │                              │
  │ 7. Event(Progress: 50%)      │                              │
  │<─────────────────────────────│                              │
  │                              │                              │
  │                              │ 8. Block(CID2)               │
  │                              │<─────────────────────────────│
  │                              │                              │
  │ 9. Event(Completed)          │                              │
  │<─────────────────────────────│                              │
  │                              │                              │
```

### 5. GraphSync DAG Traversal

```
Client                             Server
  │                                  │
  │ 1. Request(RootCID, Selector)    │
  │─────────────────────────────────>│
  │                                  │
  │  (Server traverses DAG using      │
  │   selector to find all needed     │
  │   blocks)                         │
  │                                  │
  │ 2. Response(Block1, Block2, ...)  │
  │<─────────────────────────────────│
  │                                  │
  │ 3. Response(Block3, Block4, ...)  │
  │<─────────────────────────────────│
  │                                  │
  │ 4. Response(Complete)             │
  │<─────────────────────────────────│
  │                                  │
```

### 6. Gradient Exchange in Federated Learning

```
Worker 1            Aggregator            Worker 2
  │                      │                    │
  │ 1. PushGradient(G1)  │                    │
  │─────────────────────>│                    │
  │                      │                    │
  │                      │ 2. PushGradient(G2)│
  │                      │<───────────────────│
  │                      │                    │
  │  (Aggregator waits   │                    │
  │   for all workers)   │                    │
  │                      │                    │
  │ 3. PullGradient()    │                    │
  │─────────────────────>│                    │
  │                      │                    │
  │ 4. AggregatedGrad    │                    │
  │<─────────────────────│                    │
  │                      │                    │
  │                      │ 5. PullGradient()  │
  │                      │<───────────────────│
  │                      │                    │
  │                      │ 6. AggregatedGrad  │
  │                      │───────────────────>│
  │                      │                    │
```

---

## State Machines

### 1. Peer Connection State Machine

```
                    ┌──────────┐
          ┌────────▶│  Idle    │◀────────┐
          │         └────┬─────┘         │
          │              │               │
          │         Connect()            │
          │              │               │
          │              ▼               │
          │         ┌──────────┐         │
          │         │Connecting│         │
          │         └────┬─────┘         │
          │              │               │
          │    Success   │    Failure    │
          │              │               │
          │              ▼               │
          │         ┌──────────┐         │
          │         │Connected │         │
          │         └────┬─────┘         │
          │              │               │
          │         Use Connection       │
          │              │               │
          │              ▼               │
          │         ┌──────────┐         │
    Disconnect()    │  Active  │    Timeout/Error
          │         └────┬─────┘         │
          │              │               │
          │         Close/Idle           │
          │              │               │
          └──────────────┴───────────────┘
```

### 2. Want Request State Machine

```
                    ┌──────────┐
          ┌────────▶│  Pending │
          │         └────┬─────┘
          │              │
          │         Send Request
          │              │
          │              ▼
          │         ┌──────────┐
          │         │  Waiting │──────── Timeout ────┐
          │         └────┬─────┘                     │
          │              │                           │
          │    Receive Block/Have                    │
          │              │                           │
          │              ▼                           ▼
          │         ┌──────────┐              ┌──────────┐
          │         │Receiving │              │  Failed  │
          │         └────┬─────┘              └────┬─────┘
          │              │                          │
          │         Complete                        │
          │              │                          │
          │              ▼                          │
          │         ┌──────────┐                    │
          │         │Completed │                    │
          │         └────┬─────┘                    │
          │              │                          │
          │         Archive/Clean                   │
          │              │                          │
          │              ▼                          ▼
          └─────────── Idle ◀─────────────────── Retry
```

### 3. Session Lifecycle State Machine

```
                    ┌──────────┐
                    │  Created │
                    └────┬─────┘
                    Initialize
                    ┌──────────┐
             ┌─────▶│  Active  │◀─────┐
             │      └────┬─────┘      │
             │           │            │
             │      PauseSession      │
             │           │            │
             │           ▼            │
             │      ┌──────────┐     │
             │      │  Paused  │     │
             │      └────┬─────┘     │
             │           │           │
             │      ResumeSession    │
             │           │           │
             └───────────┴───────────┘
                    All Blocks
                    Received
                    ┌──────────┐
                    │Completed │
                    └────┬─────┘
                    CancelSession
                    ┌──────────┐
                    │Cancelled │
                    └──────────┘
```

### 4. Circuit Breaker State Machine

```
                    ┌──────────┐
             ┌─────▶│  Closed  │──────┐
             │      └────┬─────┘      │
             │           │            │
             │      Failure Count     │
             │      > Threshold       │
             │           │            │
             │           ▼            │
             │      ┌──────────┐     │
    Success  │      │   Open   │     │ Success
    After    │      └────┬─────┘     │
    Half-Open│           │           │
             │      Timeout          │
             │           │           │
             │           ▼           │
             │      ┌──────────┐    │
             └──────│Half-Open │────┘
                    └────┬─────┘
                    Failure
                    ┌──────────┐
                    │   Open   │
                    └──────────┘
```

### 5. Network Partition Detection State Machine

```
                    ┌──────────┐
                    │ Healthy  │
                    └────┬─────┘
                    Failure Count
                    > Threshold
                    ┌──────────┐
                    │Suspected │
                    └────┬─────┘
                    More Failures
                    ┌──────────┐
             ┌─────▶│Partitioned│
             │      └────┬─────┘
             │           │
             │      Success
             │           │
             │           ▼
             │      ┌──────────┐
             │      │Recovering│
             │      └────┬─────┘
             │           │
             │      Stable Period
             │           │
             │           ▼
             │      ┌──────────┐
             └──────│ Healthy  │
                    └──────────┘
                    New Failures
                         └──────────┐
                               (cycle repeats)
```

---

## Data Flow

### Block Request Data Flow

```
┌──────────────────────────────────────────────────────────────────┐
│ Application                                                       │
│   request_block(cid)                                             │
└────────────────────────┬─────────────────────────────────────────┘
┌──────────────────────────────────────────────────────────────────┐
│ Session Manager                                                   │
│   - Add to session                                               │
│   - Prioritize request                                           │
└────────────────────────┬─────────────────────────────────────────┘
┌──────────────────────────────────────────────────────────────────┐
│ Want List Manager                                                 │
│   - Add to priority queue (heap)                                 │
│   - Deduplicate via HashMap                                      │
│   - Set timeout                                                  │
└────────────────────────┬─────────────────────────────────────────┘
┌──────────────────────────────────────────────────────────────────┐
│ Peer Manager                                                      │
│   - Select best peer (scoring)                                   │
│   - Check peer availability                                      │
│   - Update ledger                                                │
└────────────────────────┬─────────────────────────────────────────┘
┌──────────────────────────────────────────────────────────────────┐
│ Transport Layer                                                   │
│   - Serialize message                                            │
│   - Select transport (QUIC/TCP/WebSocket)                        │
│   - Send over network                                            │
└────────────────────────┬─────────────────────────────────────────┘
                         │ (Network)
┌──────────────────────────────────────────────────────────────────┐
│ Remote Peer                                                       │
│   - Process request                                              │
│   - Lookup block                                                 │
│   - Return Block or DontHave                                     │
└────────────────────────┬─────────────────────────────────────────┘
                         │ (Network)
┌──────────────────────────────────────────────────────────────────┐
│ Transport Layer (Receive)                                         │
│   - Deserialize message                                          │
│   - Validate checksum                                            │
│   - Route to handler                                             │
└────────────────────────┬─────────────────────────────────────────┘
┌──────────────────────────────────────────────────────────────────┐
│ Message Handler                                                   │
│   - Process Block message                                        │
│   - Validate CID                                                 │
│   - Store in cache                                               │
└────────────────────────┬─────────────────────────────────────────┘
┌──────────────────────────────────────────────────────────────────┐
│ Session Manager (Callback)                                        │
│   - Mark block received                                          │
│   - Update progress                                              │
│   - Emit event                                                   │
│   - Check if session complete                                    │
└────────────────────────┬─────────────────────────────────────────┘
┌──────────────────────────────────────────────────────────────────┐
│ Application (Callback)                                            │
│   - Process received block                                       │
│   - Update UI/progress bar                                       │
└──────────────────────────────────────────────────────────────────┘
```

### Tensor Streaming Data Flow

```
┌──────────────────────────────────────────────────────────────────┐
│ Application                                                       │
│   stream_tensor(root_cid)                                        │
└────────────────────────┬─────────────────────────────────────────┘
┌──────────────────────────────────────────────────────────────────┐
│ TensorSwap Manager                                                │
│   - Parse tensor metadata                                        │
│   - Extract chunk CIDs                                           │
│   - Compute priorities (earlier chunks = higher priority)        │
└────────────────────────┬─────────────────────────────────────────┘
┌──────────────────────────────────────────────────────────────────┐
│ Priority Scheduler                                                │
│   - Check computation graph dependencies                         │
│   - Apply deadline-based boosting                                │
│   - Order chunks by priority                                     │
└────────────────────────┬─────────────────────────────────────────┘
┌──────────────────────────────────────────────────────────────────┐
│ Parallel Requester                                                │
│   - Split into concurrent requests                               │
│   - Apply backpressure limits                                    │
│   - Request chunks in parallel                                   │
└────────────────────────┬─────────────────────────────────────────┘
┌──────────────────────────────────────────────────────────────────┐
│ Chunk Assembly                                                    │
│   - Receive chunks (possibly out-of-order)                       │
│   - Track received status                                        │
│   - Compute progress                                             │
│   - Reassemble tensor                                            │
└────────────────────────┬─────────────────────────────────────────┘
┌──────────────────────────────────────────────────────────────────┐
│ Application (Streaming)                                           │
│   - Receive progress events                                      │
│   - Process chunks as they arrive (optional)                     │
│   - Get final tensor                                             │
└──────────────────────────────────────────────────────────────────┘
```

---

## Concurrency Model

### Thread Architecture

```
┌────────────────────────────────────────────────────────────────┐
│                    Async Runtime (Tokio)                        │
└────────────────────────────────────────────────────────────────┘
        ┌────────────────────┼────────────────────┐
        │                    │                    │
        ▼                    ▼                    ▼
┌──────────────┐   ┌──────────────┐   ┌──────────────┐
│   Accept     │   │   Send       │   │   Receive    │
│   Loop       │   │   Loop       │   │   Loop       │
│  (incoming)  │   │  (outgoing)  │   │  (process)   │
└──────┬───────┘   └──────┬───────┘   └──────┬───────┘
       │                  │                  │
       │                  │                  │
       ▼                  ▼                  ▼
┌──────────────┐   ┌──────────────┐   ┌──────────────┐
│  Connection  │   │  Message     │   │  Message     │
│  Handler     │   │  Queue       │   │  Handler     │
│  (spawn)     │   │  (mpsc)      │   │  (spawn)     │
└──────────────┘   └──────────────┘   └──────────────┘
```

### Shared State Management

```
┌────────────────────────────────────────────────────────────────┐
│                      Shared State                               │
│                                                                 │
│  ┌────────────────────────────────────────────────────────┐   │
│  │ Want List (Arc<ConcurrentWantList>)                     │   │
│  │   - Mutex-protected heap for priorities                 │   │
│  │   - DashMap for CID lookups                            │   │
│  └────────────────────────────────────────────────────────┘   │
│                                                                 │
│  ┌────────────────────────────────────────────────────────┐   │
│  │ Peer Manager (Arc<PeerManager>)                         │   │
│  │   - DashMap for per-peer metrics                       │   │
│  │   - RwLock for scoring algorithm                       │   │
│  └────────────────────────────────────────────────────────┘   │
│                                                                 │
│  ┌────────────────────────────────────────────────────────┐   │
│  │ Session Manager (Arc<SessionManager>)                   │   │
│  │   - DashMap for active sessions                        │   │
│  │   - Mutex for session state transitions                │   │
│  └────────────────────────────────────────────────────────┘   │
│                                                                 │
│  ┌────────────────────────────────────────────────────────┐   │
│  │ Metrics (Arc<MetricsCollector>)                         │   │
│  │   - Atomic counters                                     │   │
│  │   - Lock-free updates                                   │   │
│  └────────────────────────────────────────────────────────┘   │
└────────────────────────────────────────────────────────────────┘
```

### Lock Hierarchy

To prevent deadlocks, locks are acquired in a consistent order:

```
1. Session Manager (outer)
      ├─▶ 2. Want List Manager
   │     │
   │     └─▶ 3. Individual Want Entry
      └─▶ 2. Peer Manager
                  └─▶ 3. Individual Peer Metrics
```

**Rules:**
- Never hold a lock while calling into another module
- Use `Arc` and `DashMap` for fine-grained locking
- Prefer atomic operations where possible
- Use channels for cross-task communication

### Message Passing

```
┌──────────────┐        mpsc         ┌──────────────┐
│   Producer   │─────────────────────▶│   Consumer   │
│   (Sender)   │                      │  (Receiver)  │
└──────────────┘                      └──────────────┘

Examples:
- Block requests: UI → Session Manager
- Block responses: Network → Message Handler
- Progress events: Session Manager → UI
- Metrics updates: All modules → Metrics Collector
```

---

## Performance Considerations

### Hot Path Optimization

```
Request Path (optimized for latency):

  User Request
              ┌────────────────────┐
  │ Want List (O(1))   │  ← DashMap lookup
  │ check duplicate    │
  └────────┬───────────┘
                        ┌────────────────────┐
  │ Priority Queue     │  ← Heap insert O(log n)
  │ insert             │
  └────────┬───────────┘
                        ┌────────────────────┐
  │ Peer Selection     │  ← Cached scores
  │ (precomputed)      │
  └────────┬───────────┘
                        ┌────────────────────┐
  │ Send (zero-copy)   │  ← Bytes forwarding
  └────────────────────┘
```

### Memory Management

```
Block Storage:
┌────────────────────────────────────────────────────────────┐
│                                                             │
│  Incoming Block → Bytes (reference counted)                │
│                     │                                       │
│                     ├─▶ Cache (Arc<Bytes>)                 │
│                     │                                       │
│                     ├─▶ Forward to Peer (clone Arc)        │
│                     │                                       │
│                     └─▶ Application (clone Arc)            │
│                                                             │
│  No data copying, only reference count increments          │
└────────────────────────────────────────────────────────────┘
```

---

## Integration Points

### Integration with ipfrs-core

```
┌──────────────────────────────────────────────────────────┐
│ ipfrs-transport                                           │
│  Uses:                                                    │
│    - Cid (content addressing)                            │
│    - Block (data structure)                              │
│    - Tensor (metadata)                                   │
└──────────────────────────────────────────────────────────┘
```

### Integration with ipfrs-storage

```
┌──────────────────────────────────────────────────────────┐
│ ipfrs-transport                                           │
│  Interacts with:                                          │
│    - Blockstore (read/write blocks)                      │
│    - Cache (LRU eviction)                                │
└──────────────────────────────────────────────────────────┘
```

### Integration with ipfrs-network

```
┌──────────────────────────────────────────────────────────┐
│ ipfrs-transport                                           │
│  Uses:                                                    │
│    - Peer discovery                                      │
│    - DHT for content routing                             │
│    - libp2p protocols                                    │
└──────────────────────────────────────────────────────────┘
```

---

## Error Handling Flow

```
Error Detection
          ┌──────────────┐
│ Retry Logic  │
│ (exponential │
│  backoff)    │
└──────┬───────┘
              ▼ (still failing)
┌──────────────┐
│Circuit Breaker│
│ opens         │
└──────┬───────┘
              ┌──────────────┐
│ Fallback Peer│
│ selection     │
└──────┬───────┘
              ▼ (no fallback)
┌──────────────┐
│ Error to     │
│ Application  │
└──────────────┘
```

---

## Summary

The ipfrs-transport architecture is designed for:
- **High throughput**: Zero-copy forwarding, parallel requests
- **Low latency**: Lock-free data structures, precomputed scores
- **Reliability**: Circuit breakers, retry logic, fallback strategies
- **Scalability**: Async I/O, fine-grained locking, lock hierarchies
- **Flexibility**: Multi-transport support, pluggable strategies

Key design principles:
1. Layered architecture with clear separation of concerns
2. Shared-nothing where possible (message passing)
3. Fine-grained locking where sharing is necessary
4. Zero-copy data forwarding for performance
5. Graceful degradation under failures