ccls/src/cache_manager.h
Jacob Dufault f6a2a55209 Import pipeline improvements
- Cache manager is created by request
- Index is always associated with its contents
- Reduced frequently of file reads
2018-01-29 21:34:36 -08:00

51 lines
1.4 KiB
C++

#pragma once
#include <optional.h>
#include <functional>
#include <memory>
#include <string>
#include <unordered_map>
#include <vector>
struct Config;
struct IndexFile;
struct ICacheManager {
struct FakeCacheEntry {
std::string path;
std::string content;
std::string json;
};
static std::shared_ptr<ICacheManager> Make(Config* config);
static std::shared_ptr<ICacheManager> MakeFake(
const std::vector<FakeCacheEntry>& entries);
virtual ~ICacheManager();
// Tries to load a cache for |path|, returning null if there is none. The
// cache loader still owns the cache.
IndexFile* TryLoad(const std::string& path);
// Takes the existing cache or loads the cache at |path|. May return null if
// the cache does not exist.
std::unique_ptr<IndexFile> TryTakeOrLoad(const std::string& path);
// Takes the existing cache or loads the cache at |path|. Asserts the cache
// exists.
std::unique_ptr<IndexFile> TakeOrLoad(const std::string& path);
virtual void WriteToCache(IndexFile& file) = 0;
virtual optional<std::string> LoadCachedFileContents(
const std::string& path) = 0;
// Iterate over all loaded caches.
void IterateLoadedCaches(std::function<void(IndexFile*)> fn);
protected:
virtual std::unique_ptr<IndexFile> RawCacheLoad(const std::string& path) = 0;
std::unordered_map<std::string, std::unique_ptr<IndexFile>> caches_;
};