ncmdump/src/main.cpp

125 lines
3.0 KiB
C++
Raw Normal View History

2021-10-07 00:34:29 +08:00
#include "ncmcrypt.h"
#include <iostream>
2021-10-07 00:34:29 +08:00
#include <stdexcept>
#include <vector>
#include <filesystem>
2021-10-07 00:34:29 +08:00
#if defined(_WIN32)
2024-03-22 12:07:32 +08:00
#include "platform.h"
#endif
2024-01-06 10:19:33 +08:00
#include "color.h"
namespace fs = std::filesystem;
2024-03-21 14:04:16 +08:00
void displayHelp()
{
std::cout << "Usage: ncmdump [-d] [-h] file1 file2 ..." << std::endl;
std::cout << "Options:" << std::endl;
std::cout << " -d Process files in a folder (requires folder path)" << std::endl;
std::cout << " -h, --help Display this help message" << std::endl;
}
2024-03-21 14:04:16 +08:00
void processFile(const fs::path &filePath)
{
if (fs::exists(filePath) == false)
{
2024-03-22 12:07:32 +08:00
std::cerr << BOLDRED << "Error: " << RESET << "file '" << filePath.u8string() << "' does not exist." << std::endl;
return;
}
2024-03-21 14:04:16 +08:00
try
{
2024-03-22 12:07:32 +08:00
NeteaseCrypt crypt(filePath.u8string());
crypt.Dump();
crypt.FixMetadata();
2024-03-22 12:07:32 +08:00
std::cout << BOLDGREEN << "Done: " << RESET << "'" << crypt.dumpFilepath().u8string() << "'" << std::endl;
2024-03-21 14:04:16 +08:00
}
catch (const std::invalid_argument &e)
{
2024-03-22 12:07:32 +08:00
std::cerr << BOLDRED << "Exception: " << RESET << RED << e.what() << RESET << " '" << filePath.u8string() << "'" << std::endl;
}
2024-03-21 14:04:16 +08:00
catch (...)
{
std::cerr << BOLDRED << "Unexpected exception while processing file: " << RESET << filePath.u8string() << std::endl;
}
}
2024-03-21 14:04:16 +08:00
void processFilesInFolder(const fs::path &folderPath)
{
for (const auto &entry : fs::directory_iterator(folderPath))
{
if (fs::is_regular_file(entry.status()))
{
processFile(entry.path());
}
}
}
int main(int argc, char **argv)
{
2024-03-22 12:29:46 +08:00
#if defined(_WIN32)
2024-03-22 12:07:32 +08:00
win32_utf8argv(&argc, &argv);
2024-03-22 12:29:46 +08:00
#endif
2024-03-21 14:04:16 +08:00
if (argc <= 1)
{
displayHelp();
return 1;
}
std::vector<fs::path> files;
bool processFolders = false;
bool folderProvided = false;
#define COMPARE_STR(s1, s2) (strcmp(s1, s2) == 0)
#define HELP_SHORT "-h"
#define HELP_LONG "--help"
2024-03-24 09:20:25 +08:00
#define PROCESS_FOLDER "-d"
2024-03-21 14:04:16 +08:00
for (int i = 1; i < argc; ++i)
{
if (COMPARE_STR(argv[i], HELP_SHORT) || COMPARE_STR(argv[i], HELP_LONG))
{
displayHelp();
return 0;
2024-03-21 14:04:16 +08:00
}
2024-03-24 09:20:25 +08:00
else if (COMPARE_STR(argv[i], PROCESS_FOLDER))
2024-03-21 14:04:16 +08:00
{
processFolders = true;
2024-03-21 14:04:16 +08:00
if (i + 1 < argc && argv[i + 1][0] != '-')
{
folderProvided = true;
processFilesInFolder(argv[i + 1]);
// Skip the folder name
++i;
2024-03-21 14:04:16 +08:00
}
else
{
std::cerr << "Error: -d option requires a folder path." << std::endl;
return 1;
}
2024-03-21 14:04:16 +08:00
}
else
{
2024-03-22 12:07:32 +08:00
fs::path path = fs::u8path(argv[i]);
files.push_back(path);
}
}
2024-03-21 14:04:16 +08:00
for (const auto &file : files)
{
if (processFolders && fs::is_directory(file))
{
processFilesInFolder(file);
2024-03-21 14:04:16 +08:00
}
else
{
processFile(file);
}
}
return 0;
}