Get the session directory for provenance graph storage. Returns `{sessions_dir}/{session_id}/` — a subdirectory alongside the session's JSON file. The `ProvenanceAccumulator` stores its `graph.json` here.
(&self, session_id: &str)
| 34 | /// the session's JSON file. The `ProvenanceAccumulator` stores its |
| 35 | /// `graph.json` here. |
| 36 | pub(crate) fn session_graph_dir(&self, session_id: &str) -> PathBuf { |
| 37 | self.session_store.sessions_dir().join(session_id) |
| 38 | } |
| 39 | |
| 40 | /// Execute `f` while holding an exclusive file lock on the session's |
| 41 | /// accumulator. The lock file is `{session_dir}/graph.lock`. |
no test coverage detected