hf-xet 1.5.1

Client library and tooling for the Hugging Face Xet data storage 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
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
//! XetUploadCommit — groups related uploads

use std::collections::HashMap;
use std::path::PathBuf;
use std::sync::{Arc, Mutex, OnceLock};

use tracing::{error, info};
use xet_data::deduplication::DeduplicationMetrics;
use xet_data::processing::{FileUploadSession, Sha256Policy, XetFileInfo};
use xet_data::progress_tracking::{GroupProgressReport, UniqueID};

use super::auth_group_builder::{AuthGroupBuilder, AuthOptions};
use super::common::create_translator_config;
use super::session::XetSession;
use super::task_runtime::{BackgroundTaskState, TaskRuntime, XetTaskState};
use super::upload_file_handle::{XetFileUpload, XetFileUploadInner};
use super::upload_stream_handle::{XetStreamUpload, XetStreamUploadInner};
use crate::error::XetError;

pub type XetUploadCommitBuilder = AuthGroupBuilder<XetUploadCommit>;

impl AuthGroupBuilder<XetUploadCommit> {
    /// Create the [`XetUploadCommit`] from an async context.
    pub async fn build(self) -> Result<XetUploadCommit, XetError> {
        let AuthGroupBuilder {
            session, auth_options, ..
        } = self;
        let parent_runtime = session.inner.task_runtime.clone();
        let child_parent = parent_runtime.clone();
        let commit = parent_runtime
            .bridge_async("new_upload_commit", async move {
                let commit_runtime = child_parent.child()?;
                XetUploadCommit::new(session, commit_runtime, auth_options).await
            })
            .await?;
        info!("New upload commit, session_id={}, commit_id={}", commit.session().id(), commit.id());
        Ok(commit)
    }

    /// Create the [`XetUploadCommit`] from a sync context.
    ///
    /// # Errors
    ///
    /// Returns [`XetError::WrongRuntimeMode`] if the session wraps an external
    /// tokio runtime (created via [`XetSessionBuilder::with_tokio_handle`] or
    /// auto-detected inside `#[tokio::main]`).
    ///
    /// # Panics
    ///
    /// Panics if called from within a tokio async runtime on an Owned-mode session.
    pub fn build_blocking(self) -> Result<XetUploadCommit, XetError> {
        let AuthGroupBuilder {
            session, auth_options, ..
        } = self;
        let parent_runtime = session.inner.task_runtime.clone();
        let child_parent = parent_runtime.clone();
        let commit = parent_runtime.bridge_sync("new_upload_commit_blocking", async move {
            let commit_runtime = child_parent.child()?;
            XetUploadCommit::new(session, commit_runtime, auth_options).await
        })?;
        info!("New upload commit, session_id={}, commit_id={}", commit.session().id(), commit.id());
        Ok(commit)
    }
}

// ── Data types ──────────────────────────────────────────────────────────────

/// Report returned by [`XetUploadCommit::commit`].
///
/// Contains aggregate deduplication metrics, final progress, and per-file
/// [`XetFileMetadata`] for every file that was successfully ingested,
/// keyed by [`UniqueID`].
#[derive(Clone, Debug)]
pub struct XetCommitReport {
    /// Aggregate deduplication metrics across all files in this commit.
    pub dedup_metrics: DeduplicationMetrics,
    /// Final progress snapshot at the time the commit completed.
    pub progress: GroupProgressReport,
    /// Per-file metadata keyed by task ID, one entry per successfully ingested file.
    pub uploads: HashMap<UniqueID, XetFileMetadata>,
}

/// Per-file metadata returned by [`XetFileUpload::finalize_ingestion`] and
/// [`XetStreamUpload::finish`].
#[derive(Clone, Debug, serde::Serialize, serde::Deserialize)]
pub struct XetFileMetadata {
    /// Unique identifier for the task that produced this metadata.
    #[serde(skip)]
    pub task_id: UniqueID,
    /// Xet file information: hash, size, and optional SHA-256.
    pub xet_info: XetFileInfo,
    /// Per-file deduplication and chunking metrics.
    pub dedup_metrics: DeduplicationMetrics,
    /// Original file name or designated tracking name.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub tracking_name: Option<String>,
}

// ── XetUploadCommitInner ────────────────────────────────────────────────────

pub(super) struct XetUploadCommitInner {
    commit_id: UniqueID,
    pub(super) session: XetSession,
    pub(super) task_runtime: Arc<TaskRuntime>,
    upload_session: Arc<FileUploadSession>,
    pub(super) file_handles: Mutex<Vec<XetFileUpload>>,
    stream_handles: Mutex<Vec<XetStreamUpload>>,
}

impl XetUploadCommitInner {
    async fn upload_from_path(
        self: &Arc<Self>,
        file_path: PathBuf,
        sha256: Sha256Policy,
    ) -> Result<XetFileUpload, XetError> {
        let absolute_path = std::path::absolute(file_path)?;
        let tracking_name = absolute_path.to_str().map(|s| s.to_owned());
        let (task_id, join_handle) = self
            .upload_session
            .spawn_upload_from_path(absolute_path.clone(), sha256)
            .await?;

        self.register_spawned_task(task_id, join_handle, tracking_name, Some(absolute_path))
    }

    async fn upload_stream(
        self: &Arc<Self>,
        tracking_name: Option<String>,
        sha256: Sha256Policy,
    ) -> Result<XetStreamUpload, XetError> {
        let name: Option<Arc<str>> = tracking_name.as_deref().map(Arc::from);
        let (task_id, cleaner) = self.upload_session.start_clean(name, None, sha256)?;
        let task_runtime = self.task_runtime.child()?;

        let handle = XetStreamUpload {
            inner: Arc::new(XetStreamUploadInner {
                task_id,
                result: Arc::new(OnceLock::new()),
                cleaner: Arc::new(tokio::sync::Mutex::new(Some((cleaner, tracking_name)))),
                upload_session: self.upload_session.clone(),
                task_runtime: task_runtime.clone(),
            }),
            task_runtime,
        };

        self.stream_handles
            .lock()
            .expect("stream_handles lock poisoned")
            .push(handle.clone());

        Ok(handle)
    }

    async fn upload_bytes(
        self: &Arc<Self>,
        bytes: Vec<u8>,
        sha256: Sha256Policy,
        tracking_name: Option<String>,
    ) -> Result<XetFileUpload, XetError> {
        let name: Option<Arc<str>> = tracking_name.as_deref().map(Arc::from);
        let (task_id, join_handle) = self.upload_session.spawn_upload_bytes(bytes, sha256, name).await?;

        self.register_spawned_task(task_id, join_handle, tracking_name, None)
    }

    fn register_spawned_task(
        &self,
        task_id: UniqueID,
        join_handle: tokio::task::JoinHandle<Result<(XetFileInfo, DeduplicationMetrics), xet_data::DataError>>,
        tracking_name: Option<String>,
        file_path: Option<PathBuf>,
    ) -> Result<XetFileUpload, XetError> {
        let task_runtime = self.task_runtime.child()?;
        let token = task_runtime.cancellation_token();

        let tn = tracking_name.clone();
        let mut upload_join_handle = join_handle;
        let mapped_handle = tokio::spawn(async move {
            tokio::select! {
                // Propagate TaskRuntime cancellation through the mapped background task.
                // We abort the owned upload join handle here so cancellation does not
                // leave the ingestion task detached in the runtime.
                _ = token.cancelled() => {
                    upload_join_handle.abort();
                    Err(XetError::UserCancelled("upload task cancelled by user".to_string()))
                }
                join_result = &mut upload_join_handle => {
                    match join_result {
                        Ok(Ok((xet_info, dedup_metrics))) => Ok(XetFileMetadata {
                            task_id,
                            xet_info,
                            dedup_metrics,
                            tracking_name: tn,
                        }),
                        Ok(Err(e)) => Err(XetError::from(e)),
                        Err(e) => Err(XetError::from(e)),
                    }
                }
            }
        });

        let inner = Arc::new(XetFileUploadInner {
            task_id,
            file_path,
            upload_session: self.upload_session.clone(),
            state: tokio::sync::Mutex::new(BackgroundTaskState::Running {
                join_handle: Some(mapped_handle),
            }),
        });

        self.file_handles
            .lock()
            .expect("file_handles lock poisoned")
            .push(XetFileUpload {
                inner: inner.clone(),
                task_runtime: task_runtime.clone(),
            });

        Ok(XetFileUpload { inner, task_runtime })
    }

    fn progress(&self) -> GroupProgressReport {
        self.upload_session.report()
    }

    async fn commit(self: &Arc<Self>) -> Result<XetCommitReport, XetError> {
        let stream_uploads = self.stream_handles.lock()?.clone();
        let mut files = HashMap::with_capacity(stream_uploads.len());

        for stream in &stream_uploads {
            match stream.try_finish() {
                Some(meta) => {
                    files.insert(stream.task_id(), meta);
                },
                None => return Err(XetError::other("stream upload not finished before commit")),
            }
        }

        let file_uploads = std::mem::take(&mut *self.file_handles.lock()?);

        let mut first_error = None;
        for upload in &file_uploads {
            match upload.finalize_ingestion().await {
                Ok(meta) => {
                    files.insert(upload.task_id(), meta);
                },
                Err(e) => {
                    if first_error.is_none() {
                        first_error = Some(e);
                    } else {
                        error!(task_id = %upload.task_id(), err = %e, "File upload finalization failed");
                    }
                },
            }
        }

        let finalize_result = self.upload_session.clone().finalize_with_report().await;
        let (dedup_metrics, progress) = match finalize_result {
            Ok(v) => v,
            Err(e) => return Err(e.into()),
        };
        if let Some(e) = first_error {
            return Err(e);
        }

        Ok(XetCommitReport {
            dedup_metrics,
            progress,
            uploads: files,
        })
    }

    pub(super) fn abort(&self) -> Result<(), XetError> {
        self.task_runtime.cancel_subtree()?;
        let file_uploads = std::mem::take(&mut *self.file_handles.lock()?);
        for upload in file_uploads {
            upload.abort_task();
        }
        let stream_uploads = std::mem::take(&mut *self.stream_handles.lock()?);
        for stream in stream_uploads {
            stream.abort();
        }
        Ok(())
    }
}

// ── XetUploadCommit (public wrapper) ────────────────────────────────────────

/// API for grouping related file uploads into a single atomic commit.
///
/// Obtain via [`XetSession::new_upload_commit`] — configure per-commit
/// auth on the returned [`AuthGroupBuilder`], then call
/// [`build`](AuthGroupBuilder::build) (async) or
/// [`build_blocking`](AuthGroupBuilder::build_blocking) (sync).
///
/// Enqueue files with [`upload_from_path`](Self::upload_from_path) /
/// [`upload_from_path_blocking`](Self::upload_from_path_blocking), stream bytes
/// with [`upload_stream`](Self::upload_stream) /
/// [`upload_stream_blocking`](Self::upload_stream_blocking), or upload raw bytes
/// with [`upload_bytes`](Self::upload_bytes) /
/// [`upload_bytes_blocking`](Self::upload_bytes_blocking) — transfers start
/// immediately in the background.
///
/// Poll progress with [`progress`](Self::progress), then call
/// [`commit`](Self::commit) (async) or [`commit_blocking`](Self::commit_blocking)
/// to wait for all uploads to finish and push metadata to the CAS server.
///
/// Per-file results are available via [`XetFileUpload::finalize_ingestion`] or
/// [`XetStreamUpload::finish`] at any time after ingestion completes —
/// you do not need to wait for [`commit`](Self::commit).
///
/// This type is cheaply clonable; all clones share the same underlying state.
///
/// # Errors
///
/// Methods return [`XetError::UserCancelled`] if the parent session has been
/// aborted, and [`XetError::AlreadyCompleted`] if [`commit`](Self::commit)
/// has already been called.
#[derive(Clone)]
pub struct XetUploadCommit {
    pub(super) inner: Arc<XetUploadCommitInner>,
    pub(super) task_runtime: Arc<TaskRuntime>,
}

impl XetUploadCommit {
    pub(super) async fn new(
        session: XetSession,
        task_runtime: Arc<TaskRuntime>,
        auth_options: AuthOptions,
    ) -> Result<Self, XetError> {
        let commit_id = UniqueID::new();
        let config = create_translator_config(&session, auth_options).await?;
        let upload_session = FileUploadSession::new(Arc::new(config)).await?;

        let inner = Arc::new(XetUploadCommitInner {
            commit_id,
            session,
            task_runtime: task_runtime.clone(),
            upload_session,
            file_handles: Mutex::new(Vec::new()),
            stream_handles: Mutex::new(Vec::new()),
        });

        Ok(Self { inner, task_runtime })
    }

    /// Unique identifier for this upload commit.
    pub fn id(&self) -> UniqueID {
        self.inner.commit_id
    }

    fn session(&self) -> &XetSession {
        &self.inner.session
    }

    // ===== Async public API =====

    /// Queue a file for upload from a path on disk.
    ///
    /// The file is read in a background task. Returns a [`XetFileUpload`]
    /// whose [`finalize_ingestion`](XetFileUpload::finalize_ingestion) method yields per-file
    /// [`XetFileMetadata`] once ingestion completes.
    ///
    /// # Parameters
    ///
    /// - `file_path`: path to the file. Resolved to an absolute path so the upload is unaffected by later
    ///   working-directory changes.
    /// - `sha256`: SHA-256 handling policy for this file.
    pub async fn upload_from_path(&self, file_path: PathBuf, sha256: Sha256Policy) -> Result<XetFileUpload, XetError> {
        info!(commit_id = %self.id(), path = ?file_path, "Upload from path");
        let inner = Arc::clone(&self.inner);
        self.task_runtime
            .bridge_async("upload_from_path", async move { inner.upload_from_path(file_path, sha256).await })
            .await
    }

    /// Begin an incremental streaming upload.
    ///
    /// Returns an [`XetStreamUpload`] for writing data in chunks.  Call
    /// [`write`](XetStreamUpload::write) to feed bytes, then
    /// [`finish`](XetStreamUpload::finish) to finalise ingestion.
    /// **`finish` must be called before [`commit`](Self::commit).**
    ///
    /// # Parameters
    ///
    /// - `tracking_name`: optional display name for progress and [`XetFileMetadata::tracking_name`].
    /// - `sha256`: SHA-256 handling policy for this file.
    pub async fn upload_stream(
        &self,
        tracking_name: Option<String>,
        sha256: Sha256Policy,
    ) -> Result<XetStreamUpload, XetError> {
        info!(commit_id = %self.id(), name = ?tracking_name, "Upload stream");
        let inner = Arc::clone(&self.inner);
        self.task_runtime
            .bridge_async("upload_stream", async move { inner.upload_stream(tracking_name, sha256).await })
            .await
    }

    /// Queue raw bytes for upload, starting the transfer immediately.
    ///
    /// Returns a [`XetFileUpload`] whose
    /// [`finalize_ingestion`](XetFileUpload::finalize_ingestion) method yields
    /// per-file [`XetFileMetadata`] once ingestion completes.
    ///
    /// # Parameters
    ///
    /// - `bytes`: raw byte content to upload.
    /// - `sha256`: SHA-256 handling policy for this file.
    /// - `tracking_name`: optional display name for progress and telemetry.
    pub async fn upload_bytes(
        &self,
        bytes: Vec<u8>,
        sha256: Sha256Policy,
        tracking_name: Option<String>,
    ) -> Result<XetFileUpload, XetError> {
        info!(
            commit_id = %self.id(),
            name = ?tracking_name,
            size = bytes.len(),
            "Upload bytes"
        );
        let inner = Arc::clone(&self.inner);
        self.task_runtime
            .bridge_async("upload_bytes", async move { inner.upload_bytes(bytes, sha256, tracking_name).await })
            .await
    }

    /// Return a snapshot of aggregate progress for every queued upload.
    pub fn progress(&self) -> GroupProgressReport {
        self.inner.progress()
    }

    pub fn status(&self) -> Result<XetTaskState, XetError> {
        self.task_runtime.status()
    }

    /// Wait for all uploads to complete and push metadata to the CAS server.
    ///
    /// Returns a [`XetCommitReport`] with aggregate dedup metrics, progress,
    /// and per-file [`XetFileMetadata`].  Subsequent calls return
    /// [`XetError::AlreadyCompleted`].
    pub async fn commit(&self) -> Result<XetCommitReport, XetError> {
        info!(commit_id = %self.id(), "Commit starting");
        let inner = Arc::clone(&self.inner);
        self.task_runtime
            .bridge_async_finalizing("commit", false, async move { inner.commit().await })
            .await
    }

    /// Returns `true` if [`commit`](Self::commit) has completed.
    #[cfg(test)]
    fn is_committed(&self) -> bool {
        matches!(self.inner.task_runtime.status(), Ok(XetTaskState::Completed))
    }

    // ===== Blocking (sync) variants =====

    /// Blocking version of [`upload_from_path`](Self::upload_from_path).
    ///
    /// Reads a file from disk in a background task and returns an
    /// [`XetFileUpload`] for tracking the result.
    ///
    /// # Panics
    ///
    /// Panics if called from within a tokio async runtime.
    pub fn upload_from_path_blocking(
        &self,
        file_path: PathBuf,
        sha256: Sha256Policy,
    ) -> Result<XetFileUpload, XetError> {
        info!(commit_id = %self.id(), path = ?file_path, "Upload from path");
        let inner = Arc::clone(&self.inner);
        self.task_runtime
            .bridge_sync("upload_from_path_blocking", async move { inner.upload_from_path(file_path, sha256).await })
    }

    /// Blocking version of [`upload_stream`](Self::upload_stream).
    ///
    /// Returns an [`XetStreamUpload`] for incrementally writing data.
    ///
    /// # Panics
    ///
    /// Panics if called from within a tokio async runtime.
    pub fn upload_stream_blocking(
        &self,
        tracking_name: Option<String>,
        sha256: Sha256Policy,
    ) -> Result<XetStreamUpload, XetError> {
        info!(commit_id = %self.id(), name = ?tracking_name, "Upload stream");
        let inner = Arc::clone(&self.inner);
        self.task_runtime
            .bridge_sync("upload_stream_blocking", async move { inner.upload_stream(tracking_name, sha256).await })
    }

    /// Blocking version of [`upload_bytes`](Self::upload_bytes).
    ///
    /// Queues raw bytes and returns a [`XetFileUpload`].
    ///
    /// # Panics
    ///
    /// Panics if called from within a tokio async runtime.
    pub fn upload_bytes_blocking(
        &self,
        bytes: Vec<u8>,
        sha256: Sha256Policy,
        tracking_name: Option<String>,
    ) -> Result<XetFileUpload, XetError> {
        info!(
            commit_id = %self.id(),
            name = ?tracking_name,
            size = bytes.len(),
            "Upload bytes"
        );
        let inner = Arc::clone(&self.inner);
        self.task_runtime
            .bridge_sync("upload_bytes_blocking", async move { inner.upload_bytes(bytes, sha256, tracking_name).await })
    }

    /// Blocking version of [`commit`](Self::commit).
    ///
    /// Waits for all uploads to complete and pushes metadata to the CAS
    /// server.  Returns a [`XetCommitReport`].
    ///
    /// # Panics
    ///
    /// Panics if called from within a tokio async runtime.
    pub fn commit_blocking(&self) -> Result<XetCommitReport, XetError> {
        info!(commit_id = %self.id(), "Commit starting");
        let inner = Arc::clone(&self.inner);
        self.task_runtime
            .bridge_sync_finalizing("commit_blocking", false, async move { inner.commit().await })
    }

    /// Cancel all active uploads in this commit.
    pub fn abort(&self) -> Result<(), XetError> {
        info!(commit_id = %self.id(), "Commit abort");
        self.inner.abort()
    }
}

#[cfg(test)]
mod tests {
    use std::path::PathBuf;
    use std::sync::mpsc;
    use std::time::Duration;

    use tempfile::tempdir;
    use xet_runtime::core::RuntimeMode;

    use super::super::session::XetSessionBuilder;
    use super::*;

    // ── Mutex guard / concurrency test ───────────────────────────────────────

    #[test]
    fn test_commit_blocked_while_upload_registration_holds_state_lock() -> Result<(), Box<dyn std::error::Error>> {
        let temp = tempdir()?;
        let cas_path = temp.path().join("cas");
        let endpoint = format!("local://{}", cas_path.display());
        let session = XetSessionBuilder::new().build()?;
        let runtime = session.inner.runtime.clone();
        let commit = session.new_upload_commit()?.with_endpoint(&endpoint).build_blocking()?;
        let commit_for_thread = commit.clone();
        let runtime_for_thread = runtime.clone();

        let guard = commit.inner.file_handles.lock().unwrap();

        let (done_tx, done_rx) = mpsc::channel::<()>();
        let join_handle = std::thread::spawn(move || {
            let _ = runtime_for_thread.external_run_async_task(async move { commit_for_thread.commit().await });
            let _ = done_tx.send(());
        });

        std::thread::sleep(Duration::from_millis(50));
        assert!(done_rx.try_recv().is_err());

        drop(guard);

        assert!(done_rx.recv_timeout(Duration::from_secs(5)).is_ok());
        let _ = join_handle.join();
        Ok(())
    }

    // ── Identity ─────────────────────────────────────────────────────────────

    #[tokio::test(flavor = "multi_thread")]
    async fn test_commit_has_unique_id() {
        let session = XetSessionBuilder::new().build().unwrap();
        let c1 = session.new_upload_commit().unwrap().build().await.unwrap();
        let c2 = session.new_upload_commit().unwrap().build().await.unwrap();
        assert_ne!(c1.id(), c2.id());
    }

    #[tokio::test(flavor = "multi_thread")]
    async fn test_commit_clone_shares_id() {
        let session = XetSessionBuilder::new().build().unwrap();
        let commit = session.new_upload_commit().unwrap().build().await.unwrap();
        let commit2 = commit.clone();
        assert_eq!(commit.id(), commit2.id());
    }

    // ── Initial state ────────────────────────────────────────────────────────

    #[tokio::test(flavor = "multi_thread")]
    async fn test_progress_empty_initially() {
        let session = XetSessionBuilder::new().build().unwrap();
        let commit = session.new_upload_commit().unwrap().build().await.unwrap();
        let report = commit.progress();
        assert_eq!(report.total_bytes, 0);
        assert_eq!(report.total_bytes_completed, 0);
    }

    // ── Commit lifecycle ─────────────────────────────────────────────────────

    #[tokio::test(flavor = "multi_thread")]
    async fn test_commit_empty_succeeds() {
        let session = XetSessionBuilder::new().build().unwrap();
        session
            .new_upload_commit()
            .unwrap()
            .build()
            .await
            .unwrap()
            .commit()
            .await
            .unwrap();
    }

    #[tokio::test(flavor = "multi_thread")]
    async fn test_commit_marks_as_committed() {
        let session = XetSessionBuilder::new().build().unwrap();
        let commit = session.new_upload_commit().unwrap().build().await.unwrap();
        let commit_clone = commit.clone();
        commit.commit().await.unwrap();
        assert!(commit_clone.is_committed());
    }

    #[tokio::test(flavor = "multi_thread")]
    async fn test_second_commit_fails() {
        let session = XetSessionBuilder::new().build().unwrap();
        let c1 = session.new_upload_commit().unwrap().build().await.unwrap();
        let c2 = c1.clone();
        c1.commit().await.unwrap();
        let err = c2.commit().await.unwrap_err();
        assert!(matches!(err, XetError::AlreadyCompleted | XetError::Internal(_)));
    }

    // ── Session-abort guards ─────────────────────────────────────────────────

    #[tokio::test(flavor = "multi_thread")]
    async fn test_upload_file_on_aborted_session_returns_error() {
        let session = XetSessionBuilder::new().build().unwrap();
        let commit = session.new_upload_commit().unwrap().build().await.unwrap();
        session.abort().unwrap();
        let err = commit
            .upload_from_path(PathBuf::from("nonexistent.bin"), Sha256Policy::Compute)
            .await
            .unwrap_err();
        assert!(matches!(err, XetError::UserCancelled(_)));
    }

    #[tokio::test(flavor = "multi_thread")]
    async fn test_upload_bytes_on_aborted_session_returns_error() {
        let session = XetSessionBuilder::new().build().unwrap();
        let commit = session.new_upload_commit().unwrap().build().await.unwrap();
        session.abort().unwrap();
        let err = commit
            .upload_bytes(b"data".to_vec(), Sha256Policy::Compute, Some("bytes 1".into()))
            .await
            .unwrap_err();
        assert!(matches!(err, XetError::UserCancelled(_)));
    }

    // ── Post-commit guards (AlreadyCompleted) ────────────────────────────────

    #[tokio::test(flavor = "multi_thread")]
    async fn test_upload_from_path_after_commit_fails() {
        let session = XetSessionBuilder::new().build().unwrap();
        let c1 = session.new_upload_commit().unwrap().build().await.unwrap();
        let c2 = c1.clone();
        c1.commit().await.unwrap();
        let err = c2
            .upload_from_path(PathBuf::from("any.bin"), Sha256Policy::Compute)
            .await
            .unwrap_err();
        assert!(matches!(err, XetError::AlreadyCompleted));
    }

    #[tokio::test(flavor = "multi_thread")]
    async fn test_upload_bytes_after_commit_fails() {
        let session = XetSessionBuilder::new().build().unwrap();
        let c1 = session.new_upload_commit().unwrap().build().await.unwrap();
        let c2 = c1.clone();
        c1.commit().await.unwrap();
        let err = c2
            .upload_bytes(b"hello".to_vec(), Sha256Policy::Compute, None)
            .await
            .unwrap_err();
        assert!(matches!(err, XetError::AlreadyCompleted));
    }

    // ── API coverage & abort ─────────────────────────────────────────────────

    #[tokio::test(flavor = "multi_thread")]
    async fn test_upload_file_returns_stream_handle() {
        let session = XetSessionBuilder::new().build().unwrap();
        let commit = session.new_upload_commit().unwrap().build().await.unwrap();
        let handle = commit
            .upload_stream(Some("stream.bin".into()), Sha256Policy::Compute)
            .await
            .unwrap();
        assert!(handle.try_finish().is_none());
    }

    #[tokio::test(flavor = "multi_thread")]
    async fn test_abort_cancels_tracked_uploads() {
        let session = XetSessionBuilder::new().build().unwrap();
        let commit = session.new_upload_commit().unwrap().build().await.unwrap();
        let handle = commit
            .upload_bytes(b"data".to_vec(), Sha256Policy::Compute, None)
            .await
            .unwrap();
        commit.abort().unwrap();
        assert!(commit.inner.file_handles.lock().unwrap().is_empty());
        let result = handle.finalize_ingestion().await;
        assert!(result.is_err());
    }

    #[tokio::test(flavor = "multi_thread")]
    async fn test_abort_while_state_lock_held_still_drains_tasks() {
        let session = XetSessionBuilder::new().build().unwrap();
        let commit = session.new_upload_commit().unwrap().build().await.unwrap();
        let _handle = commit
            .upload_bytes(b"data".to_vec(), Sha256Policy::Compute, None)
            .await
            .unwrap();

        commit.abort().unwrap();
        assert!(matches!(commit.inner.task_runtime.status().unwrap(), XetTaskState::UserCancelled));

        assert!(commit.inner.file_handles.lock().unwrap().is_empty());
    }

    // ── Independence ─────────────────────────────────────────────────────────

    #[tokio::test(flavor = "multi_thread")]
    async fn test_two_commits_are_independent() {
        let session = XetSessionBuilder::new().build().unwrap();
        let c1 = session.new_upload_commit().unwrap().build().await.unwrap();
        let c2 = session.new_upload_commit().unwrap().build().await.unwrap();
        c1.commit().await.unwrap();
        assert!(!c2.is_committed());
    }

    // ── Round-trip tests ─────────────────────────────────────────────────────

    #[tokio::test(flavor = "multi_thread")]
    async fn test_upload_bytes_round_trip() {
        let temp = tempdir().unwrap();
        let session = XetSessionBuilder::new().build().unwrap();
        let endpoint = format!("local://{}", temp.path().join("cas").display());
        let data = b"Hello, upload commit round-trip!";
        let commit = session
            .new_upload_commit()
            .unwrap()
            .with_endpoint(&endpoint)
            .build()
            .await
            .unwrap();
        let task_handle = commit
            .upload_bytes(data.to_vec(), Sha256Policy::Compute, Some("hello.bin".into()))
            .await
            .unwrap();

        commit.commit().await.unwrap();

        let meta = task_handle.try_finish().unwrap();
        assert_eq!(meta.xet_info.file_size, Some(data.len() as u64));
        assert!(!meta.xet_info.hash.is_empty());
        assert!(meta.xet_info.sha256.is_some());
        assert_eq!(meta.xet_info.sha256.as_deref().unwrap().len(), 64);
        assert_eq!(meta.tracking_name.as_deref(), Some("hello.bin"));
    }

    #[tokio::test(flavor = "multi_thread")]
    async fn test_upload_bytes_task_id_matches_progress() {
        let temp = tempdir().unwrap();
        let session = XetSessionBuilder::new().build().unwrap();
        let endpoint = format!("local://{}", temp.path().join("cas").display());
        let commit = session
            .new_upload_commit()
            .unwrap()
            .with_endpoint(&endpoint)
            .build()
            .await
            .unwrap();

        let handle = commit
            .upload_bytes(b"id-match".to_vec(), Sha256Policy::Compute, Some("id.bin".into()))
            .await
            .unwrap();

        for _ in 0..50 {
            if handle.progress().is_some() {
                break;
            }
            tokio::time::sleep(Duration::from_millis(10)).await;
        }

        assert!(handle.progress().is_some());
    }

    #[tokio::test(flavor = "multi_thread")]
    async fn test_upload_handle_file_path_none_for_bytes_upload() {
        let temp = tempdir().unwrap();
        let session = XetSessionBuilder::new().build().unwrap();
        let endpoint = format!("local://{}", temp.path().join("cas").display());
        let commit = session
            .new_upload_commit()
            .unwrap()
            .with_endpoint(&endpoint)
            .build()
            .await
            .unwrap();
        let handle = commit
            .upload_bytes(b"no-path".to_vec(), Sha256Policy::Compute, Some("bytes.bin".into()))
            .await
            .unwrap();
        assert_eq!(handle.file_path(), None);
    }

    #[tokio::test(flavor = "multi_thread")]
    async fn test_upload_from_path_round_trip() {
        let temp = tempdir().unwrap();
        let session = XetSessionBuilder::new().build().unwrap();
        let endpoint = format!("local://{}", temp.path().join("cas").display());
        let src = temp.path().join("data.bin");
        let data = b"file path upload content";
        std::fs::write(&src, data).unwrap();
        let commit = session
            .new_upload_commit()
            .unwrap()
            .with_endpoint(&endpoint)
            .build()
            .await
            .unwrap();
        let handle = commit.upload_from_path(src, Sha256Policy::Compute).await.unwrap();
        commit.commit().await.unwrap();
        let meta = handle.try_finish().unwrap();
        assert_eq!(meta.xet_info.file_size, Some(data.len() as u64));
        assert!(!meta.xet_info.hash.is_empty());
        assert!(meta.xet_info.sha256.is_some());
        assert_eq!(meta.xet_info.sha256.as_deref().unwrap().len(), 64);
    }

    #[tokio::test(flavor = "multi_thread")]
    async fn test_upload_handle_file_path_for_path_upload() {
        let temp = tempdir().unwrap();
        let session = XetSessionBuilder::new().build().unwrap();
        let endpoint = format!("local://{}", temp.path().join("cas").display());
        let src = temp.path().join("path_meta.bin");
        std::fs::write(&src, b"path metadata").unwrap();
        let absolute = std::path::absolute(&src).unwrap();
        let commit = session
            .new_upload_commit()
            .unwrap()
            .with_endpoint(&endpoint)
            .build()
            .await
            .unwrap();
        let handle = commit.upload_from_path(src, Sha256Policy::Compute).await.unwrap();
        assert_eq!(handle.file_path(), Some(absolute));
    }

    #[tokio::test(flavor = "multi_thread")]
    async fn test_upload_bytes_sha256_policy_metadata() {
        let temp = tempdir().unwrap();
        let session = XetSessionBuilder::new().build().unwrap();
        let endpoint = format!("local://{}", temp.path().join("cas").display());
        let commit = session
            .new_upload_commit()
            .unwrap()
            .with_endpoint(&endpoint)
            .build()
            .await
            .unwrap();
        let provided_sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa".to_string();

        let compute_handle = commit
            .upload_bytes(b"compute".to_vec(), Sha256Policy::Compute, Some("compute.bin".into()))
            .await
            .unwrap();
        let provided_handle = commit
            .upload_bytes(b"provided".to_vec(), Sha256Policy::from_hex(&provided_sha256), Some("provided.bin".into()))
            .await
            .unwrap();
        let skip_handle = commit
            .upload_bytes(b"skip".to_vec(), Sha256Policy::Skip, Some("skip.bin".into()))
            .await
            .unwrap();

        commit.commit().await.unwrap();

        let compute_meta = compute_handle.try_finish().unwrap();
        assert!(compute_meta.xet_info.sha256.is_some());
        assert_eq!(compute_meta.xet_info.sha256.as_deref().unwrap().len(), 64);

        let provided_meta = provided_handle.try_finish().unwrap();
        assert_eq!(provided_meta.xet_info.sha256.as_deref(), Some(provided_sha256.as_str()));

        let skip_meta = skip_handle.try_finish().unwrap();
        assert!(skip_meta.xet_info.sha256.is_none());
    }

    // ── finish() before and after commit ─────────────────────────────────────

    #[tokio::test(flavor = "multi_thread")]
    async fn test_finish_returns_result_before_commit() {
        let temp = tempdir().unwrap();
        let session = XetSessionBuilder::new().build().unwrap();
        let endpoint = format!("local://{}", temp.path().join("cas").display());
        let data = b"finish before commit";
        let commit = session
            .new_upload_commit()
            .unwrap()
            .with_endpoint(&endpoint)
            .build()
            .await
            .unwrap();
        let handle = commit
            .upload_bytes(data.to_vec(), Sha256Policy::Compute, Some("early.bin".into()))
            .await
            .unwrap();
        let meta = handle.finalize_ingestion().await.unwrap();
        assert_eq!(meta.xet_info.file_size, Some(data.len() as u64));
        commit.commit().await.unwrap();
    }

    #[tokio::test(flavor = "multi_thread")]
    async fn test_finish_second_call_returns_cached_result() {
        let temp = tempdir().unwrap();
        let session = XetSessionBuilder::new().build().unwrap();
        let endpoint = format!("local://{}", temp.path().join("cas").display());
        let commit = session
            .new_upload_commit()
            .unwrap()
            .with_endpoint(&endpoint)
            .build()
            .await
            .unwrap();
        let handle = commit
            .upload_bytes(b"idem".to_vec(), Sha256Policy::Compute, None)
            .await
            .unwrap();
        let meta1 = handle.finalize_ingestion().await.unwrap();
        let meta2 = handle.finalize_ingestion().await.unwrap();
        assert_eq!(meta1.xet_info.hash, meta2.xet_info.hash);
        let cached = handle.try_finish().unwrap();
        assert_eq!(meta1.xet_info.hash, cached.xet_info.hash);
        commit.commit().await.unwrap();
    }

    #[tokio::test(flavor = "multi_thread")]
    async fn test_finish_includes_dedup_metrics() {
        let temp = tempdir().unwrap();
        let session = XetSessionBuilder::new().build().unwrap();
        let endpoint = format!("local://{}", temp.path().join("cas").display());
        let data = b"dedup metrics check";
        let commit = session
            .new_upload_commit()
            .unwrap()
            .with_endpoint(&endpoint)
            .build()
            .await
            .unwrap();
        let handle = commit.upload_bytes(data.to_vec(), Sha256Policy::Compute, None).await.unwrap();
        let meta = handle.finalize_ingestion().await.unwrap();
        assert_eq!(meta.dedup_metrics.total_bytes, data.len() as u64);
        commit.commit().await.unwrap();
    }

    // ── Streaming upload ─────────────────────────────────────────────────────

    #[tokio::test(flavor = "multi_thread")]
    async fn test_upload_streaming_round_trip() {
        let temp = tempdir().unwrap();
        let session = XetSessionBuilder::new().build().unwrap();
        let endpoint = format!("local://{}", temp.path().join("cas").display());
        let data = b"streamed upload bytes";
        let commit = session
            .new_upload_commit()
            .unwrap()
            .with_endpoint(&endpoint)
            .build()
            .await
            .unwrap();
        let handle = commit
            .upload_stream(Some("stream.bin".into()), Sha256Policy::Compute)
            .await
            .unwrap();
        handle.write(&data[..]).await.unwrap();
        let meta = handle.finish().await.unwrap();
        assert_eq!(meta.xet_info.file_size, Some(data.len() as u64));
        assert!(!meta.xet_info.hash.is_empty());
        assert_eq!(meta.tracking_name.as_deref(), Some("stream.bin"));
        commit.commit().await.unwrap();
    }

    #[tokio::test(flavor = "multi_thread")]
    async fn test_commit_errors_when_stream_not_finished() {
        let temp = tempdir().unwrap();
        let session = XetSessionBuilder::new().build().unwrap();
        let endpoint = format!("local://{}", temp.path().join("cas").display());
        let commit = session
            .new_upload_commit()
            .unwrap()
            .with_endpoint(&endpoint)
            .build()
            .await
            .unwrap();
        let handle = commit
            .upload_stream(Some("unfinished.bin".into()), Sha256Policy::Compute)
            .await
            .unwrap();
        handle.write(&b"partial data"[..]).await.unwrap();
        let err = commit.commit().await.unwrap_err();
        assert!(matches!(err, XetError::Internal(_)));
    }

    #[tokio::test(flavor = "multi_thread")]
    async fn test_stream_finish_second_call_is_already_completed() {
        let temp = tempdir().unwrap();
        let session = XetSessionBuilder::new().build().unwrap();
        let endpoint = format!("local://{}", temp.path().join("cas").display());
        let commit = session
            .new_upload_commit()
            .unwrap()
            .with_endpoint(&endpoint)
            .build()
            .await
            .unwrap();
        let handle = commit
            .upload_stream(Some("idem.bin".into()), Sha256Policy::Compute)
            .await
            .unwrap();
        handle.write(&b"idem"[..]).await.unwrap();
        let meta1 = handle.finish().await.unwrap();
        let err = handle.finish().await.unwrap_err();
        assert!(matches!(err, XetError::AlreadyCompleted));
        let meta2 = handle.try_finish().unwrap();
        assert_eq!(meta1.xet_info.hash, meta2.xet_info.hash);
        commit.commit().await.unwrap();
    }

    #[tokio::test(flavor = "multi_thread")]
    async fn test_stream_write_after_finish_errors() {
        let temp = tempdir().unwrap();
        let session = XetSessionBuilder::new().build().unwrap();
        let endpoint = format!("local://{}", temp.path().join("cas").display());
        let commit = session
            .new_upload_commit()
            .unwrap()
            .with_endpoint(&endpoint)
            .build()
            .await
            .unwrap();
        let handle = commit
            .upload_stream(Some("done.bin".into()), Sha256Policy::Compute)
            .await
            .unwrap();
        handle.write(&b"done"[..]).await.unwrap();
        handle.finish().await.unwrap();
        let err = handle.write(&b"more"[..]).await.unwrap_err();
        assert!(matches!(err, XetError::AlreadyCompleted));
        commit.commit().await.unwrap();
    }

    #[tokio::test(flavor = "multi_thread")]
    async fn test_stream_abort_prevents_further_writes() {
        let session = XetSessionBuilder::new().build().unwrap();
        let commit = session.new_upload_commit().unwrap().build().await.unwrap();
        let handle = commit
            .upload_stream(Some("abort.bin".into()), Sha256Policy::Compute)
            .await
            .unwrap();
        handle.abort();
        let err = handle.write(&b"data"[..]).await.unwrap_err();
        assert!(matches!(err, XetError::UserCancelled(_)));
        let result = handle.finish().await;
        assert!(result.is_err());
    }

    // ── Multiple files ───────────────────────────────────────────────────────

    #[tokio::test(flavor = "multi_thread")]
    async fn test_upload_multiple_files_in_one_commit() {
        let temp = tempdir().unwrap();
        let session = XetSessionBuilder::new().build().unwrap();
        let endpoint = format!("local://{}", temp.path().join("cas").display());
        let commit = session
            .new_upload_commit()
            .unwrap()
            .with_endpoint(&endpoint)
            .build()
            .await
            .unwrap();
        let h1 = commit
            .upload_bytes(b"file one".to_vec(), Sha256Policy::Compute, Some("a.bin".into()))
            .await
            .unwrap();
        let h2 = commit
            .upload_bytes(b"file two".to_vec(), Sha256Policy::Compute, Some("b.bin".into()))
            .await
            .unwrap();
        let h3 = commit
            .upload_bytes(b"file three".to_vec(), Sha256Policy::Compute, Some("c.bin".into()))
            .await
            .unwrap();
        commit.commit().await.unwrap();
        assert!(h1.finalize_ingestion().await.is_ok());
        assert!(h2.finalize_ingestion().await.is_ok());
        assert!(h3.finalize_ingestion().await.is_ok());
    }

    // ── Progress ─────────────────────────────────────────────────────────────

    #[tokio::test(flavor = "multi_thread")]
    async fn test_upload_progress_reflects_bytes_after_commit() {
        let temp = tempdir().unwrap();
        let session = XetSessionBuilder::new().build().unwrap();
        let endpoint = format!("local://{}", temp.path().join("cas").display());
        let data = b"progress tracking upload data";
        let commit = session
            .new_upload_commit()
            .unwrap()
            .with_endpoint(&endpoint)
            .build()
            .await
            .unwrap();
        let progress_observer = commit.clone();
        commit
            .upload_bytes(data.to_vec(), Sha256Policy::Compute, Some("prog.bin".into()))
            .await
            .unwrap();
        commit.commit().await.unwrap();
        let report = progress_observer.progress();
        assert_eq!(report.total_bytes, data.len() as u64);
        assert_eq!(report.total_bytes_completed, data.len() as u64);
        assert_eq!(report.total_transfer_bytes, report.total_transfer_bytes_completed);
        assert!(report.total_transfer_bytes_completed <= data.len() as u64);
    }

    // ── Non-tokio executor (Owned-mode bridge) ────────────────────────────────

    #[test]
    fn test_async_bridge_works_from_futures_executor() {
        let temp = tempdir().unwrap();

        let endpoint = format!("local://{}", temp.path().join("cas").display());
        futures::executor::block_on(async {
            let session = XetSessionBuilder::new().build().unwrap();
            assert_eq!(session.inner.runtime.mode(), RuntimeMode::Owned);

            let data = b"hello from non-tokio executor";
            let commit = session
                .new_upload_commit()
                .unwrap()
                .with_endpoint(&endpoint)
                .build()
                .await
                .unwrap();
            let handle = commit
                .upload_bytes(data.to_vec(), Sha256Policy::Compute, Some("test.bin".into()))
                .await
                .unwrap();
            commit.commit().await.unwrap();

            let meta = handle.try_finish().unwrap();
            assert_eq!(meta.xet_info.file_size, Some(data.len() as u64));
        });
    }

    #[test]
    fn test_async_bridge_works_from_smol_executor() {
        let temp = tempdir().unwrap();

        let endpoint = format!("local://{}", temp.path().join("cas").display());
        smol::block_on(async {
            let session = XetSessionBuilder::new().build().unwrap();
            assert_eq!(session.inner.runtime.mode(), RuntimeMode::Owned);

            let data = b"hello from smol executor";
            let commit = session
                .new_upload_commit()
                .unwrap()
                .with_endpoint(&endpoint)
                .build()
                .await
                .unwrap();
            let handle = commit
                .upload_bytes(data.to_vec(), Sha256Policy::Compute, Some("test.bin".into()))
                .await
                .unwrap();
            commit.commit().await.unwrap();

            let meta = handle.try_finish().unwrap();
            assert_eq!(meta.xet_info.file_size, Some(data.len() as u64));
        });
    }

    #[test]
    fn test_async_bridge_works_from_async_std_executor() {
        let temp = tempdir().unwrap();

        let endpoint = format!("local://{}", temp.path().join("cas").display());
        async_std::task::block_on(async {
            let session = XetSessionBuilder::new().build().unwrap();
            assert_eq!(session.inner.runtime.mode(), RuntimeMode::Owned);

            let data = b"hello from async-std executor";
            let commit = session
                .new_upload_commit()
                .unwrap()
                .with_endpoint(&endpoint)
                .build()
                .await
                .unwrap();
            let handle = commit
                .upload_bytes(data.to_vec(), Sha256Policy::Compute, Some("test.bin".into()))
                .await
                .unwrap();
            commit.commit().await.unwrap();

            let meta = handle.try_finish().unwrap();
            assert_eq!(meta.xet_info.file_size, Some(data.len() as u64));
        });
    }

    // ── Blocking API tests ────────────────────────────────────────────────────

    #[test]
    fn test_blocking_upload_bytes_round_trip() -> Result<(), Box<dyn std::error::Error>> {
        let temp = tempdir()?;
        let session = XetSessionBuilder::new().build()?;
        let endpoint = format!("local://{}", temp.path().join("cas").display());
        let data = b"Hello, upload commit round-trip!";
        let commit = session.new_upload_commit()?.with_endpoint(&endpoint).build_blocking()?;
        let task_handle =
            commit.upload_bytes_blocking(data.to_vec(), Sha256Policy::Compute, Some("hello.bin".into()))?;
        let results = commit.commit_blocking()?;
        assert_eq!(results.uploads.len(), 1);
        let meta = results.uploads.get(&task_handle.task_id()).unwrap();
        assert_eq!(meta.xet_info.file_size, Some(data.len() as u64));
        assert!(!meta.xet_info.hash.is_empty());
        Ok(())
    }

    #[test]
    fn test_blocking_upload_from_path_round_trip() -> Result<(), Box<dyn std::error::Error>> {
        let temp = tempdir()?;
        let session = XetSessionBuilder::new().build()?;
        let endpoint = format!("local://{}", temp.path().join("cas").display());
        let src = temp.path().join("data.bin");
        let data = b"file path upload content";
        std::fs::write(&src, data)?;
        let commit = session.new_upload_commit()?.with_endpoint(&endpoint).build_blocking()?;
        let handle = commit.upload_from_path_blocking(src, Sha256Policy::Compute)?;
        commit.commit_blocking()?;
        let meta = handle.try_finish().unwrap();
        assert_eq!(meta.xet_info.file_size, Some(data.len() as u64));
        assert!(!meta.xet_info.hash.is_empty());
        assert!(meta.xet_info.sha256.is_some());
        Ok(())
    }

    #[test]
    fn test_blocking_upload_result_access_patterns() -> Result<(), Box<dyn std::error::Error>> {
        let temp = tempdir()?;
        let session = XetSessionBuilder::new().build()?;
        let endpoint = format!("local://{}", temp.path().join("cas").display());
        let data = b"result access patterns";
        let src = temp.path().join("data.bin");
        std::fs::write(&src, data)?;
        let commit = session.new_upload_commit()?.with_endpoint(&endpoint).build_blocking()?;
        let handle = commit.upload_from_path_blocking(src, Sha256Policy::Compute)?;

        // Before commit, per-task result is not available yet.
        assert!(handle.try_finish().is_none());

        let results = commit.commit_blocking()?;

        // Result should be available in the commit map by task id.
        let map_result = results
            .uploads
            .get(&handle.task_id())
            .expect("task_id must be present in results");
        assert_eq!(map_result.xet_info.file_size, Some(data.len() as u64));

        // Result should also be available via the task handle.
        let handle_result = handle.try_finish().expect("result must be set after commit");
        assert_eq!(handle_result.xet_info.file_size, Some(data.len() as u64));
        Ok(())
    }

    #[test]
    fn test_blocking_upload_streaming_round_trip() -> Result<(), Box<dyn std::error::Error>> {
        let temp = tempdir()?;
        let session = XetSessionBuilder::new().build()?;
        let endpoint = format!("local://{}", temp.path().join("cas").display());
        let data = b"streamed upload bytes";
        let commit = session.new_upload_commit()?.with_endpoint(&endpoint).build_blocking()?;
        let stream = commit.upload_stream_blocking(Some("stream.bin".into()), Sha256Policy::Compute)?;
        stream.write_blocking(data.to_vec())?;
        let meta = stream.finish_blocking()?;
        let results = commit.commit_blocking()?;
        assert_eq!(results.uploads.len(), 1);
        assert_eq!(meta.xet_info.file_size, Some(data.len() as u64));
        assert!(!meta.xet_info.hash.is_empty());
        Ok(())
    }

    #[test]
    fn test_blocking_upload_multiple_files_in_one_commit() -> Result<(), Box<dyn std::error::Error>> {
        let temp = tempdir()?;
        let session = XetSessionBuilder::new().build()?;
        let endpoint = format!("local://{}", temp.path().join("cas").display());
        let commit = session.new_upload_commit()?.with_endpoint(&endpoint).build_blocking()?;
        commit.upload_bytes_blocking(b"file one".to_vec(), Sha256Policy::Compute, Some("a.bin".into()))?;
        commit.upload_bytes_blocking(b"file two".to_vec(), Sha256Policy::Compute, Some("b.bin".into()))?;
        commit.upload_bytes_blocking(b"file three".to_vec(), Sha256Policy::Compute, Some("c.bin".into()))?;
        let results = commit.commit_blocking()?;
        assert_eq!(results.uploads.len(), 3);
        Ok(())
    }

    #[test]
    fn test_blocking_upload_progress_reflects_bytes_after_commit() -> Result<(), Box<dyn std::error::Error>> {
        let temp = tempdir()?;
        let session = XetSessionBuilder::new().build()?;
        let endpoint = format!("local://{}", temp.path().join("cas").display());
        let data = b"progress tracking upload data";
        let commit = session.new_upload_commit()?.with_endpoint(&endpoint).build_blocking()?;
        let progress_observer = commit.clone();
        commit.upload_bytes_blocking(data.to_vec(), Sha256Policy::Compute, Some("prog.bin".into()))?;
        commit.commit_blocking()?;
        let snapshot = progress_observer.progress();
        assert_eq!(snapshot.total_bytes, data.len() as u64);
        assert_eq!(snapshot.total_bytes_completed, data.len() as u64);
        assert_eq!(snapshot.total_transfer_bytes, snapshot.total_transfer_bytes_completed);
        assert!(snapshot.total_transfer_bytes_completed <= data.len() as u64);
        Ok(())
    }

    #[test]
    fn test_blocking_upload_file_returns_handle_without_status() -> Result<(), Box<dyn std::error::Error>> {
        let temp = tempdir()?;
        let session = XetSessionBuilder::new().build()?;
        let endpoint = format!("local://{}", temp.path().join("cas").display());
        let commit = session.new_upload_commit()?.with_endpoint(&endpoint).build_blocking()?;
        let handle = commit.upload_stream_blocking(Some("stream.bin".into()), Sha256Policy::Compute)?;
        assert!(handle.try_finish().is_none());
        Ok(())
    }

    fn assert_blocking_upload_round_trip<R>(run: R)
    where
        R: FnOnce(std::pin::Pin<Box<dyn std::future::Future<Output = ()>>>),
    {
        let temp = tempdir().unwrap();
        let session = XetSessionBuilder::new().build().unwrap();
        let endpoint = format!("local://{}", temp.path().join("cas").display());

        run(Box::pin(async move {
            let data = b"upload from smol executor";
            let commit = session
                .new_upload_commit()
                .unwrap()
                .with_endpoint(&endpoint)
                .build_blocking()
                .unwrap();
            let handle = commit
                .upload_bytes_blocking(data.to_vec(), Sha256Policy::Compute, Some("test.bin".into()))
                .unwrap();
            let results = commit.commit_blocking().unwrap();
            let meta = results.uploads.get(&handle.task_id()).unwrap();
            assert_eq!(meta.xet_info.file_size, Some(data.len() as u64));
            assert!(!meta.xet_info.hash.is_empty());
        }));
    }

    #[test]
    fn test_blocking_upload_round_trip_in_smol() {
        assert_blocking_upload_round_trip(|fut| smol::block_on(fut));
    }

    #[test]
    fn test_blocking_upload_round_trip_in_futures_executor() {
        assert_blocking_upload_round_trip(|fut| futures::executor::block_on(fut));
    }

    #[test]
    fn test_blocking_upload_round_trip_in_async_std() {
        assert_blocking_upload_round_trip(|fut| async_std::task::block_on(fut));
    }

    // ── External-mode _blocking guard ────────────────────────────────────────

    #[tokio::test(flavor = "multi_thread")]
    async fn test_upload_blocking_methods_error_in_external_mode() {
        let session = XetSessionBuilder::new().build().unwrap();
        let commit = session.new_upload_commit().unwrap().build().await.unwrap();

        let err = commit
            .upload_from_path_blocking(PathBuf::from("/nonexistent"), Sha256Policy::Compute)
            .err()
            .unwrap();
        assert!(matches!(err, XetError::WrongRuntimeMode(_)));

        let err = commit.upload_bytes_blocking(vec![], Sha256Policy::Compute, None).err().unwrap();
        assert!(matches!(err, XetError::WrongRuntimeMode(_)));

        let err = commit.upload_stream_blocking(None, Sha256Policy::Compute).err().unwrap();
        assert!(matches!(err, XetError::WrongRuntimeMode(_)));
    }

    // ── Owned-mode _blocking panic guard ─────────────────────────────────────

    #[test]
    fn test_upload_from_path_blocking_panics_in_async_context() {
        let session = XetSessionBuilder::new().build().unwrap();
        let commit = session.new_upload_commit().unwrap().build_blocking().unwrap();
        let rt = tokio::runtime::Builder::new_multi_thread().enable_all().build().unwrap();
        let result = std::panic::catch_unwind(std::panic::AssertUnwindSafe(|| {
            rt.block_on(async {
                commit.upload_from_path_blocking(PathBuf::from("/nonexistent"), Sha256Policy::Compute)
            })
        }));
        assert!(result.is_err(), "upload_from_path_blocking() must panic when called from async");
    }

    #[test]
    fn test_upload_bytes_blocking_panics_in_async_context() {
        let session = XetSessionBuilder::new().build().unwrap();
        let commit = session.new_upload_commit().unwrap().build_blocking().unwrap();
        let rt = tokio::runtime::Builder::new_multi_thread().enable_all().build().unwrap();
        let result = std::panic::catch_unwind(std::panic::AssertUnwindSafe(|| {
            rt.block_on(async { commit.upload_bytes_blocking(vec![], Sha256Policy::Compute, None) })
        }));
        assert!(result.is_err(), "upload_bytes_blocking() must panic when called from async");
    }

    #[test]
    fn test_upload_file_blocking_panics_in_async_context() {
        let session = XetSessionBuilder::new().build().unwrap();
        let commit = session.new_upload_commit().unwrap().build_blocking().unwrap();
        let rt = tokio::runtime::Builder::new_multi_thread().enable_all().build().unwrap();
        let result = std::panic::catch_unwind(std::panic::AssertUnwindSafe(|| {
            rt.block_on(async { commit.upload_stream_blocking(None, Sha256Policy::Compute) })
        }));
        assert!(result.is_err(), "upload_stream_blocking() must panic when called from async");
    }
}