lingxia-lxapp 0.4.3

LxApp (lightweight application) container and runtime for LingXia framework
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
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
use crate::archive;
use crate::error::LxAppError;
use crate::lxapp::metadata::{LxAppRecord, SemanticVersion};
use crate::lxapp::{
    self, LINGXIA_DIR, LXAPPS_DIR, ReleaseType, STORAGE_DIR, USER_CACHE_DIR, USER_DATA_DIR,
    lxapp_fingermark, metadata, version::Version,
};
use crate::provider::{LxAppUpdateQuery, UpdatePackageInfo, UpdateTarget};
use crate::publish_app_event;
use dashmap::DashMap;
use lingxia_messaging::{CallbackResult, get_callback, remove_callback};
use lingxia_platform::Platform;
use lingxia_platform::traits::app_runtime::AppRuntime;
use lingxia_platform::traits::update::UpdateService;
use rong_http::{self as service_executor, BodySink};
use serde_json::Value;
use std::fs;
use std::path::{Path, PathBuf};
use std::sync::{Arc, OnceLock};
use std::time::{Duration, SystemTime, UNIX_EPOCH};
use tokio::sync::watch;
use tokio::time::sleep;

/// Tracks download progress and reports to the UI layer
struct ProgressSink {
    total_bytes: u64,
    downloaded_bytes: u64,
    last_reported_progress: i32,
    runtime: Option<Arc<Platform>>,
}

impl ProgressSink {
    fn new(total_bytes: u64, runtime: Option<Arc<Platform>>) -> Self {
        Self {
            total_bytes,
            downloaded_bytes: 0,
            last_reported_progress: 0,
            runtime,
        }
    }
}

impl BodySink for ProgressSink {
    fn write(&mut self, chunk: &[u8]) -> Result<(), String> {
        self.downloaded_bytes += chunk.len() as u64;

        if self.total_bytes > 0 {
            let progress =
                ((self.downloaded_bytes as f64 / self.total_bytes as f64) * 100.0) as i32;
            let progress = progress.min(100);

            // Only update UI if progress changed by at least 1%
            if progress > self.last_reported_progress {
                self.last_reported_progress = progress;
                if let Some(runtime) = &self.runtime {
                    let _ = runtime.update_download_progress(progress);
                }
            }
        }

        Ok(())
    }

    fn close(&mut self, result: &Result<(), String>) {
        if result.is_ok() {
            if let Some(runtime) = &self.runtime {
                let _ = runtime.update_download_progress(100);
            }
        }
    }
}

/// Coordinates update preparation, download, and installation for LxApps.
#[derive(Clone)]
pub struct UpdateManager {
    /// Bound app reference used to access platform runtime (paths, fs) and app context.
    lxapp: Arc<lxapp::LxApp>,
    /// Directory where archives are downloaded before installation.
    downloads_dir: PathBuf,
}

#[derive(Clone, Debug)]
pub struct DownloadedUpdateInfo {
    pub version: String,
    pub archive_path: PathBuf,
}

/// OTA update target.
#[derive(Clone)]
pub enum OtaUpdateTarget {
    App {
        runtime: Arc<Platform>,
        current_version: Option<String>,
    },
    LxApp {
        target_appid: String,
    },
}

/// Per-target forced-update package preparation state.
#[derive(Clone, Debug, PartialEq, Eq)]
enum ForceUpdateDownloadState {
    Downloading { version: String },
    Completed,
    Failed(String),
}

struct ForceUpdateDownloadTracker {
    downloads: DashMap<String, watch::Sender<ForceUpdateDownloadState>>,
}

impl ForceUpdateDownloadTracker {
    fn new() -> Self {
        Self {
            downloads: DashMap::new(),
        }
    }

    fn try_start_download(
        &self,
        key: &str,
        version: &str,
    ) -> Option<watch::Receiver<ForceUpdateDownloadState>> {
        use dashmap::mapref::entry::Entry;

        match self.downloads.entry(key.to_string()) {
            Entry::Occupied(_) => None,
            Entry::Vacant(entry) => {
                let initial = ForceUpdateDownloadState::Downloading {
                    version: version.to_string(),
                };
                let (tx, rx) = watch::channel(initial);
                entry.insert(tx);
                Some(rx)
            }
        }
    }

    fn mark_completed(&self, key: &str) {
        if let Some(entry) = self.downloads.get(key) {
            let _ = entry.send(ForceUpdateDownloadState::Completed);
        }
        self.downloads.remove(key);
    }

    fn mark_failed(&self, key: &str, error: String) {
        if let Some(entry) = self.downloads.get(key) {
            let _ = entry.send(ForceUpdateDownloadState::Failed(error));
        }
        self.downloads.remove(key);
    }

    fn wait_for_download(&self, key: &str) -> Option<watch::Receiver<ForceUpdateDownloadState>> {
        self.downloads.get(key).map(|entry| entry.subscribe())
    }

    fn state(&self, key: &str) -> Option<ForceUpdateDownloadState> {
        self.downloads.get(key).map(|entry| entry.borrow().clone())
    }
}

static FORCE_UPDATE_DOWNLOAD_TRACKER: OnceLock<ForceUpdateDownloadTracker> = OnceLock::new();
const UPDATE_CHECK_NEXT_AT_PREFIX: &str = "update_check_next_at:";
const APP_UPDATE_START_DELAY: Duration = Duration::from_secs(15);
const UPDATE_CHECK_COOLDOWN_SECS: i64 = 6 * 60 * 60;

fn force_update_tracker() -> &'static ForceUpdateDownloadTracker {
    FORCE_UPDATE_DOWNLOAD_TRACKER.get_or_init(ForceUpdateDownloadTracker::new)
}

fn force_update_download_key(lxappid: &str, release_type: ReleaseType) -> String {
    format!("{}@{}", lxappid, release_type.as_str())
}

fn unix_now() -> i64 {
    SystemTime::now()
        .duration_since(UNIX_EPOCH)
        .map(|d| d.as_secs() as i64)
        .unwrap_or(0)
}

fn update_check_next_at(target: &str) -> Option<i64> {
    metadata::app_meta_get(&format!("{}{}", UPDATE_CHECK_NEXT_AT_PREFIX, target))
        .ok()
        .flatten()
        .and_then(|s| s.parse::<i64>().ok())
}

fn set_update_check_next_at(target: &str, ts: i64) -> Result<(), LxAppError> {
    metadata::app_meta_set(
        &format!("{}{}", UPDATE_CHECK_NEXT_AT_PREFIX, target),
        &ts.to_string(),
    )
}

fn try_acquire_update_check_window(target: &str) -> bool {
    let now = unix_now();
    if let Some(next_check_at) = update_check_next_at(target)
        && now < next_check_at
    {
        crate::info!(
            "Skip update check due to cooldown: target={} next_check_at={} now={}",
            target,
            next_check_at,
            now
        );
        return false;
    }

    if let Err(err) = set_update_check_next_at(target, now + UPDATE_CHECK_COOLDOWN_SECS) {
        crate::warn!(
            "Failed to persist update-check cooldown for target {}: {}",
            target,
            err
        );
    }

    true
}

fn ensure_runtime_version_compatible(
    lxappid: &str,
    pkg: &UpdatePackageInfo,
) -> Result<(), LxAppError> {
    let Some(required_runtime_version) = pkg
        .required_runtime_version
        .as_deref()
        .map(str::trim)
        .filter(|v| !v.is_empty())
    else {
        return Ok(());
    };

    let current = Version::parse(crate::SDK_RUNTIME_VERSION).map_err(|_| {
        LxAppError::Runtime(format!(
            "invalid SDK runtime version '{}'",
            crate::SDK_RUNTIME_VERSION
        ))
    })?;
    let required = Version::parse(required_runtime_version).map_err(|_| {
        LxAppError::UnsupportedOperation(format!(
            "invalid minRuntimeVersion '{}' from update metadata for {}@{}",
            required_runtime_version, lxappid, pkg.version
        ))
    })?;

    if current < required {
        return Err(LxAppError::UnsupportedOperation(format!(
            "LxApp '{}' update {} requires runtime >= {}, current SDK runtime is {}; update host app first",
            lxappid, pkg.version, required, current
        )));
    }

    Ok(())
}

/// Returns whether a forced-update package is currently being prepared.
pub fn is_force_update_downloading(lxappid: &str, release_type: ReleaseType) -> bool {
    matches!(
        force_update_tracker().state(&force_update_download_key(lxappid, release_type)),
        Some(ForceUpdateDownloadState::Downloading { .. })
    )
}

impl UpdateManager {
    /// Handle OTA update signal.
    ///
    /// - App: prompt/download/install flow, immediate and cooldown-bypassed.
    /// - LxApp: release-channel background check for package preparation.
    pub fn handle_ota_update(target: OtaUpdateTarget) {
        match target {
            OtaUpdateTarget::App {
                runtime,
                current_version,
            } => {
                Self::spawn_app_update_flow_internal(runtime, current_version, Duration::ZERO, true)
            }
            OtaUpdateTarget::LxApp { target_appid } => {
                let release_type = ReleaseType::Release;
                let context_lxapp = lxapp::try_get(&target_appid)
                    .filter(|app| app.release_type == release_type)
                    .or_else(|| {
                        crate::app::app_config()
                            .and_then(|config| lxapp::try_get(&config.home_lxapp_appid))
                    });

                let Some(context_lxapp) = context_lxapp else {
                    crate::warn!(
                        "No available lxapp context for OTA-triggered update check: {}@{}",
                        target_appid,
                        release_type.as_str()
                    );
                    return;
                };

                let current_version = lxapp::try_get(&target_appid)
                    .filter(|app| app.release_type == release_type)
                    .map(|app| app.current_version());

                Self::spawn_background_update_check_internal(
                    context_lxapp,
                    target_appid,
                    release_type,
                    current_version,
                    true,
                );
            }
        }
    }

    fn spawn_app_update_flow_internal(
        runtime: Arc<Platform>,
        current_version: Option<String>,
        start_delay: Duration,
        bypass_cooldown: bool,
    ) {
        let _ = rong::bg::spawn(async move {
            if !start_delay.is_zero() {
                sleep(start_delay).await;
            }

            if !bypass_cooldown && !try_acquire_update_check_window("app") {
                return;
            }

            let result =
                UpdateManager::check_and_install_app_update(runtime, current_version.as_deref())
                    .await;

            if let Err(err) = result {
                crate::warn!("App update flow failed: {}", err);
            }
        });
    }

    fn spawn_background_update_check_internal(
        context_lxapp: Arc<lxapp::LxApp>,
        target_appid: String,
        release_type: ReleaseType,
        current_version: Option<String>,
        bypass_cooldown: bool,
    ) {
        let update_check_target = format!("lxapp:{}@{}", target_appid, release_type.as_str());
        let _ = rong::bg::spawn(async move {
            if !bypass_cooldown && !try_acquire_update_check_window(&update_check_target) {
                return;
            }

            let manager = UpdateManager::new(context_lxapp);
            let current_version = current_version.or_else(|| {
                manager
                    .installed_version(&target_appid, release_type)
                    .ok()
                    .flatten()
            });

            match manager
                .check_latest_update(&target_appid, release_type, current_version.as_deref())
                .await
            {
                Ok(Some(pkg)) => {
                    if !manager.should_update(&target_appid, release_type, &pkg.version) {
                        return;
                    }

                    if let Err(err) = ensure_runtime_version_compatible(&target_appid, &pkg) {
                        let payload = serde_json::json!({
                            "version": pkg.version,
                            "isForceUpdate": pkg.is_force_update,
                            "releaseType": release_type.as_str(),
                            "minRuntimeVersion": pkg.required_runtime_version,
                            "currentRuntimeVersion": crate::SDK_RUNTIME_VERSION,
                            "error": err.to_string(),
                        });
                        let _ = publish_app_event(
                            &target_appid,
                            "UpdateFailed",
                            Some(payload.to_string()),
                        );
                        return;
                    }

                    let already_downloaded_same = matches!(
                        manager.has_downloaded_update(&target_appid, release_type),
                        Ok(Some(info)) if info.version == pkg.version && info.archive_path.exists()
                    );

                    if already_downloaded_same {
                        crate::info!(
                            "Update package already downloaded; emitting UpdateReady directly (version={})",
                            pkg.version
                        )
                        .with_appid(target_appid.clone());
                        let payload = serde_json::json!({
                            "version": pkg.version,
                            "isForceUpdate": pkg.is_force_update,
                            "releaseType": release_type.as_str(),
                        });
                        let _ = publish_app_event(
                            &target_appid,
                            "UpdateReady",
                            Some(payload.to_string()),
                        );
                        return;
                    }

                    let download_res = manager
                        .download_archive_with_checksum(
                            &target_appid,
                            release_type,
                            &pkg.url,
                            &pkg.checksum_sha256,
                            &pkg.version,
                        )
                        .await;

                    if download_res.is_ok() {
                        let payload = serde_json::json!({
                            "version": pkg.version,
                            "isForceUpdate": pkg.is_force_update,
                            "releaseType": release_type.as_str(),
                        });
                        let _ = publish_app_event(
                            &target_appid,
                            "UpdateReady",
                            Some(payload.to_string()),
                        );
                    } else {
                        let payload = serde_json::json!({
                            "version": pkg.version,
                            "isForceUpdate": pkg.is_force_update,
                            "releaseType": release_type.as_str(),
                            "error": download_res.err().map(|e| e.to_string()).unwrap_or_else(|| "download failed".to_string()),
                        });
                        let _ = publish_app_event(
                            &target_appid,
                            "UpdateFailed",
                            Some(payload.to_string()),
                        );
                    }
                }
                Ok(None) => {}
                Err(_) => {}
            }
        });
    }

    /// Download a package synchronously. When `version` is None, fetch from cloud to get latest.
    /// Returns the downloaded archive path and records it in `downloaded` table.
    /// Create a new UpdateManager bound to a specific LxApp.
    pub fn new(lxapp: Arc<lxapp::LxApp>) -> Self {
        let downloads_dir = lxapp
            .runtime
            .app_cache_dir()
            .join(LINGXIA_DIR)
            .join(LXAPPS_DIR)
            .join("download");
        let _ = fs::create_dir_all(&downloads_dir);

        Self {
            lxapp,
            downloads_dir,
        }
    }

    /// Apply a previously downloaded update without requiring an LxApp instance.
    /// Safe to call before the LxApp object exists (navigation startup).
    pub(crate) fn apply_downloaded_update(
        runtime: Arc<Platform>,
        lxappid: &str,
        release_type: ReleaseType,
    ) -> Result<(), LxAppError> {
        let downloaded = match metadata::downloaded_get(lxappid, release_type)? {
            Some(rec) => rec,
            None => return Ok(()),
        };

        let archive_path = PathBuf::from(&downloaded.zip_path);
        if !archive_path.exists() {
            metadata::downloaded_remove(lxappid, release_type)?;
            return Ok(());
        }

        // Remember previous install path (if any)
        let previous_path =
            metadata::get(lxappid, release_type)?.map(|rec| PathBuf::from(rec.install_path));

        // Install archive using the shared helper
        let install_path =
            Self::install_archive_to_dir(&runtime, lxappid, release_type, &archive_path)?;

        // Record install metadata
        Self::record_install_metadata(
            lxappid,
            release_type,
            &downloaded.version.to_string(),
            &install_path,
        )?;

        // Remove previous install if different
        if let Some(prev) = previous_path
            && prev.exists()
            && prev != install_path
        {
            let _ = fs::remove_dir_all(&prev);
        }

        // Clean up downloaded record + archive
        let _ = metadata::downloaded_remove(lxappid, release_type);

        Ok(())
    }

    /// Check for updates using the registered Provider.
    /// Returns no update if no provider is registered.
    pub async fn check_update(
        &self,
        lxappid: &str,
        release_type: ReleaseType,
        query: LxAppUpdateQuery,
    ) -> Result<Option<UpdatePackageInfo>, LxAppError> {
        let provider = crate::get_provider();
        let target = UpdateTarget::LxApp {
            id: lxappid.to_string(),
            release_type,
            query,
        };

        provider.check_update(target).await.map_err(|e| {
            crate::error!("check_update failed: {}", e).with_appid(lxappid);
            e.to_lxapp_error()
        })
    }

    async fn check_latest_update(
        &self,
        lxappid: &str,
        release_type: ReleaseType,
        current_version: Option<&str>,
    ) -> Result<Option<UpdatePackageInfo>, LxAppError> {
        self.check_update(
            lxappid,
            release_type,
            LxAppUpdateQuery::Latest {
                current_version: current_version.map(|v| v.to_string()),
            },
        )
        .await
    }

    async fn check_exact_update(
        &self,
        lxappid: &str,
        release_type: ReleaseType,
        target_version: &str,
    ) -> Result<Option<UpdatePackageInfo>, LxAppError> {
        self.check_update(
            lxappid,
            release_type,
            LxAppUpdateQuery::TargetVersion(target_version.to_string()),
        )
        .await
    }

    /// Check for host app updates via the registered Provider.
    /// Returns no update if no provider is registered.
    pub async fn check_app_update(
        current_version: Option<&str>,
    ) -> Result<Option<UpdatePackageInfo>, LxAppError> {
        let provider = crate::get_provider();
        let target = UpdateTarget::App {
            current_version: current_version.map(|v| v.to_string()),
        };

        provider.check_update(target).await.map_err(|e| {
            crate::error!("check_app_update failed: {}", e);
            e.to_lxapp_error()
        })
    }

    /// Spawn async flow: check -> prompt -> download -> install for host app updates.
    pub fn spawn_app_update_flow(runtime: Arc<Platform>, current_version: Option<String>) {
        Self::spawn_app_update_flow_internal(
            runtime,
            current_version,
            APP_UPDATE_START_DELAY,
            false,
        );
    }

    /// Spawn a release-channel background update check for a known lxapp.
    pub fn spawn_release_lxapp_update_check(target_appid: String) {
        let release_type = ReleaseType::Release;

        let Some(lxapp) = lxapp::try_get(&target_appid) else {
            crate::warn!(
                "LxApp '{}' not found for background update check",
                target_appid
            );
            return;
        };

        if lxapp.release_type != release_type {
            return;
        }

        UpdateManager::spawn_background_update_check_internal(
            lxapp.clone(),
            target_appid,
            release_type,
            Some(lxapp.current_version()),
            false,
        );
    }

    /// Spawn a background check to download newer packages for the given app.
    pub fn spawn_background_update_check(lxapp: Arc<lxapp::LxApp>) {
        if lxapp.release_type != ReleaseType::Release {
            return;
        }

        let target_appid = lxapp.appid.clone();
        let release_type = lxapp.release_type;
        UpdateManager::spawn_background_update_check_internal(
            lxapp.clone(),
            target_appid,
            release_type,
            Some(lxapp.current_version()),
            false,
        );
    }

    /// Check for host app updates and install when user confirms.
    /// Forced updates are non-skippable from UI perspective.
    pub async fn check_and_install_app_update(
        runtime: Arc<Platform>,
        current_version: Option<&str>,
    ) -> Result<(), LxAppError> {
        crate::info!(
            "App update flow start: current_version={:?}",
            current_version
        );
        let update = UpdateManager::check_app_update(current_version).await?;
        let Some(pkg) = update else {
            crate::info!("No app update available");
            return Ok(());
        };
        crate::info!(
            "App update available: version={} url={}",
            pkg.version,
            pkg.url
        );

        // Build update info JSON for the UI.
        // `isForceUpdate` controls whether the dialog is dismissible on the SDK side.
        let update_info_json = {
            let mut json_obj = serde_json::Map::new();
            json_obj.insert("version".to_string(), serde_json::json!(&pkg.version));
            json_obj.insert(
                "isForceUpdate".to_string(),
                serde_json::json!(pkg.is_force_update),
            );
            if let Some(size) = pkg.size {
                json_obj.insert("size".to_string(), serde_json::json!(size));
            }
            if let Some(notes) = &pkg.release_notes {
                json_obj.insert("releaseNotes".to_string(), serde_json::json!(notes));
            }
            Some(serde_json::to_string(&json_obj).unwrap_or_default())
        };

        let (callback_id, receiver) = get_callback();
        if let Err(e) = runtime.show_update_prompt(callback_id, update_info_json.as_deref()) {
            let _ = remove_callback(callback_id);
            return Err(LxAppError::Runtime(format!(
                "Failed to show update prompt: {}",
                e
            )));
        }

        let confirmed = match receiver.await {
            Ok(CallbackResult::Success(data)) => serde_json::from_str::<Value>(&data)
                .ok()
                .and_then(|json| json.get("confirm").and_then(|v| v.as_bool()))
                .unwrap_or(false),
            Ok(CallbackResult::Error(_)) => false,
            Err(_) => false,
        };

        if !confirmed && pkg.is_force_update {
            return Err(LxAppError::Runtime(
                "Forced app update was not confirmed".to_string(),
            ));
        }

        if !confirmed {
            crate::info!("App update cancelled or deferred");
            return Ok(());
        }
        crate::info!("App update confirmed, starting download");

        let path = UpdateManager::download_app_update_with_checksum(
            runtime.clone(),
            &pkg.url,
            &pkg.checksum_sha256,
            &pkg.version,
        )
        .await?;
        crate::info!("App update downloaded: {}", path.display());

        runtime.install_update(&path).map_err(|e| {
            LxAppError::Runtime(format!("Failed to request app update install: {}", e))
        })?;
        crate::info!("App update install requested");

        Ok(())
    }

    /// Decide whether we should download/apply the server version for this app variant.
    /// Policy: allow upgrade or downgrade; skip only when server_version equals installed.
    pub fn should_update(
        &self,
        lxappid: &str,
        release_type: ReleaseType,
        server_version: &str,
    ) -> bool {
        let installed = crate::lxapp::metadata::get(lxappid, release_type)
            .ok()
            .flatten()
            .map(|rec| rec.version_string());
        match installed {
            Some(v) => v != server_version,
            None => true,
        }
    }

    /// Return path to a downloaded package if present for (lxappid, release_type).
    pub fn has_downloaded_update(
        &self,
        lxappid: &str,
        release_type: ReleaseType,
    ) -> Result<Option<DownloadedUpdateInfo>, LxAppError> {
        Ok(
            metadata::downloaded_get(lxappid, release_type)?.map(|rec| DownloadedUpdateInfo {
                version: rec.version.to_version_string(),
                archive_path: PathBuf::from(rec.zip_path),
            }),
        )
    }

    /// Return installed version for a given lxapp variant.
    pub fn installed_version(
        &self,
        lxappid: &str,
        release_type: ReleaseType,
    ) -> Result<Option<String>, LxAppError> {
        Ok(metadata::get(lxappid, release_type)?.map(|rec| rec.version_string()))
    }

    /// Returns whether the given lxappid+release_type is already installed
    pub fn is_installed(
        &self,
        lxappid: &str,
        release_type: ReleaseType,
    ) -> Result<bool, LxAppError> {
        let Some(record) = metadata::get(lxappid, release_type)? else {
            return Ok(false);
        };

        let install_path_str = record.install_path.trim();
        let install_path = Path::new(install_path_str);
        let config_path = install_path.join("lxapp.json");

        let is_valid =
            !install_path_str.is_empty() && install_path.is_dir() && config_path.is_file();
        if is_valid {
            return Ok(true);
        }

        crate::warn!(
            "Stale installed metadata detected (release_type={}, install_path={}); treating as not installed",
            release_type,
            record.install_path
        )
        .with_appid(lxappid);
        let _ = metadata::remove(lxappid, release_type);
        Ok(false)
    }

    /// Install an app from pre-bundled assets (used for home app bootstrap).
    pub fn install_from_assets(
        runtime: Arc<Platform>,
        lxappid: &str,
        version: &str,
    ) -> Result<PathBuf, LxAppError> {
        // Determine hashed install directory consistent with zip installs
        let dir_name = lxapp_fingermark(lxappid, ReleaseType::Release);
        let destination = runtime
            .app_data_dir()
            .join(LINGXIA_DIR)
            .join(LXAPPS_DIR)
            .join(&dir_name);

        if destination.exists() {
            fs::remove_dir_all(&destination)?;
        }
        fs::create_dir_all(&destination)?;

        for entry in runtime.asset_dir_iter(lxappid) {
            let entry = entry?;
            let rel_path = entry
                .path
                .strip_prefix(&format!("{}/", lxappid))
                .unwrap_or(&entry.path);
            let target = destination.join(rel_path);

            if let Some(parent) = target.parent() {
                fs::create_dir_all(parent)?;
            }

            let mut reader = entry.reader;
            let mut buffer = Vec::new();
            reader.read_to_end(&mut buffer)?;
            fs::write(&target, buffer)?;
        }

        Self::record_install_metadata(lxappid, ReleaseType::Release, version, &destination)?;
        Ok(destination)
    }

    /// Prepare an update or first-time install.
    ///
    /// Not installed: downloads, verifies, installs synchronously, and removes the archive.
    /// Installed and newer available: downloads+verifies and saves a pending record to redb (no auto-apply).
    /// Apply the given tar.zst archive for `lxappid` with explicit release_type and version.
    pub fn apply_update_archive(
        &self,
        lxappid: &str,
        release_type: ReleaseType,
        version: &str,
        archive_path: &Path,
    ) -> Result<(), LxAppError> {
        // Remember previous install path (if any)
        let previous_path =
            metadata::get(lxappid, release_type)?.map(|rec| PathBuf::from(rec.install_path));

        // Install into a new hashed directory for this version
        let install_path =
            Self::install_archive_to_dir(&self.lxapp.runtime, lxappid, release_type, archive_path)?;

        // Write metadata first to allow rollback
        if let Err(e) = Self::record_install_metadata(lxappid, release_type, version, &install_path)
        {
            // Rollback: remove the new installation since we couldn't commit it
            if let Err(cleanup_err) = fs::remove_dir_all(&install_path) {
                crate::error!(
                    "Failed to rollback new installation at {}: {}",
                    install_path.display(),
                    cleanup_err
                )
                .with_appid(lxappid);
            }
            return Err(e);
        }

        // Safe to remove previous version
        if let Some(prev) = previous_path
            && prev.exists()
            && prev != install_path
            && let Err(e) = fs::remove_dir_all(&prev)
        {
            // Log warning but don't fail - new version is already committed
            crate::warn!(
                "Failed to remove old installation at {}: {}. Manual cleanup may be needed.",
                prev.display(),
                e
            )
            .with_appid(lxappid);
        }

        // Remove download metadata and archive
        if let Err(e) = metadata::downloaded_remove(lxappid, release_type) {
            crate::warn!(
                "Failed to clean up download metadata and archive for {}:{:?}: {}",
                lxappid,
                release_type,
                e
            )
            .with_appid(lxappid);
        }

        Ok(())
    }

    /// Core install helper shared by instance and static paths.
    fn install_archive_to_dir(
        runtime: &Arc<Platform>,
        lxappid: &str,
        release_type: ReleaseType,
        archive_path: &Path,
    ) -> Result<PathBuf, LxAppError> {
        let dir_name = lxapp_fingermark(lxappid, release_type);
        let destination = runtime
            .app_data_dir()
            .join(LINGXIA_DIR)
            .join(LXAPPS_DIR)
            .join(dir_name);

        archive::extract_tar_zst(archive_path, &destination)?;
        Ok(destination)
    }

    /// Uninstall on-disk contents for a specific (lxappid, release_type) and clear metadata.
    fn uninstall_installed(
        &self,
        lxappid: &str,
        release_type: ReleaseType,
    ) -> Result<(), LxAppError> {
        // Reject uninstall when app is currently opened
        if crate::lxapp::is_lxapp_open(lxappid) {
            return Err(LxAppError::UnsupportedOperation(
                "cannot uninstall an opened app".to_string(),
            ));
        }

        // Remove installed package directory and per-app data using recorded fingermark
        if let Some(rec) = metadata::get(lxappid, release_type)? {
            let dir_name = rec.fingermark;
            // package dir
            let pkg_dir = self
                .lxapp
                .runtime
                .app_data_dir()
                .join(LINGXIA_DIR)
                .join(LXAPPS_DIR)
                .join(&dir_name);
            if pkg_dir.exists() {
                fs::remove_dir_all(&pkg_dir)?;
            }
            // user data dir
            let data_dir = self
                .lxapp
                .runtime
                .app_data_dir()
                .join(LINGXIA_DIR)
                .join(USER_DATA_DIR)
                .join(&dir_name);
            if data_dir.exists() {
                let _ = fs::remove_dir_all(&data_dir);
            }
            // cache dir
            let cache_dir = self
                .lxapp
                .runtime
                .app_cache_dir()
                .join(LINGXIA_DIR)
                .join(LXAPPS_DIR)
                .join(USER_CACHE_DIR)
                .join(&dir_name);
            if cache_dir.exists() {
                let _ = fs::remove_dir_all(&cache_dir);
            }
        }
        // Remove per-app storage file for this variant if present (hashed name)
        if let Some(rec) = metadata::get(lxappid, release_type)? {
            let storage_file = self
                .lxapp
                .runtime
                .app_data_dir()
                .join(LINGXIA_DIR)
                .join(STORAGE_DIR)
                .join(format!("{}.redb", rec.fingermark));
            if storage_file.exists() {
                let _ = fs::remove_file(&storage_file);
            }
        }
        Ok(())
    }

    /// Uninstall all releases and all per-app data for the given lxappid.
    pub fn uninstall_all(&self, lxappid: &str) -> Result<(), LxAppError> {
        // reject when opened
        if crate::lxapp::is_lxapp_open(lxappid) {
            return Err(LxAppError::UnsupportedOperation(
                "cannot uninstall an opened app".to_string(),
            ));
        }
        // per-release dirs
        let _ = self.uninstall_installed(lxappid, ReleaseType::Release);
        let _ = self.uninstall_installed(lxappid, ReleaseType::Preview);
        let _ = self.uninstall_installed(lxappid, ReleaseType::Developer);

        // remove installed metadata entries for all releases
        let _ = metadata::remove_all(lxappid);
        Ok(())
    }

    pub async fn download_archive_with_checksum(
        &self,
        lxappid: &str,
        release_type: ReleaseType,
        url: &str,
        checksum_sha256: &str,
        version: &str,
    ) -> Result<PathBuf, LxAppError> {
        let dest = self.dest_path_for_url(url);
        if dest.exists() {
            let _ = fs::remove_file(&dest);
        }
        let receiver =
            service_executor::request_download(url.to_string(), dest.clone(), None, None)
                .map_err(|e| LxAppError::IoError(format!("failed to start download: {}", e)))?;

        match receiver
            .await
            .map_err(|_| LxAppError::IoError("download task cancelled".to_string()))?
        {
            Ok(()) => {
                if !checksum_sha256.is_empty() {
                    if let Err(e) = archive::verify_sha256(&dest, checksum_sha256) {
                        let _ = fs::remove_file(&dest);
                        return Err(e);
                    }
                }
                // Persist pending downloaded update so it can be applied later.
                // Uses current app context (appid + release_type) and explicit version.
                if let Err(e) = metadata::downloaded_upsert(lxappid, release_type, version, &dest) {
                    let _ = fs::remove_file(&dest);
                    return Err(LxAppError::IoError(format!(
                        "failed to record downloaded update: {}",
                        e
                    )));
                }
                crate::info!(
                    "Recorded downloaded update: appid={}, release_type={}, version={}, archive={}",
                    lxappid,
                    release_type,
                    version,
                    dest.display()
                )
                .with_appid(lxappid);
                Ok(dest)
            }
            Err(err) => {
                let _ = fs::remove_file(&dest);
                Err(LxAppError::IoError(format!("download failed: {}", err)))
            }
        }
    }

    /// Compute a destination path for the provided URL inside the downloads directory.
    fn dest_path_for_url(&self, url: &str) -> PathBuf {
        let name = filename_from_url_or_hash(url);
        self.downloads_dir.join(name)
    }

    /// Download a host app update package and verify checksum when provided.
    pub async fn download_app_update_with_checksum(
        runtime: Arc<Platform>,
        url: &str,
        checksum_sha256: &str,
        version: &str,
    ) -> Result<PathBuf, LxAppError> {
        crate::info!("App update download start: url={} version={}", url, version);
        let dest_dir = runtime
            .app_cache_dir()
            .join(LINGXIA_DIR)
            .join("app_updates");
        let _ = fs::create_dir_all(&dest_dir);

        let dest = dest_dir.join(app_update_filename(url, version));
        crate::info!("App update download dest: {}", dest.display());

        // Check if file already exists and is valid
        if dest.exists() {
            if checksum_sha256.is_empty() {
                if dest.metadata().map(|m| m.len()).unwrap_or(0) > 0 {
                    crate::info!("App update package already downloaded: {}", dest.display());
                    let _ = runtime.dismiss_download_progress();
                    return Ok(dest);
                }
                let _ = fs::remove_file(&dest);
            }
            if archive::verify_sha256(&dest, checksum_sha256).is_ok() {
                crate::info!(
                    "App update package already downloaded and verified: {}",
                    dest.display()
                );
                let _ = runtime.dismiss_download_progress();
                return Ok(dest);
            }
            // File exists but checksum failed, remove it
            let _ = fs::remove_file(&dest);
        }

        // Get file size for progress tracking
        let file_size = get_content_length(url).await.unwrap_or(0);

        // Show progress dialog before starting download
        if let Err(e) = runtime.show_download_progress() {
            crate::warn!("Failed to show download progress: {}", e);
        }

        // Create progress sink if we have file size
        let sink: Option<Box<dyn BodySink>> = if file_size > 0 {
            Some(Box::new(ProgressSink::new(
                file_size,
                Some(runtime.clone()),
            )))
        } else {
            None
        };

        let receiver =
            match service_executor::request_download(url.to_string(), dest.clone(), None, sink) {
                Ok(receiver) => receiver,
                Err(e) => {
                    let _ = runtime.dismiss_download_progress();
                    return Err(LxAppError::IoError(format!(
                        "failed to start download: {}",
                        e
                    )));
                }
            };

        let result = match receiver
            .await
            .map_err(|_| LxAppError::IoError("download task cancelled".to_string()))?
        {
            Ok(()) => {
                if !checksum_sha256.is_empty() {
                    if let Err(e) = archive::verify_sha256(&dest, checksum_sha256) {
                        let _ = fs::remove_file(&dest);
                        Err(e)
                    } else {
                        Ok(dest)
                    }
                } else {
                    Ok(dest)
                }
            }
            Err(err) => {
                let _ = fs::remove_file(&dest);
                Err(LxAppError::IoError(format!("download failed: {}", err)))
            }
        };

        // Dismiss progress dialog
        let _ = runtime.dismiss_download_progress();

        result
    }

    /// Utility: hash url to a deterministic short hex string
    fn hash_url(url: &str) -> String {
        use std::collections::hash_map::DefaultHasher;
        use std::hash::{Hash, Hasher};
        let mut hasher = DefaultHasher::new();
        url.hash(&mut hasher);
        format!("{:016x}", hasher.finish())
    }

    /// Persist the installation metadata in redb (current installed version only).
    fn record_install_metadata(
        lxappid: &str,
        release_type: ReleaseType,
        version: &str,
        install_path: &Path,
    ) -> Result<(), LxAppError> {
        let installed_at = SystemTime::now()
            .duration_since(UNIX_EPOCH)
            .map(|duration| duration.as_secs() as i64)
            .unwrap_or_default();

        let fingermark = lxapp_fingermark(lxappid, release_type);
        let parsed_version = Version::parse(version).map_err(|_| {
            LxAppError::InvalidParameter(format!("Invalid semantic version: {}", version))
        })?;
        let record = LxAppRecord::new(
            lxappid,
            release_type,
            SemanticVersion::from_version(&parsed_version),
            fingermark,
            install_path.to_string_lossy().to_string(),
            installed_at,
        );

        metadata::upsert(&record)
    }
}

/// Ensure the target app is installed at least once (first-launch preparation).
///
/// If the target lxapp is not installed, this checks for an available package and downloads it.
/// Downloaded archives are recorded in metadata and applied when creating/opening the app
/// (see `LxApps::get_or_init_lxapp`).
pub(crate) async fn ensure_first_install(
    current_lxapp: &Arc<lxapp::LxApp>,
    target_appid: &str,
    release_type: ReleaseType,
) -> Result<(), LxAppError> {
    if release_type != ReleaseType::Release {
        return Ok(());
    }

    let manager = UpdateManager::new(current_lxapp.clone());
    if manager.is_installed(target_appid, release_type)? {
        return Ok(());
    }

    let pkg = manager
        .check_latest_update(target_appid, release_type, None)
        .await?
        .ok_or_else(|| {
            LxAppError::ResourceNotFound(format!(
                "No package available for first install of {}",
                target_appid
            ))
        })?;

    ensure_runtime_version_compatible(target_appid, &pkg)?;

    let _archive = manager
        .download_archive_with_checksum(
            target_appid,
            release_type,
            &pkg.url,
            &pkg.checksum_sha256,
            &pkg.version,
        )
        .await?;

    Ok(())
}

/// Ensure a specific target version package is prepared before opening.
///
/// Policy:
/// - Already installed with the same version: no-op.
/// - Otherwise: resolve exact version metadata and ensure archive is downloaded.
/// - Downloaded archive is applied when app instance is (re)opened.
pub(crate) async fn ensure_target_version_ready(
    current_lxapp: &Arc<lxapp::LxApp>,
    target_appid: &str,
    release_type: ReleaseType,
    target_version: &str,
) -> Result<(), LxAppError> {
    let target_version = target_version.trim();
    if target_version.is_empty() {
        return Err(LxAppError::InvalidParameter(
            "targetVersion cannot be empty".to_string(),
        ));
    }

    let target_semver = Version::parse(target_version).map_err(|_| {
        LxAppError::InvalidParameter(format!(
            "targetVersion must be semantic version: {}",
            target_version
        ))
    })?;

    let manager = UpdateManager::new(current_lxapp.clone());
    let is_installed = manager.is_installed(target_appid, release_type)?;
    let current_version = if is_installed {
        manager.installed_version(target_appid, release_type)?
    } else {
        None
    };
    if release_type == ReleaseType::Release {
        match manager
            .check_latest_update(target_appid, release_type, current_version.as_deref())
            .await
        {
            Ok(Some(pkg)) if pkg.is_force_update => {
                let force_version = Version::parse(&pkg.version).map_err(|_| {
                    LxAppError::UnsupportedOperation(format!(
                        "invalid forced update version '{}' for {}",
                        pkg.version, target_appid
                    ))
                })?;
                if target_semver < force_version {
                    return Err(LxAppError::UnsupportedOperation(format!(
                        "targetVersion {} is lower than required forced version {} for {} ({})",
                        target_version,
                        pkg.version,
                        target_appid,
                        release_type.as_str()
                    )));
                }
            }
            Ok(_) => {}
            Err(err) => {
                crate::warn!(
                    "targetVersion force-update check failed (fail-open): {}",
                    err
                )
                .with_appid(target_appid.to_string());
            }
        }
    }

    if current_version.as_deref() == Some(target_version) {
        return Ok(());
    }

    let pkg = manager
        .check_exact_update(target_appid, release_type, target_version)
        .await?
        .ok_or_else(|| {
            LxAppError::ResourceNotFound(format!(
                "No package available for {}@{} ({})",
                target_appid,
                target_version,
                release_type.as_str()
            ))
        })?;

    ensure_runtime_version_compatible(target_appid, &pkg)?;

    let already_downloaded_same = matches!(
        manager.has_downloaded_update(target_appid, release_type),
        Ok(Some(info)) if info.version == pkg.version && info.archive_path.exists()
    );
    if already_downloaded_same {
        return Ok(());
    }

    manager
        .download_archive_with_checksum(
            target_appid,
            release_type,
            &pkg.url,
            &pkg.checksum_sha256,
            &pkg.version,
        )
        .await?;

    Ok(())
}

/// Ensure forced update package is prepared before opening an already-installed lxapp.
///
/// Policy:
/// - Not installed: no-op (handled by `ensure_first_install`).
/// - Installed + no update or non-forced update: no-op.
/// - Installed + forced update available: ensure target package is downloaded before opening.
///
/// Note: update-check network/provider failures are fail-open here to avoid blocking app open
/// on transient backend issues. Only confirmed forced-package download failures block navigation.
pub async fn ensure_force_update_for_installed(
    current_lxapp: &Arc<lxapp::LxApp>,
    target_appid: &str,
    release_type: ReleaseType,
) -> Result<(), LxAppError> {
    if release_type != ReleaseType::Release {
        return Ok(());
    }

    let manager = UpdateManager::new(current_lxapp.clone());
    if !manager.is_installed(target_appid, release_type)? {
        return Ok(());
    }

    let current_version = manager.installed_version(target_appid, release_type)?;
    let Some(current_version) = current_version else {
        crate::warn!("Installed lxapp has no recorded version; skip force-update gating")
            .with_appid(target_appid.to_string());
        return Ok(());
    };

    let update = match manager
        .check_latest_update(target_appid, release_type, Some(current_version.as_str()))
        .await
    {
        Ok(update) => update,
        Err(err) => {
            crate::warn!("force-update check failed (fail-open): {}", err)
                .with_appid(target_appid.to_string());
            return Ok(());
        }
    };

    let Some(pkg) = update else {
        return Ok(());
    };

    if let Err(err) = ensure_runtime_version_compatible(target_appid, &pkg) {
        if pkg.is_force_update {
            return Err(err);
        }
        crate::warn!("optional update blocked by runtime version gate: {}", err)
            .with_appid(target_appid.to_string());
        return Ok(());
    }

    if !pkg.is_force_update || pkg.version == current_version {
        return Ok(());
    }

    let already_downloaded_same = matches!(
        manager.has_downloaded_update(target_appid, release_type),
        Ok(Some(info)) if info.version == pkg.version && info.archive_path.exists()
    );
    if already_downloaded_same {
        return Ok(());
    }

    let key = force_update_download_key(target_appid, release_type);
    loop {
        // Try to become the single downloader for this target.
        if let Some(mut rx) = force_update_tracker().try_start_download(&key, &pkg.version) {
            let manager_bg = manager.clone();
            let key_bg = key.clone();
            let target_appid_bg = target_appid.to_string();
            let url_bg = pkg.url.clone();
            let checksum_bg = pkg.checksum_sha256.clone();
            let version_bg = pkg.version.clone();

            let _ = rong::bg::spawn(async move {
                let result = manager_bg
                    .download_archive_with_checksum(
                        &target_appid_bg,
                        release_type,
                        &url_bg,
                        &checksum_bg,
                        &version_bg,
                    )
                    .await;

                match result {
                    Ok(_) => force_update_tracker().mark_completed(&key_bg),
                    Err(err) => force_update_tracker().mark_failed(&key_bg, err.to_string()),
                }
            });

            loop {
                let state = { rx.borrow().clone() };
                match state {
                    ForceUpdateDownloadState::Downloading { .. } => {
                        if rx.changed().await.is_err() {
                            break;
                        }
                    }
                    ForceUpdateDownloadState::Completed => return Ok(()),
                    ForceUpdateDownloadState::Failed(error) => {
                        return Err(LxAppError::IoError(format!(
                            "forced update package download failed: {}",
                            error
                        )));
                    }
                }
            }
        }

        // Another task is downloading; subscribe and wait for terminal state.
        if let Some(mut rx) = force_update_tracker().wait_for_download(&key) {
            loop {
                let state = { rx.borrow().clone() };
                match state {
                    ForceUpdateDownloadState::Downloading { .. } => {
                        if rx.changed().await.is_err() {
                            break;
                        }
                    }
                    ForceUpdateDownloadState::Completed => return Ok(()),
                    ForceUpdateDownloadState::Failed(error) => {
                        return Err(LxAppError::IoError(format!(
                            "forced update package download failed: {}",
                            error
                        )));
                    }
                }
            }
        }

        // No active tracker entry visible. If package is already prepared, we're done.
        let prepared = matches!(
            manager.has_downloaded_update(target_appid, release_type),
            Ok(Some(info)) if info.version == pkg.version && info.archive_path.exists()
        );
        if prepared {
            return Ok(());
        }

        // Allow scheduler to make progress before retrying to acquire the downloader slot.
        tokio::task::yield_now().await;
    }
}

fn filename_from_url_or_hash(url: &str) -> String {
    // naive parse: take last path segment before query/fragment
    let main = url.split(&['?', '#'][..]).next().unwrap_or(url);
    let seg = main.rsplit('/').next().unwrap_or(main);
    if !seg.is_empty() && seg.contains('.') {
        seg.to_string()
    } else {
        // default to hash.tar.zst
        format!("{}.tar.zst", UpdateManager::hash_url(url))
    }
}

fn app_update_filename(url: &str, version: &str) -> String {
    let safe_version = version.replace(['/', '\\'], "_");
    let main = url.split(&['?', '#'][..]).next().unwrap_or(url);
    let seg = main.rsplit('/').next().unwrap_or(main);
    if !seg.is_empty() && seg.contains('.') {
        format!("app_{}_{}", safe_version, seg)
    } else {
        format!("app_{}_{}.apk", safe_version, UpdateManager::hash_url(url))
    }
}

/// Get content length from URL via HEAD request
async fn get_content_length(url: &str) -> Result<u64, String> {
    use http::Request;
    use http_body_util::{BodyExt, Empty};
    use std::io::Error;

    let request = Request::builder()
        .method("HEAD")
        .uri(url)
        .body(
            Empty::<bytes::Bytes>::new()
                .map_err(|_| Error::new(std::io::ErrorKind::Other, "body error"))
                .boxed(),
        )
        .map_err(|e| format!("Failed to build HEAD request: {}", e))?;

    let response = service_executor::send_request(request, 1024, None)
        .await
        .map_err(|e| format!("HEAD request failed: {}", e))?;

    if let Some(content_length) = response
        .headers
        .get(http::header::CONTENT_LENGTH)
        .and_then(|v| v.to_str().ok())
        .and_then(|s| s.parse::<u64>().ok())
    {
        Ok(content_length)
    } else {
        Err("No Content-Length header".to_string())
    }
}