Update db code

This commit is contained in:
Loic Guegan 2022-12-27 11:42:36 +01:00
parent e5ba738f72
commit f40fd3e7a4
2 changed files with 22 additions and 1 deletions

View file

@ -0,0 +1,13 @@
#include "GameBase.hpp"
#include "PGNGameBase.hpp"
std::shared_ptr<GameBase> OpenDatabase(const std::string &dbpath, bool createIfNotExist){
wxFileName file(dbpath);
wxString ext = file.GetExt().Lower();
if (ext == "pgn") {
if(createIfNotExist && !file.Exists())
PGNGameBase::CreateDatabaseFile(dbpath);
return std::shared_ptr<GameBase>(new PGNGameBase(dbpath));
}
return nullptr;
}

View file

@ -27,4 +27,12 @@ public:
* @brief An additionnal static method is expected with the following signature:
* static void CreateDatabaseFile(std::string path);
*/
};
};
/**
* @brief Open a data
*
* @param dbpath
* @return std::shared_ptr<GameBase>
*/
std::shared_ptr<GameBase> OpenDatabase(const std::string &dbpath, bool createIfNotExist=true);