codex-recall 0.1.2

Local search and recall for Codex session JSONL archives
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
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
use crate::parser::{EventKind, ParsedSession};
use anyhow::{bail, Context, Result};
use rusqlite::{params, params_from_iter, Connection, OpenFlags};
use std::collections::{hash_map::Entry, BTreeSet, HashMap};
use std::path::{Path, PathBuf};
use std::time::Duration;

const CONTENT_VERSION: i64 = 2;

pub struct Store {
    conn: Connection,
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Stats {
    pub session_count: u64,
    pub event_count: u64,
    pub source_file_count: u64,
    pub duplicate_source_file_count: u64,
}

#[derive(Debug, Clone, PartialEq)]
pub struct SearchResult {
    pub session_key: String,
    pub session_id: String,
    pub repo: String,
    pub kind: EventKind,
    pub text: String,
    pub snippet: String,
    pub score: f64,
    pub session_timestamp: String,
    pub cwd: String,
    pub source_file_path: PathBuf,
    pub source_line_number: usize,
    pub source_timestamp: Option<String>,
    repo_matches_current: bool,
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub struct SearchOptions {
    pub query: String,
    pub limit: usize,
    pub repo: Option<String>,
    pub cwd: Option<String>,
    pub since: Option<String>,
    pub from: Option<String>,
    pub until: Option<String>,
    pub include_duplicates: bool,
    pub exclude_sessions: Vec<String>,
    pub kinds: Vec<EventKind>,
    pub current_repo: Option<String>,
}

impl SearchOptions {
    pub fn new(query: impl Into<String>, limit: usize) -> Self {
        Self {
            query: query.into(),
            limit,
            repo: None,
            cwd: None,
            since: None,
            from: None,
            until: None,
            include_duplicates: false,
            exclude_sessions: Vec::new(),
            kinds: Vec::new(),
            current_repo: None,
        }
    }
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub struct SessionEvent {
    pub session_key: String,
    pub session_id: String,
    pub kind: EventKind,
    pub text: String,
    pub cwd: String,
    pub source_file_path: PathBuf,
    pub source_line_number: usize,
    pub source_timestamp: Option<String>,
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub struct SessionMatch {
    pub session_key: String,
    pub session_id: String,
    pub cwd: String,
    pub repo: String,
    pub source_file_path: PathBuf,
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub struct RecentSession {
    pub session_key: String,
    pub session_id: String,
    pub repo: String,
    pub cwd: String,
    pub session_timestamp: String,
    pub source_file_path: PathBuf,
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub struct RecentOptions {
    pub limit: usize,
    pub repo: Option<String>,
    pub cwd: Option<String>,
    pub since: Option<String>,
    pub from: Option<String>,
    pub until: Option<String>,
    pub include_duplicates: bool,
    pub exclude_sessions: Vec<String>,
    pub kinds: Vec<EventKind>,
}

impl Default for RecentOptions {
    fn default() -> Self {
        Self {
            limit: 20,
            repo: None,
            cwd: None,
            since: None,
            from: None,
            until: None,
            include_duplicates: false,
            exclude_sessions: Vec::new(),
            kinds: Vec::new(),
        }
    }
}

struct OldSessionRow {
    session_id: String,
    session_timestamp: String,
    cwd: String,
    repo: String,
    cli_version: Option<String>,
    source_file_path: String,
}

struct OldEventRow {
    session_id: String,
    kind: String,
    role: Option<String>,
    text: String,
    command: Option<String>,
    cwd: Option<String>,
    exit_code: Option<i64>,
    source_timestamp: Option<String>,
    source_file_path: String,
    source_line_number: i64,
}

impl Store {
    pub fn open(path: impl AsRef<Path>) -> Result<Self> {
        let path = path.as_ref();
        if let Some(parent) = path.parent() {
            std::fs::create_dir_all(parent)
                .with_context(|| format!("create db directory {}", parent.display()))?;
        }

        let conn = Connection::open(path).with_context(|| format!("open db {}", path.display()))?;
        configure_write_connection(&conn)?;
        let store = Self { conn };
        store.init_schema()?;
        Ok(store)
    }

    pub fn open_readonly(path: impl AsRef<Path>) -> Result<Self> {
        let path = path.as_ref();
        let conn = Connection::open_with_flags(path, OpenFlags::SQLITE_OPEN_READ_ONLY)
            .with_context(|| format!("open db read-only {}", path.display()))?;
        configure_read_connection(&conn)?;
        Ok(Self { conn })
    }

    pub fn index_session(&self, parsed: &ParsedSession) -> Result<()> {
        self.conn.execute("BEGIN IMMEDIATE", [])?;
        let result = self.index_session_inner(parsed);
        match result {
            Ok(()) => {
                self.conn.execute("COMMIT", [])?;
                Ok(())
            }
            Err(error) => {
                let _ = self.conn.execute("ROLLBACK", []);
                Err(error)
            }
        }
    }

    pub fn stats(&self) -> Result<Stats> {
        let session_count = self
            .conn
            .query_row("SELECT COUNT(*) FROM sessions", [], |row| {
                row.get::<_, u64>(0)
            })?;
        let event_count = self
            .conn
            .query_row("SELECT COUNT(*) FROM events", [], |row| {
                row.get::<_, u64>(0)
            })?;
        let source_file_count =
            self.conn
                .query_row("SELECT COUNT(*) FROM ingestion_state", [], |row| {
                    row.get::<_, u64>(0)
                })?;
        let unique_ingested_sessions = self.conn.query_row(
            "SELECT COUNT(DISTINCT COALESCE(session_key, session_id)) FROM ingestion_state WHERE COALESCE(session_key, session_id) IS NOT NULL",
            [],
            |row| row.get::<_, u64>(0),
        )?;

        Ok(Stats {
            session_count,
            event_count,
            source_file_count,
            duplicate_source_file_count: source_file_count.saturating_sub(unique_ingested_sessions),
        })
    }

    pub fn quick_check(&self) -> Result<String> {
        self.conn
            .query_row("PRAGMA quick_check", [], |row| row.get::<_, String>(0))
            .map_err(Into::into)
    }

    pub fn fts_integrity_check(&self) -> Result<()> {
        self.conn.execute(
            "INSERT INTO events_fts(events_fts) VALUES('integrity-check')",
            [],
        )?;
        Ok(())
    }

    pub fn fts_read_check(&self) -> Result<()> {
        self.conn
            .query_row("SELECT COUNT(*) FROM events_fts", [], |row| {
                row.get::<_, i64>(0)
            })
            .map(|_| ())
            .map_err(Into::into)
    }

    pub fn search(&self, query: &str, limit: usize) -> Result<Vec<SearchResult>> {
        self.search_with_options(SearchOptions::new(query, limit))
    }

    pub fn search_with_options(&self, options: SearchOptions) -> Result<Vec<SearchResult>> {
        let terms = fts_terms(&options.query);
        if terms.is_empty() {
            return Ok(Vec::new());
        }

        let limit = options.limit.clamp(1, 100);
        let fetch_limit = limit.saturating_mul(50).clamp(200, 1_000);
        let results = self.search_with_fts_query(&options, &and_fts_query(&terms), fetch_limit)?;
        if !results.is_empty() || terms.len() == 1 {
            return Ok(rank_search_results(
                results,
                options.current_repo.as_deref(),
                limit,
                options.include_duplicates,
            ));
        }

        let results = self.search_with_fts_query(&options, &or_fts_query(&terms), fetch_limit)?;
        Ok(rank_search_results(
            results,
            options.current_repo.as_deref(),
            limit,
            options.include_duplicates,
        ))
    }

    fn search_with_fts_query(
        &self,
        options: &SearchOptions,
        fts_query: &str,
        limit: usize,
    ) -> Result<Vec<SearchResult>> {
        let mut query_params = Vec::<String>::new();
        let current_repo_expr = if let Some(current_repo) = &options.current_repo {
            query_params.push(current_repo.clone());
            "EXISTS (
                    SELECT 1 FROM session_repos current_repos
                    WHERE current_repos.session_key = sessions.session_key
                      AND lower(current_repos.repo) = lower(?)
                )"
        } else {
            "0"
        };
        query_params.push(fts_query.to_owned());

        let mut sql = format!(
            r#"
            SELECT
                events.session_key,
                events.session_id,
                sessions.repo,
                events.kind,
                events.text,
                snippet(events_fts, 4, '', '', ' ... ', 16) AS snippet,
                events_fts.rank AS score,
                sessions.session_timestamp,
                sessions.cwd,
                events.source_file_path,
                events.source_line_number,
                events.source_timestamp,
                {current_repo_expr} AS current_repo_match
            FROM events_fts
            JOIN events ON events.id = events_fts.event_id
            JOIN sessions ON sessions.session_key = events.session_key
            WHERE events_fts MATCH ?
            "#,
        );

        if let Some(repo) = &options.repo {
            sql.push_str(
                r#"
                AND EXISTS (
                    SELECT 1 FROM session_repos filter_repos
                    WHERE filter_repos.session_key = sessions.session_key
                      AND lower(filter_repos.repo) = lower(?)
                )
                "#,
            );
            query_params.push(repo.clone());
        }
        if let Some(cwd) = &options.cwd {
            sql.push_str(
                r#"
                AND (
                    sessions.cwd LIKE '%' || ? || '%'
                    OR EXISTS (
                        SELECT 1 FROM events cwd_events
                        WHERE cwd_events.session_key = sessions.session_key
                          AND cwd_events.cwd LIKE '%' || ? || '%'
                    )
                )
                "#,
            );
            query_params.push(cwd.clone());
            query_params.push(cwd.clone());
        }
        append_from_until_clauses(
            &mut sql,
            &mut query_params,
            options.since.as_ref(),
            options.from.as_ref(),
            options.until.as_ref(),
        )?;
        append_excluded_sessions_clause(&mut sql, &mut query_params, &options.exclude_sessions);
        append_event_kind_clause(&mut sql, &mut query_params, "events.kind", &options.kinds);

        sql.push_str(" ORDER BY events_fts.rank ASC, events.source_line_number ASC LIMIT ");
        sql.push_str(&limit.to_string());

        let mut statement = self.conn.prepare(&sql)?;

        let rows = statement.query_map(params_from_iter(query_params.iter()), |row| {
            let kind_text: String = row.get(3)?;
            let kind = kind_text.parse::<EventKind>().map_err(|_| {
                rusqlite::Error::InvalidColumnType(
                    3,
                    "kind".to_owned(),
                    rusqlite::types::Type::Text,
                )
            })?;
            let source_file_path: String = row.get(9)?;
            let source_line_number: i64 = row.get(10)?;

            Ok(SearchResult {
                session_key: row.get(0)?,
                session_id: row.get(1)?,
                repo: row.get(2)?,
                kind,
                text: row.get(4)?,
                snippet: row.get(5)?,
                score: row.get(6)?,
                session_timestamp: row.get(7)?,
                cwd: row.get(8)?,
                source_file_path: PathBuf::from(source_file_path),
                source_line_number: source_line_number as usize,
                source_timestamp: row.get(11)?,
                repo_matches_current: row.get::<_, i64>(12)? != 0,
            })
        })?;

        rows.collect::<std::result::Result<Vec<_>, _>>()
            .map_err(Into::into)
    }

    pub fn resolve_session_reference(&self, reference: &str) -> Result<Vec<SessionMatch>> {
        let mut statement = self.conn.prepare(
            r#"
            SELECT session_key, session_id, cwd, repo, source_file_path
            FROM sessions
            WHERE session_key = ? OR session_id = ?
            ORDER BY session_timestamp DESC, source_file_path ASC
            "#,
        )?;
        let rows = statement.query_map(params![reference, reference], |row| {
            let source_file_path: String = row.get(4)?;
            Ok(SessionMatch {
                session_key: row.get(0)?,
                session_id: row.get(1)?,
                cwd: row.get(2)?,
                repo: row.get(3)?,
                source_file_path: PathBuf::from(source_file_path),
            })
        })?;

        rows.collect::<std::result::Result<Vec<_>, _>>()
            .map_err(Into::into)
    }

    pub fn recent_sessions(&self, options: RecentOptions) -> Result<Vec<RecentSession>> {
        let limit = options.limit.clamp(1, 100);
        let fetch_limit = if options.include_duplicates {
            limit
        } else {
            limit.saturating_mul(5).clamp(limit, 500)
        };
        let mut query_params = Vec::<String>::new();
        let mut sql = r#"
            SELECT
                sessions.session_key,
                sessions.session_id,
                sessions.repo,
                sessions.cwd,
                sessions.session_timestamp,
                sessions.source_file_path
            FROM sessions
            WHERE 1 = 1
            "#
        .to_owned();

        if let Some(repo) = &options.repo {
            sql.push_str(
                r#"
                AND EXISTS (
                    SELECT 1 FROM session_repos filter_repos
                    WHERE filter_repos.session_key = sessions.session_key
                      AND lower(filter_repos.repo) = lower(?)
                )
                "#,
            );
            query_params.push(repo.clone());
        }
        if let Some(cwd) = &options.cwd {
            sql.push_str(
                r#"
                AND (
                    sessions.cwd LIKE '%' || ? || '%'
                    OR EXISTS (
                        SELECT 1 FROM events cwd_events
                        WHERE cwd_events.session_key = sessions.session_key
                          AND cwd_events.cwd LIKE '%' || ? || '%'
                    )
                )
                "#,
            );
            query_params.push(cwd.clone());
            query_params.push(cwd.clone());
        }
        append_from_until_clauses(
            &mut sql,
            &mut query_params,
            options.since.as_ref(),
            options.from.as_ref(),
            options.until.as_ref(),
        )?;
        append_excluded_sessions_clause(&mut sql, &mut query_params, &options.exclude_sessions);
        append_recent_event_kind_clause(&mut sql, &mut query_params, &options.kinds);

        sql.push_str(
            r#"
            ORDER BY datetime(replace(replace(sessions.session_timestamp, 'T', ' '), 'Z', '')) DESC,
                     sessions.source_file_path ASC
            LIMIT ?
            "#,
        );
        query_params.push(fetch_limit.to_string());

        let mut statement = self.conn.prepare(&sql)?;
        let rows = statement.query_map(params_from_iter(query_params.iter()), |row| {
            let source_file_path: String = row.get(5)?;
            Ok(RecentSession {
                session_key: row.get(0)?,
                session_id: row.get(1)?,
                repo: row.get(2)?,
                cwd: row.get(3)?,
                session_timestamp: row.get(4)?,
                source_file_path: PathBuf::from(source_file_path),
            })
        })?;

        let mut sessions = rows.collect::<std::result::Result<Vec<_>, _>>()?;
        if !options.include_duplicates {
            sessions = dedupe_recent_sessions(sessions);
        }
        sessions.truncate(limit);
        Ok(sessions)
    }

    pub fn session_events(&self, session_key: &str, limit: usize) -> Result<Vec<SessionEvent>> {
        self.session_events_with_kinds(session_key, limit, &[])
    }

    pub fn session_events_with_kinds(
        &self,
        session_key: &str,
        limit: usize,
        kinds: &[EventKind],
    ) -> Result<Vec<SessionEvent>> {
        let limit = limit.clamp(1, 500);
        let mut query_params = vec![session_key.to_owned()];
        let mut sql = r#"
            SELECT
                events.session_key,
                events.session_id,
                events.kind,
                events.text,
                sessions.cwd,
                events.source_file_path,
                events.source_line_number,
                events.source_timestamp
            FROM events
            JOIN sessions ON sessions.session_key = events.session_key
            WHERE events.session_key = ?
            "#
        .to_owned();
        append_event_kind_clause(&mut sql, &mut query_params, "events.kind", kinds);
        sql.push_str(
            r#"
            ORDER BY events.source_line_number ASC
            LIMIT ?
            "#,
        );
        query_params.push(limit.to_string());

        let mut statement = self.conn.prepare(&sql)?;

        let rows = statement.query_map(params_from_iter(query_params.iter()), |row| {
            let kind_text: String = row.get(2)?;
            let kind = kind_text.parse::<EventKind>().map_err(|_| {
                rusqlite::Error::InvalidColumnType(
                    2,
                    "kind".to_owned(),
                    rusqlite::types::Type::Text,
                )
            })?;
            let source_file_path: String = row.get(5)?;
            let source_line_number: i64 = row.get(6)?;

            Ok(SessionEvent {
                session_key: row.get(0)?,
                session_id: row.get(1)?,
                kind,
                text: row.get(3)?,
                cwd: row.get(4)?,
                source_file_path: PathBuf::from(source_file_path),
                source_line_number: source_line_number as usize,
                source_timestamp: row.get(7)?,
            })
        })?;

        rows.collect::<std::result::Result<Vec<_>, _>>()
            .map_err(Into::into)
    }

    pub fn session_repos(&self, session_key: &str) -> Result<Vec<String>> {
        let mut statement = self.conn.prepare(
            r#"
            SELECT repo
            FROM session_repos
            WHERE session_key = ?
            ORDER BY lower(repo) ASC
            "#,
        )?;
        let rows = statement.query_map(params![session_key], |row| row.get::<_, String>(0))?;

        rows.collect::<std::result::Result<Vec<_>, _>>()
            .map_err(Into::into)
    }

    pub fn is_source_current(
        &self,
        source_file_path: &Path,
        source_file_mtime_ns: i64,
        source_file_size: i64,
    ) -> Result<bool> {
        let count = self.conn.query_row(
            r#"
            SELECT COUNT(*)
            FROM ingestion_state
            WHERE source_file_path = ?
              AND source_file_mtime_ns = ?
              AND source_file_size = ?
              AND content_version = ?
            "#,
            params![
                source_file_path.display().to_string(),
                source_file_mtime_ns,
                source_file_size,
                CONTENT_VERSION,
            ],
            |row| row.get::<_, i64>(0),
        )?;
        Ok(count > 0)
    }

    pub fn mark_source_indexed(
        &self,
        source_file_path: &Path,
        source_file_mtime_ns: i64,
        source_file_size: i64,
        session_id: Option<&str>,
        session_key: Option<&str>,
    ) -> Result<()> {
        self.conn.execute(
            r#"
            INSERT INTO ingestion_state (
                source_file_path, source_file_mtime_ns, source_file_size, session_id, session_key, content_version, indexed_at
            ) VALUES (?, ?, ?, ?, ?, ?, strftime('%Y-%m-%dT%H:%M:%fZ','now'))
            ON CONFLICT(source_file_path) DO UPDATE SET
                source_file_mtime_ns = excluded.source_file_mtime_ns,
                source_file_size = excluded.source_file_size,
                session_id = excluded.session_id,
                session_key = excluded.session_key,
                content_version = excluded.content_version,
                indexed_at = excluded.indexed_at
            "#,
            params![
                source_file_path.display().to_string(),
                source_file_mtime_ns,
                source_file_size,
                session_id,
                session_key,
                CONTENT_VERSION,
            ],
        )?;
        Ok(())
    }

    pub fn last_indexed_at(&self) -> Result<Option<String>> {
        self.conn
            .query_row("SELECT MAX(indexed_at) FROM ingestion_state", [], |row| {
                row.get::<_, Option<String>>(0)
            })
            .map_err(Into::into)
    }

    fn init_schema(&self) -> Result<()> {
        self.conn.execute_batch(
            r#"
            PRAGMA journal_mode = WAL;
            PRAGMA synchronous = NORMAL;
            "#,
        )?;

        if self.table_exists("sessions")? && !self.table_has_column("sessions", "session_key")? {
            self.migrate_to_session_key_schema()?;
        }

        self.create_schema_objects()?;
        self.ensure_ingestion_state_session_key_column()?;
        self.ensure_ingestion_state_content_version_column()?;
        self.backfill_session_repos()?;
        self.backfill_session_repo_memberships()?;
        self.backfill_ingestion_session_keys()?;
        Ok(())
    }

    fn create_schema_objects(&self) -> Result<()> {
        self.conn.execute_batch(
            r#"
            CREATE TABLE IF NOT EXISTS sessions (
                session_key TEXT PRIMARY KEY,
                session_id TEXT NOT NULL,
                session_timestamp TEXT NOT NULL,
                cwd TEXT NOT NULL,
                repo TEXT NOT NULL DEFAULT '',
                cli_version TEXT,
                source_file_path TEXT NOT NULL
            );

            CREATE INDEX IF NOT EXISTS sessions_session_id_idx ON sessions(session_id);
            CREATE INDEX IF NOT EXISTS sessions_repo_idx ON sessions(repo);

            CREATE TABLE IF NOT EXISTS session_repos (
                session_key TEXT NOT NULL,
                repo TEXT NOT NULL,
                PRIMARY KEY(session_key, repo),
                FOREIGN KEY(session_key) REFERENCES sessions(session_key) ON DELETE CASCADE
            );

            CREATE INDEX IF NOT EXISTS session_repos_repo_idx ON session_repos(repo);

            CREATE TABLE IF NOT EXISTS events (
                id INTEGER PRIMARY KEY AUTOINCREMENT,
                session_key TEXT NOT NULL,
                session_id TEXT NOT NULL,
                kind TEXT NOT NULL,
                role TEXT,
                text TEXT NOT NULL,
                command TEXT,
                cwd TEXT,
                exit_code INTEGER,
                source_timestamp TEXT,
                source_file_path TEXT NOT NULL,
                source_line_number INTEGER NOT NULL,
                FOREIGN KEY(session_key) REFERENCES sessions(session_key) ON DELETE CASCADE
            );

            CREATE INDEX IF NOT EXISTS events_session_key_idx ON events(session_key);
            CREATE INDEX IF NOT EXISTS events_session_id_idx ON events(session_id);
            CREATE INDEX IF NOT EXISTS events_source_idx ON events(source_file_path, source_line_number);

            CREATE VIRTUAL TABLE IF NOT EXISTS events_fts USING fts5(
                event_id UNINDEXED,
                session_key UNINDEXED,
                session_id UNINDEXED,
                kind UNINDEXED,
                text,
                tokenize = 'porter unicode61'
            );

            CREATE TABLE IF NOT EXISTS ingestion_state (
                source_file_path TEXT PRIMARY KEY,
                source_file_mtime_ns INTEGER NOT NULL,
                source_file_size INTEGER NOT NULL,
                session_id TEXT,
                session_key TEXT,
                content_version INTEGER NOT NULL DEFAULT 2,
                indexed_at TEXT NOT NULL
            );
            "#,
        )?;
        Ok(())
    }

    fn index_session_inner(&self, parsed: &ParsedSession) -> Result<()> {
        let session_key = session_key(&parsed.session.id, &parsed.session.source_file_path);
        let repo = repo_slug(&parsed.session.cwd);
        self.conn.execute(
            r#"
            INSERT INTO sessions (
                session_key, session_id, session_timestamp, cwd, repo, cli_version, source_file_path
            ) VALUES (?, ?, ?, ?, ?, ?, ?)
            ON CONFLICT(session_key) DO UPDATE SET
                session_id = excluded.session_id,
                session_timestamp = excluded.session_timestamp,
                cwd = excluded.cwd,
                repo = excluded.repo,
                cli_version = excluded.cli_version,
                source_file_path = excluded.source_file_path
            "#,
            params![
                session_key.as_str(),
                parsed.session.id,
                parsed.session.timestamp,
                parsed.session.cwd,
                repo,
                parsed.session.cli_version,
                parsed.session.source_file_path.display().to_string(),
            ],
        )?;

        self.conn.execute(
            "DELETE FROM events_fts WHERE session_key = ?",
            params![session_key.as_str()],
        )?;
        self.conn.execute(
            "DELETE FROM events WHERE session_key = ?",
            params![session_key.as_str()],
        )?;
        self.conn.execute(
            "DELETE FROM session_repos WHERE session_key = ?",
            params![session_key.as_str()],
        )?;

        for repo in session_repos(parsed) {
            self.conn.execute(
                "INSERT OR IGNORE INTO session_repos (session_key, repo) VALUES (?, ?)",
                params![session_key.as_str(), repo],
            )?;
        }

        for event in &parsed.events {
            self.conn.execute(
                r#"
                INSERT INTO events (
                    session_key, session_id, kind, role, text, command, cwd, exit_code,
                    source_timestamp, source_file_path, source_line_number
                ) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
                "#,
                params![
                    session_key.as_str(),
                    parsed.session.id,
                    event.kind.as_str(),
                    event.role,
                    event.text,
                    event.command,
                    event.cwd,
                    event.exit_code,
                    event.source_timestamp,
                    event.source_file_path.display().to_string(),
                    event.source_line_number as i64,
                ],
            )?;
            let event_id = self.conn.last_insert_rowid();
            self.conn.execute(
                "INSERT INTO events_fts (event_id, session_key, session_id, kind, text) VALUES (?, ?, ?, ?, ?)",
                params![
                    event_id,
                    session_key.as_str(),
                    parsed.session.id,
                    event.kind.as_str(),
                    event.text
                ],
            )?;
        }

        Ok(())
    }

    fn backfill_session_repos(&self) -> Result<()> {
        let mut statement = self
            .conn
            .prepare("SELECT session_key, cwd FROM sessions WHERE repo = ''")?;
        let rows = statement.query_map([], |row| {
            Ok((row.get::<_, String>(0)?, row.get::<_, String>(1)?))
        })?;

        for row in rows {
            let (session_key, cwd) = row?;
            self.conn.execute(
                "UPDATE sessions SET repo = ? WHERE session_key = ?",
                params![repo_slug(&cwd), session_key],
            )?;
        }
        Ok(())
    }

    fn table_exists(&self, table_name: &str) -> Result<bool> {
        let count = self.conn.query_row(
            "SELECT COUNT(*) FROM sqlite_master WHERE type = 'table' AND name = ?",
            params![table_name],
            |row| row.get::<_, i64>(0),
        )?;
        Ok(count > 0)
    }

    fn table_has_column(&self, table_name: &str, column_name: &str) -> Result<bool> {
        let mut statement = self
            .conn
            .prepare(&format!("PRAGMA table_info({table_name})"))?;
        let columns = statement
            .query_map([], |row| row.get::<_, String>(1))?
            .collect::<std::result::Result<Vec<_>, _>>()?;
        Ok(columns.iter().any(|column| column == column_name))
    }

    fn ensure_ingestion_state_session_key_column(&self) -> Result<()> {
        if self.table_has_column("ingestion_state", "session_key")? {
            return Ok(());
        }

        match self.conn.execute(
            "ALTER TABLE ingestion_state ADD COLUMN session_key TEXT",
            [],
        ) {
            Ok(_) => Ok(()),
            Err(error) if error.to_string().contains("duplicate column name") => Ok(()),
            Err(error) => Err(error.into()),
        }
    }

    fn ensure_ingestion_state_content_version_column(&self) -> Result<()> {
        if self.table_has_column("ingestion_state", "content_version")? {
            return Ok(());
        }

        match self.conn.execute(
            "ALTER TABLE ingestion_state ADD COLUMN content_version INTEGER NOT NULL DEFAULT 0",
            [],
        ) {
            Ok(_) => Ok(()),
            Err(error) if error.to_string().contains("duplicate column name") => Ok(()),
            Err(error) => Err(error.into()),
        }
    }

    fn backfill_ingestion_session_keys(&self) -> Result<()> {
        if !self.table_exists("ingestion_state")? {
            return Ok(());
        }

        self.conn.execute(
            r#"
            UPDATE ingestion_state
            SET session_key = (
                SELECT sessions.session_key
                FROM sessions
                WHERE sessions.source_file_path = ingestion_state.source_file_path
                LIMIT 1
            )
            WHERE session_key IS NULL
              AND session_id IS NOT NULL
            "#,
            [],
        )?;
        Ok(())
    }

    fn backfill_session_repo_memberships(&self) -> Result<()> {
        self.conn.execute(
            r#"
            INSERT OR IGNORE INTO session_repos (session_key, repo)
            SELECT session_key, repo
            FROM sessions
            WHERE repo != ''
            "#,
            [],
        )?;

        let mut statement = self.conn.prepare(
            r#"
            SELECT DISTINCT session_key, cwd
            FROM events
            WHERE cwd IS NOT NULL
              AND cwd != ''
            "#,
        )?;
        let rows = statement.query_map([], |row| {
            Ok((row.get::<_, String>(0)?, row.get::<_, String>(1)?))
        })?;

        for row in rows {
            let (session_key, cwd) = row?;
            let repo = repo_slug(&cwd);
            if repo.is_empty() {
                continue;
            }
            self.conn.execute(
                "INSERT OR IGNORE INTO session_repos (session_key, repo) VALUES (?, ?)",
                params![session_key, repo],
            )?;
        }

        Ok(())
    }

    fn migrate_to_session_key_schema(&self) -> Result<()> {
        let old_sessions = self.load_old_sessions()?;
        let old_events = self.load_old_events()?;
        let mut keys_by_session_id = HashMap::new();
        for session in &old_sessions {
            keys_by_session_id.insert(
                session.session_id.clone(),
                session_key(&session.session_id, Path::new(&session.source_file_path)),
            );
        }

        self.conn.execute("BEGIN IMMEDIATE", [])?;
        let result = (|| -> Result<()> {
            self.conn.execute_batch(
                r#"
                DROP TABLE IF EXISTS events_fts;
                DROP TABLE IF EXISTS events;
                DROP TABLE IF EXISTS sessions;
                "#,
            )?;
            self.create_schema_objects()?;

            for session in &old_sessions {
                let session_key = keys_by_session_id
                    .get(&session.session_id)
                    .expect("session key exists");
                let repo = if session.repo.is_empty() {
                    repo_slug(&session.cwd)
                } else {
                    session.repo.clone()
                };
                self.conn.execute(
                    r#"
                    INSERT INTO sessions (
                        session_key, session_id, session_timestamp, cwd, repo, cli_version, source_file_path
                    ) VALUES (?, ?, ?, ?, ?, ?, ?)
                    "#,
                    params![
                        session_key,
                        session.session_id,
                        session.session_timestamp,
                        session.cwd,
                        repo,
                        session.cli_version,
                        session.source_file_path,
                    ],
                )?;
                self.conn.execute(
                    "INSERT OR IGNORE INTO session_repos (session_key, repo) VALUES (?, ?)",
                    params![session_key, repo],
                )?;
            }

            for event in &old_events {
                let Some(session_key) = keys_by_session_id.get(&event.session_id) else {
                    continue;
                };
                self.conn.execute(
                    r#"
                    INSERT INTO events (
                        session_key, session_id, kind, role, text, command, cwd, exit_code,
                        source_timestamp, source_file_path, source_line_number
                    ) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
                    "#,
                    params![
                        session_key,
                        event.session_id,
                        event.kind,
                        event.role,
                        event.text,
                        event.command,
                        event.cwd,
                        event.exit_code,
                        event.source_timestamp,
                        event.source_file_path,
                        event.source_line_number,
                    ],
                )?;
                let event_id = self.conn.last_insert_rowid();
                self.conn.execute(
                    "INSERT INTO events_fts (event_id, session_key, session_id, kind, text) VALUES (?, ?, ?, ?, ?)",
                    params![
                        event_id,
                        session_key,
                        event.session_id,
                        event.kind,
                        event.text
                    ],
                )?;
            }

            Ok(())
        })();

        match result {
            Ok(()) => {
                self.conn.execute("COMMIT", [])?;
                Ok(())
            }
            Err(error) => {
                let _ = self.conn.execute("ROLLBACK", []);
                Err(error)
            }
        }
    }

    fn load_old_sessions(&self) -> Result<Vec<OldSessionRow>> {
        let has_repo = self.table_has_column("sessions", "repo")?;
        let sql = if has_repo {
            "SELECT session_id, session_timestamp, cwd, repo, cli_version, source_file_path FROM sessions"
        } else {
            "SELECT session_id, session_timestamp, cwd, '' AS repo, cli_version, source_file_path FROM sessions"
        };
        let mut statement = self.conn.prepare(sql)?;
        let rows = statement.query_map([], |row| {
            Ok(OldSessionRow {
                session_id: row.get(0)?,
                session_timestamp: row.get(1)?,
                cwd: row.get(2)?,
                repo: row.get(3)?,
                cli_version: row.get(4)?,
                source_file_path: row.get(5)?,
            })
        })?;

        rows.collect::<std::result::Result<Vec<_>, _>>()
            .map_err(Into::into)
    }

    fn load_old_events(&self) -> Result<Vec<OldEventRow>> {
        if !self.table_exists("events")? {
            return Ok(Vec::new());
        }

        let mut statement = self.conn.prepare(
            r#"
            SELECT
                session_id, kind, role, text, command, cwd, exit_code,
                source_timestamp, source_file_path, source_line_number
            FROM events
            ORDER BY id ASC
            "#,
        )?;
        let rows = statement.query_map([], |row| {
            Ok(OldEventRow {
                session_id: row.get(0)?,
                kind: row.get(1)?,
                role: row.get(2)?,
                text: row.get(3)?,
                command: row.get(4)?,
                cwd: row.get(5)?,
                exit_code: row.get(6)?,
                source_timestamp: row.get(7)?,
                source_file_path: row.get(8)?,
                source_line_number: row.get(9)?,
            })
        })?;

        rows.collect::<std::result::Result<Vec<_>, _>>()
            .map_err(Into::into)
    }
}

fn configure_write_connection(conn: &Connection) -> Result<()> {
    conn.busy_timeout(Duration::from_secs(30))?;
    conn.execute_batch(
        r#"
        PRAGMA journal_mode = WAL;
        PRAGMA synchronous = NORMAL;
        PRAGMA temp_store = MEMORY;
        "#,
    )?;
    Ok(())
}

fn configure_read_connection(conn: &Connection) -> Result<()> {
    conn.busy_timeout(Duration::from_secs(30))?;
    conn.execute_batch(
        r#"
        PRAGMA query_only = ON;
        PRAGMA temp_store = MEMORY;
        "#,
    )?;
    Ok(())
}

enum SinceFilter {
    Absolute(String),
    LastDays(u32),
    Today,
    Yesterday,
}

fn parse_date_filter(value: &str, flag_name: &str) -> Result<SinceFilter> {
    let trimmed = value.trim();
    let lower = trimmed.to_ascii_lowercase();
    if lower == "today" {
        return Ok(SinceFilter::Today);
    }
    if lower == "yesterday" {
        return Ok(SinceFilter::Yesterday);
    }
    if let Some(days) = lower.strip_suffix('d') {
        let days = days
            .parse::<u32>()
            .with_context(|| format!("parse {flag_name} relative day value `{value}`"))?;
        if days == 0 {
            return Ok(SinceFilter::Today);
        }
        return Ok(SinceFilter::LastDays(days));
    }
    if looks_like_absolute_date(trimmed) {
        return Ok(SinceFilter::Absolute(trimmed.to_owned()));
    }

    anyhow::bail!(
        "unsupported {flag_name} value `{value}`; use YYYY-MM-DD, today, yesterday, or Nd like 7d"
    )
}

fn looks_like_absolute_date(value: &str) -> bool {
    let bytes = value.as_bytes();
    bytes.len() >= 10
        && bytes[0..4].iter().all(|byte| byte.is_ascii_digit())
        && bytes[4] == b'-'
        && bytes[5..7].iter().all(|byte| byte.is_ascii_digit())
        && bytes[7] == b'-'
        && bytes[8..10].iter().all(|byte| byte.is_ascii_digit())
}

fn append_since_clause(
    sql: &mut String,
    query_params: &mut Vec<String>,
    value: &str,
) -> Result<()> {
    append_lower_bound_clause(sql, query_params, value, "--since")
}

fn append_lower_bound_clause(
    sql: &mut String,
    query_params: &mut Vec<String>,
    value: &str,
    flag_name: &str,
) -> Result<()> {
    sql.push_str(
        " AND datetime(replace(replace(sessions.session_timestamp, 'T', ' '), 'Z', '')) >= ",
    );
    match parse_date_filter(value, flag_name)? {
        SinceFilter::Absolute(value) => {
            sql.push_str("datetime(?)");
            query_params.push(value);
        }
        SinceFilter::LastDays(days) => {
            sql.push_str("datetime('now', ?)");
            query_params.push(format!("-{days} days"));
        }
        SinceFilter::Today => {
            sql.push_str("datetime('now', 'localtime', 'start of day', 'utc')");
        }
        SinceFilter::Yesterday => {
            sql.push_str("datetime('now', 'localtime', 'start of day', '-1 day', 'utc')");
        }
    }
    Ok(())
}

fn append_until_clause(
    sql: &mut String,
    query_params: &mut Vec<String>,
    value: &str,
) -> Result<()> {
    sql.push_str(
        " AND datetime(replace(replace(sessions.session_timestamp, 'T', ' '), 'Z', '')) < ",
    );
    match parse_date_filter(value, "--until")? {
        SinceFilter::Absolute(value) => {
            sql.push_str("datetime(?)");
            query_params.push(value);
        }
        SinceFilter::LastDays(days) => {
            sql.push_str("datetime('now', ?)");
            query_params.push(format!("-{days} days"));
        }
        SinceFilter::Today => {
            sql.push_str("datetime('now', 'localtime', 'start of day', 'utc')");
        }
        SinceFilter::Yesterday => {
            sql.push_str("datetime('now', 'localtime', 'start of day', '-1 day', 'utc')");
        }
    }
    Ok(())
}

fn append_from_until_clauses(
    sql: &mut String,
    query_params: &mut Vec<String>,
    since: Option<&String>,
    from: Option<&String>,
    until: Option<&String>,
) -> Result<()> {
    if since.is_some() && from.is_some() {
        bail!("use either --since or --from, not both");
    }
    if let Some(since) = since {
        append_since_clause(sql, query_params, since)?;
    } else if let Some(from) = from {
        append_lower_bound_clause(sql, query_params, from, "--from")?;
    }
    if let Some(until) = until {
        append_until_clause(sql, query_params, until)?;
    }
    Ok(())
}

fn append_excluded_sessions_clause(
    sql: &mut String,
    query_params: &mut Vec<String>,
    excluded_sessions: &[String],
) {
    for excluded_session in excluded_sessions {
        sql.push_str(" AND sessions.session_id != ? AND sessions.session_key != ?");
        query_params.push(excluded_session.clone());
        query_params.push(excluded_session.clone());
    }
}

fn append_event_kind_clause(
    sql: &mut String,
    query_params: &mut Vec<String>,
    column_name: &str,
    kinds: &[EventKind],
) {
    if kinds.is_empty() {
        return;
    }
    sql.push_str(" AND ");
    sql.push_str(column_name);
    sql.push_str(" IN (");
    sql.push_str(&placeholders(kinds.len()));
    sql.push(')');
    append_kind_params(query_params, kinds);
}

fn append_recent_event_kind_clause(
    sql: &mut String,
    query_params: &mut Vec<String>,
    kinds: &[EventKind],
) {
    if kinds.is_empty() {
        return;
    }
    sql.push_str(
        r#"
        AND EXISTS (
            SELECT 1 FROM events kind_events
            WHERE kind_events.session_key = sessions.session_key
              AND kind_events.kind IN (
        "#,
    );
    sql.push_str(&placeholders(kinds.len()));
    sql.push_str("))");
    append_kind_params(query_params, kinds);
}

fn placeholders(count: usize) -> String {
    std::iter::repeat_n("?", count)
        .collect::<Vec<_>>()
        .join(", ")
}

fn append_kind_params(query_params: &mut Vec<String>, kinds: &[EventKind]) {
    query_params.extend(kinds.iter().map(|kind| kind.as_str().to_owned()));
}

struct SessionGroup {
    session_key: String,
    session_id: String,
    source_file_path: PathBuf,
    repo_matches_current: bool,
    hit_count: usize,
    best_score: f64,
    best_kind_weight: u8,
    session_timestamp: String,
    results: Vec<SearchResult>,
}

fn rank_search_results(
    results: Vec<SearchResult>,
    _current_repo: Option<&str>,
    limit: usize,
    include_duplicates: bool,
) -> Vec<SearchResult> {
    let mut groups = Vec::<SessionGroup>::new();

    for result in results {
        let kind_weight = event_kind_weight(result.kind);
        if let Some(group) = groups
            .iter_mut()
            .find(|group| group.session_key == result.session_key)
        {
            group.hit_count += 1;
            group.best_score = group.best_score.min(result.score);
            group.best_kind_weight = group.best_kind_weight.min(kind_weight);
            group.results.push(result);
        } else {
            groups.push(SessionGroup {
                session_key: result.session_key.clone(),
                session_id: result.session_id.clone(),
                source_file_path: result.source_file_path.clone(),
                repo_matches_current: result.repo_matches_current,
                hit_count: 1,
                best_score: result.score,
                best_kind_weight: kind_weight,
                session_timestamp: result.session_timestamp.clone(),
                results: vec![result],
            });
        }
    }

    if !include_duplicates {
        groups = dedupe_session_groups(groups);
    }

    groups.sort_by(|left, right| {
        right
            .repo_matches_current
            .cmp(&left.repo_matches_current)
            .then_with(|| right.hit_count.cmp(&left.hit_count))
            .then_with(|| left.best_kind_weight.cmp(&right.best_kind_weight))
            .then_with(|| {
                left.best_score
                    .partial_cmp(&right.best_score)
                    .unwrap_or(std::cmp::Ordering::Equal)
            })
            .then_with(|| right.session_timestamp.cmp(&left.session_timestamp))
            .then_with(|| left.session_key.cmp(&right.session_key))
    });

    let mut ranked = Vec::new();
    for mut group in groups {
        group.results.sort_by(|left, right| {
            left.score
                .partial_cmp(&right.score)
                .unwrap_or(std::cmp::Ordering::Equal)
                .then_with(|| event_kind_weight(left.kind).cmp(&event_kind_weight(right.kind)))
                .then_with(|| left.source_line_number.cmp(&right.source_line_number))
        });
        ranked.extend(group.results);
        if ranked.len() >= limit {
            ranked.truncate(limit);
            break;
        }
    }

    ranked
}

fn dedupe_session_groups(groups: Vec<SessionGroup>) -> Vec<SessionGroup> {
    let mut selected = HashMap::<String, SessionGroup>::new();
    for group in groups {
        match selected.entry(group.session_id.clone()) {
            Entry::Occupied(mut entry) => {
                if is_preferred_group(&group, entry.get()) {
                    entry.insert(group);
                }
            }
            Entry::Vacant(entry) => {
                entry.insert(group);
            }
        }
    }
    selected.into_values().collect()
}

fn is_preferred_group(candidate: &SessionGroup, current: &SessionGroup) -> bool {
    let candidate_priority = source_priority(&candidate.source_file_path);
    let current_priority = source_priority(&current.source_file_path);
    candidate_priority < current_priority
        || (candidate_priority == current_priority
            && candidate.repo_matches_current
            && !current.repo_matches_current)
        || (candidate_priority == current_priority
            && candidate.repo_matches_current == current.repo_matches_current
            && candidate.session_timestamp > current.session_timestamp)
        || (candidate_priority == current_priority
            && candidate.repo_matches_current == current.repo_matches_current
            && candidate.session_timestamp == current.session_timestamp
            && candidate.session_key < current.session_key)
}

fn dedupe_recent_sessions(sessions: Vec<RecentSession>) -> Vec<RecentSession> {
    let mut selected = HashMap::<String, RecentSession>::new();
    for session in sessions {
        match selected.entry(session.session_id.clone()) {
            Entry::Occupied(mut entry) => {
                if is_preferred_recent_session(&session, entry.get()) {
                    entry.insert(session);
                }
            }
            Entry::Vacant(entry) => {
                entry.insert(session);
            }
        }
    }

    let mut sessions = selected.into_values().collect::<Vec<_>>();
    sessions.sort_by(|left, right| {
        right
            .session_timestamp
            .cmp(&left.session_timestamp)
            .then_with(|| {
                source_priority(&left.source_file_path)
                    .cmp(&source_priority(&right.source_file_path))
            })
            .then_with(|| left.session_key.cmp(&right.session_key))
    });
    sessions
}

fn is_preferred_recent_session(candidate: &RecentSession, current: &RecentSession) -> bool {
    let candidate_priority = source_priority(&candidate.source_file_path);
    let current_priority = source_priority(&current.source_file_path);
    candidate_priority < current_priority
        || (candidate_priority == current_priority
            && candidate.session_timestamp > current.session_timestamp)
        || (candidate_priority == current_priority
            && candidate.session_timestamp == current.session_timestamp
            && candidate.session_key < current.session_key)
}

fn source_priority(path: &Path) -> u8 {
    if path
        .components()
        .any(|component| component.as_os_str() == "archived_sessions")
    {
        return 2;
    }
    if path
        .components()
        .any(|component| component.as_os_str() == "sessions")
    {
        return 0;
    }
    1
}

fn event_kind_weight(kind: EventKind) -> u8 {
    match kind {
        EventKind::UserMessage => 0,
        EventKind::AssistantMessage => 1,
        EventKind::Command => 2,
    }
}

fn session_repos(parsed: &ParsedSession) -> BTreeSet<String> {
    let mut repos = BTreeSet::new();
    let session_repo = repo_slug(&parsed.session.cwd);
    if !session_repo.is_empty() {
        repos.insert(session_repo);
    }

    for event in &parsed.events {
        let Some(cwd) = &event.cwd else {
            continue;
        };
        let repo = repo_slug(cwd);
        if !repo.is_empty() {
            repos.insert(repo);
        }
    }

    repos
}

fn fts_terms(query: &str) -> Vec<String> {
    let mut terms = Vec::new();
    let mut current = String::new();

    for ch in query.chars() {
        if ch.is_alphanumeric() || ch == '_' {
            current.push(ch);
        } else if !current.is_empty() {
            terms.push(std::mem::take(&mut current));
        }
    }

    if !current.is_empty() {
        terms.push(current);
    }

    terms
}

fn quote_fts_term(term: &str) -> String {
    format!("\"{}\"", term.replace('"', "\"\""))
}

fn and_fts_query(terms: &[String]) -> String {
    terms
        .iter()
        .map(|term| quote_fts_term(term))
        .collect::<Vec<_>>()
        .join(" AND ")
}

fn or_fts_query(terms: &[String]) -> String {
    terms
        .iter()
        .map(|term| quote_fts_term(term))
        .collect::<Vec<_>>()
        .join(" OR ")
}

pub fn build_session_key(session_id: &str, source_file_path: &Path) -> String {
    session_key(session_id, source_file_path)
}

fn session_key(session_id: &str, source_file_path: &Path) -> String {
    format!(
        "{}:{:016x}",
        session_id,
        fnv1a64(source_file_path.display().to_string().as_bytes())
    )
}

fn fnv1a64(bytes: &[u8]) -> u64 {
    let mut hash = 0xcbf29ce484222325u64;
    for byte in bytes {
        hash ^= u64::from(*byte);
        hash = hash.wrapping_mul(0x100000001b3);
    }
    hash
}

fn repo_slug(cwd: &str) -> String {
    Path::new(cwd)
        .file_name()
        .and_then(|name| name.to_str())
        .unwrap_or(cwd)
        .to_owned()
}

#[cfg(test)]
mod tests;