Play-/Source/ui_shared/BootablesDbClient.h

58 lines
1.3 KiB
C
Raw Normal View History

#pragma once
#include <string>
2019-10-17 18:15:16 -04:00
#include <vector>
2019-10-16 20:51:11 -04:00
#include "filesystem_def.h"
#include "Types.h"
#include "Singleton.h"
#include "sqlite/SqliteDb.h"
#include "sqlite/SqliteStatement.h"
namespace BootablesDb
{
struct Bootable
{
2019-10-16 20:51:11 -04:00
fs::path path;
std::string discId;
std::string title;
std::string coverUrl;
std::string overview;
time_t lastBootedTime = 0;
};
class CClient : public CSingleton<CClient>
{
public:
//NOTE: This is duplicated in the Android Java code (in BootablesInterop.java) - values matter
enum SORT_METHOD
{
SORT_METHOD_RECENT,
SORT_METHOD_HOMEBREW,
SORT_METHOD_NONE,
};
CClient();
virtual ~CClient() = default;
2019-10-16 20:51:11 -04:00
Bootable GetBootable(const fs::path&);
std::vector<Bootable> GetBootables(int32_t = SORT_METHOD_NONE);
2019-10-16 20:51:11 -04:00
void RegisterBootable(const fs::path&, const char*, const char*);
void UnregisterBootable(const fs::path&);
2019-10-16 20:51:11 -04:00
void SetDiscId(const fs::path&, const char*);
void SetTitle(const fs::path&, const char*);
void SetCoverUrl(const fs::path&, const char*);
void SetLastBootedTime(const fs::path&, time_t);
void SetOverview(const fs::path& path, const char* overview);
private:
static Bootable ReadBootable(Framework::CSqliteStatement&);
void CheckDbVersion();
2019-10-16 20:51:11 -04:00
fs::path m_dbPath;
Framework::CSqliteDb m_db;
};
};