GameFileCache.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. // Copyright 2017 Dolphin Emulator Project
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #pragma once
  4. #include <atomic>
  5. #include <cstddef>
  6. #include <functional>
  7. #include <memory>
  8. #include <span>
  9. #include <string>
  10. #include <vector>
  11. #include "Common/CommonTypes.h"
  12. class PointerWrap;
  13. namespace UICommon
  14. {
  15. class GameFile;
  16. std::vector<std::string> FindAllGamePaths(const std::vector<std::string>& directories_to_scan,
  17. bool recursive_scan);
  18. class GameFileCache
  19. {
  20. public:
  21. enum class DeleteOnDisk
  22. {
  23. No = 0,
  24. Yes = 1,
  25. };
  26. using ForEachFn = std::function<void(const std::shared_ptr<const GameFile>&)>;
  27. using GameAddedToCacheFn = std::function<void(const std::shared_ptr<const GameFile>&)>;
  28. using GameRemovedFromCacheFn = std::function<void(const std::string&)>;
  29. using GameUpdatedFn = std::function<void(const std::shared_ptr<const GameFile>&)>;
  30. GameFileCache();
  31. void ForEach(const ForEachFn& f) const;
  32. size_t GetSize() const;
  33. void Clear(DeleteOnDisk delete_on_disk);
  34. // Returns nullptr if the file is invalid.
  35. std::shared_ptr<const GameFile> AddOrGet(const std::string& path, bool* cache_changed);
  36. // These functions return true if the call modified the cache.
  37. bool Update(std::span<const std::string> all_game_paths,
  38. const GameAddedToCacheFn& game_added_to_cache = {},
  39. const GameRemovedFromCacheFn& game_removed_from_cache = {},
  40. const std::atomic_bool& processing_halted = false);
  41. bool UpdateAdditionalMetadata(const GameUpdatedFn& game_updated = {},
  42. const std::atomic_bool& processing_halted = false);
  43. bool Load();
  44. bool Save();
  45. private:
  46. bool UpdateAdditionalMetadata(std::shared_ptr<GameFile>* game_file);
  47. bool SyncCacheFile(bool save);
  48. void DoState(PointerWrap* p, u64 size = 0);
  49. std::string m_path;
  50. std::vector<std::shared_ptr<GameFile>> m_cached_files;
  51. };
  52. } // namespace UICommon