|
@@ -21,7 +21,7 @@ namespace LOTRO_DAT {
|
|
* \returns true - если файл доступен для чтения его структура корректна. Иначе false
|
|
* \returns true - если файл доступен для чтения его структура корректна. Иначе false
|
|
*/
|
|
*/
|
|
|
|
|
|
- bool DatBackupManager::CheckIfBackupAvailable(const std::string &backup_datname) {
|
|
|
|
|
|
+ bool DatBackupManager::checkIfBackupAvailable(const std::string &backup_datname) {
|
|
DatFile file;
|
|
DatFile file;
|
|
bool result = file.Initialise(backup_datname, 0).result == SUCCESS && file.Initialized();
|
|
bool result = file.Initialise(backup_datname, 0).result == SUCCESS && file.Initialized();
|
|
file.Deinitialize();
|
|
file.Deinitialize();
|
|
@@ -37,7 +37,7 @@ namespace LOTRO_DAT {
|
|
* \param[in] backup_datname путь к файлу создаваемого бэкапа
|
|
* \param[in] backup_datname путь к файлу создаваемого бэкапа
|
|
*/
|
|
*/
|
|
|
|
|
|
- DatOperationResult<> DatBackupManager::CreateBackup(const std::string &backup_datname) {
|
|
|
|
|
|
+ DatOperationResult<> DatBackupManager::createBackup(const std::string &backup_datname) {
|
|
FILE* file = fopen(backup_datname.c_str(), "w+b");
|
|
FILE* file = fopen(backup_datname.c_str(), "w+b");
|
|
if (!file)
|
|
if (!file)
|
|
return DatOperationResult<>(ERROR, "CREATEBACKUP: cannot open file " + backup_datname);
|
|
return DatOperationResult<>(ERROR, "CREATEBACKUP: cannot open file " + backup_datname);
|
|
@@ -64,7 +64,7 @@ namespace LOTRO_DAT {
|
|
*/
|
|
*/
|
|
|
|
|
|
DatOperationResult<> DatBackupManager::RestoreFromBackup(const std::string &backup_datname) {
|
|
DatOperationResult<> DatBackupManager::RestoreFromBackup(const std::string &backup_datname) {
|
|
- if (!CheckIfBackupAvailable(backup_datname))
|
|
|
|
|
|
+ if (!checkIfBackupAvailable(backup_datname))
|
|
return DatOperationResult<>(ERROR, "RESTOREFROMBACKUP: incorrect backup file " + backup_datname);
|
|
return DatOperationResult<>(ERROR, "RESTOREFROMBACKUP: incorrect backup file " + backup_datname);
|
|
|
|
|
|
DatFile backup_file;
|
|
DatFile backup_file;
|