Skip to content

Commit

Permalink
Merge PR #6635: FIX(client): Fix Windows Unicode paths when using raw…
Browse files Browse the repository at this point in the history
… file streams
  • Loading branch information
Hartmnt authored Dec 5, 2024
2 parents 56d44cc + fe5fe68 commit 75c66fc
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 8 deletions.
13 changes: 13 additions & 0 deletions src/QtUtils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
#include <QStringList>
#include <QUrl>

#include <filesystem>

namespace Mumble {
namespace QtUtils {
void deleteQObject(QObject *object) { object->deleteLater(); }
Expand All @@ -23,6 +25,17 @@ namespace QtUtils {
return QString();
}

std::filesystem::path qstring_to_path(const QString &input) {
// Path handling uses wide character encoding on Windows.
// When converting from QStrings, we need to take that
// into account, otherwise raw file operations will fail when
// the path contains Unicode characters.
#ifdef Q_OS_WIN
return std::filesystem::path(input.toStdWString());
#else
return std::filesystem::path(input.toUtf8().data());
#endif
}

} // namespace QtUtils
} // namespace Mumble
7 changes: 7 additions & 0 deletions src/QtUtils.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
#include <QString>
#include <QStringList>

#include <filesystem>

#include <memory>

class QObject;
Expand All @@ -34,6 +36,11 @@ namespace QtUtils {
*/
QString decode_first_utf8_qssl_string(const QStringList &list);

/**
* Creates a platform agnostic path from a QString
*/
std::filesystem::path qstring_to_path(const QString &input);

} // namespace QtUtils
} // namespace Mumble

Expand Down
3 changes: 2 additions & 1 deletion src/mumble/PluginInstaller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
#include "PluginInstaller.h"
#include "PluginManager.h"
#include "PluginManifest.h"
#include "QtUtils.h"
#include "Global.h"

#include <QMessageBox>
Expand Down Expand Up @@ -127,7 +128,7 @@ void PluginInstaller::init() {

zipInput.clear();
Poco::Zip::ZipInputStream zipin(zipInput, pluginIt->second);
std::ofstream out(tmpPluginPath.toStdString(), std::ios::out | std::ios::binary);
std::ofstream out(Mumble::QtUtils::qstring_to_path(tmpPluginPath), std::ios::out | std::ios::binary);
Poco::StreamCopier::copyStream(zipin, out);

m_pluginSource = QFileInfo(tmpPluginPath);
Expand Down
16 changes: 9 additions & 7 deletions src/mumble/Settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
#include "EnvUtils.h"
#include "JSONSerialization.h"
#include "Log.h"
#include "QtUtils.h"
#include "SSL.h"
#include "SettingsKeys.h"
#include "SettingsMacros.h"
Expand Down Expand Up @@ -155,11 +156,12 @@ void Settings::save(const QString &path) const {
QFile tmpFile(QString::fromLatin1("%1/mumble_settings.json.tmp")
.arg(QStandardPaths::writableLocation(QStandardPaths::TempLocation)));

{
// The separate scope makes sure, the stream is closed again after the write has finished
std::ofstream stream(tmpFile.fileName().toUtf8());
std::ofstream stream(Mumble::QtUtils::qstring_to_path(tmpFile.fileName()));
stream << settingsJSON.dump(4) << std::endl;
stream.close();

stream << settingsJSON.dump(4) << std::endl;
if (stream.fail()) {
qWarning("Failed at writing temporary settings file: %s", qUtf8Printable(tmpFile.fileName()));
}

QFile targetFile(path);
Expand Down Expand Up @@ -222,7 +224,7 @@ void Settings::load(const QString &path) {
settingsLocation = path;
}

std::ifstream stream(path.toUtf8());
std::ifstream stream(Mumble::QtUtils::qstring_to_path(path));

nlohmann::json settingsJSON;
try {
Expand Down Expand Up @@ -611,13 +613,13 @@ void OverlaySettings::savePresets(const QString &filename) {
settingsJSON.erase(SettingsKeys::OVERLAY_LAUNCHERS_KEY);
settingsJSON.erase(SettingsKeys::OVERLAY_LAUNCHERS_EXCLUDE_KEY);

std::ofstream stream(filename.toUtf8());
std::ofstream stream(Mumble::QtUtils::qstring_to_path(filename));

stream << settingsJSON.dump(4) << std::endl;
}

void OverlaySettings::load(const QString &filename) {
std::ifstream stream(filename.toUtf8());
std::ifstream stream(Mumble::QtUtils::qstring_to_path(filename));

nlohmann::json settingsJSON;
try {
Expand Down

0 comments on commit 75c66fc

Please sign in to comment.