2014-12-18 04:44:32 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-12-18 04:44:32 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
|
|
|
#include "common/file_util.h"
|
|
|
|
|
|
|
|
#include "core/file_sys/archive_systemsavedata.h"
|
|
|
|
#include "core/file_sys/disk_archive.h"
|
2015-01-04 01:46:05 +00:00
|
|
|
#include "core/hle/service/fs/archive.h"
|
2014-12-18 04:44:32 +00:00
|
|
|
#include "core/settings.h"
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// FileSys namespace
|
|
|
|
|
|
|
|
namespace FileSys {
|
|
|
|
|
2014-12-21 04:33:33 +00:00
|
|
|
static std::string GetSystemSaveDataPath(const std::string& mount_point, u64 save_id) {
|
|
|
|
u32 save_high = static_cast<u32>((save_id >> 32) & 0xFFFFFFFF);
|
|
|
|
u32 save_low = static_cast<u32>(save_id & 0xFFFFFFFF);
|
|
|
|
return Common::StringFromFormat("%s%08X/%08X/", mount_point.c_str(), save_low, save_high);
|
|
|
|
}
|
|
|
|
|
2015-01-04 01:46:05 +00:00
|
|
|
static std::string GetSystemSaveDataContainerPath(const std::string& mount_point) {
|
2015-01-04 14:10:27 +00:00
|
|
|
return Common::StringFromFormat("%sdata/%s/sysdata/", mount_point.c_str(), SYSTEM_ID.c_str());
|
2015-01-04 01:46:05 +00:00
|
|
|
}
|
|
|
|
|
2014-12-19 04:35:24 +00:00
|
|
|
Archive_SystemSaveData::Archive_SystemSaveData(const std::string& mount_point, u64 save_id)
|
2015-01-04 01:46:05 +00:00
|
|
|
: DiskArchive(GetSystemSaveDataPath(GetSystemSaveDataContainerPath(mount_point), save_id)) {
|
2014-12-18 04:44:32 +00:00
|
|
|
LOG_INFO(Service_FS, "Directory %s set as SystemSaveData.", this->mount_point.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Archive_SystemSaveData::Initialize() {
|
|
|
|
if (!FileUtil::CreateFullPath(mount_point)) {
|
|
|
|
LOG_ERROR(Service_FS, "Unable to create SystemSaveData path.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace FileSys
|