wasmrun 0.19.0

A WebAssembly Runtime
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
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
use crate::error::{Result, WasmrunError};
use crate::logging::{LogEntry, LogSource, LogTrailSystem};
use crate::runtime::multilang_kernel::{MultiLanguageKernel, OsRunConfig};
use crate::runtime::project_files::ProjectFilesCollector;
use crate::runtime::runtime_cache::RuntimeCache;
use crate::runtime::tunnel::BoreClient;
use std::collections::HashMap;
use std::path::Path;
use std::sync::{Arc, RwLock};
use tiny_http::{Header, Method, Request, Response, Server};

const TEMPLATE_INDEX_HTML: &str = include_str!("../../templates/os/index.html");
const TEMPLATE_OS_JS: &str = include_str!("../../templates/os/os.js");
const TEMPLATE_INDEX_CSS: &str = include_str!("../../templates/os/index.css");
const TEMPLATE_LOGGING_JS: &str = include_str!("../../templates/os/logging.js");
const TEMPLATE_LOGS_HTML: &str = include_str!("../../templates/os/logs.html");

const ASSET_LOGO_PNG: &[u8] = include_bytes!("../../templates/assets/logo.png");
const ASSET_LOGO_TEXT_PNG: &[u8] = include_bytes!("../../templates/assets/logo-text.png");

/// OS Mode server providing the browser-based development interface
pub struct OsServer {
    kernel: Arc<RwLock<MultiLanguageKernel>>,
    config: OsRunConfig,
    project_pid: Arc<RwLock<Option<u32>>>,
    template_cache: HashMap<String, String>,
    log_system: Arc<LogTrailSystem>,
    tunnel_client: Arc<RwLock<Option<BoreClient>>>,
    runtime_cache: RuntimeCache,
    cors_origin: String,
}

impl OsServer {
    pub fn new(kernel: MultiLanguageKernel, config: OsRunConfig) -> Result<Self> {
        let log_system = kernel.log_system();
        let cors_origin = if config.allow_cors {
            "*".to_string()
        } else {
            format!("http://127.0.0.1:{}", config.port.unwrap_or(8420))
        };
        let runtime_cache = RuntimeCache::new()?;
        let mut server = Self {
            kernel: Arc::new(RwLock::new(kernel)),
            config,
            project_pid: Arc::new(RwLock::new(None)),
            template_cache: HashMap::new(),
            log_system,
            tunnel_client: Arc::new(RwLock::new(None)),
            runtime_cache,
            cors_origin,
        };

        // Load and process templates
        server.load_templates()?;

        Ok(server)
    }

    /// Load OS mode templates from embedded data and process variables
    fn load_templates(&mut self) -> Result<()> {
        let project_name = Path::new(&self.config.project_path)
            .file_name()
            .unwrap_or_default()
            .to_string_lossy()
            .to_string();

        let detected_language = self.detect_project_language()?;
        let language = self
            .config
            .language
            .as_deref()
            .unwrap_or(&detected_language);

        let port_str = self.config.port.unwrap_or(8420).to_string();

        let index_content = TEMPLATE_INDEX_HTML
            .replace("$PROJECT_NAME$", &project_name)
            .replace("$LANGUAGE$", language)
            .replace("$PROJECT_PATH$", &self.config.project_path)
            .replace("$PORT$", &port_str)
            .replace(
                "<!-- @style-placeholder -->",
                "<link rel=\"stylesheet\" href=\"/index.css\">",
            )
            .replace(
                "<!-- @script-placeholder -->",
                "<script src=\"/os.js\"></script>",
            );

        self.template_cache
            .insert("index.html".to_string(), index_content);
        self.template_cache
            .insert("os.js".to_string(), TEMPLATE_OS_JS.to_string());
        self.template_cache
            .insert("index.css".to_string(), TEMPLATE_INDEX_CSS.to_string());
        self.template_cache
            .insert("logging.js".to_string(), TEMPLATE_LOGGING_JS.to_string());
        self.template_cache.insert(
            "logs.html".to_string(),
            TEMPLATE_LOGS_HTML.replace("$PORT$", &port_str),
        );

        self.log_system.log(LogEntry::info(
            LogSource::Kernel,
            "OS mode templates loaded",
        ));
        println!("✅ OS mode templates loaded");
        Ok(())
    }

    fn cors_header(&self) -> Header {
        Header::from_bytes(
            &b"Access-Control-Allow-Origin"[..],
            self.cors_origin.as_bytes(),
        )
        .unwrap()
    }

    /// Detect the project language
    fn detect_project_language(&self) -> Result<String> {
        // Check for package.json (Node.js)
        if Path::new(&self.config.project_path)
            .join("package.json")
            .exists()
        {
            return Ok("nodejs".to_string());
        }

        // Check for Cargo.toml (Rust)
        if Path::new(&self.config.project_path)
            .join("Cargo.toml")
            .exists()
        {
            return Ok("rust".to_string());
        }

        // Check for go.mod (Go)
        if Path::new(&self.config.project_path).join("go.mod").exists() {
            return Ok("go".to_string());
        }

        // Check for requirements.txt or pyproject.toml (Python)
        let project_path = Path::new(&self.config.project_path);
        if project_path.join("requirements.txt").exists()
            || project_path.join("pyproject.toml").exists()
        {
            return Ok("python".to_string());
        }

        // Default to unknown
        Ok("unknown".to_string())
    }

    /// Start the OS server
    pub fn start(self, port: u16) -> Result<()> {
        let server = Server::http(format!("127.0.0.1:{port}"))
            .map_err(|e| WasmrunError::from(format!("Failed to start HTTP server: {e}")))?;

        self.log_system.log(LogEntry::info(
            LogSource::Kernel,
            format!("OS Mode server listening on http://127.0.0.1:{port}"),
        ));
        println!("🌐 OS Mode server listening on http://127.0.0.1:{port}");

        // Start the project in the kernel
        self.start_project()?;

        // Handle HTTP requests
        for request in server.incoming_requests() {
            match self.handle_request(request) {
                Ok(_) => {}
                Err(e) => eprintln!("Request handling error: {e}"),
            }
        }

        Ok(())
    }

    /// Start the project in the kernel.
    /// Called once during server boot — uses a write lock on project_pid internally.
    fn start_project(&self) -> Result<()> {
        let mut project_pid = self.project_pid.write().unwrap();
        match self.run_project_in_kernel() {
            Ok(pid) => {
                *project_pid = Some(pid);
                Ok(())
            }
            Err(e) => {
                self.log_system.log(LogEntry::error(
                    LogSource::Kernel,
                    format!("Failed to start project in kernel: {e}"),
                ));
                eprintln!("⚠️ Failed to start project in kernel: {e}");
                Ok(())
            }
        }
    }

    /// Core project startup logic. Acquires the kernel write lock, mounts the
    /// project, and runs it. Returns the new PID on success.
    /// Does NOT touch project_pid — callers are responsible for that.
    fn run_project_in_kernel(&self) -> Result<u32> {
        let mut kernel = self.kernel.write().unwrap();

        if let Err(e) = kernel.mount_project(&self.config.project_path) {
            eprintln!("⚠️ Failed to mount project directory: {e}");
        }

        match kernel.auto_detect_and_run(self.config.clone()) {
            Ok(pid) => {
                self.log_system.log(
                    LogEntry::info(
                        LogSource::Kernel,
                        format!("Project started with PID: {pid}"),
                    )
                    .with_pid(pid),
                );
                println!("✅ Project started with PID: {pid}");
                Ok(pid)
            }
            Err(e) => Err(WasmrunError::from(e.to_string())),
        }
    }

    /// Handle HTTP requests
    fn handle_request(&self, request: Request) -> Result<()> {
        let method = request.method().clone();
        let url = request.url().to_string();

        match (method, url.as_str()) {
            (Method::Options, _) => {
                let response = Response::from_string("")
                    .with_header(self.cors_header())
                    .with_header(
                        Header::from_bytes(
                            &b"Access-Control-Allow-Methods"[..],
                            &b"GET, POST, DELETE, OPTIONS"[..],
                        )
                        .unwrap(),
                    )
                    .with_header(
                        Header::from_bytes(
                            &b"Access-Control-Allow-Headers"[..],
                            &b"Content-Type"[..],
                        )
                        .unwrap(),
                    )
                    .with_status_code(tiny_http::StatusCode(204));
                request
                    .respond(response)
                    .map_err(|e| WasmrunError::from(e.to_string()))?;
            }

            // Serve the main OS interface
            (Method::Get, "/") => {
                if let Some(content) = self.template_cache.get("index.html") {
                    let response = Response::from_string(content).with_header(
                        Header::from_bytes(&b"Content-Type"[..], &b"text/html; charset=utf-8"[..])
                            .unwrap(),
                    );
                    request
                        .respond(response)
                        .map_err(|e| WasmrunError::from(e.to_string()))?;
                } else {
                    self.send_404(request)?;
                }
            }

            // Serve JavaScript bundle
            (Method::Get, "/os.js") => {
                if let Some(content) = self.template_cache.get("os.js") {
                    let response = Response::from_string(content).with_header(
                        Header::from_bytes(&b"Content-Type"[..], &b"application/javascript"[..])
                            .unwrap(),
                    );
                    request
                        .respond(response)
                        .map_err(|e| WasmrunError::from(e.to_string()))?;
                } else {
                    self.send_404(request)?;
                }
            }

            // Serve CSS styles
            (Method::Get, "/index.css") => {
                if let Some(content) = self.template_cache.get("index.css") {
                    let response = Response::from_string(content).with_header(
                        Header::from_bytes(&b"Content-Type"[..], &b"text/css"[..]).unwrap(),
                    );
                    request
                        .respond(response)
                        .map_err(|e| WasmrunError::from(e.to_string()))?;
                } else {
                    self.send_404(request)?;
                }
            }

            // Serve logging module
            (Method::Get, "/logging.js") => {
                if let Some(content) = self.template_cache.get("logging.js") {
                    let response = Response::from_string(content).with_header(
                        Header::from_bytes(&b"Content-Type"[..], &b"application/javascript"[..])
                            .unwrap(),
                    );
                    request
                        .respond(response)
                        .map_err(|e| WasmrunError::from(e.to_string()))?;
                } else {
                    self.send_404(request)?;
                }
            }

            // Serve logs panel
            (Method::Get, "/logs") => {
                if let Some(content) = self.template_cache.get("logs.html") {
                    let response = Response::from_string(content).with_header(
                        Header::from_bytes(&b"Content-Type"[..], &b"text/html; charset=utf-8"[..])
                            .unwrap(),
                    );
                    request
                        .respond(response)
                        .map_err(|e| WasmrunError::from(e.to_string()))?;
                } else {
                    self.send_404(request)?;
                }
            }

            (Method::Get, "/ws") => {
                // TODO: WebSocket upgrade for real-time communication
                let response = Response::from_string("WebSocket not implemented yet").with_header(
                    Header::from_bytes(&b"Content-Type"[..], &b"text/plain"[..]).unwrap(),
                );
                request
                    .respond(response)
                    .map_err(|e| WasmrunError::from(e.to_string()))?;
            }

            // API endpoint for runtime binary (serves cached wasmhub runtime)
            (Method::Get, path) if path.starts_with("/api/runtime/") => {
                let language = &path[13..]; // Remove "/api/runtime/"
                self.handle_runtime_request(request, language)?;
            }

            // API endpoint for available runtimes manifest
            (Method::Get, "/api/runtimes") => {
                self.handle_runtimes_list_request(request)?;
            }

            // API endpoint for project files bundle (base64-encoded)
            (Method::Get, "/api/project/files") => {
                self.handle_project_files_request(request)?;
            }

            // API endpoint for kernel statistics
            (Method::Get, "/api/kernel/stats") => {
                self.handle_kernel_stats_request(request)?;
            }

            // API endpoint for filesystem statistics
            (Method::Get, "/api/fs/stats") => {
                self.handle_fs_stats_request(request)?;
            }

            // API endpoint for reading files
            (Method::Get, path) if path.starts_with("/api/fs/read/") => {
                let file_path = &path[13..]; // Remove "/api/fs/read/"
                self.handle_fs_read_request(request, file_path)?;
            }

            // API endpoint for listing directory
            (Method::Get, path) if path.starts_with("/api/fs/list/") => {
                let dir_path = &path[13..]; // Remove "/api/fs/list/"
                self.handle_fs_list_request(request, dir_path)?;
            }

            // API endpoint for writing files
            (Method::Post, path) if path.starts_with("/api/fs/write/") => {
                let file_path = &path[14..]; // Remove "/api/fs/write/"
                self.handle_fs_write_request(request, file_path)?;
            }

            // API endpoint for creating directories
            (Method::Post, path) if path.starts_with("/api/fs/mkdir/") => {
                let dir_path = &path[14..]; // Remove "/api/fs/mkdir/"
                self.handle_fs_mkdir_request(request, dir_path)?;
            }

            // API endpoint for deleting files
            (Method::Post, path) if path.starts_with("/api/fs/delete/") => {
                let file_path = &path[15..]; // Remove "/api/fs/delete/"
                self.handle_fs_delete_request(request, file_path)?;
            }

            (Method::Post, "/api/kernel/start") => {
                self.handle_start_project(request)?;
            }

            (Method::Post, "/api/kernel/restart") => {
                self.handle_restart_project(request)?;
            }

            // API endpoints for port forwarding
            (Method::Get, path)
                if path.starts_with("/api/processes/") && path.ends_with("/ports") =>
            {
                let parts: Vec<&str> = path.split('/').collect();
                if parts.len() >= 4 {
                    if let Ok(pid) = parts[3].parse::<u32>() {
                        self.handle_list_ports_request(request, pid)?;
                    } else {
                        self.send_error(request, "Invalid PID")?;
                    }
                } else {
                    self.send_404(request)?;
                }
            }

            (Method::Post, path)
                if path.starts_with("/api/processes/") && path.contains("/forward") =>
            {
                let parts: Vec<&str> = path.split('/').collect();
                if parts.len() >= 4 {
                    if let Ok(pid) = parts[3].parse::<u32>() {
                        self.handle_create_port_forward_request(request, pid)?;
                    } else {
                        self.send_error(request, "Invalid PID")?;
                    }
                } else {
                    self.send_404(request)?;
                }
            }

            (Method::Delete, path)
                if path.starts_with("/api/processes/") && path.contains("/forward/") =>
            {
                let parts: Vec<&str> = path.split('/').collect();
                if parts.len() >= 6 {
                    if let (Ok(pid), Ok(guest_port)) =
                        (parts[3].parse::<u32>(), parts[5].parse::<u16>())
                    {
                        self.handle_delete_port_forward_request(request, pid, guest_port)?;
                    } else {
                        self.send_error(request, "Invalid PID or port")?;
                    }
                } else {
                    self.send_404(request)?;
                }
            }

            // API endpoint for logs
            (Method::Get, "/api/logs") => {
                self.handle_logs_request(request)?;
            }

            (Method::Get, "/api/logs/recent") => {
                self.handle_recent_logs_request(request)?;
            }

            // Tunnel API endpoints
            (Method::Post, "/api/tunnel/start") => {
                self.handle_tunnel_start_request(request)?;
            }

            (Method::Get, "/api/tunnel/status") => {
                self.handle_tunnel_status_request(request)?;
            }

            (Method::Post, "/api/tunnel/stop") => {
                self.handle_tunnel_stop_request(request)?;
            }

            // Serve static assets
            (Method::Get, path) if path.starts_with("/assets/") => {
                self.serve_asset(request, &path[8..])?; // Remove "/assets/" prefix
            }

            // Proxy requests to project dev server
            (Method::Get, path) if path.starts_with("/app/") => {
                let project_path = &path[5..]; // Remove "/app/" prefix
                self.proxy_to_dev_server(request, project_path)?;
            }

            // Default: serve 404
            _ => {
                self.send_404(request)?;
            }
        }

        Ok(())
    }

    /// Handle start project request.
    /// Check-and-start is atomic under a single project_pid write lock.
    fn handle_start_project(&self, request: Request) -> Result<()> {
        let mut project_pid = self.project_pid.write().unwrap();

        let response_json = if project_pid.is_some() {
            serde_json::json!({ "success": false, "error": "Project is already running" })
        } else {
            match self.run_project_in_kernel() {
                Ok(pid) => {
                    *project_pid = Some(pid);
                    serde_json::json!({ "success": true, "pid": pid })
                }
                Err(e) => {
                    serde_json::json!({ "success": false, "error": e.to_string() })
                }
            }
        };

        let status = if response_json["success"].as_bool() == Some(true) {
            200
        } else if project_pid.is_some() {
            409
        } else {
            500
        };

        let response = Response::from_string(response_json.to_string())
            .with_status_code(tiny_http::StatusCode(status))
            .with_header(
                Header::from_bytes(&b"Content-Type"[..], &b"application/json"[..]).unwrap(),
            )
            .with_header(self.cors_header());

        request
            .respond(response)
            .map_err(|e| WasmrunError::from(e.to_string()))?;
        Ok(())
    }

    /// Handle restart project request.
    /// Kill-and-restart is atomic under a single project_pid write lock.
    fn handle_restart_project(&self, request: Request) -> Result<()> {
        let mut project_pid = self.project_pid.write().unwrap();

        if let Some(pid) = *project_pid {
            let mut kernel = self.kernel.write().unwrap();
            let _ = kernel.kill_process(pid);
        }
        *project_pid = None;

        let response_json = match self.run_project_in_kernel() {
            Ok(pid) => {
                *project_pid = Some(pid);
                serde_json::json!({ "success": true, "pid": pid })
            }
            Err(e) => {
                serde_json::json!({ "success": false, "error": e.to_string() })
            }
        };

        let status = if response_json["success"].as_bool() == Some(true) {
            200
        } else {
            500
        };

        let response = Response::from_string(response_json.to_string())
            .with_status_code(tiny_http::StatusCode(status))
            .with_header(
                Header::from_bytes(&b"Content-Type"[..], &b"application/json"[..]).unwrap(),
            )
            .with_header(self.cors_header());

        request
            .respond(response)
            .map_err(|e| WasmrunError::from(e.to_string()))?;
        Ok(())
    }

    /// Handle kernel statistics API request
    fn handle_kernel_stats_request(&self, request: Request) -> Result<()> {
        let kernel = self.kernel.read().unwrap();
        let stats = kernel.get_statistics();

        let project_pid = *self.project_pid.read().unwrap();
        let stats_json = serde_json::json!({
            "status": "running",
            "active_processes": stats.active_processes,
            "total_memory_usage": stats.total_memory_usage,
            "active_runtimes": stats.active_runtimes,
            "active_dev_servers": stats.active_dev_servers,
            "project_pid": project_pid,
            // System information
            "os": stats.os,
            "arch": stats.arch,
            "kernel_version": stats.kernel_version,
            // WASI capabilities
            "wasi_capabilities": stats.wasi_capabilities,
            "filesystem_mounts": stats.filesystem_mounts,
            "supported_languages": stats.supported_languages,
        });

        let response = Response::from_string(stats_json.to_string())
            .with_header(
                Header::from_bytes(&b"Content-Type"[..], &b"application/json"[..]).unwrap(),
            )
            .with_header(self.cors_header());

        request
            .respond(response)
            .map_err(|e| WasmrunError::from(e.to_string()))?;
        Ok(())
    }

    fn handle_list_ports_request(&self, request: Request, pid: u32) -> Result<()> {
        let kernel = self.kernel.read().unwrap();

        let all_network_stats = kernel.get_network_stats();
        if let Some(network_stats) = all_network_stats.get(&pid) {
            let mappings = if let Some(ns) = kernel.get_network_namespace(pid) {
                ns.list_port_mappings()
            } else {
                vec![]
            };

            let response_json = serde_json::json!({
                "success": true,
                "pid": pid,
                "port_mappings": mappings.iter().map(|m| {
                    serde_json::json!({
                        "guest_port": m.guest_port,
                        "host_port": m.host_port,
                        "protocol": format!("{:?}", m.protocol),
                        "created_at": m.created_at.duration_since(std::time::UNIX_EPOCH)
                            .unwrap_or_default().as_secs()
                    })
                }).collect::<Vec<_>>(),
                "network_stats": {
                    "base_port": network_stats.base_port,
                    "allocated_ports": network_stats.allocated_ports,
                    "total_connections": network_stats.total_connections,
                    "active_connections": network_stats.active_connections,
                    "listening_sockets": network_stats.listening_sockets,
                }
            });

            let response = Response::from_string(response_json.to_string())
                .with_header(
                    Header::from_bytes(&b"Content-Type"[..], &b"application/json"[..]).unwrap(),
                )
                .with_header(self.cors_header());

            request
                .respond(response)
                .map_err(|e| WasmrunError::from(e.to_string()))?;
        } else {
            self.send_error(request, &format!("Process with PID {pid} not found"))?;
        }
        Ok(())
    }

    fn handle_create_port_forward_request(&self, mut request: Request, pid: u32) -> Result<()> {
        let mut content = String::new();
        let mut reader = request.as_reader();
        if let Err(e) = std::io::Read::read_to_string(&mut reader, &mut content) {
            return self.send_error(request, &format!("Failed to read request body: {e}"));
        }

        let body: serde_json::Value = match serde_json::from_str(&content) {
            Ok(v) => v,
            Err(e) => return self.send_error(request, &format!("Invalid JSON: {e}")),
        };

        let guest_port = match body.get("guest_port").and_then(|v| v.as_u64()) {
            Some(p) if p <= u16::MAX as u64 => p as u16,
            _ => return self.send_error(request, "Invalid guest_port"),
        };

        let protocol = match body.get("protocol").and_then(|v| v.as_str()) {
            Some("tcp") | Some("Tcp") => crate::runtime::network_namespace::SocketProtocol::Tcp,
            Some("udp") | Some("Udp") => crate::runtime::network_namespace::SocketProtocol::Udp,
            _ => return self.send_error(request, "Invalid protocol (must be 'tcp' or 'udp')"),
        };

        let kernel = self.kernel.read().unwrap();
        if let Some(ns) = kernel.get_network_namespace(pid) {
            match ns.allocate_port(guest_port, protocol) {
                Ok(host_port) => {
                    let response_json = serde_json::json!({
                        "success": true,
                        "pid": pid,
                        "guest_port": guest_port,
                        "host_port": host_port,
                        "protocol": format!("{:?}", protocol)
                    });

                    let response = Response::from_string(response_json.to_string())
                        .with_header(
                            Header::from_bytes(&b"Content-Type"[..], &b"application/json"[..])
                                .unwrap(),
                        )
                        .with_header(self.cors_header());

                    request
                        .respond(response)
                        .map_err(|e| WasmrunError::from(e.to_string()))?;
                }
                Err(e) => {
                    self.send_error(request, &format!("Failed to allocate port: {e}"))?;
                }
            }
        } else {
            self.send_error(request, &format!("Process with PID {pid} not found"))?;
        }
        Ok(())
    }

    fn handle_delete_port_forward_request(
        &self,
        request: Request,
        pid: u32,
        guest_port: u16,
    ) -> Result<()> {
        let kernel = self.kernel.read().unwrap();

        if let Some(ns) = kernel.get_network_namespace(pid) {
            match ns.deallocate_port(guest_port) {
                Ok(()) => {
                    let response_json = serde_json::json!({
                        "success": true,
                        "pid": pid,
                        "guest_port": guest_port,
                        "message": "Port mapping removed successfully"
                    });

                    let response = Response::from_string(response_json.to_string())
                        .with_header(
                            Header::from_bytes(&b"Content-Type"[..], &b"application/json"[..])
                                .unwrap(),
                        )
                        .with_header(self.cors_header());

                    request
                        .respond(response)
                        .map_err(|e| WasmrunError::from(e.to_string()))?;
                }
                Err(e) => {
                    self.send_error(request, &format!("Failed to remove port mapping: {e}"))?;
                }
            }
        } else {
            self.send_error(request, &format!("Process with PID {pid} not found"))?;
        }
        Ok(())
    }

    fn handle_runtime_request(&self, request: Request, language: &str) -> Result<()> {
        if language.is_empty() || language.contains("..") || language.contains('/') {
            return self.send_error(request, "Invalid language identifier");
        }

        let wasmhub_lang = crate::runtime::runtime_cache::wasmhub_language(language);

        match self.runtime_cache.get_runtime(wasmhub_lang) {
            Ok(wasm_bytes) => {
                self.log_system.log(LogEntry::info(
                    LogSource::Kernel,
                    format!("Serving {language} runtime ({} bytes)", wasm_bytes.len()),
                ));

                let response = Response::from_data(wasm_bytes)
                    .with_header(
                        Header::from_bytes(&b"Content-Type"[..], &b"application/wasm"[..]).unwrap(),
                    )
                    .with_header(
                        Header::from_bytes(&b"Cache-Control"[..], &b"public, max-age=86400"[..])
                            .unwrap(),
                    )
                    .with_header(self.cors_header());

                request
                    .respond(response)
                    .map_err(|e| WasmrunError::from(e.to_string()))?;
            }
            Err(e) => {
                self.log_system.log(LogEntry::error(
                    LogSource::Kernel,
                    format!("Failed to fetch {language} runtime: {e}"),
                ));

                let error_json = serde_json::json!({
                    "success": false,
                    "error": format!("Runtime not available for '{language}': {e}")
                });

                let response = Response::from_string(error_json.to_string())
                    .with_status_code(tiny_http::StatusCode(404))
                    .with_header(
                        Header::from_bytes(&b"Content-Type"[..], &b"application/json"[..]).unwrap(),
                    )
                    .with_header(self.cors_header());

                request
                    .respond(response)
                    .map_err(|e| WasmrunError::from(e.to_string()))?;
            }
        }

        Ok(())
    }

    fn handle_runtimes_list_request(&self, request: Request) -> Result<()> {
        let detected_language = self.detect_project_language()?;
        let wasmhub_lang = crate::runtime::runtime_cache::wasmhub_language(&detected_language);

        let mut response_json = serde_json::json!({
            "detected_language": detected_language,
            "wasmhub_runtime": wasmhub_lang,
            "cached": self.runtime_cache.is_cached(wasmhub_lang),
            "cached_version": self.runtime_cache.cached_version(wasmhub_lang),
        });

        if let Ok(manifest) = self.runtime_cache.fetch_manifest() {
            response_json["wasmhub_version"] = serde_json::Value::String(manifest.version);
            response_json["available_languages"] =
                serde_json::json!(manifest.languages.keys().collect::<Vec<_>>());
        }

        let response = Response::from_string(response_json.to_string())
            .with_header(
                Header::from_bytes(&b"Content-Type"[..], &b"application/json"[..]).unwrap(),
            )
            .with_header(self.cors_header());

        request
            .respond(response)
            .map_err(|e| WasmrunError::from(e.to_string()))?;

        Ok(())
    }

    fn handle_project_files_request(&self, request: Request) -> Result<()> {
        let collector = match ProjectFilesCollector::new(&self.config.project_path) {
            Ok(c) => c,
            Err(e) => {
                self.log_system.log(LogEntry::error(
                    LogSource::Kernel,
                    format!("Failed to read project files: {e}"),
                ));
                return self.send_error(request, &format!("Failed to read project files: {e}"));
            }
        };

        match collector.collect() {
            Ok(bundle) => {
                self.log_system.log(LogEntry::info(
                    LogSource::Kernel,
                    format!(
                        "Serving {} project files ({} bytes)",
                        bundle.file_count, bundle.total_size
                    ),
                ));

                let response_json = serde_json::json!({
                    "success": true,
                    "files": bundle.files,
                    "file_count": bundle.file_count,
                    "total_size": bundle.total_size,
                    "project_path": bundle.project_path,
                    "skipped": bundle.skipped,
                });

                let response = Response::from_string(response_json.to_string())
                    .with_header(
                        Header::from_bytes(&b"Content-Type"[..], &b"application/json"[..]).unwrap(),
                    )
                    .with_header(self.cors_header());

                request
                    .respond(response)
                    .map_err(|e| WasmrunError::from(e.to_string()))?;
            }
            Err(e) => {
                self.log_system.log(LogEntry::error(
                    LogSource::Kernel,
                    format!("Failed to collect project files: {e}"),
                ));

                let error_json = serde_json::json!({
                    "success": false,
                    "error": format!("Failed to collect project files: {e}")
                });

                let response = Response::from_string(error_json.to_string())
                    .with_status_code(tiny_http::StatusCode(500))
                    .with_header(
                        Header::from_bytes(&b"Content-Type"[..], &b"application/json"[..]).unwrap(),
                    )
                    .with_header(self.cors_header());

                request
                    .respond(response)
                    .map_err(|e| WasmrunError::from(e.to_string()))?;
            }
        }

        Ok(())
    }

    fn send_error(&self, request: Request, error_msg: &str) -> Result<()> {
        let response_json = serde_json::json!({
            "success": false,
            "error": error_msg
        });

        let response = Response::from_string(response_json.to_string())
            .with_status_code(tiny_http::StatusCode(400))
            .with_header(
                Header::from_bytes(&b"Content-Type"[..], &b"application/json"[..]).unwrap(),
            )
            .with_header(self.cors_header());

        request
            .respond(response)
            .map_err(|e| WasmrunError::from(e.to_string()))?;
        Ok(())
    }

    /// Proxy requests to the project's dev server
    fn proxy_to_dev_server(&self, request: Request, path: &str) -> Result<()> {
        // Get the dev server port for the project
        let project_pid = *self.project_pid.read().unwrap();
        if let Some(pid) = project_pid {
            let kernel = self.kernel.read().unwrap();
            let dev_server_port = kernel.get_dev_server_status(pid).and_then(|status| {
                if let crate::runtime::registry::DevServerStatus::Running(port) = status {
                    Some(port)
                } else {
                    None
                }
            });

            if let Some(port) = dev_server_port {
                // Forward the request to the dev server
                let target_url = format!(
                    "http://127.0.0.1:{}{}",
                    port,
                    if path.is_empty() { "/" } else { path }
                );

                match self.fetch_from_dev_server(&target_url) {
                    Ok((content, content_type)) => {
                        let response = Response::from_string(content).with_header(
                            Header::from_bytes(&b"Content-Type"[..], content_type.as_bytes())
                                .unwrap(),
                        );
                        request
                            .respond(response)
                            .map_err(|e| WasmrunError::from(e.to_string()))?;
                    }
                    Err(e) => {
                        let error_html = format!(
                            "<html><body><h1>Dev Server Error</h1><p>{e}</p></body></html>"
                        );
                        let response = Response::from_string(error_html).with_header(
                            Header::from_bytes(&b"Content-Type"[..], &b"text/html"[..]).unwrap(),
                        );
                        request
                            .respond(response)
                            .map_err(|e| WasmrunError::from(e.to_string()))?;
                    }
                }
            } else {
                let error_html = format!(
                    "<html><body><h1>No Dev Server</h1><p>No dev server running for PID {pid}</p></body></html>"
                );
                let response = Response::from_string(error_html).with_header(
                    Header::from_bytes(&b"Content-Type"[..], &b"text/html"[..]).unwrap(),
                );
                request
                    .respond(response)
                    .map_err(|e| WasmrunError::from(e.to_string()))?;
            }
        } else {
            let error_html = "<html><body><h1>No Project Running</h1><p>No project is currently running</p></body></html>";
            let response = Response::from_string(error_html)
                .with_header(Header::from_bytes(&b"Content-Type"[..], &b"text/html"[..]).unwrap());
            request
                .respond(response)
                .map_err(|e| WasmrunError::from(e.to_string()))?;
        }
        Ok(())
    }

    /// Fetch content from the dev server
    fn fetch_from_dev_server(&self, url: &str) -> Result<(String, String)> {
        use std::io::Read;
        use std::net::TcpStream;

        // Parse the URL to get host and path
        let url_without_scheme = url.strip_prefix("http://").unwrap_or(url);
        let parts: Vec<&str> = url_without_scheme.splitn(2, '/').collect();
        let host = parts[0];
        let path = if parts.len() > 1 {
            format!("/{}", parts[1])
        } else {
            "/".to_string()
        };

        // Connect to the dev server
        let mut stream = TcpStream::connect(host)
            .map_err(|e| WasmrunError::from(format!("Failed to connect to dev server: {e}")))?;

        // Send HTTP request
        let request = format!("GET {path} HTTP/1.1\r\nHost: {host}\r\nConnection: close\r\n\r\n");
        std::io::Write::write_all(&mut stream, request.as_bytes())
            .map_err(|e| WasmrunError::from(format!("Failed to send request: {e}")))?;

        // Read response
        let mut response = String::new();
        stream
            .read_to_string(&mut response)
            .map_err(|e| WasmrunError::from(format!("Failed to read response: {e}")))?;

        // Parse HTTP response
        if let Some(header_end) = response.find("\r\n\r\n") {
            let headers = &response[..header_end];
            let body = &response[header_end + 4..];

            // Extract content type from headers
            let content_type = headers
                .lines()
                .find(|line| line.to_lowercase().starts_with("content-type:"))
                .and_then(|line| line.split(':').nth(1))
                .map(|ct| ct.trim().to_string())
                .unwrap_or_else(|| "text/html".to_string());

            Ok((body.to_string(), content_type))
        } else {
            Err(WasmrunError::from("Invalid HTTP response"))
        }
    }

    /// Serve static assets from embedded data
    fn serve_asset(&self, request: Request, asset_path: &str) -> Result<()> {
        let (content, content_type): (&[u8], &str) = match asset_path {
            "logo.png" => (ASSET_LOGO_PNG, "image/png"),
            "logo-text.png" => (ASSET_LOGO_TEXT_PNG, "image/png"),
            _ => return self.send_404(request),
        };

        let response = Response::from_data(content.to_vec()).with_header(
            Header::from_bytes(&b"Content-Type"[..], content_type.as_bytes()).unwrap(),
        );

        request
            .respond(response)
            .map_err(|e| WasmrunError::from(e.to_string()))?;
        Ok(())
    }

    /// Send 404 Not Found response
    fn send_404(&self, request: Request) -> Result<()> {
        let not_found = "
            <html>
                <head><title>404 - Not Found</title></head>
                <body>
                    <h1>404 - Not Found</h1>
                    <p>The requested resource was not found on this server.</p>
                </body>
            </html>
        ";

        let response = Response::from_string(not_found)
            .with_status_code(tiny_http::StatusCode(404))
            .with_header(Header::from_bytes(&b"Content-Type"[..], &b"text/html"[..]).unwrap());

        request
            .respond(response)
            .map_err(|e| WasmrunError::from(e.to_string()))?;
        Ok(())
    }

    /// Handle filesystem statistics request
    fn handle_fs_stats_request(&self, request: Request) -> Result<()> {
        let kernel = self.kernel.read().unwrap();
        let wasi_fs = kernel.wasi_filesystem();
        let stats = wasi_fs.get_stats();

        let stats_json =
            serde_json::to_string(&stats).map_err(|e| WasmrunError::from(e.to_string()))?;

        let response = Response::from_string(stats_json)
            .with_header(
                Header::from_bytes(&b"Content-Type"[..], &b"application/json"[..]).unwrap(),
            )
            .with_header(self.cors_header());

        request
            .respond(response)
            .map_err(|e| WasmrunError::from(e.to_string()))?;
        Ok(())
    }

    /// Handle file read request
    fn handle_fs_read_request(&self, request: Request, file_path: &str) -> Result<()> {
        let kernel = self.kernel.read().unwrap();
        let wasi_fs = kernel.wasi_filesystem();

        // Ensure path has leading slash
        let normalized_path = if file_path.starts_with('/') {
            file_path.to_string()
        } else {
            format!("/{file_path}")
        };

        match wasi_fs.read_file(&normalized_path) {
            Ok(content) => {
                // Try to detect if it's text or binary
                let is_text = content
                    .iter()
                    .all(|&b| b.is_ascii() || b == b'\n' || b == b'\r' || b == b'\t');

                let response_json = if is_text {
                    serde_json::json!({
                        "success": true,
                        "path": file_path,
                        "content": String::from_utf8_lossy(&content),
                        "size": content.len(),
                        "type": "text"
                    })
                } else {
                    // For binary files, return hex representation
                    let hex_content: String = content.iter().map(|b| format!("{b:02x}")).collect();
                    serde_json::json!({
                        "success": true,
                        "path": file_path,
                        "content": hex_content,
                        "size": content.len(),
                        "type": "binary"
                    })
                };

                let response = Response::from_string(response_json.to_string())
                    .with_header(
                        Header::from_bytes(&b"Content-Type"[..], &b"application/json"[..]).unwrap(),
                    )
                    .with_header(self.cors_header());

                request
                    .respond(response)
                    .map_err(|e| WasmrunError::from(e.to_string()))?;
            }
            Err(e) => {
                let error_json = serde_json::json!({
                    "success": false,
                    "error": e.to_string()
                });

                let response = Response::from_string(error_json.to_string())
                    .with_status_code(tiny_http::StatusCode(404))
                    .with_header(
                        Header::from_bytes(&b"Content-Type"[..], &b"application/json"[..]).unwrap(),
                    )
                    .with_header(self.cors_header());

                request
                    .respond(response)
                    .map_err(|e| WasmrunError::from(e.to_string()))?;
            }
        }

        Ok(())
    }

    /// Handle directory listing request
    fn handle_fs_list_request(&self, request: Request, dir_path: &str) -> Result<()> {
        let kernel = self.kernel.read().unwrap();
        let wasi_fs = kernel.wasi_filesystem();

        // Ensure path has leading slash
        let normalized_path = if dir_path.starts_with('/') {
            dir_path.to_string()
        } else {
            format!("/{dir_path}")
        };

        match wasi_fs.path_readdir(&normalized_path) {
            Ok(entries) => {
                let response_json = serde_json::json!({
                    "success": true,
                    "path": dir_path,
                    "entries": entries
                });

                let response = Response::from_string(response_json.to_string())
                    .with_header(
                        Header::from_bytes(&b"Content-Type"[..], &b"application/json"[..]).unwrap(),
                    )
                    .with_header(self.cors_header());

                request
                    .respond(response)
                    .map_err(|e| WasmrunError::from(e.to_string()))?;
            }
            Err(e) => {
                let error_json = serde_json::json!({
                    "success": false,
                    "error": e.to_string()
                });

                let response = Response::from_string(error_json.to_string())
                    .with_status_code(tiny_http::StatusCode(404))
                    .with_header(
                        Header::from_bytes(&b"Content-Type"[..], &b"application/json"[..]).unwrap(),
                    )
                    .with_header(self.cors_header());

                request
                    .respond(response)
                    .map_err(|e| WasmrunError::from(e.to_string()))?;
            }
        }

        Ok(())
    }

    /// Handle file write request
    fn handle_fs_write_request(&self, mut request: Request, file_path: &str) -> Result<()> {
        // Read the request body
        let mut body = Vec::new();
        let mut reader = request.as_reader();
        std::io::Read::read_to_end(&mut reader, &mut body)
            .map_err(|e| WasmrunError::from(e.to_string()))?;

        let kernel = self.kernel.read().unwrap();
        let wasi_fs = kernel.wasi_filesystem();

        // Ensure path has leading slash
        let normalized_path = if file_path.starts_with('/') {
            file_path.to_string()
        } else {
            format!("/{file_path}")
        };

        match wasi_fs.write_file(&normalized_path, &body) {
            Ok(_) => {
                let response_json = serde_json::json!({
                    "success": true,
                    "path": file_path,
                    "size": body.len()
                });

                let response = Response::from_string(response_json.to_string())
                    .with_header(
                        Header::from_bytes(&b"Content-Type"[..], &b"application/json"[..]).unwrap(),
                    )
                    .with_header(self.cors_header());

                request
                    .respond(response)
                    .map_err(|e| WasmrunError::from(e.to_string()))?;
            }
            Err(e) => {
                let error_json = serde_json::json!({
                    "success": false,
                    "error": e.to_string()
                });

                let response = Response::from_string(error_json.to_string())
                    .with_status_code(tiny_http::StatusCode(500))
                    .with_header(
                        Header::from_bytes(&b"Content-Type"[..], &b"application/json"[..]).unwrap(),
                    )
                    .with_header(self.cors_header());

                request
                    .respond(response)
                    .map_err(|e| WasmrunError::from(e.to_string()))?;
            }
        }

        Ok(())
    }

    /// Handle directory creation request
    fn handle_fs_mkdir_request(&self, request: Request, dir_path: &str) -> Result<()> {
        let kernel = self.kernel.read().unwrap();
        let wasi_fs = kernel.wasi_filesystem();

        // Ensure path has leading slash
        let normalized_path = if dir_path.starts_with('/') {
            dir_path.to_string()
        } else {
            format!("/{dir_path}")
        };

        match wasi_fs.path_create_directory(&normalized_path) {
            Ok(_) => {
                let response_json = serde_json::json!({
                    "success": true,
                    "path": dir_path
                });

                let response = Response::from_string(response_json.to_string())
                    .with_header(
                        Header::from_bytes(&b"Content-Type"[..], &b"application/json"[..]).unwrap(),
                    )
                    .with_header(self.cors_header());

                request
                    .respond(response)
                    .map_err(|e| WasmrunError::from(e.to_string()))?;
            }
            Err(e) => {
                let error_json = serde_json::json!({
                    "success": false,
                    "error": e.to_string()
                });

                let response = Response::from_string(error_json.to_string())
                    .with_status_code(tiny_http::StatusCode(500))
                    .with_header(
                        Header::from_bytes(&b"Content-Type"[..], &b"application/json"[..]).unwrap(),
                    )
                    .with_header(self.cors_header());

                request
                    .respond(response)
                    .map_err(|e| WasmrunError::from(e.to_string()))?;
            }
        }

        Ok(())
    }

    /// Handle file deletion request
    fn handle_fs_delete_request(&self, request: Request, file_path: &str) -> Result<()> {
        let kernel = self.kernel.read().unwrap();
        let wasi_fs = kernel.wasi_filesystem();

        // Ensure path has leading slash
        let normalized_path = if file_path.starts_with('/') {
            file_path.to_string()
        } else {
            format!("/{file_path}")
        };

        match wasi_fs.path_unlink_file(&normalized_path) {
            Ok(_) => {
                let response_json = serde_json::json!({
                    "success": true,
                    "path": file_path
                });

                let response = Response::from_string(response_json.to_string())
                    .with_header(
                        Header::from_bytes(&b"Content-Type"[..], &b"application/json"[..]).unwrap(),
                    )
                    .with_header(self.cors_header());

                request
                    .respond(response)
                    .map_err(|e| WasmrunError::from(e.to_string()))?;
            }
            Err(e) => {
                let error_json = serde_json::json!({
                    "success": false,
                    "error": e.to_string()
                });

                let response = Response::from_string(error_json.to_string())
                    .with_status_code(tiny_http::StatusCode(500))
                    .with_header(
                        Header::from_bytes(&b"Content-Type"[..], &b"application/json"[..]).unwrap(),
                    )
                    .with_header(self.cors_header());

                request
                    .respond(response)
                    .map_err(|e| WasmrunError::from(e.to_string()))?;
            }
        }

        Ok(())
    }

    fn handle_logs_request(&self, request: Request) -> Result<()> {
        let logs = self.log_system.get_all();
        let response_json = serde_json::json!({
            "success": true,
            "count": logs.len(),
            "logs": logs
        });

        let response = Response::from_string(response_json.to_string())
            .with_header(
                Header::from_bytes(&b"Content-Type"[..], &b"application/json"[..]).unwrap(),
            )
            .with_header(self.cors_header());

        request
            .respond(response)
            .map_err(|e| WasmrunError::from(e.to_string()))?;

        Ok(())
    }

    fn handle_recent_logs_request(&self, request: Request) -> Result<()> {
        let count = 100;
        let logs = self.log_system.get_recent(count);
        let response_json = serde_json::json!({
            "success": true,
            "count": logs.len(),
            "logs": logs
        });

        let response = Response::from_string(response_json.to_string())
            .with_header(
                Header::from_bytes(&b"Content-Type"[..], &b"application/json"[..]).unwrap(),
            )
            .with_header(self.cors_header());

        request
            .respond(response)
            .map_err(|e| WasmrunError::from(e.to_string()))?;

        Ok(())
    }

    fn handle_tunnel_start_request(&self, request: Request) -> Result<()> {
        let mut tunnel_guard = self.tunnel_client.write().unwrap();

        if tunnel_guard.is_some() {
            let response_json = serde_json::json!({
                "success": false,
                "error": "Tunnel is already running"
            });

            let response = Response::from_string(response_json.to_string())
                .with_header(
                    Header::from_bytes(&b"Content-Type"[..], &b"application/json"[..]).unwrap(),
                )
                .with_header(self.cors_header());

            request
                .respond(response)
                .map_err(|e| WasmrunError::from(e.to_string()))?;
            return Ok(());
        }

        let server = self
            .config
            .tunnel_server
            .clone()
            .unwrap_or_else(|| "bore.pub:7835".to_string());
        let secret = self.config.tunnel_secret.clone();
        let local_port = self.config.port.unwrap_or(8420);

        let mut client = BoreClient::new(server, secret, local_port);

        match client.connect() {
            Ok(public_url) => {
                let response_json = serde_json::json!({
                    "success": true,
                    "public_url": public_url,
                    "status": "Connected"
                });

                *tunnel_guard = Some(client);

                let response = Response::from_string(response_json.to_string())
                    .with_header(
                        Header::from_bytes(&b"Content-Type"[..], &b"application/json"[..]).unwrap(),
                    )
                    .with_header(self.cors_header());

                request
                    .respond(response)
                    .map_err(|e| WasmrunError::from(e.to_string()))?;
            }
            Err(e) => {
                let response_json = serde_json::json!({
                    "success": false,
                    "error": e
                });

                let response = Response::from_string(response_json.to_string())
                    .with_header(
                        Header::from_bytes(&b"Content-Type"[..], &b"application/json"[..]).unwrap(),
                    )
                    .with_header(self.cors_header());

                request
                    .respond(response)
                    .map_err(|e| WasmrunError::from(e.to_string()))?;
            }
        }

        Ok(())
    }

    fn handle_tunnel_status_request(&self, request: Request) -> Result<()> {
        let tunnel_guard = self.tunnel_client.read().unwrap();

        let response_json = if let Some(ref client) = *tunnel_guard {
            let status = client.get_status();
            let status_str = match status {
                crate::runtime::tunnel::bore::TunnelStatus::Disconnected => "Disconnected",
                crate::runtime::tunnel::bore::TunnelStatus::Connecting => "Connecting",
                crate::runtime::tunnel::bore::TunnelStatus::Connected => "Connected",
                crate::runtime::tunnel::bore::TunnelStatus::Reconnecting => "Reconnecting",
                crate::runtime::tunnel::bore::TunnelStatus::Failed => "Failed",
            };

            serde_json::json!({
                "success": true,
                "status": status_str,
                "public_url": client.get_public_url(),
                "public_port": client.get_public_port()
            })
        } else {
            serde_json::json!({
                "success": true,
                "status": "Not started"
            })
        };

        let response = Response::from_string(response_json.to_string())
            .with_header(
                Header::from_bytes(&b"Content-Type"[..], &b"application/json"[..]).unwrap(),
            )
            .with_header(self.cors_header());

        request
            .respond(response)
            .map_err(|e| WasmrunError::from(e.to_string()))?;

        Ok(())
    }

    fn handle_tunnel_stop_request(&self, request: Request) -> Result<()> {
        let mut tunnel_guard = self.tunnel_client.write().unwrap();

        let response_json = if let Some(ref client) = *tunnel_guard {
            client.stop();
            *tunnel_guard = None;

            serde_json::json!({
                "success": true,
                "message": "Tunnel stopped"
            })
        } else {
            serde_json::json!({
                "success": false,
                "error": "No tunnel is running"
            })
        };

        let response = Response::from_string(response_json.to_string())
            .with_header(
                Header::from_bytes(&b"Content-Type"[..], &b"application/json"[..]).unwrap(),
            )
            .with_header(self.cors_header());

        request
            .respond(response)
            .map_err(|e| WasmrunError::from(e.to_string()))?;

        Ok(())
    }
}