2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 03:09:55 +00:00
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "DiscIO/Filesystem.h"
|
2016-06-24 08:43:46 +00:00
|
|
|
#include <memory>
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "DiscIO/FileSystemGCWii.h"
|
2015-06-13 10:51:24 +00:00
|
|
|
#include "DiscIO/Volume.h"
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
namespace DiscIO
|
|
|
|
{
|
2015-07-28 14:56:25 +00:00
|
|
|
FileInfo::~FileInfo()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-06-06 09:49:01 +00:00
|
|
|
FileSystem::FileSystem(const Volume* _rVolume, const Partition& partition)
|
2015-06-13 10:51:24 +00:00
|
|
|
: m_rVolume(_rVolume), m_partition(partition)
|
2016-06-24 08:43:46 +00:00
|
|
|
{
|
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2017-06-06 09:49:01 +00:00
|
|
|
FileSystem::~FileSystem()
|
2016-06-24 08:43:46 +00:00
|
|
|
{
|
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2017-06-06 09:49:01 +00:00
|
|
|
std::unique_ptr<FileSystem> CreateFileSystem(const Volume* volume, const Partition& partition)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2017-02-12 12:02:57 +00:00
|
|
|
if (!volume)
|
|
|
|
return nullptr;
|
|
|
|
|
2017-06-06 09:49:01 +00:00
|
|
|
std::unique_ptr<FileSystem> filesystem = std::make_unique<FileSystemGCWii>(volume, partition);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
if (!filesystem)
|
|
|
|
return nullptr;
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
if (!filesystem->IsValid())
|
|
|
|
filesystem.reset();
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
return filesystem;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
2009-02-28 01:26:56 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
} // namespace
|