summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/FileMonitor.cpp
diff options
context:
space:
mode:
authorPierre Bourdon <delroth@gmail.com>2016-06-24 10:43:46 +0200
committerPierre Bourdon <delroth@gmail.com>2016-06-24 10:43:46 +0200
commit3570c7f03a2aa90aa634f96c0af1969af610f14d (patch)
tree4252e03c0e853ba7cffe022937698c854ad0eaa9 /Source/Core/DiscIO/FileMonitor.cpp
parent2115e8a4a6814e32107b5205ff5c95bbd3c6e99c (diff)
Reformat all the things. Have fun with merge conflicts.
Diffstat (limited to 'Source/Core/DiscIO/FileMonitor.cpp')
-rw-r--r--Source/Core/DiscIO/FileMonitor.cpp174
1 files changed, 85 insertions, 89 deletions
diff --git a/Source/Core/DiscIO/FileMonitor.cpp b/Source/Core/DiscIO/FileMonitor.cpp
index 469fa4d460..6ef23fb088 100644
--- a/Source/Core/DiscIO/FileMonitor.cpp
+++ b/Source/Core/DiscIO/FileMonitor.cpp
@@ -11,12 +11,12 @@
#include <vector>
#include "Common/CommonTypes.h"
-#include "Common/StringUtil.h"
#include "Common/Logging/LogManager.h"
+#include "Common/StringUtil.h"
+#include "Core/Boot/Boot.h"
#include "Core/ConfigManager.h"
#include "Core/Core.h"
-#include "Core/Boot/Boot.h"
#include "DiscIO/FileMonitor.h"
#include "DiscIO/Filesystem.h"
@@ -25,7 +25,6 @@
namespace FileMon
{
-
static std::unique_ptr<DiscIO::IVolume> s_open_iso;
static std::unique_ptr<DiscIO::IFileSystem> s_filesystem;
static std::string ISOFile = "", CurrentFile = "";
@@ -34,121 +33,118 @@ static bool FileAccess = true;
// Filtered files
bool IsSoundFile(const std::string& filename)
{
- std::string extension;
- SplitPath(filename, nullptr, nullptr, &extension);
- std::transform(extension.begin(), extension.end(), extension.begin(), ::tolower);
-
- static std::unordered_set<std::string> extensions = {
- ".adp", // 1080 Avalanche, Crash Bandicoot, etc.
- ".adx", // Sonic Adventure 2 Battle, etc.
- ".afc", // Zelda WW
- ".ast", // Zelda TP, Mario Kart
- ".brstm", // Wii Sports, Wario Land, etc.
- ".dsp", // Metroid Prime
- ".hps", // SSB Melee
- ".ogg", // Tony Hawk's Underground 2
- ".sad", // Disaster
- ".snd", // Tales of Symphonia
- ".song", // Tales of Symphonia
- ".ssm", // Custom Robo, Kirby Air Ride, etc.
- ".str", // Harry Potter & the Sorcerer's Stone
- };
-
- return extensions.find(extension) != extensions.end();
+ std::string extension;
+ SplitPath(filename, nullptr, nullptr, &extension);
+ std::transform(extension.begin(), extension.end(), extension.begin(), ::tolower);
+
+ static std::unordered_set<std::string> extensions = {
+ ".adp", // 1080 Avalanche, Crash Bandicoot, etc.
+ ".adx", // Sonic Adventure 2 Battle, etc.
+ ".afc", // Zelda WW
+ ".ast", // Zelda TP, Mario Kart
+ ".brstm", // Wii Sports, Wario Land, etc.
+ ".dsp", // Metroid Prime
+ ".hps", // SSB Melee
+ ".ogg", // Tony Hawk's Underground 2
+ ".sad", // Disaster
+ ".snd", // Tales of Symphonia
+ ".song", // Tales of Symphonia
+ ".ssm", // Custom Robo, Kirby Air Ride, etc.
+ ".str", // Harry Potter & the Sorcerer's Stone
+ };
+
+ return extensions.find(extension) != extensions.end();
}
-
// Read the file system
void ReadFileSystem(const std::string& filename)
{
- // Should have an actual Shutdown procedure or something
- s_open_iso.reset();
- s_filesystem.reset();
+ // Should have an actual Shutdown procedure or something
+ s_open_iso.reset();
+ s_filesystem.reset();
- s_open_iso = DiscIO::CreateVolumeFromFilename(filename);
- if (!s_open_iso)
- return;
+ s_open_iso = DiscIO::CreateVolumeFromFilename(filename);
+ if (!s_open_iso)
+ return;
- if (s_open_iso->GetVolumeType() != DiscIO::IVolume::WII_WAD)
- {
- s_filesystem = DiscIO::CreateFileSystem(s_open_iso.get());
+ if (s_open_iso->GetVolumeType() != DiscIO::IVolume::WII_WAD)
+ {
+ s_filesystem = DiscIO::CreateFileSystem(s_open_iso.get());
- if (!s_filesystem)
- return;
- }
+ if (!s_filesystem)
+ return;
+ }
- FileAccess = true;
+ FileAccess = true;
}
// Logs a file if it passes a few checks
void CheckFile(const std::string& file, u64 size)
{
- // Don't do anything if the log is unselected
- if (!LogManager::GetInstance()->IsEnabled(LogTypes::FILEMON, LogTypes::LWARNING))
- return;
- // Do nothing if we found the same file again
- if (CurrentFile == file)
- return;
-
- if (size > 0)
- size = (size / 1000);
-
- std::string str = StringFromFormat("%s kB %s", ThousandSeparate(size, 7).c_str(), file.c_str());
- if (IsSoundFile(file))
- {
- INFO_LOG(FILEMON, "%s", str.c_str());
- }
- else
- {
- WARN_LOG(FILEMON, "%s", str.c_str());
- }
-
- // Update the current file
- CurrentFile = file;
+ // Don't do anything if the log is unselected
+ if (!LogManager::GetInstance()->IsEnabled(LogTypes::FILEMON, LogTypes::LWARNING))
+ return;
+ // Do nothing if we found the same file again
+ if (CurrentFile == file)
+ return;
+
+ if (size > 0)
+ size = (size / 1000);
+
+ std::string str = StringFromFormat("%s kB %s", ThousandSeparate(size, 7).c_str(), file.c_str());
+ if (IsSoundFile(file))
+ {
+ INFO_LOG(FILEMON, "%s", str.c_str());
+ }
+ else
+ {
+ WARN_LOG(FILEMON, "%s", str.c_str());
+ }
+
+ // Update the current file
+ CurrentFile = file;
}
-
// Find the filename
void FindFilename(u64 offset)
{
- // Don't do anything if a game is not running
- if (Core::GetState() != Core::CORE_RUN)
- return;
+ // Don't do anything if a game is not running
+ if (Core::GetState() != Core::CORE_RUN)
+ return;
- // Or if the log is unselected
- if (!LogManager::GetInstance()->IsEnabled(LogTypes::FILEMON, LogTypes::LWARNING))
- return;
+ // Or if the log is unselected
+ if (!LogManager::GetInstance()->IsEnabled(LogTypes::FILEMON, LogTypes::LWARNING))
+ return;
- // Or if we don't have file access
- if (!FileAccess)
- return;
+ // Or if we don't have file access
+ if (!FileAccess)
+ return;
- if (!s_filesystem || ISOFile != SConfig::GetInstance().m_LastFilename)
- {
- FileAccess = false;
- ReadFileSystem(SConfig::GetInstance().m_LastFilename);
- ISOFile = SConfig::GetInstance().m_LastFilename;
- INFO_LOG(FILEMON, "Opening '%s'", ISOFile.c_str());
- return;
- }
+ if (!s_filesystem || ISOFile != SConfig::GetInstance().m_LastFilename)
+ {
+ FileAccess = false;
+ ReadFileSystem(SConfig::GetInstance().m_LastFilename);
+ ISOFile = SConfig::GetInstance().m_LastFilename;
+ INFO_LOG(FILEMON, "Opening '%s'", ISOFile.c_str());
+ return;
+ }
- const std::string filename = s_filesystem->GetFileName(offset);
+ const std::string filename = s_filesystem->GetFileName(offset);
- if (filename.empty())
- return;
+ if (filename.empty())
+ return;
- CheckFile(filename, s_filesystem->GetFileSize(filename));
+ CheckFile(filename, s_filesystem->GetFileSize(filename));
}
void Close()
{
- s_open_iso.reset();
- s_filesystem.reset();
+ s_open_iso.reset();
+ s_filesystem.reset();
- ISOFile = "";
- CurrentFile = "";
- FileAccess = true;
+ ISOFile = "";
+ CurrentFile = "";
+ FileAccess = true;
}
-
-} // FileMon
+} // FileMon