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

Function cbm_store_coverage_get_path

src/store/store.c:3177–3186  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3175}
3176
3177int cbm_store_coverage_get_path(cbm_store_t *s, const char *project, const char *rel_path,
3178 cbm_coverage_row_t **out, int *count) {
3179 static const char sql[] = "SELECT rel_path, kind, detail FROM index_coverage "
3180 "WHERE project = ?1 AND (rel_path = ?2 OR "
3181 " (kind = 'not_indexed_dir' AND length(rel_path) < length(?2) "
3182 " AND substr(?2, 1, length(rel_path)) = rel_path "
3183 " AND substr(?2, length(rel_path) + 1, 1) = '/')) "
3184 "ORDER BY length(rel_path) DESC, rel_path, kind;";
3185 return coverage_query_rows(s, project, rel_path, sql, out, count);
3186}
3187
3188int cbm_store_coverage_get_scope(cbm_store_t *s, const char *project, const char *scope,
3189 cbm_coverage_row_t **out, int *count) {

Callers 3

test_store_nodes.cFile · 0.85

Calls 1

coverage_query_rowsFunction · 0.85

Tested by

no test coverage detected