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

Function project_db_path

src/mcp/mcp.c:971–980  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

969
970/* Returns full .db path for a project: <cache_dir>/<project>.db */
971static const char *project_db_path(const char *project, char *buf, size_t bufsz) {
972 if (!cbm_validate_project_name(project)) {
973 buf[0] = '\0';
974 return buf;
975 }
976 char dir[CBM_SZ_1K];
977 cache_dir(dir, sizeof(dir));
978 snprintf(buf, bufsz, "%s/%s.db", dir, project);
979 return buf;
980}
981
982/* ── Store resolution ──────────────────────────────────────────── */
983

Callers 3

resolve_storeFunction · 0.85
handle_delete_projectFunction · 0.85
try_artifact_bootstrapFunction · 0.85

Calls 2

cache_dirFunction · 0.85

Tested by

no test coverage detected