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
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
//! # Persistent Route Engine
//!
//! Memory-efficient route engine that stores data in SQLite with tiered loading.
//!
//! ## Memory Tiers
//!
//! 1. **Always loaded** (~80KB for 1000 activities):
//! - Activity IDs, sport types, bounds
//! - In-memory R-tree spatial index
//!
//! 2. **LRU cached** (~2MB max):
//! - Route signatures (200 entry cache)
//! - Consensus routes (50 entry cache)
//!
//! 3. **On-demand** (0 memory baseline):
//! - Full GPS tracks (only loaded for section detection)
//!
//! 4. **Persisted results** (~100KB):
//! - Computed route groups
//! - Detected sections
#[cfg(feature = "persistence")]
use std::collections::HashMap;
#[cfg(feature = "persistence")]
use std::sync::mpsc;
#[cfg(feature = "persistence")]
use std::sync::atomic::{AtomicU32, Ordering};
#[cfg(feature = "persistence")]
use std::sync::Arc;
#[cfg(feature = "persistence")]
use std::thread;
#[cfg(feature = "persistence")]
use rusqlite::{Connection, Result as SqlResult, params};
#[cfg(feature = "persistence")]
use rstar::{AABB, RTree, RTreeObject};
#[cfg(feature = "persistence")]
use crate::{
ActivityMatchInfo, ActivityMetrics, Bounds, FrequentSection, GpsPoint, MatchConfig, RouteGroup,
RoutePerformance, RoutePerformanceResult, RouteSignature, SectionConfig, SectionLap,
SectionPerformanceRecord, SectionPerformanceResult, geo_utils,
};
#[cfg(feature = "persistence")]
use lru::LruCache;
// ============================================================================
// Types
// ============================================================================
/// Lightweight activity metadata kept always in memory.
#[cfg(feature = "persistence")]
#[derive(Debug, Clone)]
pub struct ActivityMetadata {
pub id: String,
pub sport_type: String,
pub bounds: Bounds,
}
/// Bounds wrapper for R-tree spatial indexing.
#[cfg(feature = "persistence")]
#[derive(Debug, Clone)]
pub struct ActivityBoundsEntry {
pub activity_id: String,
pub bounds: Bounds,
}
#[cfg(feature = "persistence")]
impl RTreeObject for ActivityBoundsEntry {
type Envelope = AABB<[f64; 2]>;
fn envelope(&self) -> Self::Envelope {
AABB::from_corners(
[self.bounds.min_lng, self.bounds.min_lat],
[self.bounds.max_lng, self.bounds.max_lat],
)
}
}
/// Lightweight section metadata for list views (no polyline data).
/// Used to avoid loading full section data with polylines when only summary info is needed.
#[cfg(feature = "persistence")]
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize, uniffi::Record)]
pub struct SectionSummary {
/// Unique section ID
pub id: String,
/// Custom name (user-defined, None if not set)
pub name: Option<String>,
/// Sport type ("Run", "Ride", etc.)
pub sport_type: String,
/// Number of times this section was visited
pub visit_count: u32,
/// Section length in meters
pub distance_meters: f64,
/// Number of activities that traverse this section
pub activity_count: u32,
/// Confidence score (0.0-1.0)
pub confidence: f64,
/// Detection scale (e.g., "neighborhood", "city")
pub scale: Option<String>,
/// Bounding box for map display
pub bounds: Option<Bounds>,
}
/// Lightweight group metadata for list views.
/// Used to avoid loading full group data with activity ID arrays when only summary info is needed.
#[cfg(feature = "persistence")]
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize, uniffi::Record)]
pub struct GroupSummary {
/// Unique group ID
pub group_id: String,
/// Representative activity ID
pub representative_id: String,
/// Sport type ("Run", "Ride", etc.)
pub sport_type: String,
/// Number of activities in this group
pub activity_count: u32,
/// Custom name (user-defined, None if not set)
pub custom_name: Option<String>,
/// Bounding box for map display
pub bounds: Option<Bounds>,
}
/// Progress state for section detection, shared between threads.
#[cfg(feature = "persistence")]
#[derive(Debug, Clone)]
pub struct SectionDetectionProgress {
/// Current phase: "loading", "building_rtrees", "finding_overlaps", "clustering", "building_sections", "postprocessing"
pub phase: Arc<std::sync::Mutex<String>>,
/// Number of items completed in current phase
pub completed: Arc<AtomicU32>,
/// Total items in current phase
pub total: Arc<AtomicU32>,
}
#[cfg(feature = "persistence")]
impl SectionDetectionProgress {
pub fn new() -> Self {
Self {
phase: Arc::new(std::sync::Mutex::new("loading".to_string())),
completed: Arc::new(AtomicU32::new(0)),
total: Arc::new(AtomicU32::new(0)),
}
}
pub fn set_phase(&self, phase: &str, total: u32) {
*self.phase.lock().unwrap() = phase.to_string();
self.completed.store(0, Ordering::SeqCst);
self.total.store(total, Ordering::SeqCst);
}
pub fn increment(&self) {
self.completed.fetch_add(1, Ordering::SeqCst);
}
pub fn get_phase(&self) -> String {
self.phase.lock().unwrap().clone()
}
pub fn get_completed(&self) -> u32 {
self.completed.load(Ordering::SeqCst)
}
pub fn get_total(&self) -> u32 {
self.total.load(Ordering::SeqCst)
}
}
#[cfg(feature = "persistence")]
impl Default for SectionDetectionProgress {
fn default() -> Self {
Self::new()
}
}
/// Handle for background section detection.
#[cfg(feature = "persistence")]
pub struct SectionDetectionHandle {
receiver: mpsc::Receiver<Vec<FrequentSection>>,
/// Shared progress state
pub progress: SectionDetectionProgress,
}
#[cfg(feature = "persistence")]
impl SectionDetectionHandle {
/// Check if detection is complete (non-blocking).
pub fn try_recv(&self) -> Option<Vec<FrequentSection>> {
self.receiver.try_recv().ok()
}
/// Get current progress.
pub fn get_progress(&self) -> (String, u32, u32) {
(
self.progress.get_phase(),
self.progress.get_completed(),
self.progress.get_total(),
)
}
/// Wait for detection to complete (blocking).
pub fn recv(self) -> Option<Vec<FrequentSection>> {
self.receiver.recv().ok()
}
}
// ============================================================================
// Persistent Route Engine
// ============================================================================
/// Memory-efficient route engine with SQLite persistence.
///
/// Only loads lightweight metadata into memory. Signatures are LRU cached,
/// and GPS tracks are loaded on-demand only when needed for section detection.
#[cfg(feature = "persistence")]
pub struct PersistentRouteEngine {
/// Database connection
db: Connection,
/// Database path (for spawning background threads)
db_path: String,
/// Tier 1: Always in memory (lightweight ~80 bytes per activity)
activity_metadata: HashMap<String, ActivityMetadata>,
/// In-memory R-tree for fast viewport queries
spatial_index: RTree<ActivityBoundsEntry>,
/// Tier 2: LRU cached signatures (200 max = ~2MB)
signature_cache: LruCache<String, RouteSignature>,
/// Tier 2: LRU cached consensus routes (50 max)
consensus_cache: LruCache<String, Vec<GpsPoint>>,
/// Tier 2: LRU cached sections for single-item lookups (50 max = ~5MB)
section_cache: LruCache<String, FrequentSection>,
/// Tier 2: LRU cached groups for single-item lookups (100 max = ~1MB)
group_cache: LruCache<String, RouteGroup>,
/// Cached route groups (loaded from DB)
groups: Vec<RouteGroup>,
/// Per-activity match info: route_id -> Vec<ActivityMatchInfo>
activity_matches: HashMap<String, Vec<ActivityMatchInfo>>,
/// Activity metrics for performance calculations
activity_metrics: HashMap<String, ActivityMetrics>,
/// Time streams for section performance calculations (activity_id -> cumulative times at each GPS point)
time_streams: HashMap<String, Vec<u32>>,
/// Cached sections (loaded from DB)
sections: Vec<FrequentSection>,
/// Dirty tracking
groups_dirty: bool,
sections_dirty: bool,
/// Configuration
match_config: MatchConfig,
section_config: SectionConfig,
}
#[cfg(feature = "persistence")]
impl PersistentRouteEngine {
// ========================================================================
// Initialization
// ========================================================================
/// Create a new persistent engine with the given database path.
pub fn new(db_path: &str) -> SqlResult<Self> {
let db = Connection::open(db_path)?;
Self::init_schema(&db)?;
Ok(Self {
db,
db_path: db_path.to_string(),
activity_metadata: HashMap::new(),
spatial_index: RTree::new(),
signature_cache: LruCache::new(std::num::NonZeroUsize::new(200).unwrap()),
consensus_cache: LruCache::new(std::num::NonZeroUsize::new(50).unwrap()),
section_cache: LruCache::new(std::num::NonZeroUsize::new(50).unwrap()),
group_cache: LruCache::new(std::num::NonZeroUsize::new(100).unwrap()),
groups: Vec::new(),
activity_matches: HashMap::new(),
activity_metrics: HashMap::new(),
time_streams: HashMap::new(),
sections: Vec::new(),
groups_dirty: false,
sections_dirty: false,
match_config: MatchConfig::default(),
section_config: SectionConfig::default(),
})
}
/// Create an in-memory database (for testing).
pub fn in_memory() -> SqlResult<Self> {
Self::new(":memory:")
}
/// Initialize the database schema.
fn init_schema(conn: &Connection) -> SqlResult<()> {
conn.execute_batch(
r#"
-- Activity metadata (always loaded)
CREATE TABLE IF NOT EXISTS activities (
id TEXT PRIMARY KEY,
sport_type TEXT NOT NULL,
min_lat REAL NOT NULL,
max_lat REAL NOT NULL,
min_lng REAL NOT NULL,
max_lng REAL NOT NULL,
created_at INTEGER DEFAULT (strftime('%s', 'now'))
);
-- Signatures stored separately (LRU cached)
CREATE TABLE IF NOT EXISTS signatures (
activity_id TEXT PRIMARY KEY,
points BLOB NOT NULL,
start_point_lat REAL NOT NULL,
start_point_lng REAL NOT NULL,
end_point_lat REAL NOT NULL,
end_point_lng REAL NOT NULL,
total_distance REAL NOT NULL,
point_count INTEGER NOT NULL,
FOREIGN KEY (activity_id) REFERENCES activities(id) ON DELETE CASCADE
);
-- Full GPS tracks (loaded on-demand only)
CREATE TABLE IF NOT EXISTS gps_tracks (
activity_id TEXT PRIMARY KEY,
track_data BLOB NOT NULL,
point_count INTEGER NOT NULL,
FOREIGN KEY (activity_id) REFERENCES activities(id) ON DELETE CASCADE
);
-- Computed route groups (persisted)
CREATE TABLE IF NOT EXISTS route_groups (
id TEXT PRIMARY KEY,
representative_id TEXT NOT NULL,
activity_ids TEXT NOT NULL,
sport_type TEXT NOT NULL,
bounds_min_lat REAL,
bounds_max_lat REAL,
bounds_min_lng REAL,
bounds_max_lng REAL
);
-- Detected sections (persisted as JSON blob for simplicity)
CREATE TABLE IF NOT EXISTS sections (
id TEXT PRIMARY KEY,
data BLOB NOT NULL
);
-- Custom route names (user-defined)
CREATE TABLE IF NOT EXISTS route_names (
route_id TEXT PRIMARY KEY,
custom_name TEXT NOT NULL
);
-- Custom section names (user-defined)
CREATE TABLE IF NOT EXISTS section_names (
section_id TEXT PRIMARY KEY,
custom_name TEXT NOT NULL
);
-- Per-activity match info within route groups
CREATE TABLE IF NOT EXISTS activity_matches (
route_id TEXT NOT NULL,
activity_id TEXT NOT NULL,
match_percentage REAL NOT NULL,
direction TEXT NOT NULL,
PRIMARY KEY (route_id, activity_id)
);
-- Activity metrics for performance calculations
CREATE TABLE IF NOT EXISTS activity_metrics (
activity_id TEXT PRIMARY KEY,
name TEXT NOT NULL,
date INTEGER NOT NULL,
distance REAL NOT NULL,
moving_time INTEGER NOT NULL,
elapsed_time INTEGER NOT NULL,
elevation_gain REAL NOT NULL,
avg_hr INTEGER,
avg_power INTEGER,
sport_type TEXT NOT NULL
);
-- Custom sections (user-created)
CREATE TABLE IF NOT EXISTS custom_sections (
id TEXT PRIMARY KEY,
name TEXT NOT NULL,
polyline_json TEXT NOT NULL,
source_activity_id TEXT NOT NULL,
start_index INTEGER NOT NULL,
end_index INTEGER NOT NULL,
sport_type TEXT NOT NULL,
distance_meters REAL NOT NULL,
created_at TEXT NOT NULL
);
-- Custom section matches
CREATE TABLE IF NOT EXISTS custom_section_matches (
section_id TEXT NOT NULL,
activity_id TEXT NOT NULL,
start_index INTEGER NOT NULL,
end_index INTEGER NOT NULL,
direction TEXT NOT NULL,
distance_meters REAL NOT NULL,
PRIMARY KEY (section_id, activity_id),
FOREIGN KEY (section_id) REFERENCES custom_sections(id) ON DELETE CASCADE
);
-- Time streams for section performance calculations
-- Stores cumulative seconds at each GPS point
CREATE TABLE IF NOT EXISTS time_streams (
activity_id TEXT PRIMARY KEY,
times BLOB NOT NULL,
point_count INTEGER NOT NULL,
FOREIGN KEY (activity_id) REFERENCES activities(id) ON DELETE CASCADE
);
-- Indexes
CREATE INDEX IF NOT EXISTS idx_activities_sport ON activities(sport_type);
CREATE INDEX IF NOT EXISTS idx_activities_bounds ON activities(min_lat, max_lat, min_lng, max_lng);
CREATE INDEX IF NOT EXISTS idx_groups_sport ON route_groups(sport_type);
CREATE INDEX IF NOT EXISTS idx_activity_matches_route ON activity_matches(route_id);
CREATE INDEX IF NOT EXISTS idx_custom_section_matches_section ON custom_section_matches(section_id);
-- Enable foreign keys
PRAGMA foreign_keys = ON;
"#,
)?;
Ok(())
}
/// Load all metadata and groups from the database.
pub fn load(&mut self) -> SqlResult<()> {
self.load_metadata()?;
self.load_groups()?;
self.load_sections()?;
self.load_activity_metrics()?;
Ok(())
}
/// Load activity metadata into memory (lightweight).
fn load_metadata(&mut self) -> SqlResult<()> {
self.activity_metadata.clear();
let mut stmt = self
.db
.prepare("SELECT id, sport_type, min_lat, max_lat, min_lng, max_lng FROM activities")?;
let entries: Vec<ActivityBoundsEntry> = stmt
.query_map([], |row| {
let id: String = row.get(0)?;
let sport_type: String = row.get(1)?;
let bounds = Bounds {
min_lat: row.get(2)?,
max_lat: row.get(3)?,
min_lng: row.get(4)?,
max_lng: row.get(5)?,
};
self.activity_metadata.insert(
id.clone(),
ActivityMetadata {
id: id.clone(),
sport_type,
bounds,
},
);
Ok(ActivityBoundsEntry {
activity_id: id,
bounds,
})
})?
.filter_map(|r| r.ok())
.collect();
self.spatial_index = RTree::bulk_load(entries);
Ok(())
}
/// Load route groups from database.
fn load_groups(&mut self) -> SqlResult<()> {
self.groups.clear();
// Scope the statement to release the borrow before load_route_names
{
let mut stmt = self.db.prepare(
"SELECT id, representative_id, activity_ids, sport_type,
bounds_min_lat, bounds_max_lat, bounds_min_lng, bounds_max_lng
FROM route_groups",
)?;
self.groups = stmt
.query_map([], |row| {
let activity_ids_json: String = row.get(2)?;
let activity_ids: Vec<String> =
serde_json::from_str(&activity_ids_json).unwrap_or_default();
let bounds =
if let (Some(min_lat), Some(max_lat), Some(min_lng), Some(max_lng)) = (
row.get::<_, Option<f64>>(4)?,
row.get::<_, Option<f64>>(5)?,
row.get::<_, Option<f64>>(6)?,
row.get::<_, Option<f64>>(7)?,
) {
Some(Bounds {
min_lat,
max_lat,
min_lng,
max_lng,
})
} else {
None
};
Ok(RouteGroup {
group_id: row.get(0)?,
representative_id: row.get(1)?,
activity_ids,
sport_type: row.get(3)?,
bounds,
custom_name: None, // Will be loaded separately from route_names table
// Performance stats populated by engine when metrics are available
best_time: None,
avg_time: None,
best_pace: None,
best_activity_id: None,
})
})?
.filter_map(|r| r.ok())
.collect();
}
// Load custom names and apply to groups
self.load_route_names()?;
// Load activity matches
self.load_activity_matches()?;
self.groups_dirty = false;
Ok(())
}
/// Load activity match info from the database.
fn load_activity_matches(&mut self) -> SqlResult<()> {
self.activity_matches.clear();
let mut stmt = self.db.prepare(
"SELECT route_id, activity_id, match_percentage, direction FROM activity_matches",
)?;
let matches: Vec<(String, ActivityMatchInfo)> = stmt
.query_map([], |row| {
Ok((
row.get::<_, String>(0)?,
ActivityMatchInfo {
activity_id: row.get(1)?,
match_percentage: row.get(2)?,
direction: row.get(3)?,
},
))
})?
.filter_map(|r| r.ok())
.collect();
// Group by route_id
for (route_id, match_info) in matches {
self.activity_matches
.entry(route_id)
.or_default()
.push(match_info);
}
Ok(())
}
/// Load activity metrics from the database.
fn load_activity_metrics(&mut self) -> SqlResult<()> {
self.activity_metrics.clear();
let mut stmt = self.db.prepare(
"SELECT activity_id, name, date, distance, moving_time, elapsed_time,
elevation_gain, avg_hr, avg_power, sport_type
FROM activity_metrics",
)?;
let metrics_iter = stmt.query_map([], |row| {
Ok(ActivityMetrics {
activity_id: row.get(0)?,
name: row.get(1)?,
date: row.get(2)?,
distance: row.get(3)?,
moving_time: row.get(4)?,
elapsed_time: row.get(5)?,
elevation_gain: row.get(6)?,
avg_hr: row.get::<_, Option<i32>>(7)?.map(|v| v as u16),
avg_power: row.get::<_, Option<i32>>(8)?.map(|v| v as u16),
sport_type: row.get(9)?,
})
})?;
for m in metrics_iter.flatten() {
self.activity_metrics.insert(m.activity_id.clone(), m);
}
Ok(())
}
/// Load custom route names and apply them to groups.
fn load_route_names(&mut self) -> SqlResult<()> {
let mut stmt = self
.db
.prepare("SELECT route_id, custom_name FROM route_names")?;
let names: HashMap<String, String> = stmt
.query_map([], |row| {
Ok((row.get::<_, String>(0)?, row.get::<_, String>(1)?))
})?
.filter_map(|r| r.ok())
.collect();
// Apply names to groups
for group in &mut self.groups {
if let Some(name) = names.get(&group.group_id) {
group.custom_name = Some(name.clone());
}
}
Ok(())
}
/// Load sections from database.
fn load_sections(&mut self) -> SqlResult<()> {
self.sections.clear();
// First check how many rows are in the table
let count: i64 = self
.db
.query_row("SELECT COUNT(*) FROM sections", [], |row| row.get(0))
.unwrap_or(0);
log::info!("[PersistentEngine] Loading sections: {} rows in DB", count);
let mut stmt = self.db.prepare("SELECT id, data FROM sections")?;
self.sections = stmt
.query_map([], |row| {
let id: String = row.get(0)?;
let data_blob: Vec<u8> = row.get(1)?;
let section: FrequentSection =
serde_json::from_slice(&data_blob).unwrap_or_else(|e| {
log::info!(
"[PersistentEngine] Failed to deserialize section {}: {:?}",
id,
e
);
// Return a default/empty section if deserialization fails
FrequentSection {
id: String::new(),
name: None,
sport_type: String::new(),
polyline: vec![],
representative_activity_id: String::new(),
activity_ids: vec![],
activity_portions: vec![],
route_ids: vec![],
visit_count: 0,
distance_meters: 0.0,
activity_traces: std::collections::HashMap::new(),
confidence: 0.0,
observation_count: 0,
average_spread: 0.0,
point_density: vec![],
scale: None,
// Evolution fields
version: 1,
is_user_defined: false,
created_at: None,
updated_at: None,
stability: 0.0,
}
});
Ok(section)
})?
.filter_map(|r| r.ok())
.filter(|s: &FrequentSection| !s.id.is_empty())
.collect();
log::info!(
"[PersistentEngine] Loaded {} sections into memory (from {} in DB)",
self.sections.len(),
count
);
self.sections_dirty = false;
Ok(())
}
// ========================================================================
// Activity Management
// ========================================================================
/// Add an activity with its GPS coordinates.
pub fn add_activity(
&mut self,
id: String,
coords: Vec<GpsPoint>,
sport_type: String,
) -> SqlResult<()> {
let bounds = Bounds::from_points(&coords).unwrap_or(Bounds {
min_lat: 0.0,
max_lat: 0.0,
min_lng: 0.0,
max_lng: 0.0,
});
// Create signature
let signature = RouteSignature::from_points(&id, &coords, &self.match_config);
// Store to database
self.store_activity(&id, &sport_type, &bounds)?;
self.store_gps_track(&id, &coords)?;
if let Some(sig) = &signature {
self.store_signature(&id, sig)?;
// Also cache it since we just computed it
self.signature_cache.put(id.clone(), sig.clone());
}
// Update in-memory state
let metadata = ActivityMetadata {
id: id.clone(),
sport_type,
bounds,
};
self.activity_metadata.insert(id.clone(), metadata);
// Rebuild spatial index (could be optimized with incremental insert)
self.rebuild_spatial_index();
// Mark computed results as dirty
self.groups_dirty = true;
self.sections_dirty = true;
Ok(())
}
/// Add an activity from flat coordinate buffer.
pub fn add_activity_flat(
&mut self,
id: String,
flat_coords: &[f64],
sport_type: String,
) -> SqlResult<()> {
let coords: Vec<GpsPoint> = flat_coords
.chunks_exact(2)
.map(|chunk| GpsPoint::new(chunk[0], chunk[1]))
.collect();
self.add_activity(id, coords, sport_type)
}
/// Remove an activity.
pub fn remove_activity(&mut self, id: &str) -> SqlResult<()> {
// Remove from database (cascade deletes signature and track)
self.db
.execute("DELETE FROM activities WHERE id = ?", params![id])?;
// Remove from memory
self.activity_metadata.remove(id);
self.signature_cache.pop(&id.to_string());
self.consensus_cache.clear(); // Invalidate all consensus since groups may change
self.rebuild_spatial_index();
self.groups_dirty = true;
self.sections_dirty = true;
Ok(())
}
/// Clear all data.
pub fn clear(&mut self) -> SqlResult<()> {
self.db.execute_batch(
"DELETE FROM sections;
DELETE FROM route_groups;
DELETE FROM gps_tracks;
DELETE FROM signatures;
DELETE FROM activities;",
)?;
self.activity_metadata.clear();
self.spatial_index = RTree::new();
self.signature_cache.clear();
self.consensus_cache.clear();
self.groups.clear();
self.sections.clear();
self.groups_dirty = false;
self.sections_dirty = false;
Ok(())
}
/// Remove activities older than the specified retention period.
///
/// This cleans up old activities and their associated data (GPS tracks, signatures)
/// to prevent unbounded database growth. Cascade deletes handle related data automatically.
///
/// # Arguments
/// * `retention_days` - Number of days to retain activities (0 = keep all, 30-365 for cleanup)
///
/// # Returns
/// * `Ok(deleted_count)` - Number of activities deleted
/// * `Err(...)` - Database error
///
/// # Side Effects
/// * Marks groups and sections as dirty for re-computation
/// * Reloads metadata from database
///
/// # Example
/// ```no_run
/// # use tracematch::persistence::PersistentRouteEngine;
/// # let mut engine: PersistentRouteEngine = unsafe { std::mem::zeroed() };
/// // Delete activities older than 90 days
/// let deleted = engine.cleanup_old_activities(90).unwrap();
/// println!("Deleted {} old activities", deleted);
///
/// // Keep all activities (retention_days = 0)
/// let deleted = engine.cleanup_old_activities(0).unwrap();
/// assert_eq!(deleted, 0);
/// ```
pub fn cleanup_old_activities(&mut self, retention_days: u32) -> SqlResult<u32> {
// If retention_days is 0, keep all activities
if retention_days == 0 {
log::info!("[PersistentEngine] Cleanup skipped: retention period is 0 (keep all)");
return Ok(0);
}
// Calculate cutoff timestamp (current time - retention period)
let cutoff_seconds = retention_days as i64 * 24 * 60 * 60;
// Delete old activities (cascade will handle signatures, GPS tracks, matches)
let deleted = self.db.execute(
"DELETE FROM activities WHERE created_at < (strftime('%s', 'now') - ?)",
params![cutoff_seconds],
)?;
// If any activities were deleted, reload metadata and mark for re-computation
if deleted > 0 {
// Clear affected caches
self.signature_cache.clear();
self.consensus_cache.clear();
// Reload metadata from database
self.load_metadata()?;
// Mark groups and sections as dirty since activities changed
self.groups_dirty = true;
self.sections_dirty = true;
log::info!(
"[PersistentEngine] Cleaned up {} activities older than {} days",
deleted,
retention_days
);
}
Ok(deleted as u32)
}
/// Force re-computation of route groups and sections.
///
/// This should be called when historical activities are added (e.g., cache expansion)
/// to improve route quality with the new data. The next call to `get_groups()` or
/// `get_sections()` will trigger re-computation with the expanded dataset.
///
/// # Example
/// ```no_run
/// # use tracematch::persistence::PersistentRouteEngine;
/// # let mut engine: PersistentRouteEngine = unsafe { std::mem::zeroed() };
/// // User expanded cache from 90 days to 1 year
/// engine.mark_for_recomputation();
/// // Next access to groups/sections will re-compute with improved data
/// let groups = engine.get_groups();
/// ```
pub fn mark_for_recomputation(&mut self) {
if !self.groups_dirty && !self.sections_dirty {
self.groups_dirty = true;
self.sections_dirty = true;
log::info!("[PersistentEngine] Marked for re-computation (cache expanded)");
}
}
// ========================================================================
// Database Storage
// ========================================================================
fn store_activity(&self, id: &str, sport_type: &str, bounds: &Bounds) -> SqlResult<()> {
self.db.execute(
"INSERT OR REPLACE INTO activities (id, sport_type, min_lat, max_lat, min_lng, max_lng)
VALUES (?, ?, ?, ?, ?, ?)",
params![
id,
sport_type,
bounds.min_lat,
bounds.max_lat,
bounds.min_lng,
bounds.max_lng
],
)?;
Ok(())
}
fn store_gps_track(&self, id: &str, coords: &[GpsPoint]) -> SqlResult<()> {
let track_data = rmp_serde::to_vec(coords).unwrap_or_default();
self.db.execute(
"INSERT OR REPLACE INTO gps_tracks (activity_id, track_data, point_count)
VALUES (?, ?, ?)",
params![id, track_data, coords.len() as i64],
)?;
Ok(())
}
fn store_signature(&self, id: &str, sig: &RouteSignature) -> SqlResult<()> {
let points_blob = rmp_serde::to_vec(&sig.points).unwrap_or_default();
self.db.execute(
"INSERT OR REPLACE INTO signatures (activity_id, points, start_point_lat, start_point_lng, end_point_lat, end_point_lng, total_distance, point_count)
VALUES (?, ?, ?, ?, ?, ?, ?, ?)",
params![
id,
points_blob,
sig.start_point.latitude,
sig.start_point.longitude,
sig.end_point.latitude,
sig.end_point.longitude,
sig.total_distance,
sig.points.len() as i64
],
)?;
Ok(())
}
fn rebuild_spatial_index(&mut self) {
let entries: Vec<ActivityBoundsEntry> = self
.activity_metadata
.values()
.map(|m| ActivityBoundsEntry {
activity_id: m.id.clone(),
bounds: m.bounds,
})
.collect();
self.spatial_index = RTree::bulk_load(entries);
}
// ========================================================================
// Queries
// ========================================================================
/// Get activity count.
pub fn activity_count(&self) -> usize {
self.activity_metadata.len()
}
/// Get all activity bounds info as JSON for map display.
/// Returns array of { id, bounds, activityType, distance }.
pub fn get_all_activity_bounds_json(&self) -> String {
#[derive(serde::Serialize)]
#[serde(rename_all = "camelCase")]
struct BoundsInfo {
id: String,
bounds: [[f64; 2]; 2], // [[minLat, minLng], [maxLat, maxLng]]
activity_type: String,
distance: f64,
}
let infos: Vec<BoundsInfo> = self
.activity_metadata
.values()
.map(|m| {
// Get distance from metrics if available, otherwise 0
let distance = self
.activity_metrics
.get(&m.id)
.map(|metrics| metrics.distance)
.unwrap_or(0.0);
BoundsInfo {
id: m.id.clone(),
bounds: [
[m.bounds.min_lat, m.bounds.min_lng],
[m.bounds.max_lat, m.bounds.max_lng],
],
activity_type: m.sport_type.clone(),
distance,
}
})
.collect();
serde_json::to_string(&infos).unwrap_or_else(|_| "[]".to_string())
}
/// Get all activity IDs.
pub fn get_activity_ids(&self) -> Vec<String> {
self.activity_metadata.keys().cloned().collect()
}
/// Check if an activity exists.
pub fn has_activity(&self, id: &str) -> bool {
self.activity_metadata.contains_key(id)
}
/// Query activities within a viewport.
pub fn query_viewport(&self, bounds: &Bounds) -> Vec<String> {
let search_bounds = AABB::from_corners(
[bounds.min_lng, bounds.min_lat],
[bounds.max_lng, bounds.max_lat],
);
self.spatial_index
.locate_in_envelope_intersecting(&search_bounds)
.map(|b| b.activity_id.clone())
.collect()
}
/// Get a signature, loading from DB if not cached.
pub fn get_signature(&mut self, id: &str) -> Option<RouteSignature> {
// Check cache first
if let Some(sig) = self.signature_cache.get(&id.to_string()) {
return Some(sig.clone());
}
// Load from database
let sig = self.load_signature_from_db(id)?;
self.signature_cache.put(id.to_string(), sig.clone());
Some(sig)
}
fn load_signature_from_db(&self, id: &str) -> Option<RouteSignature> {
let mut stmt = self
.db
.prepare(
"SELECT points, start_point_lat, start_point_lng, end_point_lat, end_point_lng, total_distance
FROM signatures WHERE activity_id = ?",
)
.ok()?;
stmt.query_row(params![id], |row| {
let points_blob: Vec<u8> = row.get(0)?;
let points: Vec<GpsPoint> = rmp_serde::from_slice(&points_blob).unwrap_or_default();
let start_point = GpsPoint::new(row.get(1)?, row.get(2)?);
let end_point = GpsPoint::new(row.get(3)?, row.get(4)?);
let total_distance: f64 = row.get(5)?;
// Compute bounds and center from points
let bounds = Bounds::from_points(&points).unwrap_or(Bounds {
min_lat: 0.0,
max_lat: 0.0,
min_lng: 0.0,
max_lng: 0.0,
});
let center = bounds.center();
Ok(RouteSignature {
activity_id: id.to_string(),
points,
total_distance,
start_point,
end_point,
bounds,
center,
})
})
.ok()
}
/// Get GPS track from database (on-demand, never cached).
pub fn get_gps_track(&self, id: &str) -> Option<Vec<GpsPoint>> {
let mut stmt = self
.db
.prepare("SELECT track_data FROM gps_tracks WHERE activity_id = ?")
.ok()?;
stmt.query_row(params![id], |row| {
let track_blob: Vec<u8> = row.get(0)?;
Ok(rmp_serde::from_slice(&track_blob).unwrap_or_default())
})
.ok()
}
// ========================================================================
// Time Streams (for section performance calculations)
// ========================================================================
/// Store time stream to database.
fn store_time_stream(&self, activity_id: &str, times: &[u32]) -> SqlResult<()> {
let times_blob = rmp_serde::to_vec(times).unwrap_or_default();
self.db.execute(
"INSERT OR REPLACE INTO time_streams (activity_id, times, point_count)
VALUES (?, ?, ?)",
params![activity_id, times_blob, times.len() as i64],
)?;
Ok(())
}
/// Load time stream from database.
fn load_time_stream(&self, activity_id: &str) -> Option<Vec<u32>> {
let mut stmt = self
.db
.prepare("SELECT times FROM time_streams WHERE activity_id = ?")
.ok()?;
stmt.query_row(params![activity_id], |row| {
let times_blob: Vec<u8> = row.get(0)?;
Ok(rmp_serde::from_slice(×_blob).unwrap_or_default())
})
.ok()
}
/// Check which activities are missing time streams (not in memory or SQLite).
/// Returns list of activity IDs that need to be fetched from the API.
pub fn get_activities_missing_time_streams(&self, activity_ids: &[String]) -> Vec<String> {
if activity_ids.is_empty() {
return Vec::new();
}
// First filter out any that are already in memory
let not_in_memory: Vec<&String> = activity_ids
.iter()
.filter(|id| !self.time_streams.contains_key(*id))
.collect();
if not_in_memory.is_empty() {
return Vec::new();
}
// Check SQLite for the remaining ones
let placeholders: Vec<&str> = not_in_memory.iter().map(|_| "?").collect();
let query = format!(
"SELECT activity_id FROM time_streams WHERE activity_id IN ({})",
placeholders.join(",")
);
let mut stmt = match self.db.prepare(&query) {
Ok(s) => s,
Err(_) => {
// On error, return all that aren't in memory
return not_in_memory.into_iter().cloned().collect();
}
};
// Bind all activity IDs as parameters
let params: Vec<&dyn rusqlite::ToSql> = not_in_memory
.iter()
.map(|s| *s as &dyn rusqlite::ToSql)
.collect();
let cached_in_sqlite: std::collections::HashSet<String> = stmt
.query_map(params.as_slice(), |row| row.get::<_, String>(0))
.map(|rows| rows.filter_map(|r| r.ok()).collect())
.unwrap_or_default();
// Return IDs that are NOT in memory AND NOT in SQLite
not_in_memory
.into_iter()
.filter(|id| !cached_in_sqlite.contains(*id))
.cloned()
.collect()
}
/// Check if a specific activity has a time stream (in memory or SQLite).
pub fn has_time_stream(&self, activity_id: &str) -> bool {
// First check memory cache
if self.time_streams.contains_key(activity_id) {
return true;
}
// Then check SQLite
let mut stmt = match self
.db
.prepare("SELECT 1 FROM time_streams WHERE activity_id = ? LIMIT 1")
{
Ok(s) => s,
Err(_) => return false,
};
stmt.exists(params![activity_id]).unwrap_or(false)
}
/// Ensure time stream is loaded into memory (from SQLite if needed).
/// Returns true if the time stream is available.
fn ensure_time_stream_loaded(&mut self, activity_id: &str) -> bool {
// Already in memory?
if self.time_streams.contains_key(activity_id) {
return true;
}
// Try to load from SQLite
if let Some(times) = self.load_time_stream(activity_id) {
self.time_streams.insert(activity_id.to_string(), times);
return true;
}
false
}
// ========================================================================
// Route Groups
// ========================================================================
/// Get route groups, recomputing if dirty.
pub fn get_groups(&mut self) -> &[RouteGroup] {
if self.groups_dirty {
self.recompute_groups();
}
&self.groups
}
/// Recompute route groups.
fn recompute_groups(&mut self) {
// Load all signatures (this will use cache where possible)
let activity_ids: Vec<String> = self.activity_metadata.keys().cloned().collect();
let mut signatures = Vec::with_capacity(activity_ids.len());
for id in &activity_ids {
if let Some(sig) = self.get_signature(id) {
signatures.push(sig);
}
}
// Group signatures and capture match info
#[cfg(feature = "parallel")]
let result = crate::group_signatures_parallel_with_matches(&signatures, &self.match_config);
#[cfg(not(feature = "parallel"))]
let result = crate::group_signatures_with_matches(&signatures, &self.match_config);
self.groups = result.groups;
self.activity_matches = result.activity_matches;
// Populate sport_type for each group from the representative activity
for group in &mut self.groups {
if let Some(meta) = self.activity_metadata.get(&group.representative_id) {
group.sport_type = if meta.sport_type.is_empty() {
"Ride".to_string() // Default for empty sport type
} else {
meta.sport_type.clone()
};
} else {
// Representative activity not found - use default
group.sport_type = "Ride".to_string();
}
}
// Save to database
self.save_groups().ok();
self.groups_dirty = false;
}
fn save_groups(&self) -> SqlResult<()> {
// Clear existing groups and matches
self.db.execute("DELETE FROM route_groups", [])?;
self.db.execute("DELETE FROM activity_matches", [])?;
// Insert groups
let mut stmt = self.db.prepare(
"INSERT INTO route_groups (id, representative_id, activity_ids, sport_type,
bounds_min_lat, bounds_max_lat, bounds_min_lng, bounds_max_lng)
VALUES (?, ?, ?, ?, ?, ?, ?, ?)",
)?;
for group in &self.groups {
let activity_ids_json = serde_json::to_string(&group.activity_ids).unwrap_or_default();
stmt.execute(params![
group.group_id,
group.representative_id,
activity_ids_json,
group.sport_type,
group.bounds.map(|b| b.min_lat),
group.bounds.map(|b| b.max_lat),
group.bounds.map(|b| b.min_lng),
group.bounds.map(|b| b.max_lng),
])?;
}
// Insert activity matches
let mut match_stmt = self.db.prepare(
"INSERT INTO activity_matches (route_id, activity_id, match_percentage, direction)
VALUES (?, ?, ?, ?)",
)?;
for (route_id, matches) in &self.activity_matches {
for m in matches {
match_stmt.execute(params![
route_id,
m.activity_id,
m.match_percentage,
m.direction,
])?;
}
}
Ok(())
}
/// Get groups as JSON string.
pub fn get_groups_json(&mut self) -> String {
let groups = self.get_groups();
serde_json::to_string(groups).unwrap_or_else(|_| "[]".to_string())
}
// ========================================================================
// Sections (Background Detection)
// ========================================================================
/// Get sections (must call detect_sections first or load from DB).
pub fn get_sections(&self) -> &[FrequentSection] {
&self.sections
}
/// Get sections as JSON string.
pub fn get_sections_json(&self) -> String {
log::info!(
"[PersistentEngine] get_sections_json called, {} sections in memory",
self.sections.len()
);
serde_json::to_string(&self.sections).unwrap_or_else(|_| "[]".to_string())
}
/// Get section count directly from SQLite (no data loading).
/// This is O(1) and doesn't require loading sections into memory.
pub fn get_section_count(&self) -> u32 {
self.db
.query_row("SELECT COUNT(*) FROM sections", [], |row| row.get(0))
.unwrap_or(0)
}
/// Get group count directly from SQLite (no data loading).
/// This is O(1) and doesn't require loading groups into memory.
pub fn get_group_count(&self) -> u32 {
self.db
.query_row("SELECT COUNT(*) FROM route_groups", [], |row| row.get(0))
.unwrap_or(0)
}
/// Get lightweight section summaries without polyline data.
/// Queries SQLite and extracts only summary fields, skipping heavy data like
/// polylines, activityTraces, and pointDensity.
pub fn get_section_summaries(&self) -> Vec<SectionSummary> {
let mut stmt = match self.db.prepare("SELECT id, data FROM sections") {
Ok(s) => s,
Err(e) => {
log::error!(
"[PersistentEngine] Failed to prepare section summaries query: {}",
e
);
return Vec::new();
}
};
let results: Vec<SectionSummary> = stmt
.query_map([], |row| {
let id: String = row.get(0)?;
let data_blob: Vec<u8> = row.get(1)?;
// Parse JSON to extract only summary fields
let full: serde_json::Value = match serde_json::from_slice(&data_blob) {
Ok(v) => v,
Err(_) => return Ok(None),
};
// Extract activity count from activityIds array length
let activity_count = full["activityIds"]
.as_array()
.map(|a| a.len() as u32)
.unwrap_or(0);
// Extract bounds from polyline if present (first and last points)
let bounds = full["polyline"].as_array().and_then(|points| {
if points.len() < 2 {
return None;
}
let mut min_lat = f64::MAX;
let mut max_lat = f64::MIN;
let mut min_lng = f64::MAX;
let mut max_lng = f64::MIN;
for point in points {
if let (Some(lat), Some(lng)) =
(point["latitude"].as_f64(), point["longitude"].as_f64())
{
min_lat = min_lat.min(lat);
max_lat = max_lat.max(lat);
min_lng = min_lng.min(lng);
max_lng = max_lng.max(lng);
}
}
if min_lat < f64::MAX {
Some(Bounds {
min_lat,
max_lat,
min_lng,
max_lng,
})
} else {
None
}
});
Ok(Some(SectionSummary {
id,
name: full["name"].as_str().map(String::from),
sport_type: full["sportType"].as_str().unwrap_or("").to_string(),
visit_count: full["visitCount"].as_u64().unwrap_or(0) as u32,
distance_meters: full["distanceMeters"].as_f64().unwrap_or(0.0),
activity_count,
confidence: full["confidence"].as_f64().unwrap_or(0.0),
scale: full["scale"].as_str().map(String::from),
bounds,
}))
})
.ok()
.map(|iter| iter.filter_map(|r| r.ok()).flatten().collect())
.unwrap_or_default();
log::info!(
"[PersistentEngine] get_section_summaries returned {} summaries",
results.len()
);
results
}
/// Get section summaries filtered by sport type.
pub fn get_section_summaries_for_sport(&self, sport_type: &str) -> Vec<SectionSummary> {
self.get_section_summaries()
.into_iter()
.filter(|s| s.sport_type == sport_type)
.collect()
}
/// Get lightweight group summaries without full activity ID lists.
pub fn get_group_summaries(&self) -> Vec<GroupSummary> {
let mut stmt = match self.db.prepare(
"SELECT id, representative_id, sport_type, activity_ids,
bounds_min_lat, bounds_max_lat, bounds_min_lng, bounds_max_lng
FROM route_groups",
) {
Ok(s) => s,
Err(e) => {
log::error!(
"[PersistentEngine] Failed to prepare group summaries query: {}",
e
);
return Vec::new();
}
};
// Load custom names
let custom_names = self.get_all_route_names();
let results: Vec<GroupSummary> = stmt
.query_map([], |row| {
let group_id: String = row.get(0)?;
let representative_id: String = row.get(1)?;
let sport_type: String = row.get(2)?;
let activity_ids_json: String = row.get(3)?;
// Parse activity_ids just to get count
let activity_count: u32 = serde_json::from_str::<Vec<String>>(&activity_ids_json)
.map(|ids| ids.len() as u32)
.unwrap_or(0);
// Build bounds if present
let bounds = if let (Some(min_lat), Some(max_lat), Some(min_lng), Some(max_lng)) = (
row.get::<_, Option<f64>>(4)?,
row.get::<_, Option<f64>>(5)?,
row.get::<_, Option<f64>>(6)?,
row.get::<_, Option<f64>>(7)?,
) {
Some(Bounds {
min_lat,
max_lat,
min_lng,
max_lng,
})
} else {
None
};
// Look up custom name
let custom_name = custom_names.get(&group_id).cloned();
Ok(GroupSummary {
group_id,
representative_id,
sport_type,
activity_count,
custom_name,
bounds,
})
})
.ok()
.map(|iter| iter.filter_map(|r| r.ok()).collect())
.unwrap_or_default();
log::info!(
"[PersistentEngine] get_group_summaries returned {} summaries",
results.len()
);
results
}
/// Get a single section by ID with LRU caching.
/// Returns the full FrequentSection with polyline data.
/// Uses LRU cache to avoid repeated SQLite queries for hot sections.
pub fn get_section_by_id(&mut self, section_id: &str) -> Option<FrequentSection> {
// Check LRU cache first
if let Some(section) = self.section_cache.get(§ion_id.to_string()) {
log::debug!(
"[PersistentEngine] get_section_by_id cache hit for {}",
section_id
);
return Some(section.clone());
}
// Query SQLite
let result: Option<FrequentSection> = self
.db
.query_row(
"SELECT data FROM sections WHERE id = ?",
params![section_id],
|row| {
let data_blob: Vec<u8> = row.get(0)?;
Ok(serde_json::from_slice(&data_blob).ok())
},
)
.ok()
.flatten();
// Cache for future access
if let Some(ref section) = result {
self.section_cache
.put(section_id.to_string(), section.clone());
log::info!(
"[PersistentEngine] get_section_by_id found and cached section {}",
section_id
);
} else {
log::info!(
"[PersistentEngine] get_section_by_id: section {} not found",
section_id
);
}
result
}
/// Get a single group by ID with LRU caching.
/// Returns the full RouteGroup with activity IDs.
/// Uses LRU cache to avoid repeated SQLite queries for hot groups.
pub fn get_group_by_id(&mut self, group_id: &str) -> Option<RouteGroup> {
// Check LRU cache first
if let Some(group) = self.group_cache.get(&group_id.to_string()) {
log::debug!(
"[PersistentEngine] get_group_by_id cache hit for {}",
group_id
);
return Some(group.clone());
}
let custom_names = self.get_all_route_names();
let result: Option<RouteGroup> = self
.db
.query_row(
"SELECT id, representative_id, activity_ids, sport_type,
bounds_min_lat, bounds_max_lat, bounds_min_lng, bounds_max_lng
FROM route_groups WHERE id = ?",
params![group_id],
|row| {
let id: String = row.get(0)?;
let representative_id: String = row.get(1)?;
let activity_ids_json: String = row.get(2)?;
let sport_type: String = row.get(3)?;
let activity_ids: Vec<String> =
serde_json::from_str(&activity_ids_json).unwrap_or_default();
let bounds =
if let (Some(min_lat), Some(max_lat), Some(min_lng), Some(max_lng)) = (
row.get::<_, Option<f64>>(4)?,
row.get::<_, Option<f64>>(5)?,
row.get::<_, Option<f64>>(6)?,
row.get::<_, Option<f64>>(7)?,
) {
Some(Bounds {
min_lat,
max_lat,
min_lng,
max_lng,
})
} else {
None
};
let custom_name = custom_names.get(&id).cloned();
Ok(RouteGroup {
group_id: id,
representative_id,
activity_ids,
sport_type,
bounds,
custom_name,
best_time: None,
avg_time: None,
best_pace: None,
best_activity_id: None,
})
},
)
.ok();
// Cache for future access
if let Some(ref group) = result {
self.group_cache.put(group_id.to_string(), group.clone());
log::info!(
"[PersistentEngine] get_group_by_id found and cached group {}",
group_id
);
} else {
log::info!(
"[PersistentEngine] get_group_by_id: group {} not found",
group_id
);
}
result
}
/// Get section polyline only (flat coordinates for map rendering).
/// Returns [lat1, lng1, lat2, lng2, ...] or empty vec if not found.
pub fn get_section_polyline(&self, section_id: &str) -> Vec<f64> {
let result: Option<Vec<f64>> = self
.db
.query_row(
"SELECT data FROM sections WHERE id = ?",
params![section_id],
|row| {
let data_blob: Vec<u8> = row.get(0)?;
let full: serde_json::Value = match serde_json::from_slice(&data_blob) {
Ok(v) => v,
Err(_) => return Ok(None),
};
let coords: Vec<f64> = full["polyline"]
.as_array()
.map(|points| {
points
.iter()
.flat_map(|p| {
let lat = p["latitude"].as_f64().unwrap_or(0.0);
let lng = p["longitude"].as_f64().unwrap_or(0.0);
vec![lat, lng]
})
.collect()
})
.unwrap_or_default();
Ok(Some(coords))
},
)
.ok()
.flatten();
result.unwrap_or_default()
}
/// Start section detection in a background thread.
///
/// Returns a handle that can be polled for completion and progress.
pub fn detect_sections_background(
&mut self,
sport_filter: Option<String>,
) -> SectionDetectionHandle {
let (tx, rx) = mpsc::channel();
let db_path = self.db_path.clone();
let section_config = self.section_config.clone();
// Create shared progress tracker
let progress = SectionDetectionProgress::new();
let progress_clone = progress.clone();
// Get groups first (may trigger recomputation)
let groups = self.get_groups().to_vec();
// Build sport type map
let sport_map: HashMap<String, String> = self
.activity_metadata
.values()
.map(|m| (m.id.clone(), m.sport_type.clone()))
.collect();
// Filter activity IDs by sport
let activity_ids: Vec<String> = if let Some(ref sport) = sport_filter {
self.activity_metadata
.values()
.filter(|m| &m.sport_type == sport)
.map(|m| m.id.clone())
.collect()
} else {
self.activity_metadata.keys().cloned().collect()
};
// Set initial loading phase
progress.set_phase("loading", activity_ids.len() as u32);
thread::spawn(move || {
log::info!(
"[SectionDetection] Background thread started with {} activity IDs",
activity_ids.len()
);
// Open separate connection for background thread
let conn = match Connection::open(&db_path) {
Ok(c) => c,
Err(e) => {
log::info!("[SectionDetection] Failed to open DB: {:?}", e);
tx.send(Vec::new()).ok();
return;
}
};
// Set loading phase with total count
progress_clone.set_phase("loading", activity_ids.len() as u32);
// Load GPS tracks from DB with progress updates
let mut tracks_loaded = 0;
let mut tracks_empty = 0;
let tracks: Vec<(String, Vec<GpsPoint>)> = activity_ids
.iter()
.filter_map(|id| {
progress_clone.increment();
let mut stmt = conn
.prepare("SELECT track_data FROM gps_tracks WHERE activity_id = ?")
.ok()?;
let track: Vec<GpsPoint> = stmt
.query_row(params![id], |row| {
let blob: Vec<u8> = row.get(0)?;
Ok(rmp_serde::from_slice(&blob).unwrap_or_default())
})
.ok()?;
if track.is_empty() {
tracks_empty += 1;
return None; // Skip empty tracks
}
tracks_loaded += 1;
Some((id.clone(), track))
})
.collect();
log::info!(
"[SectionDetection] Loaded {} tracks ({} empty/missing) from {} activity IDs",
tracks_loaded,
tracks_empty,
activity_ids.len()
);
if tracks.is_empty() {
log::info!("[SectionDetection] No tracks loaded, skipping detection");
progress_clone.set_phase("complete", 0);
tx.send(Vec::new()).ok();
return;
}
// Log track point counts for debugging
let total_points: usize = tracks.iter().map(|(_, t)| t.len()).sum();
log::info!(
"[SectionDetection] Total GPS points: {}, avg per track: {}",
total_points,
total_points / tracks.len().max(1)
);
// Detect sections using multi-scale algorithm with progress
let result = crate::sections::detect_sections_multiscale_with_progress(
&tracks,
&sport_map,
&groups,
§ion_config,
&progress_clone,
);
log::info!(
"[SectionDetection] Detection complete: {} sections, {} potentials",
result.sections.len(),
result.potentials.len()
);
progress_clone.set_phase("complete", 0);
tx.send(result.sections).ok();
});
SectionDetectionHandle {
receiver: rx,
progress,
}
}
/// Apply completed section detection results.
pub fn apply_sections(&mut self, sections: Vec<FrequentSection>) -> SqlResult<()> {
self.sections = sections;
self.save_sections()?;
self.sections_dirty = false;
Ok(())
}
fn save_sections(&self) -> SqlResult<()> {
// Clear existing
self.db.execute("DELETE FROM sections", [])?;
// Insert new (serialize entire section as JSON)
let mut stmt = self
.db
.prepare("INSERT INTO sections (id, data) VALUES (?, ?)")?;
for section in &self.sections {
let data_blob = serde_json::to_vec(section).unwrap_or_default();
stmt.execute(params![section.id, data_blob])?;
}
Ok(())
}
// ========================================================================
// Consensus Routes
// ========================================================================
/// Get consensus route for a group, with caching.
pub fn get_consensus_route(&mut self, group_id: &str) -> Option<Vec<GpsPoint>> {
// Check cache
if let Some(consensus) = self.consensus_cache.get(&group_id.to_string()) {
return Some(consensus.clone());
}
// Find the group and extract activity IDs (to release the mutable borrow)
let activity_ids = {
let groups = self.get_groups();
let group = groups.iter().find(|g| g.group_id == group_id)?;
if group.activity_ids.is_empty() {
return None;
}
group.activity_ids.clone()
};
// Get tracks for this group (now we can borrow self again)
let tracks: Vec<Vec<GpsPoint>> = activity_ids
.iter()
.filter_map(|id| self.get_gps_track(id))
.collect();
if tracks.is_empty() {
return None;
}
// Compute medoid (most representative track)
let consensus = self.compute_medoid_track(&tracks);
// Cache result
self.consensus_cache
.put(group_id.to_string(), consensus.clone());
Some(consensus)
}
fn compute_medoid_track(&self, tracks: &[Vec<GpsPoint>]) -> Vec<GpsPoint> {
if tracks.is_empty() {
return vec![];
}
if tracks.len() == 1 {
return tracks[0].clone();
}
// Find track with minimum total distance to all others
let mut best_idx = 0;
let mut best_total_dist = f64::MAX;
for (i, track_i) in tracks.iter().enumerate() {
let total_dist: f64 = tracks
.iter()
.enumerate()
.filter(|(j, _)| *j != i)
.map(|(_, track_j)| self.track_distance(track_i, track_j))
.sum();
if total_dist < best_total_dist {
best_total_dist = total_dist;
best_idx = i;
}
}
tracks[best_idx].clone()
}
fn track_distance(&self, track1: &[GpsPoint], track2: &[GpsPoint]) -> f64 {
if track1.is_empty() || track2.is_empty() {
return f64::MAX;
}
let sample_size = 20.min(track1.len().min(track2.len()));
let step1 = track1.len() / sample_size;
let step2 = track2.len() / sample_size;
let sampled1: Vec<&GpsPoint> = (0..sample_size).map(|i| &track1[i * step1]).collect();
let sampled2: Vec<&GpsPoint> = (0..sample_size).map(|i| &track2[i * step2]).collect();
sampled1
.iter()
.map(|p1| {
sampled2
.iter()
.map(|p2| geo_utils::haversine_distance(p1, p2))
.fold(f64::MAX, f64::min)
})
.sum::<f64>()
/ sample_size as f64
}
// ========================================================================
// Route Names
// ========================================================================
/// Set a custom name for a route.
/// Pass None to clear the custom name.
pub fn set_route_name(&mut self, route_id: &str, name: Option<&str>) -> SqlResult<()> {
match name {
Some(n) => {
self.db.execute(
"INSERT OR REPLACE INTO route_names (route_id, custom_name) VALUES (?, ?)",
params![route_id, n],
)?;
// Update in-memory group
if let Some(group) = self.groups.iter_mut().find(|g| g.group_id == route_id) {
group.custom_name = Some(n.to_string());
}
}
None => {
self.db.execute(
"DELETE FROM route_names WHERE route_id = ?",
params![route_id],
)?;
// Update in-memory group
if let Some(group) = self.groups.iter_mut().find(|g| g.group_id == route_id) {
group.custom_name = None;
}
}
}
Ok(())
}
/// Get the custom name for a route (if any).
pub fn get_route_name(&self, route_id: &str) -> Option<String> {
// Check in-memory groups first
self.groups
.iter()
.find(|g| g.group_id == route_id)
.and_then(|g| g.custom_name.clone())
}
/// Get all custom route names.
pub fn get_all_route_names(&self) -> HashMap<String, String> {
self.groups
.iter()
.filter_map(|g| {
g.custom_name
.as_ref()
.map(|n| (g.group_id.clone(), n.clone()))
})
.collect()
}
// ========================================================================
// Section Names
// ========================================================================
/// Set a custom name for a section.
/// Pass None to clear the custom name.
pub fn set_section_name(&mut self, section_id: &str, name: Option<&str>) -> SqlResult<()> {
match name {
Some(n) => {
self.db.execute(
"INSERT OR REPLACE INTO section_names (section_id, custom_name) VALUES (?, ?)",
params![section_id, n],
)?;
// Update in-memory section
if let Some(section) = self.sections.iter_mut().find(|s| s.id == section_id) {
section.name = Some(n.to_string());
}
}
None => {
self.db.execute(
"DELETE FROM section_names WHERE section_id = ?",
params![section_id],
)?;
// Update in-memory section
if let Some(section) = self.sections.iter_mut().find(|s| s.id == section_id) {
section.name = None;
}
}
}
Ok(())
}
/// Get the custom name for a section (if any).
pub fn get_section_name(&self, section_id: &str) -> Option<String> {
// Check in-memory sections first
self.sections
.iter()
.find(|s| s.id == section_id)
.and_then(|s| s.name.clone())
}
/// Get all custom section names.
pub fn get_all_section_names(&self) -> HashMap<String, String> {
self.sections
.iter()
.filter_map(|s| s.name.as_ref().map(|n| (s.id.clone(), n.clone())))
.collect()
}
// ========================================================================
// Custom Sections CRUD
// ========================================================================
/// Add a custom section.
pub fn add_custom_section(&mut self, section: &crate::CustomSection) -> SqlResult<bool> {
let polyline_json =
serde_json::to_string(§ion.polyline).unwrap_or_else(|_| "[]".to_string());
self.db.execute(
"INSERT OR REPLACE INTO custom_sections
(id, name, polyline_json, source_activity_id, start_index, end_index,
sport_type, distance_meters, created_at)
VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)",
params![
§ion.id,
§ion.name,
&polyline_json,
§ion.source_activity_id,
section.start_index,
section.end_index,
§ion.sport_type,
section.distance_meters,
§ion.created_at,
],
)?;
// Also set the section name in the section_names table
self.db.execute(
"INSERT OR REPLACE INTO section_names (section_id, custom_name) VALUES (?, ?)",
params![§ion.id, §ion.name],
)?;
Ok(true)
}
/// Remove a custom section.
pub fn remove_custom_section(&mut self, section_id: &str) -> SqlResult<bool> {
// Delete matches first (FK will cascade but explicit is clearer)
self.db.execute(
"DELETE FROM custom_section_matches WHERE section_id = ?",
params![section_id],
)?;
// Delete the section
let rows = self.db.execute(
"DELETE FROM custom_sections WHERE id = ?",
params![section_id],
)?;
// Also remove from section_names
self.db.execute(
"DELETE FROM section_names WHERE section_id = ?",
params![section_id],
)?;
Ok(rows > 0)
}
/// Get all custom sections.
pub fn get_custom_sections(&self) -> Vec<crate::CustomSection> {
let mut stmt = match self.db.prepare(
"SELECT id, name, polyline_json, source_activity_id, start_index, end_index,
sport_type, distance_meters, created_at
FROM custom_sections",
) {
Ok(s) => s,
Err(_) => return Vec::new(),
};
let result: Vec<crate::CustomSection> = stmt
.query_map([], |row| {
let polyline_json: String = row.get(2)?;
let polyline: Vec<crate::GpsPoint> =
serde_json::from_str(&polyline_json).unwrap_or_default();
Ok(crate::CustomSection {
id: row.get(0)?,
name: row.get(1)?,
polyline,
source_activity_id: row.get(3)?,
start_index: row.get(4)?,
end_index: row.get(5)?,
sport_type: row.get(6)?,
distance_meters: row.get(7)?,
created_at: row.get(8)?,
})
})
.ok()
.map(|iter| iter.filter_map(|r| r.ok()).collect())
.unwrap_or_default();
result
}
/// Get a custom section by ID.
pub fn get_custom_section(&self, section_id: &str) -> Option<crate::CustomSection> {
let mut stmt = match self.db.prepare(
"SELECT id, name, polyline_json, source_activity_id, start_index, end_index,
sport_type, distance_meters, created_at
FROM custom_sections WHERE id = ?",
) {
Ok(s) => s,
Err(_) => return None,
};
stmt.query_row(params![section_id], |row| {
let polyline_json: String = row.get(2)?;
let polyline: Vec<crate::GpsPoint> =
serde_json::from_str(&polyline_json).unwrap_or_default();
Ok(crate::CustomSection {
id: row.get(0)?,
name: row.get(1)?,
polyline,
source_activity_id: row.get(3)?,
start_index: row.get(4)?,
end_index: row.get(5)?,
sport_type: row.get(6)?,
distance_meters: row.get(7)?,
created_at: row.get(8)?,
})
})
.ok()
}
/// Get all custom sections as JSON.
pub fn get_custom_sections_json(&self) -> String {
serde_json::to_string(&self.get_custom_sections()).unwrap_or_else(|_| "[]".to_string())
}
/// Add a match for a custom section.
pub fn add_custom_section_match(
&mut self,
section_id: &str,
match_info: &crate::CustomSectionMatch,
) -> SqlResult<()> {
self.db.execute(
"INSERT OR REPLACE INTO custom_section_matches
(section_id, activity_id, start_index, end_index, direction, distance_meters)
VALUES (?, ?, ?, ?, ?, ?)",
params![
section_id,
&match_info.activity_id,
match_info.start_index,
match_info.end_index,
&match_info.direction,
match_info.distance_meters,
],
)?;
Ok(())
}
/// Get matches for a custom section.
pub fn get_custom_section_matches(&self, section_id: &str) -> Vec<crate::CustomSectionMatch> {
let mut stmt = match self.db.prepare(
"SELECT activity_id, start_index, end_index, direction, distance_meters
FROM custom_section_matches WHERE section_id = ?",
) {
Ok(s) => s,
Err(_) => return Vec::new(),
};
stmt.query_map(params![section_id], |row| {
Ok(crate::CustomSectionMatch {
activity_id: row.get(0)?,
start_index: row.get(1)?,
end_index: row.get(2)?,
direction: row.get(3)?,
distance_meters: row.get(4)?,
})
})
.ok()
.map(|iter| iter.filter_map(|r| r.ok()).collect())
.unwrap_or_default()
}
// ========================================================================
// Custom Section Matching
// ========================================================================
/// Match a custom section against an activity's GPS track.
/// Returns match info if the activity traverses the section, None otherwise.
pub fn match_custom_section(
&self,
section: &crate::CustomSection,
activity_id: &str,
track: &[GpsPoint],
config: &crate::CustomSectionMatchConfig,
) -> Option<crate::CustomSectionMatch> {
if track.len() < 2 || section.polyline.len() < 2 {
return None;
}
let section_start = §ion.polyline[0];
let section_end = §ion.polyline[section.polyline.len() - 1];
// Try matching in "same" direction first
if let Some(m) = self.try_match_direction(
section,
activity_id,
track,
section_start,
section_end,
"same",
config,
) {
return Some(m);
}
// Try matching in "reverse" direction
self.try_match_direction(
section,
activity_id,
track,
section_end,
section_start,
"reverse",
config,
)
}
/// Try to match a section in a specific direction.
#[allow(clippy::too_many_arguments)]
fn try_match_direction(
&self,
section: &crate::CustomSection,
activity_id: &str,
track: &[GpsPoint],
start: &GpsPoint,
end: &GpsPoint,
direction: &str,
config: &crate::CustomSectionMatchConfig,
) -> Option<crate::CustomSectionMatch> {
// Find potential start point
let (start_idx, start_dist) = self.find_nearest_point_index(track, start, 0);
if start_dist > config.proximity_threshold {
log::debug!(
"[CustomSectionMatch] {} FAIL: start too far ({:.1}m > {:.1}m threshold)",
activity_id,
start_dist,
config.proximity_threshold
);
return None;
}
// Find potential end point (search after start)
let (end_idx, end_dist) = self.find_nearest_point_index(track, end, start_idx);
if end_dist > config.proximity_threshold {
log::debug!(
"[CustomSectionMatch] {} FAIL: end too far ({:.1}m > {:.1}m threshold)",
activity_id,
end_dist,
config.proximity_threshold
);
return None;
}
// Validate that start comes before end
if end_idx <= start_idx {
log::debug!(
"[CustomSectionMatch] {} FAIL: end before start (start_idx={}, end_idx={})",
activity_id,
start_idx,
end_idx
);
return None;
}
// Calculate coverage
let coverage = self.calculate_coverage(
track,
§ion.polyline,
start_idx,
end_idx,
direction,
config.proximity_threshold,
);
if coverage < config.min_coverage {
log::debug!(
"[CustomSectionMatch] {} FAIL: low coverage ({:.1}% < {:.1}% required)",
activity_id,
coverage * 100.0,
config.min_coverage * 100.0
);
return None;
}
// Calculate distance of matched portion
let distance_meters = self.calculate_track_distance(track, start_idx, end_idx);
Some(crate::CustomSectionMatch {
activity_id: activity_id.to_string(),
start_index: start_idx as u32,
end_index: end_idx as u32,
direction: direction.to_string(),
distance_meters,
})
}
/// Find the index of the nearest point in a track to a given point.
fn find_nearest_point_index(
&self,
track: &[GpsPoint],
point: &GpsPoint,
start_idx: usize,
) -> (usize, f64) {
let mut nearest_idx = start_idx;
let mut nearest_dist = f64::INFINITY;
for (i, p) in track.iter().enumerate().skip(start_idx) {
let dist = geo_utils::haversine_distance(point, p);
if dist < nearest_dist {
nearest_dist = dist;
nearest_idx = i;
}
}
(nearest_idx, nearest_dist)
}
/// Calculate what percentage of the section is covered by the activity track.
fn calculate_coverage(
&self,
track: &[GpsPoint],
section_polyline: &[GpsPoint],
start_idx: usize,
end_idx: usize,
direction: &str,
proximity_threshold: f64,
) -> f64 {
// Sample points along the section
let sample_count = std::cmp::min(20, section_polyline.len());
let sample_step = std::cmp::max(1, section_polyline.len() / sample_count);
let mut covered_points = 0;
let mut total_points = 0;
// Get the section polyline in the right order based on direction
let ordered_section: Vec<&GpsPoint> = if direction == "same" {
section_polyline.iter().collect()
} else {
section_polyline.iter().rev().collect()
};
for (i, section_point) in ordered_section.iter().enumerate() {
if i % sample_step != 0 {
continue;
}
total_points += 1;
// Check if any track point is within proximity
let is_covered = track[start_idx..=end_idx]
.iter()
.any(|p| geo_utils::haversine_distance(section_point, p) <= proximity_threshold);
if is_covered {
covered_points += 1;
}
}
if total_points > 0 {
covered_points as f64 / total_points as f64
} else {
0.0
}
}
/// Calculate distance along a track between two indices.
fn calculate_track_distance(
&self,
track: &[GpsPoint],
start_idx: usize,
end_idx: usize,
) -> f64 {
let mut total_distance = 0.0;
for i in start_idx..end_idx {
total_distance += geo_utils::haversine_distance(&track[i], &track[i + 1]);
}
total_distance
}
/// Match a custom section against multiple activities and store results.
pub fn match_custom_section_against_activities(
&mut self,
section_id: &str,
activity_ids: &[String],
config: &crate::CustomSectionMatchConfig,
) -> Vec<crate::CustomSectionMatch> {
let section = match self.get_custom_section(section_id) {
Some(s) => s,
None => return Vec::new(),
};
let mut matches = Vec::new();
let mut activities_with_tracks = 0;
let mut activities_without_tracks = 0;
log::info!(
"[CustomSectionMatch] Matching section {} ({} points, {}m) against {} activities",
section_id,
section.polyline.len(),
section.distance_meters as i32,
activity_ids.len()
);
for activity_id in activity_ids {
// Load the GPS track for this activity
let track: Vec<GpsPoint> = match self.get_gps_track(activity_id) {
Some(t) if t.len() >= 2 => {
activities_with_tracks += 1;
t
}
_ => {
activities_without_tracks += 1;
continue;
}
};
if let Some(match_info) =
self.match_custom_section(§ion, activity_id, &track, config)
{
log::info!(
"[CustomSectionMatch] MATCHED activity {} ({}m, direction: {})",
activity_id,
match_info.distance_meters as i32,
match_info.direction
);
// Store the match
let _ = self.add_custom_section_match(section_id, &match_info);
matches.push(match_info);
}
}
log::info!(
"[CustomSectionMatch] Result: {} matches from {} activities ({} with tracks, {} without)",
matches.len(),
activity_ids.len(),
activities_with_tracks,
activities_without_tracks
);
matches
}
// ========================================================================
// Activity Metrics & Route Performances
// ========================================================================
/// Set activity metrics for performance calculations.
/// This persists the metrics to the database and keeps them in memory.
pub fn set_activity_metrics(&mut self, metrics: Vec<ActivityMetrics>) -> SqlResult<()> {
// Insert or replace in database
let mut stmt = self.db.prepare(
"INSERT OR REPLACE INTO activity_metrics
(activity_id, name, date, distance, moving_time, elapsed_time,
elevation_gain, avg_hr, avg_power, sport_type)
VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)",
)?;
for m in &metrics {
stmt.execute(params![
&m.activity_id,
&m.name,
m.date,
m.distance,
m.moving_time,
m.elapsed_time,
m.elevation_gain,
m.avg_hr.map(|v| v as i32),
m.avg_power.map(|v| v as i32),
&m.sport_type,
])?;
}
// Update in-memory cache
for m in metrics {
self.activity_metrics.insert(m.activity_id.clone(), m);
}
Ok(())
}
/// Get activity metrics for a specific activity.
pub fn get_activity_metrics(&self, activity_id: &str) -> Option<&ActivityMetrics> {
self.activity_metrics.get(activity_id)
}
/// Set time streams for activities from flat buffer.
/// Time streams are cumulative seconds at each GPS point, used for section performance calculations.
/// Persists to SQLite for offline access.
pub fn set_time_streams_flat(
&mut self,
activity_ids: &[String],
all_times: &[u32],
offsets: &[u32],
) {
let mut persisted_count = 0;
for (i, activity_id) in activity_ids.iter().enumerate() {
let start = offsets[i] as usize;
let end = offsets
.get(i + 1)
.map(|&o| o as usize)
.unwrap_or(all_times.len());
let times = all_times[start..end].to_vec();
// Persist to SQLite for offline access
if self.store_time_stream(activity_id, ×).is_ok() {
persisted_count += 1;
}
// Also keep in memory for fast access
self.time_streams.insert(activity_id.clone(), times);
}
log::debug!(
"[PersistentEngine] Set time streams for {} activities ({} persisted to SQLite)",
activity_ids.len(),
persisted_count
);
}
/// Get section performances with accurate time calculations.
/// Uses time streams to calculate actual traversal times.
/// Supports both engine-detected sections and custom sections.
/// Auto-loads time streams from SQLite if not in memory.
pub fn get_section_performances(&mut self, section_id: &str) -> SectionPerformanceResult {
// Check if this is a custom section
if section_id.starts_with("custom_") {
return self.get_custom_section_performances(section_id);
}
// Find the engine-detected section
let section = match self.sections.iter().find(|s| s.id == section_id) {
Some(s) => s.clone(),
None => {
return SectionPerformanceResult {
records: vec![],
best_record: None,
};
}
};
// Auto-load time streams from SQLite for all activities in this section
let activity_ids: Vec<String> = section
.activity_portions
.iter()
.map(|p| p.activity_id.clone())
.collect::<std::collections::HashSet<_>>()
.into_iter()
.collect();
for activity_id in &activity_ids {
self.ensure_time_stream_loaded(activity_id);
}
// Group portions by activity
let mut portions_by_activity: HashMap<&str, Vec<&crate::SectionPortion>> = HashMap::new();
for portion in §ion.activity_portions {
portions_by_activity
.entry(&portion.activity_id)
.or_default()
.push(portion);
}
// Build performance records
let mut records: Vec<SectionPerformanceRecord> = portions_by_activity
.iter()
.filter_map(|(activity_id, portions)| {
let metrics = self.activity_metrics.get(*activity_id)?;
let times = self.time_streams.get(*activity_id)?;
let laps: Vec<SectionLap> = portions
.iter()
.enumerate()
.filter_map(|(i, portion)| {
let start_idx = portion.start_index as usize;
let end_idx = portion.end_index as usize;
if start_idx >= times.len() || end_idx >= times.len() {
return None;
}
let lap_time = (times[end_idx] as f64 - times[start_idx] as f64).abs();
if lap_time <= 0.0 {
return None;
}
let pace = portion.distance_meters / lap_time;
Some(SectionLap {
id: format!("{}_lap{}", activity_id, i),
activity_id: activity_id.to_string(),
time: lap_time,
pace,
distance: portion.distance_meters,
direction: portion.direction.clone(),
start_index: portion.start_index,
end_index: portion.end_index,
})
})
.collect();
if laps.is_empty() {
return None;
}
let lap_count = laps.len() as u32;
let best_time = laps
.iter()
.map(|l| l.time)
.min_by(|a, b| a.partial_cmp(b).unwrap_or(std::cmp::Ordering::Equal))
.unwrap_or(0.0);
let best_pace = laps
.iter()
.map(|l| l.pace)
.max_by(|a, b| a.partial_cmp(b).unwrap_or(std::cmp::Ordering::Equal))
.unwrap_or(0.0);
let avg_time = laps.iter().map(|l| l.time).sum::<f64>() / lap_count as f64;
let avg_pace = laps.iter().map(|l| l.pace).sum::<f64>() / lap_count as f64;
let direction = laps
.first()
.map(|l| l.direction.clone())
.unwrap_or_else(|| "same".to_string());
let section_distance = section.distance_meters;
Some(SectionPerformanceRecord {
activity_id: activity_id.to_string(),
activity_name: metrics.name.clone(),
activity_date: metrics.date,
laps,
lap_count,
best_time,
best_pace,
avg_time,
avg_pace,
direction,
section_distance,
})
})
.collect();
// Sort by date
records.sort_by_key(|r| r.activity_date);
// Find best record (fastest time)
let best_record = records
.iter()
.min_by(|a, b| {
a.best_time
.partial_cmp(&b.best_time)
.unwrap_or(std::cmp::Ordering::Equal)
})
.cloned();
SectionPerformanceResult {
records,
best_record,
}
}
/// Get performances for a custom section.
/// Combines source activity and all matched activities.
fn get_custom_section_performances(&mut self, section_id: &str) -> SectionPerformanceResult {
// Get the custom section
let custom_section = match self.get_custom_section(section_id) {
Some(s) => s,
None => {
return SectionPerformanceResult {
records: vec![],
best_record: None,
};
}
};
// Get all matches for this custom section
let matches = self.get_custom_section_matches(section_id);
// Auto-load time streams from SQLite for all activities
let mut activity_ids: Vec<String> = vec![custom_section.source_activity_id.clone()];
activity_ids.extend(matches.iter().map(|m| m.activity_id.clone()));
for activity_id in &activity_ids {
self.ensure_time_stream_loaded(activity_id);
}
// Build portions: source activity + matched activities
let mut portions: Vec<(String, u32, u32, f64, String)> = Vec::new();
// Add source activity
portions.push((
custom_section.source_activity_id.clone(),
custom_section.start_index,
custom_section.end_index,
custom_section.distance_meters,
"same".to_string(),
));
// Add matched activities
for m in &matches {
portions.push((
m.activity_id.clone(),
m.start_index,
m.end_index,
m.distance_meters,
m.direction.clone(),
));
}
// Build performance records
let mut records: Vec<SectionPerformanceRecord> = portions
.iter()
.filter_map(|(activity_id, start_idx, end_idx, distance, direction)| {
let metrics = self.activity_metrics.get(activity_id)?;
let times = self.time_streams.get(activity_id)?;
let start = *start_idx as usize;
let end = *end_idx as usize;
if start >= times.len() || end >= times.len() {
return None;
}
let lap_time = (times[end] as f64 - times[start] as f64).abs();
if lap_time <= 0.0 {
return None;
}
let pace = distance / lap_time;
let lap = SectionLap {
id: format!("{}_lap0", activity_id),
activity_id: activity_id.clone(),
time: lap_time,
pace,
distance: *distance,
direction: direction.clone(),
start_index: *start_idx,
end_index: *end_idx,
};
Some(SectionPerformanceRecord {
activity_id: activity_id.clone(),
activity_name: metrics.name.clone(),
activity_date: metrics.date,
laps: vec![lap.clone()],
lap_count: 1,
best_time: lap_time,
best_pace: pace,
avg_time: lap_time,
avg_pace: pace,
direction: direction.clone(),
section_distance: custom_section.distance_meters,
})
})
.collect();
// Sort by date
records.sort_by_key(|r| r.activity_date);
// Find best record (fastest time)
let best_record = records
.iter()
.min_by(|a, b| {
a.best_time
.partial_cmp(&b.best_time)
.unwrap_or(std::cmp::Ordering::Equal)
})
.cloned();
SectionPerformanceResult {
records,
best_record,
}
}
/// Get route performances for all activities in a group.
/// Uses stored activity_matches for match percentages instead of hardcoding 100%.
pub fn get_route_performances(
&self,
route_group_id: &str,
current_activity_id: Option<&str>,
) -> RoutePerformanceResult {
// Find the group
let group = match self.groups.iter().find(|g| g.group_id == route_group_id) {
Some(g) => g,
None => {
return RoutePerformanceResult {
performances: vec![],
best: None,
current_rank: None,
};
}
};
// Get match info for this route
let match_info = self.activity_matches.get(route_group_id);
// Build performances from metrics
let mut performances: Vec<RoutePerformance> = group
.activity_ids
.iter()
.filter_map(|id| {
let metrics = self.activity_metrics.get(id)?;
let speed = if metrics.moving_time > 0 {
metrics.distance / metrics.moving_time as f64
} else {
0.0
};
// Look up match info for this activity
let (match_percentage, direction) = match_info
.and_then(|matches| matches.iter().find(|m| m.activity_id == *id))
.map(|m| (m.match_percentage, m.direction.clone()))
.unwrap_or((100.0, "same".to_string()));
Some(RoutePerformance {
activity_id: id.clone(),
name: metrics.name.clone(),
date: metrics.date,
speed,
duration: metrics.elapsed_time,
moving_time: metrics.moving_time,
distance: metrics.distance,
elevation_gain: metrics.elevation_gain,
avg_hr: metrics.avg_hr,
avg_power: metrics.avg_power,
is_current: current_activity_id == Some(id.as_str()),
direction,
match_percentage,
})
})
.collect();
// Sort by date (oldest first for charting)
performances.sort_by_key(|p| p.date);
// Find best (fastest speed)
let best = performances
.iter()
.max_by(|a, b| {
a.speed
.partial_cmp(&b.speed)
.unwrap_or(std::cmp::Ordering::Equal)
})
.cloned();
// Calculate current rank (1 = fastest)
let current_rank = current_activity_id.and_then(|current_id| {
let mut by_speed = performances.clone();
by_speed.sort_by(|a, b| {
b.speed
.partial_cmp(&a.speed)
.unwrap_or(std::cmp::Ordering::Equal)
});
by_speed
.iter()
.position(|p| p.activity_id == current_id)
.map(|idx| (idx + 1) as u32)
});
RoutePerformanceResult {
performances,
best,
current_rank,
}
}
/// Get route performances as JSON string.
pub fn get_route_performances_json(
&self,
route_group_id: &str,
current_activity_id: Option<&str>,
) -> String {
let result = self.get_route_performances(route_group_id, current_activity_id);
serde_json::to_string(&result).unwrap_or_else(|_| "{}".to_string())
}
// ========================================================================
// Configuration
// ========================================================================
/// Set match configuration (invalidates computed groups).
pub fn set_match_config(&mut self, config: MatchConfig) {
self.match_config = config;
self.signature_cache.clear(); // Signatures depend on config
self.groups_dirty = true;
self.sections_dirty = true;
}
/// Set section configuration.
pub fn set_section_config(&mut self, config: SectionConfig) {
self.section_config = config;
self.sections_dirty = true;
}
// ========================================================================
// Statistics
// ========================================================================
/// Get engine statistics.
pub fn stats(&self) -> PersistentEngineStats {
// Count GPS tracks in database
let gps_track_count: u32 = self
.db
.query_row("SELECT COUNT(*) FROM gps_tracks", [], |row| row.get(0))
.unwrap_or(0);
PersistentEngineStats {
activity_count: self.activity_metadata.len() as u32,
signature_cache_size: self.signature_cache.len() as u32,
consensus_cache_size: self.consensus_cache.len() as u32,
group_count: self.groups.len() as u32,
section_count: self.sections.len() as u32,
groups_dirty: self.groups_dirty,
sections_dirty: self.sections_dirty,
gps_track_count,
}
}
}
/// Statistics for the persistent engine.
#[cfg(feature = "persistence")]
#[derive(Debug, Clone)]
#[cfg_attr(feature = "ffi", derive(uniffi::Record))]
pub struct PersistentEngineStats {
pub activity_count: u32,
pub signature_cache_size: u32,
pub consensus_cache_size: u32,
pub group_count: u32,
pub section_count: u32,
pub groups_dirty: bool,
pub sections_dirty: bool,
pub gps_track_count: u32,
}
// ============================================================================
// Global Singleton for FFI
// ============================================================================
#[cfg(feature = "persistence")]
use std::sync::Mutex;
#[cfg(feature = "persistence")]
use once_cell::sync::Lazy;
/// Global persistent engine instance.
///
/// This singleton allows FFI calls to access a shared persistent engine
/// without passing state back and forth across the FFI boundary.
#[cfg(feature = "persistence")]
pub static PERSISTENT_ENGINE: Lazy<Mutex<Option<PersistentRouteEngine>>> =
Lazy::new(|| Mutex::new(None));
/// Get a lock on the global persistent engine.
#[cfg(feature = "persistence")]
pub fn with_persistent_engine<F, R>(f: F) -> Option<R>
where
F: FnOnce(&mut PersistentRouteEngine) -> R,
{
let mut guard = PERSISTENT_ENGINE.lock().ok()?;
guard.as_mut().map(f)
}
// ============================================================================
// FFI Exports for Persistent Engine
// ============================================================================
#[cfg(all(feature = "ffi", feature = "persistence"))]
pub mod persistent_engine_ffi {
use super::*;
use log::info;
/// Initialize the persistent engine with a database path.
/// Call this once at app startup before any other persistent engine functions.
#[uniffi::export]
pub fn persistent_engine_init(db_path: String) -> bool {
crate::init_logging();
info!("[PersistentEngine] Initializing with db: {}", db_path);
match PersistentRouteEngine::new(&db_path) {
Ok(mut engine) => {
// Load existing data
if let Err(e) = engine.load() {
info!(
"[PersistentEngine] Warning: Failed to load existing data: {:?}",
e
);
}
let mut guard = PERSISTENT_ENGINE.lock().unwrap();
*guard = Some(engine);
info!("[PersistentEngine] Initialized successfully");
true
}
Err(e) => {
info!("[PersistentEngine] Failed to initialize: {:?}", e);
false
}
}
}
/// Check if the persistent engine is initialized.
#[uniffi::export]
pub fn persistent_engine_is_initialized() -> bool {
PERSISTENT_ENGINE
.lock()
.map(|guard| guard.is_some())
.unwrap_or(false)
}
/// Clear all persistent engine state.
#[uniffi::export]
pub fn persistent_engine_clear() {
if let Some(()) = with_persistent_engine(|e| {
e.clear().ok();
}) {
info!("[PersistentEngine] Cleared");
}
}
/// Remove activities older than the specified retention period.
///
/// This prevents unbounded database growth by cleaning up old activities.
/// Cascade deletes automatically remove associated GPS tracks, signatures,
/// and match data. Groups and sections are marked for re-computation.
///
/// # Arguments
/// * `retention_days` - Number of days to retain (0 = keep all, 30-365 for cleanup)
///
/// # Returns
/// Number of activities deleted, or 0 if retention_days is 0
#[uniffi::export]
pub fn persistent_engine_cleanup_old_activities(retention_days: u32) -> u32 {
with_persistent_engine(|e| match e.cleanup_old_activities(retention_days) {
Ok(count) => {
if retention_days > 0 && count > 0 {
info!(
"[PersistentEngine] Cleanup completed: {} activities removed",
count
);
}
count
}
Err(e) => {
log::error!("[PersistentEngine] Cleanup failed: {:?}", e);
0
}
})
.unwrap_or(0)
}
/// Mark route engine for re-computation.
///
/// Call this when historical activities are added (e.g., cache expansion)
/// to trigger re-computation of route groups and sections with the new data.
#[uniffi::export]
pub fn persistent_engine_mark_for_recomputation() {
with_persistent_engine(|e| {
e.mark_for_recomputation();
info!("[PersistentEngine] Marked for re-computation");
});
}
/// Add activities from flat coordinate buffers.
/// Coordinates are [lat1, lng1, lat2, lng2, ...] for each activity.
#[uniffi::export]
pub fn persistent_engine_add_activities(
activity_ids: Vec<String>,
all_coords: Vec<f64>,
offsets: Vec<u32>,
sport_types: Vec<String>,
) {
info!(
"[PersistentEngine] Adding {} activities ({} coords)",
activity_ids.len(),
all_coords.len() / 2
);
with_persistent_engine(|engine| {
for (i, id) in activity_ids.iter().enumerate() {
let start = offsets[i] as usize;
let end = offsets
.get(i + 1)
.map(|&o| o as usize)
.unwrap_or(all_coords.len() / 2);
let coords: Vec<crate::GpsPoint> = (start..end)
.filter_map(|j| {
let idx = j * 2;
if idx + 1 < all_coords.len() {
Some(crate::GpsPoint::new(all_coords[idx], all_coords[idx + 1]))
} else {
None
}
})
.collect();
let sport = sport_types.get(i).cloned().unwrap_or_default();
engine.add_activity(id.clone(), coords, sport).ok();
}
});
}
/// Remove activities by ID.
#[uniffi::export]
pub fn persistent_engine_remove_activities(activity_ids: Vec<String>) {
info!(
"[PersistentEngine] Removing {} activities",
activity_ids.len()
);
with_persistent_engine(|engine| {
for id in &activity_ids {
engine.remove_activity(id).ok();
}
});
}
/// Get all activity IDs.
#[uniffi::export]
pub fn persistent_engine_get_activity_ids() -> Vec<String> {
with_persistent_engine(|e| e.get_activity_ids()).unwrap_or_default()
}
/// Get activity count.
#[uniffi::export]
pub fn persistent_engine_get_activity_count() -> u32 {
with_persistent_engine(|e| e.activity_count() as u32).unwrap_or(0)
}
/// Get all activity bounds info as JSON for map display.
#[uniffi::export]
pub fn persistent_engine_get_all_activity_bounds_json() -> String {
with_persistent_engine(|e| e.get_all_activity_bounds_json())
.unwrap_or_else(|| "[]".to_string())
}
/// Get route groups as JSON.
#[uniffi::export]
pub fn persistent_engine_get_groups_json() -> String {
with_persistent_engine(|e| e.get_groups_json()).unwrap_or_else(|| "[]".to_string())
}
/// Set a custom name for a route.
/// Pass empty string to clear the custom name.
#[uniffi::export]
pub fn persistent_engine_set_route_name(route_id: String, name: String) {
let name_opt = if name.is_empty() {
None
} else {
Some(name.as_str())
};
with_persistent_engine(|e| {
e.set_route_name(&route_id, name_opt).ok();
});
}
/// Get the custom name for a route.
/// Returns empty string if no custom name is set.
#[uniffi::export]
pub fn persistent_engine_get_route_name(route_id: String) -> String {
with_persistent_engine(|e| e.get_route_name(&route_id))
.flatten()
.unwrap_or_default()
}
/// Get all custom route names as JSON.
#[uniffi::export]
pub fn persistent_engine_get_all_route_names_json() -> String {
with_persistent_engine(|e| {
serde_json::to_string(&e.get_all_route_names()).unwrap_or_else(|_| "{}".to_string())
})
.unwrap_or_else(|| "{}".to_string())
}
/// Set a custom name for a section.
/// Pass empty string to clear the custom name.
#[uniffi::export]
pub fn persistent_engine_set_section_name(section_id: String, name: String) {
let name_opt = if name.is_empty() {
None
} else {
Some(name.as_str())
};
with_persistent_engine(|e| {
e.set_section_name(§ion_id, name_opt).ok();
});
}
/// Get the custom name for a section.
/// Returns empty string if no custom name is set.
#[uniffi::export]
pub fn persistent_engine_get_section_name(section_id: String) -> String {
with_persistent_engine(|e| e.get_section_name(§ion_id))
.flatten()
.unwrap_or_default()
}
/// Get all custom section names as JSON.
#[uniffi::export]
pub fn persistent_engine_get_all_section_names_json() -> String {
with_persistent_engine(|e| {
serde_json::to_string(&e.get_all_section_names()).unwrap_or_else(|_| "{}".to_string())
})
.unwrap_or_else(|| "{}".to_string())
}
/// Set activity metrics for performance calculations.
#[uniffi::export]
pub fn persistent_engine_set_activity_metrics(metrics: Vec<ActivityMetrics>) {
with_persistent_engine(|e| {
e.set_activity_metrics(metrics).ok();
});
}
/// Set time streams for activities from flat buffer.
/// Time streams are cumulative seconds at each GPS point, used for section performance calculations.
/// Parameters:
/// - activity_ids: Vec of activity IDs
/// - all_times: Flat array of all time values concatenated
/// - offsets: Start offset for each activity's times in all_times (length = activity_ids.len() + 1)
#[uniffi::export]
pub fn persistent_engine_set_time_streams_flat(
activity_ids: Vec<String>,
all_times: Vec<u32>,
offsets: Vec<u32>,
) {
with_persistent_engine(|e| {
e.set_time_streams_flat(&activity_ids, &all_times, &offsets);
});
}
/// Check which activities are missing cached time streams.
/// Returns activity IDs that need to be fetched from the API.
#[uniffi::export]
pub fn persistent_engine_get_activities_missing_time_streams(
activity_ids: Vec<String>,
) -> Vec<String> {
with_persistent_engine(|e| e.get_activities_missing_time_streams(&activity_ids))
.unwrap_or(activity_ids)
}
/// Get section performances as JSON.
/// Returns accurate time-based section traversal data.
#[uniffi::export]
pub fn persistent_engine_get_section_performances_json(section_id: String) -> String {
with_persistent_engine(|e| {
let result = e.get_section_performances(§ion_id);
serde_json::to_string(&result)
.unwrap_or_else(|_| r#"{"records":[],"best_record":null}"#.to_string())
})
.unwrap_or_else(|| r#"{"records":[],"best_record":null}"#.to_string())
}
/// Get route performances as JSON.
#[uniffi::export]
pub fn persistent_engine_get_route_performances_json(
route_group_id: String,
current_activity_id: Option<String>,
) -> String {
with_persistent_engine(|e| {
e.get_route_performances_json(&route_group_id, current_activity_id.as_deref())
})
.unwrap_or_else(|| "{}".to_string())
}
/// Get sections as JSON.
#[uniffi::export]
pub fn persistent_engine_get_sections_json() -> String {
with_persistent_engine(|e| e.get_sections_json()).unwrap_or_else(|| "[]".to_string())
}
/// Get section count directly from SQLite (no data loading).
#[uniffi::export]
pub fn persistent_engine_get_section_count() -> u32 {
with_persistent_engine(|e| e.get_section_count()).unwrap_or(0)
}
/// Get group count directly from SQLite (no data loading).
#[uniffi::export]
pub fn persistent_engine_get_group_count() -> u32 {
with_persistent_engine(|e| e.get_group_count()).unwrap_or(0)
}
/// Get lightweight section summaries without polyline data.
#[uniffi::export]
pub fn persistent_engine_get_section_summaries_json() -> String {
with_persistent_engine(|e| {
let summaries = e.get_section_summaries();
serde_json::to_string(&summaries).unwrap_or_else(|_| "[]".to_string())
})
.unwrap_or_else(|| "[]".to_string())
}
/// Get section summaries filtered by sport type.
#[uniffi::export]
pub fn persistent_engine_get_section_summaries_for_sport_json(sport_type: String) -> String {
with_persistent_engine(|e| {
let summaries = e.get_section_summaries_for_sport(&sport_type);
serde_json::to_string(&summaries).unwrap_or_else(|_| "[]".to_string())
})
.unwrap_or_else(|| "[]".to_string())
}
/// Get lightweight group summaries without full activity ID lists.
#[uniffi::export]
pub fn persistent_engine_get_group_summaries_json() -> String {
with_persistent_engine(|e| {
let summaries = e.get_group_summaries();
serde_json::to_string(&summaries).unwrap_or_else(|_| "[]".to_string())
})
.unwrap_or_else(|| "[]".to_string())
}
/// Get a single section by ID (full data with polyline).
#[uniffi::export]
pub fn persistent_engine_get_section_by_id_json(section_id: String) -> Option<String> {
with_persistent_engine(|e| {
e.get_section_by_id(§ion_id)
.and_then(|s| serde_json::to_string(&s).ok())
})
.flatten()
}
/// Get a single group by ID (full data with activity IDs).
#[uniffi::export]
pub fn persistent_engine_get_group_by_id_json(group_id: String) -> Option<String> {
with_persistent_engine(|e| {
e.get_group_by_id(&group_id)
.and_then(|g| serde_json::to_string(&g).ok())
})
.flatten()
}
/// Get section polyline only (flat coordinates for map rendering).
#[uniffi::export]
pub fn persistent_engine_get_section_polyline(section_id: String) -> Vec<f64> {
with_persistent_engine(|e| e.get_section_polyline(§ion_id)).unwrap_or_default()
}
/// Query activities in viewport.
#[uniffi::export]
pub fn persistent_engine_query_viewport(
min_lat: f64,
max_lat: f64,
min_lng: f64,
max_lng: f64,
) -> Vec<String> {
with_persistent_engine(|e| {
e.query_viewport(&Bounds {
min_lat,
max_lat,
min_lng,
max_lng,
})
})
.unwrap_or_default()
}
/// Get consensus route for a group as flat coordinates.
#[uniffi::export]
pub fn persistent_engine_get_consensus_route(group_id: String) -> Vec<f64> {
with_persistent_engine(|e| {
e.get_consensus_route(&group_id)
.map(|points| {
points
.iter()
.flat_map(|p| vec![p.latitude, p.longitude])
.collect()
})
.unwrap_or_default()
})
.unwrap_or_default()
}
/// Get GPS track for an activity as flat coordinates.
#[uniffi::export]
pub fn persistent_engine_get_gps_track(activity_id: String) -> Vec<f64> {
with_persistent_engine(|e| {
e.get_gps_track(&activity_id)
.map(|points| {
points
.iter()
.flat_map(|p| vec![p.latitude, p.longitude])
.collect()
})
.unwrap_or_default()
})
.unwrap_or_default()
}
/// Get simplified GPS track for an activity as flat coordinates.
/// Uses Douglas-Peucker algorithm to reduce points for fast map rendering.
/// Tolerance of 0.00005 (~5m) gives good visual fidelity with ~50-200 points.
#[uniffi::export]
pub fn persistent_engine_get_simplified_gps_track(activity_id: String) -> Vec<f64> {
with_persistent_engine(|e| {
e.get_gps_track(&activity_id)
.map(|points| {
// Use Douglas-Peucker simplification
let simplified = crate::algorithms::douglas_peucker(&points, 0.00005);
simplified
.iter()
.flat_map(|p| vec![p.latitude, p.longitude])
.collect()
})
.unwrap_or_default()
})
.unwrap_or_default()
}
/// Get engine statistics.
#[uniffi::export]
pub fn persistent_engine_get_stats() -> Option<PersistentEngineStats> {
with_persistent_engine(|e| e.stats())
}
// ========================================================================
// Background Section Detection
// ========================================================================
/// Handle for tracking background section detection progress.
/// Store this and poll with persistent_engine_poll_sections().
static SECTION_DETECTION_HANDLE: Lazy<Mutex<Option<SectionDetectionHandle>>> =
Lazy::new(|| Mutex::new(None));
/// Start section detection in the background.
/// Returns true if detection was started, false if already running or engine not initialized.
#[uniffi::export]
pub fn persistent_engine_start_section_detection(sport_filter: Option<String>) -> bool {
// Check if already running
{
let handle_guard = SECTION_DETECTION_HANDLE.lock().unwrap();
if handle_guard.is_some() {
info!("[PersistentEngine] Section detection already running");
return false;
}
}
// Start detection
let handle = with_persistent_engine(|e| e.detect_sections_background(sport_filter));
if let Some(h) = handle {
let mut handle_guard = SECTION_DETECTION_HANDLE.lock().unwrap();
*handle_guard = Some(h);
info!("[PersistentEngine] Section detection started");
true
} else {
info!("[PersistentEngine] Failed to start section detection");
false
}
}
/// Poll for section detection completion.
/// Returns:
/// - "running" if detection is still in progress
/// - "complete" if detection finished and sections were applied
/// - "idle" if no detection is running
/// - "error" if detection failed
#[uniffi::export]
pub fn persistent_engine_poll_sections() -> String {
let mut handle_guard = SECTION_DETECTION_HANDLE.lock().unwrap();
if handle_guard.is_none() {
return "idle".to_string();
}
// Try to receive results
let result = handle_guard.as_ref().unwrap().try_recv();
match result {
Some(sections) => {
// Detection complete - apply results
let applied = with_persistent_engine(|e| e.apply_sections(sections).ok());
// Clear the handle
*handle_guard = None;
if applied.is_some() {
// Also match custom sections against all activities
with_persistent_engine(|e| {
let custom_sections = e.get_custom_sections();
if !custom_sections.is_empty() {
let activity_ids = e.get_activity_ids();
let config = crate::CustomSectionMatchConfig::default();
info!(
"[PersistentEngine] Matching {} custom sections against {} activities",
custom_sections.len(),
activity_ids.len()
);
for section in &custom_sections {
e.match_custom_section_against_activities(
§ion.id,
&activity_ids,
&config,
);
}
}
});
info!("[PersistentEngine] Section detection complete");
"complete".to_string()
} else {
"error".to_string()
}
}
None => {
// Still running
"running".to_string()
}
}
}
/// Get current section detection progress.
/// Returns JSON with format: {"phase": "finding_overlaps", "completed": 45, "total": 120}
/// Returns empty JSON "{}" if no detection is running.
#[uniffi::export]
pub fn persistent_engine_get_section_detection_progress() -> String {
let handle_guard = SECTION_DETECTION_HANDLE.lock().unwrap();
if let Some(handle) = handle_guard.as_ref() {
let (phase, completed, total) = handle.get_progress();
format!(
r#"{{"phase":"{}","completed":{},"total":{}}}"#,
phase, completed, total
)
} else {
"{}".to_string()
}
}
/// Cancel any running section detection.
#[uniffi::export]
pub fn persistent_engine_cancel_section_detection() {
let mut handle_guard = SECTION_DETECTION_HANDLE.lock().unwrap();
if handle_guard.is_some() {
*handle_guard = None;
info!("[PersistentEngine] Section detection cancelled");
}
}
// ========================================================================
// Custom Section FFI
// ========================================================================
/// Add a custom section from JSON.
#[uniffi::export]
pub fn persistent_engine_add_custom_section(section_json: String) -> bool {
let section: crate::CustomSection = match serde_json::from_str(§ion_json) {
Ok(s) => s,
Err(e) => {
log::error!("[PersistentEngine] Failed to parse custom section: {:?}", e);
return false;
}
};
let section_id = section.id.clone();
let added = with_persistent_engine(|e| match e.add_custom_section(§ion) {
Ok(success) => {
info!("[PersistentEngine] Added custom section: {}", section.id);
success
}
Err(e) => {
log::error!("[PersistentEngine] Failed to add custom section: {:?}", e);
false
}
})
.unwrap_or(false);
// If section was added successfully, immediately match it against all activities
if added {
with_persistent_engine(|e| {
let activity_ids = e.get_activity_ids();
if !activity_ids.is_empty() {
let config = crate::CustomSectionMatchConfig::default();
let matches = e.match_custom_section_against_activities(
§ion_id,
&activity_ids,
&config,
);
info!(
"[PersistentEngine] Matched custom section {} against {} activities, found {} matches",
section_id,
activity_ids.len(),
matches.len()
);
}
});
}
added
}
/// Remove a custom section.
#[uniffi::export]
pub fn persistent_engine_remove_custom_section(section_id: String) -> bool {
with_persistent_engine(|e| match e.remove_custom_section(§ion_id) {
Ok(success) => {
info!("[PersistentEngine] Removed custom section: {}", section_id);
success
}
Err(e) => {
log::error!(
"[PersistentEngine] Failed to remove custom section: {:?}",
e
);
false
}
})
.unwrap_or(false)
}
/// Get all custom sections as JSON.
#[uniffi::export]
pub fn persistent_engine_get_custom_sections_json() -> String {
with_persistent_engine(|e| e.get_custom_sections_json()).unwrap_or_else(|| "[]".to_string())
}
/// Match a custom section against activities.
/// Returns JSON array of matches.
#[uniffi::export]
pub fn persistent_engine_match_custom_section(
section_id: String,
activity_ids: Vec<String>,
) -> String {
let config = crate::CustomSectionMatchConfig::default();
with_persistent_engine(|e| {
let matches =
e.match_custom_section_against_activities(§ion_id, &activity_ids, &config);
serde_json::to_string(&matches).unwrap_or_else(|_| "[]".to_string())
})
.unwrap_or_else(|| "[]".to_string())
}
/// Get matches for a custom section.
/// Returns JSON array of matches.
#[uniffi::export]
pub fn persistent_engine_get_custom_section_matches(section_id: String) -> String {
with_persistent_engine(|e| {
let matches = e.get_custom_section_matches(§ion_id);
serde_json::to_string(&matches).unwrap_or_else(|_| "[]".to_string())
})
.unwrap_or_else(|| "[]".to_string())
}
/// Extract the GPS trace for an activity that overlaps with a section polyline.
/// Returns a flat array of [lat, lng, lat, lng, ...] or empty if no overlap.
#[uniffi::export]
pub fn persistent_engine_extract_section_trace(
activity_id: String,
section_polyline_json: String,
) -> Vec<f64> {
with_persistent_engine(|engine| {
// Parse the section polyline
let polyline: Vec<GpsPoint> = match serde_json::from_str(§ion_polyline_json) {
Ok(p) => p,
Err(_) => return vec![],
};
if polyline.len() < 2 {
return vec![];
}
// Load the activity's GPS track
let track = match engine.get_gps_track(&activity_id) {
Some(t) => t,
None => return vec![],
};
if track.len() < 3 {
return vec![];
}
// Build a track map with just this activity
let mut track_map = std::collections::HashMap::new();
track_map.insert(activity_id.clone(), track);
// Use the existing trace extraction algorithm
let traces = crate::sections::extract_all_activity_traces(
std::slice::from_ref(&activity_id),
&polyline,
&track_map,
);
// Get the trace for this activity
match traces.get(&activity_id) {
Some(trace) => {
// Flatten to [lat, lng, lat, lng, ...]
trace
.iter()
.flat_map(|p| vec![p.latitude, p.longitude])
.collect()
}
None => vec![],
}
})
.unwrap_or_default()
}
}
// ============================================================================
// Tests
// ============================================================================
#[cfg(all(test, feature = "persistence"))]
mod tests {
use super::*;
fn sample_coords() -> Vec<GpsPoint> {
(0..50)
.map(|i| GpsPoint::new(51.5074 + i as f64 * 0.001, -0.1278 + i as f64 * 0.0005))
.collect()
}
#[test]
fn test_create_engine() {
let engine = PersistentRouteEngine::in_memory().unwrap();
assert_eq!(engine.activity_count(), 0);
}
#[test]
fn test_add_activity() {
let mut engine = PersistentRouteEngine::in_memory().unwrap();
engine
.add_activity("test-1".to_string(), sample_coords(), "cycling".to_string())
.unwrap();
assert_eq!(engine.activity_count(), 1);
assert!(engine.has_activity("test-1"));
}
#[test]
fn test_signature_caching() {
let mut engine = PersistentRouteEngine::in_memory().unwrap();
engine
.add_activity("test-1".to_string(), sample_coords(), "cycling".to_string())
.unwrap();
// First access - loads from DB (but was cached on add)
let sig1 = engine.get_signature("test-1");
assert!(sig1.is_some());
// Second access - from cache
let sig2 = engine.get_signature("test-1");
assert!(sig2.is_some());
}
#[test]
fn test_viewport_query() {
let mut engine = PersistentRouteEngine::in_memory().unwrap();
engine
.add_activity("test-1".to_string(), sample_coords(), "cycling".to_string())
.unwrap();
let results = engine.query_viewport(&Bounds {
min_lat: 51.5,
max_lat: 51.6,
min_lng: -0.2,
max_lng: -0.1,
});
assert_eq!(results.len(), 1);
let results = engine.query_viewport(&Bounds {
min_lat: 40.0,
max_lat: 41.0,
min_lng: -75.0,
max_lng: -74.0,
});
assert!(results.is_empty());
}
#[test]
fn test_persistence() {
let temp_path = "/tmp/test_route_engine.db";
// Create and add data
{
let mut engine = PersistentRouteEngine::new(temp_path).unwrap();
engine.clear().unwrap();
engine
.add_activity("test-1".to_string(), sample_coords(), "cycling".to_string())
.unwrap();
}
// Reload and verify
{
let mut engine = PersistentRouteEngine::new(temp_path).unwrap();
engine.load().unwrap();
assert_eq!(engine.activity_count(), 1);
assert!(engine.has_activity("test-1"));
}
// Cleanup
std::fs::remove_file(temp_path).ok();
}
#[test]
fn test_grouping() {
let mut engine = PersistentRouteEngine::in_memory().unwrap();
// Add two identical activities
engine
.add_activity("test-1".to_string(), sample_coords(), "cycling".to_string())
.unwrap();
engine
.add_activity("test-2".to_string(), sample_coords(), "cycling".to_string())
.unwrap();
let groups = engine.get_groups();
assert_eq!(groups.len(), 1);
assert_eq!(groups[0].activity_ids.len(), 2);
}
#[test]
fn test_remove_activity() {
let mut engine = PersistentRouteEngine::in_memory().unwrap();
engine
.add_activity("test-1".to_string(), sample_coords(), "cycling".to_string())
.unwrap();
engine
.add_activity("test-2".to_string(), sample_coords(), "cycling".to_string())
.unwrap();
engine.remove_activity("test-1").unwrap();
assert_eq!(engine.activity_count(), 1);
assert!(!engine.has_activity("test-1"));
assert!(engine.has_activity("test-2"));
}
}