2017-12-31 12:33:36 -07:00
|
|
|
// Copyright 2017 Dolphin Emulator Project
|
2021-07-04 19:22:19 -06:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2017-12-31 12:33:36 -07:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2020-09-26 20:01:54 -06:00
|
|
|
#include <atomic>
|
2017-12-31 12:33:36 -07:00
|
|
|
#include <cstddef>
|
|
|
|
#include <functional>
|
|
|
|
#include <memory>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
|
|
|
|
class PointerWrap;
|
|
|
|
|
|
|
|
namespace UICommon
|
|
|
|
{
|
|
|
|
class GameFile;
|
|
|
|
|
|
|
|
std::vector<std::string> FindAllGamePaths(const std::vector<std::string>& directories_to_scan,
|
|
|
|
bool recursive_scan);
|
|
|
|
|
|
|
|
class GameFileCache
|
|
|
|
{
|
|
|
|
public:
|
2018-10-14 10:03:10 -06:00
|
|
|
enum class DeleteOnDisk
|
|
|
|
{
|
|
|
|
No = 0,
|
|
|
|
Yes = 1,
|
|
|
|
};
|
|
|
|
|
2021-06-08 10:09:22 -06:00
|
|
|
GameFileCache();
|
2018-06-01 01:36:29 -06:00
|
|
|
|
2017-12-31 12:33:36 -07:00
|
|
|
void ForEach(std::function<void(const std::shared_ptr<const GameFile>&)> f) const;
|
|
|
|
|
2018-06-01 01:36:29 -06:00
|
|
|
size_t GetSize() const;
|
2018-10-14 10:03:10 -06:00
|
|
|
void Clear(DeleteOnDisk delete_on_disk);
|
2017-12-31 12:33:36 -07:00
|
|
|
|
2018-03-29 13:52:21 -06:00
|
|
|
// Returns nullptr if the file is invalid.
|
2018-06-03 04:07:53 -06:00
|
|
|
std::shared_ptr<const GameFile> AddOrGet(const std::string& path, bool* cache_changed);
|
2017-12-31 12:33:36 -07:00
|
|
|
|
|
|
|
// These functions return true if the call modified the cache.
|
2018-05-26 10:22:14 -06:00
|
|
|
bool Update(const std::vector<std::string>& all_game_paths,
|
|
|
|
std::function<void(const std::shared_ptr<const GameFile>&)> game_added_to_cache = {},
|
2020-09-26 20:01:54 -06:00
|
|
|
std::function<void(const std::string&)> game_removed_from_cache = {},
|
|
|
|
const std::atomic_bool& processing_halted = false);
|
2018-05-26 10:22:14 -06:00
|
|
|
bool UpdateAdditionalMetadata(
|
2020-09-26 20:01:54 -06:00
|
|
|
std::function<void(const std::shared_ptr<const GameFile>&)> game_updated = {},
|
|
|
|
const std::atomic_bool& processing_halted = false);
|
2017-12-31 12:33:36 -07:00
|
|
|
|
|
|
|
bool Load();
|
|
|
|
bool Save();
|
|
|
|
|
|
|
|
private:
|
2018-06-03 04:07:53 -06:00
|
|
|
bool UpdateAdditionalMetadata(std::shared_ptr<GameFile>* game_file);
|
2017-12-31 12:33:36 -07:00
|
|
|
|
|
|
|
bool SyncCacheFile(bool save);
|
|
|
|
void DoState(PointerWrap* p, u64 size = 0);
|
|
|
|
|
2018-06-01 01:36:29 -06:00
|
|
|
std::string m_path;
|
2017-12-31 12:33:36 -07:00
|
|
|
std::vector<std::shared_ptr<GameFile>> m_cached_files;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace UICommon
|