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

Function project_db_path

src/mcp/mcp.c:1881–1890  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

1879
1880/* Returns full .db path for a project: <cache_dir>/<project>.db */
1881static const char *project_db_path(const char *project, char *buf, size_t bufsz) {
1882 if (!cbm_validate_project_name(project)) {
1883 buf[0] = '\0';
1884 return buf;
1885 }
1886 char dir[CBM_SZ_1K];
1887 cache_dir(dir, sizeof(dir));
1888 snprintf(buf, bufsz, "%s/%s.db", dir, project);
1889 return buf;
1890}
1891
1892/* ── Store resolution ──────────────────────────────────────────── */
1893

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