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

Function cache_dir

src/mcp/mcp.c:1887–1894  ·  view source on GitHub ↗

Returns the cache directory. Writes to buf, returns buf for convenience. */

Source from the content-addressed store, hash-verified

1885
1886/* Returns the cache directory. Writes to buf, returns buf for convenience. */
1887static const char *cache_dir(char *buf, size_t bufsz) {
1888 const char *dir = cbm_resolve_cache_dir();
1889 if (!dir) {
1890 dir = cbm_tmpdir();
1891 }
1892 snprintf(buf, bufsz, "%s", dir);
1893 return buf;
1894}
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) {

Callers 5

resolve_project_tailFunction · 0.85
project_db_pathFunction · 0.85
build_project_list_errorFunction · 0.85
handle_list_projectsFunction · 0.85

Calls 2

cbm_resolve_cache_dirFunction · 0.85
cbm_tmpdirFunction · 0.85

Tested by

no test coverage detected