// Copyright (C) 2025 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include "osspecificaspects.h" #include namespace Utils { QString osTypeToString(OsType osType) { switch (osType) { case OsTypeWindows: return "Windows"; case OsTypeLinux: return "Linux"; case OsTypeMac: return "Mac"; case OsTypeOtherUnix: return "Other Unix"; case OsTypeOther: default: return "Other"; } } Result osTypeFromString(const QString &string) { if (string.compare("windows", Qt::CaseInsensitive) == 0) return OsTypeWindows; if (string.compare("linux", Qt::CaseInsensitive) == 0) return OsTypeLinux; if (string.compare("mac", Qt::CaseInsensitive) == 0 || string.compare("darwin", Qt::CaseInsensitive) == 0 || string.compare("macos", Qt::CaseInsensitive) == 0) return OsTypeMac; if (string.compare("other unix", Qt::CaseInsensitive) == 0 || string.compare("qnx", Qt::CaseInsensitive) == 0) return OsTypeOtherUnix; return ResultError(QString::fromLatin1("Unknown os type: %1").arg(string)); } Result osArchFromString(const QString &architecture) { if (architecture == QLatin1String("x86_64") || architecture == QLatin1String("amd64")) return OsArchAMD64; if (architecture == QLatin1String("x86")) return OsArchX86; if (architecture == QLatin1String("ia64")) return OsArchItanium; if (architecture == QLatin1String("arm") || architecture.startsWith(QLatin1String("armv"))) return OsArchArm; if (architecture == QLatin1String("arm64") || architecture == QLatin1String("aarch64")) return OsArchArm64; return Utils::ResultError(QString::fromLatin1("Unknown architecture: %1").arg(architecture)); } namespace OsSpecificAspects { QString withExecutableSuffix(OsType osType, const QString &executable) { QString finalName = executable; if (osType == OsTypeWindows && !finalName.endsWith(QTC_WIN_EXE_SUFFIX)) finalName += QLatin1String(QTC_WIN_EXE_SUFFIX); return finalName; } QString pathWithNativeSeparators(OsType osType, const QString &pathName) { if (osType == OsTypeWindows) { const int pos = pathName.indexOf('/'); if (pos >= 0) { QString n = pathName; std::replace(std::begin(n) + pos, std::end(n), '/', '\\'); return n; } } else { const int pos = pathName.indexOf('\\'); if (pos >= 0) { QString n = pathName; std::replace(std::begin(n) + pos, std::end(n), '\\', '/'); return n; } } return pathName; } } // namespace OsSpecificAspects } // namespace Utils