MCPcopy Create free account
hub / github.com/DeusData/codebase-memory-mcp / project_db_path

Function project_db_path

src/mcp/mcp.c:1897–1906  ·  view source on GitHub ↗

Returns full .db path for a project: / .db */

Source from the content-addressed store, hash-verified

1895
1896/* Returns full .db path for a project: <cache_dir>/<project>.db */
1897static const char *project_db_path(const char *project, char *buf, size_t bufsz) {
1898 if (!cbm_validate_project_name(project)) {
1899 buf[0] = '\0';
1900 return buf;
1901 }
1902 char dir[CBM_SZ_1K];
1903 cache_dir(dir, sizeof(dir));
1904 snprintf(buf, bufsz, "%s/%s.db", dir, project);
1905 return buf;
1906}
1907
1908/* ── Store resolution ──────────────────────────────────────────── */
1909

Callers 4

resolve_store_internalFunction · 0.85
handle_delete_projectFunction · 0.85
try_artifact_bootstrapFunction · 0.85

Calls 2

cache_dirFunction · 0.85

Tested by

no test coverage detected