Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 | /**
* Database queries and schema setup
*
* This module provides functions for setting up the database schema
* and executing common queries.
*/
import logger from "../utils/logger.js";
import { v4 as uuidv4 } from "uuid";
/**
* Sets up the git_commits table if it doesn't exist
* @param {Object} dbClient - The TursoDB client instance
* @returns {Promise<void>}
*/
export async function setupGitCommitsTable(dbClient) {
try {
logger.info("Setting up git_commits table...");
// Create git_commits table if it doesn't exist
await dbClient.execute(`
CREATE TABLE IF NOT EXISTS git_commits (
commit_hash TEXT PRIMARY KEY,
author_name TEXT,
author_email TEXT,
commit_date DATETIME NOT NULL,
message TEXT,
created_at DATETIME DEFAULT CURRENT_TIMESTAMP
)
`);
// Create index on commit_date
await dbClient.execute(`
CREATE INDEX IF NOT EXISTS idx_git_commits_commit_date
ON git_commits(commit_date DESC)
`);
logger.info("git_commits table setup completed");
} catch (error) {
logger.error("Error setting up git_commits table", {
error: error.message,
stack: error.stack,
});
throw error;
}
}
/**
* Sets up the git_commit_files table if it doesn't exist
* @param {Object} dbClient - The TursoDB client instance
* @returns {Promise<void>}
*/
export async function setupGitCommitFilesTable(dbClient) {
try {
logger.info("Setting up git_commit_files table...");
// Create git_commit_files table if it doesn't exist
await dbClient.execute(`
CREATE TABLE IF NOT EXISTS git_commit_files (
id INTEGER PRIMARY KEY AUTOINCREMENT,
commit_hash TEXT NOT NULL,
file_path TEXT NOT NULL,
status TEXT NOT NULL,
FOREIGN KEY (commit_hash) REFERENCES git_commits(commit_hash) ON DELETE CASCADE
)
`);
// Create index on commit_hash
await dbClient.execute(`
CREATE INDEX IF NOT EXISTS idx_git_commit_files_commit_hash
ON git_commit_files(commit_hash)
`);
// Create index on file_path
await dbClient.execute(`
CREATE INDEX IF NOT EXISTS idx_git_commit_files_file_path
ON git_commit_files(file_path)
`);
logger.info("git_commit_files table setup completed");
} catch (error) {
logger.error("Error setting up git_commit_files table", {
error: error.message,
stack: error.stack,
});
throw error;
}
}
/**
* Sets up the code_entities table and its FTS virtual table if they don't exist
* @param {Object} dbClient - The TursoDB client instance
* @returns {Promise<void>}
*/
export async function setupCodeEntitiesTable(dbClient) {
try {
logger.info("Setting up code_entities table and FTS...");
// Create code_entities table if it doesn't exist
await dbClient.execute(`
CREATE TABLE IF NOT EXISTS code_entities (
entity_id TEXT PRIMARY KEY,
file_path TEXT NOT NULL,
entity_type TEXT NOT NULL,
name TEXT,
start_line INTEGER NOT NULL,
start_column INTEGER NOT NULL,
end_line INTEGER NOT NULL,
end_column INTEGER NOT NULL,
content_hash TEXT,
raw_content TEXT,
summary TEXT,
language TEXT NOT NULL,
parent_entity_id TEXT,
parsing_status TEXT DEFAULT 'pending',
ai_status TEXT DEFAULT 'pending',
ai_last_processed_at DATETIME,
custom_metadata TEXT,
created_at DATETIME DEFAULT CURRENT_TIMESTAMP,
last_modified_at DATETIME DEFAULT CURRENT_TIMESTAMP,
FOREIGN KEY (parent_entity_id) REFERENCES code_entities(entity_id) ON DELETE CASCADE
)
`);
// Create indexes for code_entities
await dbClient.execute(`
CREATE INDEX IF NOT EXISTS idx_code_entities_file_path
ON code_entities(file_path)
`);
await dbClient.execute(`
CREATE INDEX IF NOT EXISTS idx_code_entities_entity_type
ON code_entities(entity_type)
`);
await dbClient.execute(`
CREATE INDEX IF NOT EXISTS idx_code_entities_language
ON code_entities(language)
`);
await dbClient.execute(`
CREATE INDEX IF NOT EXISTS idx_code_entities_parent_id
ON code_entities(parent_entity_id)
`);
// Create FTS5 virtual table for code_entities
await dbClient.execute(`
CREATE VIRTUAL TABLE IF NOT EXISTS code_entities_fts USING fts5(
entity_id UNINDEXED,
name,
summary_fts,
content_fts,
keywords_fts,
tokenize = 'porter unicode61'
)
`);
// Create trigger for AFTER INSERT on code_entities
await dbClient.execute(`
CREATE TRIGGER IF NOT EXISTS code_entities_ai AFTER INSERT ON code_entities BEGIN
INSERT INTO code_entities_fts (
rowid,
entity_id,
name,
summary_fts,
content_fts,
keywords_fts
)
VALUES (
new.rowid,
new.entity_id,
new.name,
new.summary,
new.raw_content,
json_extract(new.custom_metadata, '$.keywords')
);
END;
`);
// Create trigger for AFTER UPDATE on code_entities
await dbClient.execute(`
CREATE TRIGGER IF NOT EXISTS code_entities_au AFTER UPDATE ON code_entities BEGIN
UPDATE code_entities_fts SET
entity_id = new.entity_id,
name = new.name,
summary_fts = new.summary,
content_fts = new.raw_content,
keywords_fts = json_extract(new.custom_metadata, '$.keywords')
WHERE rowid = old.rowid;
END;
`);
// Create trigger for AFTER DELETE on code_entities
await dbClient.execute(`
CREATE TRIGGER IF NOT EXISTS code_entities_ad AFTER DELETE ON code_entities BEGIN
DELETE FROM code_entities_fts WHERE rowid = old.rowid;
END;
`);
logger.info("code_entities table and FTS setup completed");
} catch (error) {
logger.error("Error setting up code_entities table and FTS", {
error: error.message,
stack: error.stack,
});
throw error;
}
}
/**
* Sets up the project_documents table and its FTS virtual table if they don't exist
* @param {Object} dbClient - The TursoDB client instance
* @returns {Promise<void>}
*/
export async function setupProjectDocumentsTable(dbClient) {
try {
logger.info("Setting up project_documents table and FTS...");
// Create project_documents table if it doesn't exist
await dbClient.execute(`
CREATE TABLE IF NOT EXISTS project_documents (
document_id TEXT PRIMARY KEY,
file_path TEXT NOT NULL UNIQUE,
file_type TEXT NOT NULL,
raw_content TEXT,
content_hash TEXT,
summary TEXT,
parsing_status TEXT DEFAULT 'pending',
ai_status TEXT DEFAULT 'pending',
ai_last_processed_at DATETIME,
custom_metadata TEXT,
created_at DATETIME DEFAULT CURRENT_TIMESTAMP,
last_modified_at DATETIME DEFAULT CURRENT_TIMESTAMP
)
`);
// Create indexes for project_documents
await dbClient.execute(`
CREATE INDEX IF NOT EXISTS idx_project_documents_file_path
ON project_documents(file_path)
`);
await dbClient.execute(`
CREATE INDEX IF NOT EXISTS idx_project_documents_file_type
ON project_documents(file_type)
`);
await dbClient.execute(`
CREATE INDEX IF NOT EXISTS idx_project_documents_parsing_status
ON project_documents(parsing_status)
`);
// Create FTS5 virtual table for project_documents
await dbClient.execute(`
CREATE VIRTUAL TABLE IF NOT EXISTS project_documents_fts USING fts5(
document_id UNINDEXED,
file_path_fts,
summary_fts,
content_fts,
keywords_fts,
tokenize = 'porter unicode61'
)
`);
// Create trigger for AFTER INSERT on project_documents
await dbClient.execute(`
CREATE TRIGGER IF NOT EXISTS project_documents_ai AFTER INSERT ON project_documents BEGIN
INSERT INTO project_documents_fts (
rowid,
document_id,
file_path_fts,
summary_fts,
content_fts,
keywords_fts
)
VALUES (
new.rowid,
new.document_id,
new.file_path,
new.summary,
new.raw_content,
json_extract(new.custom_metadata, '$.keywords')
);
END;
`);
// Create trigger for AFTER UPDATE on project_documents
await dbClient.execute(`
CREATE TRIGGER IF NOT EXISTS project_documents_au AFTER UPDATE ON project_documents BEGIN
UPDATE project_documents_fts SET
document_id = new.document_id,
file_path_fts = new.file_path,
summary_fts = new.summary,
content_fts = new.raw_content,
keywords_fts = json_extract(new.custom_metadata, '$.keywords')
WHERE rowid = old.rowid;
END;
`);
// Create trigger for AFTER DELETE on project_documents
await dbClient.execute(`
CREATE TRIGGER IF NOT EXISTS project_documents_ad AFTER DELETE ON project_documents BEGIN
DELETE FROM project_documents_fts WHERE rowid = old.rowid;
END;
`);
logger.info("project_documents table and FTS setup completed");
} catch (error) {
logger.error("Error setting up project_documents table and FTS", {
error: error.message,
stack: error.stack,
});
throw error;
}
}
/**
* Sets up the code_relationships table if it doesn't exist
* @param {Object} dbClient - The TursoDB client instance
* @returns {Promise<void>}
*/
export async function setupCodeRelationshipsTable(dbClient) {
try {
logger.info("Setting up code_relationships table...");
// Create code_relationships table if it doesn't exist
await dbClient.execute(`
CREATE TABLE IF NOT EXISTS code_relationships (
relationship_id TEXT PRIMARY KEY,
source_entity_id TEXT NOT NULL,
target_entity_id TEXT,
target_symbol_name TEXT,
relationship_type TEXT NOT NULL,
weight REAL DEFAULT 1.0,
custom_metadata TEXT,
created_at DATETIME DEFAULT CURRENT_TIMESTAMP,
FOREIGN KEY (source_entity_id) REFERENCES code_entities(entity_id) ON DELETE CASCADE,
FOREIGN KEY (target_entity_id) REFERENCES code_entities(entity_id) ON DELETE SET NULL
)
`);
// Create index on source_entity_id
await dbClient.execute(`
CREATE INDEX IF NOT EXISTS idx_code_relationships_source_entity_id
ON code_relationships(source_entity_id)
`);
// Create index on target_entity_id
await dbClient.execute(`
CREATE INDEX IF NOT EXISTS idx_code_relationships_target_entity_id
ON code_relationships(target_entity_id)
`);
// Create index on relationship_type
await dbClient.execute(`
CREATE INDEX IF NOT EXISTS idx_code_relationships_type
ON code_relationships(relationship_type)
`);
logger.info("code_relationships table setup completed");
} catch (error) {
logger.error("Error setting up code_relationships table", {
error: error.message,
stack: error.stack,
});
throw error;
}
}
/**
* Sets up the entity_keywords table if it doesn't exist
* @param {Object} dbClient - The TursoDB client instance
* @returns {Promise<void>}
*/
export async function setupEntityKeywordsTable(dbClient) {
try {
logger.info("Setting up entity_keywords table...");
// Create entity_keywords table if it doesn't exist
await dbClient.execute(`
CREATE TABLE IF NOT EXISTS entity_keywords (
keyword_id INTEGER PRIMARY KEY AUTOINCREMENT,
entity_id TEXT NOT NULL,
keyword TEXT NOT NULL,
weight REAL DEFAULT 1.0,
keyword_type TEXT NOT NULL
)
`);
// Create index on entity_id
await dbClient.execute(`
CREATE INDEX IF NOT EXISTS idx_entity_keywords_entity_id
ON entity_keywords(entity_id)
`);
// Create index on keyword
await dbClient.execute(`
CREATE INDEX IF NOT EXISTS idx_entity_keywords_keyword
ON entity_keywords(keyword)
`);
// Create index on keyword_type
await dbClient.execute(`
CREATE INDEX IF NOT EXISTS idx_entity_keywords_type
ON entity_keywords(keyword_type)
`);
// Create unique index on entity_id and keyword combination
await dbClient.execute(`
CREATE UNIQUE INDEX IF NOT EXISTS idx_entity_keywords_unique
ON entity_keywords(entity_id, keyword)
`);
logger.info("entity_keywords table setup completed");
} catch (error) {
logger.error("Error setting up entity_keywords table", {
error: error.message,
stack: error.stack,
});
throw error;
}
}
/**
* Sets up the conversation_history table if it doesn't exist
* @param {Object} dbClient - The TursoDB client instance
* @returns {Promise<void>}
*/
export async function setupConversationHistoryTable(dbClient) {
try {
logger.info("Setting up conversation_history table...");
// Create conversation_history table if it doesn't exist
await dbClient.execute(`
CREATE TABLE IF NOT EXISTS conversation_history (
message_id TEXT PRIMARY KEY,
conversation_id TEXT NOT NULL,
role TEXT NOT NULL,
content TEXT NOT NULL,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL,
related_entity_ids TEXT,
topic_id TEXT,
FOREIGN KEY (topic_id) REFERENCES conversation_topics(topic_id) ON DELETE SET NULL
)
`);
// Create index on conversation_id and timestamp
await dbClient.execute(`
CREATE INDEX IF NOT EXISTS idx_conversation_history_conversation_timestamp
ON conversation_history(conversation_id, timestamp)
`);
logger.info("conversation_history table setup completed");
} catch (error) {
logger.error("Error setting up conversation_history table", {
error: error.message,
stack: error.stack,
});
throw error;
}
}
/**
* Sets up the conversation_topics table if it doesn't exist
* @param {Object} dbClient - The TursoDB client instance
* @returns {Promise<void>}
*/
export async function setupConversationTopicsTable(dbClient) {
try {
logger.info("Setting up conversation_topics table...");
// Create conversation_topics table if it doesn't exist
await dbClient.execute(`
CREATE TABLE IF NOT EXISTS conversation_topics (
topic_id TEXT PRIMARY KEY,
conversation_id TEXT NOT NULL,
summary TEXT,
keywords TEXT,
purpose_tag TEXT,
start_message_id TEXT,
end_message_id TEXT,
start_timestamp DATETIME,
end_timestamp DATETIME,
created_at DATETIME DEFAULT CURRENT_TIMESTAMP,
FOREIGN KEY (start_message_id) REFERENCES conversation_history(message_id) ON DELETE SET NULL,
FOREIGN KEY (end_message_id) REFERENCES conversation_history(message_id) ON DELETE SET NULL
)
`);
// Create index on conversation_id
await dbClient.execute(`
CREATE INDEX IF NOT EXISTS idx_conversation_topics_conversation_id
ON conversation_topics(conversation_id)
`);
logger.info("conversation_topics table setup completed");
} catch (error) {
logger.error("Error setting up conversation_topics table", {
error: error.message,
stack: error.stack,
});
throw error;
}
}
/**
* Sets up the background_ai_jobs table if it doesn't exist
* @param {Object} dbClient - The TursoDB client instance
* @returns {Promise<void>}
*/
export async function setupBackgroundAiJobsTable(dbClient) {
try {
logger.info("Setting up background_ai_jobs table...");
// Create background_ai_jobs table if it doesn't exist
await dbClient.execute(`
CREATE TABLE IF NOT EXISTS background_ai_jobs (
job_id TEXT PRIMARY KEY,
target_entity_id TEXT NOT NULL,
target_entity_type TEXT NOT NULL,
task_type TEXT NOT NULL,
status TEXT NOT NULL DEFAULT 'pending',
payload TEXT,
attempts INTEGER DEFAULT 0,
max_attempts INTEGER DEFAULT 3,
last_attempted_at DATETIME,
error_message TEXT,
result_summary TEXT,
created_at DATETIME DEFAULT CURRENT_TIMESTAMP,
updated_at DATETIME DEFAULT CURRENT_TIMESTAMP
)
`);
// Create index on status for finding jobs by status
await dbClient.execute(`
CREATE INDEX IF NOT EXISTS idx_background_ai_jobs_status
ON background_ai_jobs(status)
`);
// Create index on target_entity_id and target_entity_type
await dbClient.execute(`
CREATE INDEX IF NOT EXISTS idx_background_ai_jobs_target
ON background_ai_jobs(target_entity_id, target_entity_type)
`);
// Create trigger to auto-update updated_at timestamp
await dbClient.execute(`
CREATE TRIGGER IF NOT EXISTS trg_background_ai_jobs_updated_at
AFTER UPDATE ON background_ai_jobs
FOR EACH ROW
BEGIN
UPDATE background_ai_jobs SET updated_at = CURRENT_TIMESTAMP
WHERE job_id = NEW.job_id;
END;
`);
logger.info("background_ai_jobs table setup completed");
} catch (error) {
logger.error("Error setting up background_ai_jobs table", {
error: error.message,
stack: error.stack,
});
throw error;
}
}
/**
* Sets up the system_metadata table if it doesn't exist
* This table is used to store system-wide settings and state
* @param {Object} dbClient - The TursoDB client instance
* @returns {Promise<void>}
*/
export async function setupSystemMetadataTable(dbClient) {
try {
logger.info("Setting up system_metadata table...");
// Create system_metadata table if it doesn't exist
await dbClient.execute(`
CREATE TABLE IF NOT EXISTS system_metadata (
key TEXT PRIMARY KEY,
value TEXT,
updated_at DATETIME DEFAULT CURRENT_TIMESTAMP
)
`);
// Create trigger to auto-update updated_at timestamp
await dbClient.execute(`
CREATE TRIGGER IF NOT EXISTS trg_system_metadata_updated_at
AFTER UPDATE ON system_metadata
FOR EACH ROW
BEGIN
UPDATE system_metadata SET updated_at = CURRENT_TIMESTAMP
WHERE key = NEW.key;
END;
`);
logger.info("system_metadata table setup completed");
} catch (error) {
logger.error("Error setting up system_metadata table", {
error: error.message,
stack: error.stack,
});
throw error;
}
}
/**
* Gets the last processed commit OID from the system_metadata table
* @param {Object} dbClient - The TursoDB client instance
* @returns {Promise<string|null>} The last processed commit OID or null if not found
*/
export async function getLastProcessedCommitOid(dbClient) {
try {
logger.debug("Retrieving last processed commit OID from database...");
const result = await dbClient.execute({
sql: "SELECT value FROM system_metadata WHERE key = ?",
args: ["last_processed_git_oid"],
});
if (result.rows.length > 0) {
const oid = result.rows[0].value;
logger.debug(`Retrieved last processed commit OID: ${oid}`);
return oid;
}
logger.debug("No last processed commit OID found");
return null;
} catch (error) {
logger.error("Error retrieving last processed commit OID", {
error: error.message,
stack: error.stack,
});
throw error;
}
}
/**
* Sets the last processed commit OID in the system_metadata table
* @param {Object} dbClient - The TursoDB client instance
* @param {string} oid - The commit OID to store
* @returns {Promise<void>}
*/
export async function setLastProcessedCommitOid(dbClient, oid) {
try {
logger.debug(`Setting last processed commit OID to: ${oid}`);
await dbClient.execute({
sql: "INSERT OR REPLACE INTO system_metadata (key, value) VALUES (?, ?)",
args: ["last_processed_git_oid", oid],
});
logger.debug("Last processed commit OID stored successfully");
} catch (error) {
logger.error("Error setting last processed commit OID", {
error: error.message,
stack: error.stack,
oid,
});
throw error;
}
}
/**
* Adds a Git commit to the git_commits table
* @param {Object} dbClient - The TursoDB client instance
* @param {Object} commitData - The commit data
* @param {string} commitData.commit_hash - The commit hash
* @param {string} commitData.author_name - The author name
* @param {string} commitData.author_email - The author email
* @param {string|Date} commitData.commit_date - The commit date (ISO 8601 string or Date object)
* @param {string} commitData.message - The commit message
* @returns {Promise<void>}
*/
export async function addGitCommit(dbClient, commitData) {
try {
logger.debug(`Adding Git commit to database: ${commitData.commit_hash}`);
// Convert Date object to ISO string if needed
const commitDate =
commitData.commit_date instanceof Date
? commitData.commit_date.toISOString()
: commitData.commit_date;
await dbClient.execute({
sql: `
INSERT OR IGNORE INTO git_commits (
commit_hash,
author_name,
author_email,
commit_date,
message
) VALUES (?, ?, ?, ?, ?)
`,
args: [
commitData.commit_hash,
commitData.author_name,
commitData.author_email,
commitDate,
commitData.message,
],
});
logger.debug(`Git commit ${commitData.commit_hash} added successfully`);
} catch (error) {
logger.error("Error adding Git commit to database", {
error: error.message,
stack: error.stack,
commitHash: commitData.commit_hash,
});
throw error;
}
}
/**
* Adds a Git commit file entry to the git_commit_files table
* @param {Object} dbClient - The TursoDB client instance
* @param {string} commitHash - The commit hash
* @param {string} filePath - The file path
* @param {string} status - The file status (added, modified, deleted, renamed)
* @param {string} [oldFilePath] - The old file path (for renamed files)
* @returns {Promise<void>}
*/
export async function addGitCommitFile(
dbClient,
commitHash,
filePath,
status,
oldFilePath = null
) {
try {
logger.debug(
`Adding Git commit file to database: ${commitHash} - ${filePath} (${status})`
);
await dbClient.execute({
sql: `
INSERT INTO git_commit_files (
commit_hash,
file_path,
status
) VALUES (?, ?, ?)
`,
args: [commitHash, filePath, status],
});
// For renamed files, add an additional entry for the old file path
if (status === "renamed" && oldFilePath) {
logger.debug(`Adding old path for renamed file: ${oldFilePath}`);
await dbClient.execute({
sql: `
INSERT INTO git_commit_files (
commit_hash,
file_path,
status
) VALUES (?, ?, ?)
`,
args: [commitHash, oldFilePath, "renamed_from"],
});
}
logger.debug(
`Git commit file ${commitHash} - ${filePath} added successfully`
);
} catch (error) {
logger.error("Error adding Git commit file to database", {
error: error.message,
stack: error.stack,
commitHash,
filePath,
status,
});
throw error;
}
}
/**
* Adds a new background AI job to the background_ai_jobs table
* @param {Object} dbClient - The TursoDB client instance
* @param {Object} jobData - The job data
* @param {string} jobData.job_id - Unique ID for the job (UUID)
* @param {string} jobData.target_entity_id - ID of the entity/document to process
* @param {string} jobData.target_entity_type - Type of the target entity (e.g., 'code_entity', 'project_document')
* @param {string} jobData.task_type - Type of task to perform (e.g., 'enrich_entity_summary_keywords')
* @param {string} [jobData.status='pending'] - Initial status for the job
* @param {string} [jobData.payload] - Optional additional data needed for the job (JSON string)
* @param {number} [jobData.max_attempts] - Maximum number of attempts (uses default from schema if not provided)
* @returns {Promise<void>}
*/
export async function addBackgroundAiJob(dbClient, jobData) {
try {
logger.debug(
`Adding background AI job to database: ${jobData.job_id} for ${jobData.target_entity_type} ${jobData.target_entity_id}`
);
// Set default status if not provided
const status = jobData.status || "pending";
await dbClient.execute({
sql: `
INSERT INTO background_ai_jobs (
job_id,
target_entity_id,
target_entity_type,
task_type,
status,
payload,
max_attempts
) VALUES (?, ?, ?, ?, ?, ?, ?)
`,
args: [
jobData.job_id,
jobData.target_entity_id,
jobData.target_entity_type,
jobData.task_type,
status,
jobData.payload || null,
jobData.max_attempts || null, // If null, will use the default from schema
],
});
logger.debug(`Background AI job ${jobData.job_id} added successfully`);
} catch (error) {
logger.error("Error adding background AI job to database", {
error: error.message,
stack: error.stack,
jobId: jobData.job_id,
targetEntityId: jobData.target_entity_id,
});
throw error;
}
}
/**
* Cancels/deletes background AI jobs for a specific entity
* @param {Object} dbClient - The TursoDB client instance
* @param {string} targetEntityId - ID of the entity for which to cancel jobs
* @returns {Promise<{deletedCount: number}>} The number of jobs deleted
*/
export async function cancelBackgroundAiJobsForEntity(
dbClient,
targetEntityId
) {
try {
logger.debug(
`Cancelling background AI jobs for entity ID: ${targetEntityId}`
);
// Only delete jobs that are in a cancellable state (pending or retry_ai)
const result = await dbClient.execute({
sql: `
DELETE FROM background_ai_jobs
WHERE target_entity_id = ?
AND status IN ('pending', 'retry_ai')
`,
args: [targetEntityId],
});
const deletedCount = result.rowsAffected;
logger.info(
`Cancelled ${deletedCount} background AI jobs for entity ID: ${targetEntityId}`
);
return { deletedCount };
} catch (error) {
logger.error("Error cancelling background AI jobs for entity", {
error: error.message,
stack: error.stack,
targetEntityId,
});
throw error;
}
}
/**
* Master function to initialize all database tables and schema
* This function calls all individual table setup functions in sequence
* @param {Object} dbClient - The TursoDB client instance
* @returns {Promise<void>}
*/
export async function initializeDatabaseSchema(dbClient) {
try {
logger.info("Starting database schema initialization...");
// Initialize system metadata table
await setupSystemMetadataTable(dbClient);
// Initialize Git-related tables
await setupGitCommitsTable(dbClient);
await setupGitCommitFilesTable(dbClient);
// Initialize code and document tables
await setupCodeEntitiesTable(dbClient);
await setupProjectDocumentsTable(dbClient);
// Initialize code relationships
await setupCodeRelationshipsTable(dbClient);
await setupEntityKeywordsTable(dbClient);
// Handle circular dependency between conversation tables
// First create tables without foreign key constraints
try {
await dbClient.execute(`
CREATE TABLE IF NOT EXISTS conversation_history (
message_id TEXT PRIMARY KEY,
conversation_id TEXT NOT NULL,
role TEXT NOT NULL,
content TEXT NOT NULL,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL,
related_entity_ids TEXT,
topic_id TEXT
)
`);
await dbClient.execute(`
CREATE TABLE IF NOT EXISTS conversation_topics (
topic_id TEXT PRIMARY KEY,
conversation_id TEXT NOT NULL,
summary TEXT,
keywords TEXT,
purpose_tag TEXT,
start_message_id TEXT,
end_message_id TEXT,
start_timestamp DATETIME,
end_timestamp DATETIME,
created_at DATETIME DEFAULT CURRENT_TIMESTAMP
)
`);
// Now that both tables exist, call the setup functions to handle indexes and any missing pieces
await setupConversationTopicsTable(dbClient);
await setupConversationHistoryTable(dbClient);
} catch (err) {
// If tables already exist with constraints, just call the standard setup functions
await setupConversationHistoryTable(dbClient);
await setupConversationTopicsTable(dbClient);
}
// Initialize background jobs table
await setupBackgroundAiJobsTable(dbClient);
logger.info("Database schema initialization completed successfully");
} catch (error) {
logger.error("Critical error during database schema initialization", {
error: error.message,
stack: error.stack,
});
throw error;
}
}
/**
* Adds a new code entity or updates an existing one based on entity_id
* @param {Object} dbClient - The TursoDB client instance
* @param {Object} entityData - The entity data to insert or update
* @param {string} entityData.entity_id - Unique identifier for the entity
* @param {string} entityData.file_path - Path to the file containing the entity
* @param {string} entityData.entity_type - Type of entity (function, class, etc.)
* @param {string} entityData.name - Name of the entity
* @param {number} entityData.start_line - Starting line of the entity
* @param {number} entityData.start_column - Starting column of the entity
* @param {number} entityData.end_line - Ending line of the entity
* @param {number} entityData.end_column - Ending column of the entity
* @param {string} entityData.content_hash - Hash of the entity content
* @param {string} entityData.raw_content - Raw content of the entity
* @param {string} entityData.summary - Summary of the entity
* @param {string} entityData.language - Programming language of the entity
* @param {string} [entityData.parent_entity_id] - ID of the parent entity
* @param {string} [entityData.parsing_status] - Status of parsing
* @param {string} [entityData.ai_status] - Status of AI processing
* @param {string} [entityData.custom_metadata] - JSON string of custom metadata
* @returns {Promise<Object>} The result of the operation
*/
export async function addOrUpdateCodeEntity(dbClient, entityData) {
try {
logger.debug(
`Adding or updating code entity: ${entityData.entity_id} (${entityData.name})`
);
// Ensure we have all required fields
if (
!entityData.entity_id ||
!entityData.file_path ||
!entityData.entity_type ||
!entityData.language ||
entityData.start_line === undefined ||
entityData.start_column === undefined ||
entityData.end_line === undefined ||
entityData.end_column === undefined
) {
throw new Error("Missing required fields for code entity");
}
// Set default values for optional fields
const parsingStatus = entityData.parsing_status || "pending";
const aiStatus = entityData.ai_status || "pending";
const result = await dbClient.execute({
sql: `
INSERT INTO code_entities (
entity_id,
file_path,
entity_type,
name,
start_line,
start_column,
end_line,
end_column,
content_hash,
raw_content,
summary,
language,
parent_entity_id,
parsing_status,
ai_status,
custom_metadata,
created_at,
last_modified_at
) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP)
ON CONFLICT (entity_id) DO UPDATE SET
file_path = excluded.file_path,
entity_type = excluded.entity_type,
name = excluded.name,
start_line = excluded.start_line,
start_column = excluded.start_column,
end_line = excluded.end_line,
end_column = excluded.end_column,
content_hash = excluded.content_hash,
raw_content = excluded.raw_content,
summary = excluded.summary,
language = excluded.language,
parent_entity_id = excluded.parent_entity_id,
parsing_status = excluded.parsing_status,
ai_status = excluded.ai_status,
custom_metadata = excluded.custom_metadata,
last_modified_at = CURRENT_TIMESTAMP
`,
args: [
entityData.entity_id,
entityData.file_path,
entityData.entity_type,
entityData.name || null,
entityData.start_line,
entityData.start_column,
entityData.end_line,
entityData.end_column,
entityData.content_hash || null,
entityData.raw_content || null,
entityData.summary || null,
entityData.language,
entityData.parent_entity_id || null,
parsingStatus,
aiStatus,
entityData.custom_metadata || null,
],
});
logger.debug(
`Code entity ${entityData.entity_id} added or updated successfully`
);
return result;
} catch (error) {
logger.error("Error adding or updating code entity", {
error: error.message,
stack: error.stack,
entityId: entityData.entity_id,
});
throw error;
}
}
/**
* Gets a code entity by its ID
* @param {Object} dbClient - The TursoDB client instance
* @param {string} entityId - The ID of the entity to retrieve
* @returns {Promise<Object|null>} The code entity or null if not found
*/
export async function getCodeEntityById(dbClient, entityId) {
try {
logger.debug(`Retrieving code entity by ID: ${entityId}`);
const result = await dbClient.execute({
sql: "SELECT * FROM code_entities WHERE entity_id = ?",
args: [entityId],
});
if (result.rows.length === 0) {
logger.debug(`No code entity found with ID: ${entityId}`);
return null;
}
logger.debug(`Code entity ${entityId} retrieved successfully`);
return result.rows[0];
} catch (error) {
logger.error("Error retrieving code entity by ID", {
error: error.message,
stack: error.stack,
entityId,
});
throw error;
}
}
/**
* Deletes all code entities associated with a specific file path
* @param {Object} dbClient - The TursoDB client instance
* @param {string} filePath - The file path for which to delete entities
* @returns {Promise<{deletedCount: number}>} The number of entities deleted
*/
export async function deleteCodeEntitiesByFilePath(dbClient, filePath) {
try {
logger.debug(`Deleting code entities for file path: ${filePath}`);
const result = await dbClient.execute({
sql: "DELETE FROM code_entities WHERE file_path = ?",
args: [filePath],
});
const deletedCount = result.rowsAffected;
logger.info(
`Deleted ${deletedCount} code entities for file path: ${filePath}`
);
return { deletedCount };
} catch (error) {
logger.error("Error deleting code entities by file path", {
error: error.message,
stack: error.stack,
filePath,
});
throw error;
}
}
/**
* Updates the AI status, summary, and processing timestamp for a code entity
* @param {Object} dbClient - The TursoDB client instance
* @param {string} entityId - The ID of the entity to update
* @param {string} aiStatus - The new AI status
* @param {string} [summary] - Optional new summary
* @param {Date|string} [aiLastProcessedAt] - Optional processing timestamp
* @returns {Promise<Object>} The result of the operation
*/
export async function updateCodeEntityAiStatus(
dbClient,
entityId,
aiStatus,
summary = null,
aiLastProcessedAt = null
) {
try {
logger.debug(
`Updating AI status for code entity ${entityId} to ${aiStatus}`
);
// If aiLastProcessedAt is provided but is a Date object, convert to ISO string
const processedAt =
aiLastProcessedAt instanceof Date
? aiLastProcessedAt.toISOString()
: aiLastProcessedAt || new Date().toISOString();
// Build the SQL query dynamically based on which fields are provided
let sql =
"UPDATE code_entities SET ai_status = ?, ai_last_processed_at = ?";
const args = [aiStatus, processedAt];
// Add summary to update if provided
if (summary !== null) {
sql += ", summary = ?";
args.push(summary);
}
// Add the WHERE clause
sql += ", last_modified_at = CURRENT_TIMESTAMP WHERE entity_id = ?";
args.push(entityId);
const result = await dbClient.execute({
sql,
args,
});
if (result.rowsAffected === 0) {
logger.warn(`No code entity found to update with ID: ${entityId}`);
} else {
logger.debug(
`AI status updated successfully for code entity ${entityId}`
);
}
return result;
} catch (error) {
logger.error("Error updating AI status for code entity", {
error: error.message,
stack: error.stack,
entityId,
aiStatus,
});
throw error;
}
}
/**
* Gets all code entities for a specific file path
* @param {Object} dbClient - The TursoDB client instance
* @param {string} filePath - The file path to retrieve entities for
* @returns {Promise<Array<Object>>} The code entities for the file path
*/
export async function getCodeEntitiesByFilePath(dbClient, filePath) {
try {
logger.debug(`Retrieving code entities for file path: ${filePath}`);
const result = await dbClient.execute({
sql: "SELECT * FROM code_entities WHERE file_path = ? ORDER BY start_line, start_column",
args: [filePath],
});
logger.debug(
`Retrieved ${result.rows.length} code entities for file path: ${filePath}`
);
return result.rows;
} catch (error) {
logger.error("Error retrieving code entities by file path", {
error: error.message,
stack: error.stack,
filePath,
});
throw error;
}
}
/**
* Adds a new code relationship to the code_relationships table
* @param {Object} dbClient - The TursoDB client instance
* @param {Object} relationshipData - The relationship data to insert
* @param {string} relationshipData.relationship_id - Unique identifier for the relationship
* @param {string} relationshipData.source_entity_id - ID of the source entity
* @param {string} [relationshipData.target_entity_id] - ID of the target entity (optional for unresolved relationships)
* @param {string} [relationshipData.target_symbol_name] - Symbol name of the target (useful when target_entity_id is unknown)
* @param {string} relationshipData.relationship_type - Type of relationship
* @param {number} [relationshipData.weight] - Weight of the relationship
* @param {string} [relationshipData.custom_metadata] - JSON string of custom metadata
* @returns {Promise<Object>} The result of the operation
*/
export async function addCodeRelationship(dbClient, relationshipData) {
try {
logger.debug(
`Adding code relationship: ${relationshipData.relationship_id} (${relationshipData.relationship_type})`
);
// Ensure we have all required fields
if (
!relationshipData.relationship_id ||
!relationshipData.source_entity_id ||
!relationshipData.relationship_type
) {
throw new Error("Missing required fields for code relationship");
}
// Set default values for optional fields
const weight = relationshipData.weight || 1.0;
const result = await dbClient.execute({
sql: `
INSERT INTO code_relationships (
relationship_id,
source_entity_id,
target_entity_id,
target_symbol_name,
relationship_type,
weight,
custom_metadata,
created_at
) VALUES (?, ?, ?, ?, ?, ?, ?, CURRENT_TIMESTAMP)
`,
args: [
relationshipData.relationship_id,
relationshipData.source_entity_id,
relationshipData.target_entity_id || null,
relationshipData.target_symbol_name || null,
relationshipData.relationship_type,
weight,
relationshipData.custom_metadata || null,
],
});
logger.debug(
`Code relationship ${relationshipData.relationship_id} added successfully`
);
return result;
} catch (error) {
logger.error("Error adding code relationship", {
error: error.message,
stack: error.stack,
relationshipId: relationshipData.relationship_id,
sourceEntityId: relationshipData.source_entity_id,
});
throw error;
}
}
/**
* Deletes code relationships where the given entity is the source
* @param {Object} dbClient - The TursoDB client instance
* @param {string} sourceEntityId - ID of the source entity
* @returns {Promise<{deletedCount: number}>} The number of relationships deleted
*/
export async function deleteCodeRelationshipsBySourceEntityId(
dbClient,
sourceEntityId
) {
try {
logger.debug(
`Deleting code relationships for source entity ID: ${sourceEntityId}`
);
const result = await dbClient.execute({
sql: "DELETE FROM code_relationships WHERE source_entity_id = ?",
args: [sourceEntityId],
});
const deletedCount = result.rowsAffected;
logger.info(
`Deleted ${deletedCount} code relationships for source entity ID: ${sourceEntityId}`
);
return { deletedCount };
} catch (error) {
logger.error("Error deleting code relationships by source entity ID", {
error: error.message,
stack: error.stack,
sourceEntityId,
});
throw error;
}
}
/**
* Deletes code relationships where the given entity is the target
* @param {Object} dbClient - The TursoDB client instance
* @param {string} targetEntityId - ID of the target entity
* @returns {Promise<{deletedCount: number}>} The number of relationships deleted
*/
export async function deleteCodeRelationshipsByTargetEntityId(
dbClient,
targetEntityId
) {
try {
logger.debug(
`Deleting code relationships for target entity ID: ${targetEntityId}`
);
const result = await dbClient.execute({
sql: "DELETE FROM code_relationships WHERE target_entity_id = ?",
args: [targetEntityId],
});
const deletedCount = result.rowsAffected;
logger.info(
`Deleted ${deletedCount} code relationships for target entity ID: ${targetEntityId}`
);
return { deletedCount };
} catch (error) {
logger.error("Error deleting code relationships by target entity ID", {
error: error.message,
stack: error.stack,
targetEntityId,
});
throw error;
}
}
/**
* Deletes all code relationships associated with entities in a specific file path
* @param {Object} dbClient - The TursoDB client instance
* @param {string} filePath - The file path to delete relationships for
* @returns {Promise<{deletedCount: number}>} The number of relationships deleted
*/
export async function deleteCodeRelationshipsByFilePath(dbClient, filePath) {
try {
logger.debug(`Deleting code relationships for file path: ${filePath}`);
const result = await dbClient.execute({
sql: `
DELETE FROM code_relationships
WHERE source_entity_id IN (
SELECT entity_id FROM code_entities WHERE file_path = ?
)
OR target_entity_id IN (
SELECT entity_id FROM code_entities WHERE file_path = ?
)
`,
args: [filePath, filePath],
});
const deletedCount = result.rowsAffected;
logger.info(
`Deleted ${deletedCount} code relationships for file path: ${filePath}`
);
return { deletedCount };
} catch (error) {
logger.error("Error deleting code relationships by file path", {
error: error.message,
stack: error.stack,
filePath,
});
throw error;
}
}
/**
* Adds or updates a project document in the project_documents table
* @param {Object} dbClient - The TursoDB client instance
* @param {Object} docData - The document data to insert or update
* @param {string} docData.document_id - Unique identifier for the document
* @param {string} docData.file_path - Path to the document file (unique)
* @param {string} docData.file_type - Type of document file (e.g., 'markdown', 'text')
* @param {string} [docData.raw_content] - Raw content of the document
* @param {string} [docData.content_hash] - Hash of the document content
* @param {string} [docData.summary] - Summary of the document
* @param {string} [docData.parsing_status] - Status of parsing (default: 'pending')
* @param {string} [docData.ai_status] - Status of AI processing (default: 'pending')
* @param {Date|string} [docData.ai_last_processed_at] - When AI last processed the document
* @param {string} [docData.custom_metadata] - JSON string of custom metadata
* @returns {Promise<Object>} The result of the operation
*/
export async function addOrUpdateProjectDocument(dbClient, docData) {
try {
logger.debug(
`Adding or updating project document: ${docData.document_id} (${docData.file_path})`
);
// Ensure we have all required fields
if (!docData.document_id || !docData.file_path || !docData.file_type) {
throw new Error("Missing required fields for project document");
}
// Set default values for optional fields
const parsingStatus = docData.parsing_status || "pending";
const aiStatus = docData.ai_status || "pending";
const result = await dbClient.execute({
sql: `
INSERT INTO project_documents (
document_id,
file_path,
file_type,
raw_content,
content_hash,
summary,
parsing_status,
ai_status,
ai_last_processed_at,
custom_metadata,
created_at,
last_modified_at
) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP)
ON CONFLICT (file_path) DO UPDATE SET
document_id = excluded.document_id,
file_type = excluded.file_type,
raw_content = excluded.raw_content,
content_hash = excluded.content_hash,
summary = excluded.summary,
parsing_status = excluded.parsing_status,
ai_status = excluded.ai_status,
ai_last_processed_at = excluded.ai_last_processed_at,
custom_metadata = excluded.custom_metadata,
last_modified_at = CURRENT_TIMESTAMP
`,
args: [
docData.document_id,
docData.file_path,
docData.file_type,
docData.raw_content || null,
docData.content_hash || null,
docData.summary || null,
parsingStatus,
aiStatus,
docData.ai_last_processed_at || null,
docData.custom_metadata || null,
],
});
logger.debug(
`Project document ${docData.document_id} added or updated successfully`
);
return result;
} catch (error) {
logger.error("Error adding or updating project document", {
error: error.message,
stack: error.stack,
documentId: docData.document_id,
filePath: docData.file_path,
});
throw error;
}
}
/**
* Gets a project document by its file path
* @param {Object} dbClient - The TursoDB client instance
* @param {string} filePath - The file path of the document to retrieve
* @returns {Promise<Object|null>} The project document or null if not found
*/
export async function getProjectDocumentByFilePath(dbClient, filePath) {
try {
logger.debug(`Retrieving project document by file path: ${filePath}`);
const result = await dbClient.execute({
sql: "SELECT * FROM project_documents WHERE file_path = ?",
args: [filePath],
});
if (result.rows.length === 0) {
logger.debug(`No project document found with file path: ${filePath}`);
return null;
}
logger.debug(`Project document for ${filePath} retrieved successfully`);
return result.rows[0];
} catch (error) {
logger.error("Error retrieving project document by file path", {
error: error.message,
stack: error.stack,
filePath,
});
throw error;
}
}
/**
* Deletes a project document by its file path
* @param {Object} dbClient - The TursoDB client instance
* @param {string} filePath - The file path of the document to delete
* @returns {Promise<{deletedCount: number}>} The number of documents deleted
*/
export async function deleteProjectDocumentByFilePath(dbClient, filePath) {
try {
logger.debug(`Deleting project document for file path: ${filePath}`);
const result = await dbClient.execute({
sql: "DELETE FROM project_documents WHERE file_path = ?",
args: [filePath],
});
const deletedCount = result.rowsAffected;
logger.info(
`Deleted ${deletedCount} project document for file path: ${filePath}`
);
return { deletedCount };
} catch (error) {
logger.error("Error deleting project document by file path", {
error: error.message,
stack: error.stack,
filePath,
});
throw error;
}
}
/**
* Updates the AI status, summary, and processing timestamp for a project document
* @param {Object} dbClient - The TursoDB client instance
* @param {string} documentId - The ID of the document to update
* @param {string} aiStatus - The new AI status
* @param {string} [summary] - Optional new summary
* @param {Date|string} [aiLastProcessedAt] - Optional processing timestamp
* @returns {Promise<Object>} The result of the operation
*/
export async function updateProjectDocumentAiStatus(
dbClient,
documentId,
aiStatus,
summary = null,
aiLastProcessedAt = null
) {
try {
logger.debug(
`Updating AI status for project document ${documentId} to ${aiStatus}`
);
// If aiLastProcessedAt is provided but is a Date object, convert to ISO string
const processedAt =
aiLastProcessedAt instanceof Date
? aiLastProcessedAt.toISOString()
: aiLastProcessedAt || new Date().toISOString();
// Build the SQL query dynamically based on which fields are provided
let sql =
"UPDATE project_documents SET ai_status = ?, ai_last_processed_at = ?";
const args = [aiStatus, processedAt];
// Add summary to update if provided
if (summary !== null) {
sql += ", summary = ?";
args.push(summary);
}
// Add the WHERE clause
sql += ", last_modified_at = CURRENT_TIMESTAMP WHERE document_id = ?";
args.push(documentId);
const result = await dbClient.execute({
sql,
args,
});
if (result.rowsAffected === 0) {
logger.warn(`No project document found to update with ID: ${documentId}`);
} else {
logger.debug(
`AI status updated successfully for project document ${documentId}`
);
}
return result;
} catch (error) {
logger.error("Error updating AI status for project document", {
error: error.message,
stack: error.stack,
documentId,
aiStatus,
});
throw error;
}
}
/**
* Logs a conversation message to the conversation_history table
* @param {Object} dbClient - The TursoDB client instance
* @param {Object} messageData - Data for the message to log
* @param {string} messageData.conversation_id - ID of the conversation
* @param {string} messageData.role - Role of the message sender ('user', 'assistant', 'system')
* @param {string} messageData.content - Content of the message
* @param {string[]} [messageData.relatedEntityIds] - Array of entity IDs related to this message
* @param {Object} [messageData.customMetadata] - Custom metadata for the message
* @param {string} [messageData.topic_id] - Topic ID this message belongs to
* @returns {Promise<Object>} Result containing the generated message_id
*/
export async function logConversationMessage(dbClient, messageData) {
try {
logger.debug(
`Logging conversation message for conversation: ${messageData.conversation_id}`
);
// Validate required fields
if (
!messageData.conversation_id ||
!messageData.role ||
messageData.content === undefined
) {
throw new Error("Missing required fields for conversation message");
}
// Generate a unique ID for the message
const message_id = uuidv4();
// Stringify arrays and objects that need to be stored as JSON
const relatedEntityIds = messageData.relatedEntityIds
? JSON.stringify(messageData.relatedEntityIds)
: null;
// Insert the message into the conversation_history table
const result = await dbClient.execute({
sql: `
INSERT INTO conversation_history (
message_id,
conversation_id,
role,
content,
related_entity_ids,
topic_id
) VALUES (?, ?, ?, ?, ?, ?)
`,
args: [
message_id,
messageData.conversation_id,
messageData.role,
messageData.content,
relatedEntityIds,
messageData.topic_id || null,
],
});
logger.debug(
`Conversation message ${message_id} logged successfully for conversation: ${messageData.conversation_id}`
);
return {
success: true,
message_id,
};
} catch (error) {
logger.error("Error logging conversation message", {
error: error.message,
stack: error.stack,
conversationId: messageData.conversation_id,
});
throw error;
}
}
/**
* Checks if the initial codebase scan has been completed
* @param {Object} dbClient - The TursoDB client instance
* @returns {Promise<boolean>} True if initial scan has been completed, false otherwise
*/
export async function hasInitialScanBeenCompleted(dbClient) {
try {
logger.debug("Checking if initial codebase scan has been completed...");
const result = await dbClient.execute({
sql: "SELECT value FROM system_metadata WHERE key = ?",
args: ["initial_scan_completed"],
});
if (result.rows.length > 0 && result.rows[0].value === "true") {
logger.debug("Initial codebase scan has been completed");
return true;
}
logger.debug("Initial codebase scan has not been completed");
return false;
} catch (error) {
logger.error("Error checking initial scan completion status", {
error: error.message,
stack: error.stack,
});
// If there's an error, we default to assuming scan has not been completed
return false;
}
}
/**
* Marks the initial codebase scan as completed
* @param {Object} dbClient - The TursoDB client instance
* @returns {Promise<void>}
*/
export async function markInitialScanCompleted(dbClient) {
try {
logger.debug("Marking initial codebase scan as completed...");
await dbClient.execute({
sql: "INSERT OR REPLACE INTO system_metadata (key, value) VALUES (?, ?)",
args: ["initial_scan_completed", "true"],
});
logger.debug("Initial codebase scan marked as completed");
} catch (error) {
logger.error("Error marking initial scan as completed", {
error: error.message,
stack: error.stack,
});
throw error;
}
}
// Export all schema setup functions
export default {
setupGitCommitsTable,
setupGitCommitFilesTable,
setupCodeEntitiesTable,
setupProjectDocumentsTable,
setupCodeRelationshipsTable,
setupEntityKeywordsTable,
setupConversationHistoryTable,
setupConversationTopicsTable,
setupBackgroundAiJobsTable,
setupSystemMetadataTable,
getLastProcessedCommitOid,
setLastProcessedCommitOid,
addGitCommit,
addGitCommitFile,
addBackgroundAiJob,
cancelBackgroundAiJobsForEntity,
initializeDatabaseSchema,
addOrUpdateCodeEntity,
getCodeEntityById,
deleteCodeEntitiesByFilePath,
updateCodeEntityAiStatus,
getCodeEntitiesByFilePath,
addCodeRelationship,
deleteCodeRelationshipsBySourceEntityId,
deleteCodeRelationshipsByTargetEntityId,
deleteCodeRelationshipsByFilePath,
addOrUpdateProjectDocument,
getProjectDocumentByFilePath,
deleteProjectDocumentByFilePath,
updateProjectDocumentAiStatus,
logConversationMessage,
hasInitialScanBeenCompleted,
markInitialScanCompleted,
};
|