diff options
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2014-09-29 10:34:37 +0200 |
---|---|---|
committer | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2014-10-06 19:58:43 +0200 |
commit | fbd72fd6bf0f02a13be207c9d61f630c594e3156 (patch) | |
tree | 766620c93a936e767cc073382573660041c2e193 /src/common | |
parent | FileSys: Add static asserts for the Directory struct, and fix its fields position. (diff) | |
download | yuzu-fbd72fd6bf0f02a13be207c9d61f630c594e3156.tar yuzu-fbd72fd6bf0f02a13be207c9d61f630c594e3156.tar.gz yuzu-fbd72fd6bf0f02a13be207c9d61f630c594e3156.tar.bz2 yuzu-fbd72fd6bf0f02a13be207c9d61f630c594e3156.tar.lz yuzu-fbd72fd6bf0f02a13be207c9d61f630c594e3156.tar.xz yuzu-fbd72fd6bf0f02a13be207c9d61f630c594e3156.tar.zst yuzu-fbd72fd6bf0f02a13be207c9d61f630c594e3156.zip |
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/file_util.cpp | 42 | ||||
-rw-r--r-- | src/common/file_util.h | 11 |
2 files changed, 53 insertions, 0 deletions
diff --git a/src/common/file_util.cpp b/src/common/file_util.cpp index 9292a1cd6..5fd155222 100644 --- a/src/common/file_util.cpp +++ b/src/common/file_util.cpp @@ -780,6 +780,48 @@ size_t ReadFileToString(bool text_file, const char *filename, std::string &str) return file.ReadArray(&str[0], str.size()); } +/** + * Splits the filename into 8.3 format + * Loosely implemented following https://en.wikipedia.org/wiki/8.3_filename + * @param filename The normal filename to use + * @param short_name A 9-char array in which the short name will be written + * @param extension A 4-char array in which the extension will be written + */ +void SplitFilename83(const std::string& filename, std::array<char, 9>& short_name, + std::array<char, 4>& extension) { + const std::string forbidden_characters = ".\"/\\[]:;=, "; + + // On a FAT32 partition, 8.3 names are stored as a 11 bytes array, filled with spaces. + short_name = {' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', '\0'}; + extension = {' ', ' ', ' ', '\0'}; + + std::string::size_type point = filename.rfind('.'); + if (point == filename.size() - 1) + point = filename.rfind('.', point); + + // Get short name. + int j = 0; + for (char letter : filename.substr(0, point)) { + if (forbidden_characters.find(letter, 0) != std::string::npos) + continue; + if (j == 8) { + // TODO(Link Mauve): also do that for filenames containing a space. + // TODO(Link Mauve): handle multiple files having the same short name. + short_name[6] = '~'; + short_name[7] = '1'; + break; + } + short_name[j++] = toupper(letter); + } + + // Get extension. + if (point != std::string::npos) { + j = 0; + for (char letter : filename.substr(point + 1, 3)) + extension[j++] = toupper(letter); + } +} + IOFile::IOFile() : m_file(NULL), m_good(true) {} diff --git a/src/common/file_util.h b/src/common/file_util.h index f9d91972f..288734cad 100644 --- a/src/common/file_util.h +++ b/src/common/file_util.h @@ -4,6 +4,7 @@ #pragma once +#include <array> #include <fstream> #include <cstdio> #include <cstring> @@ -131,6 +132,16 @@ std::string &GetExeDirectory(); size_t WriteStringToFile(bool text_file, const std::string &str, const char *filename); size_t ReadFileToString(bool text_file, const char *filename, std::string &str); +/** + * Splits the filename into 8.3 format + * Loosely implemented following https://en.wikipedia.org/wiki/8.3_filename + * @param filename The normal filename to use + * @param short_name A 9-char array in which the short name will be written + * @param extension A 4-char array in which the extension will be written + */ +void SplitFilename83(const std::string& filename, std::array<char, 9>& short_name, + std::array<char, 4>& extension); + // simple wrapper for cstdlib file functions to // hopefully will make error checking easier // and make forgetting an fclose() harder |