aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2019-06-28 22:46:20 -0700
committerThiago Macieira <thiago.macieira@intel.com>2019-07-16 00:38:52 +0000
commit9693882d6dc53e3cebb5614d74f205210d75ed20 (patch)
treebd44a86e8f49993b7224286bc62bb7ba9cab04bd
parent8181363fa90eb651591bf71e1a840e1c998429f4 (diff)
Re-fix QtCore resource path changing and prepare for Qt 5.134.9
Commit 9cf8ab3b3d44ac50a1f8d4893d8f70b8aedb18b0 added the #ifdef, but that of course only works if you don't upgrade Qt compared to what Qt Creator was compiled with. Instead, attempt both paths and only do that if the system copy is not found. Searching the system copy is required to address Qt 5.13's configure option -no-mimetype-database (used by Linux distributions because the system copy is always present). This code will still need work to deal with Qt 5.14 changes. Task-number: QTCREATORBUG-19600 Task-number: QTCREATORBUG-22636 Change-Id: I6aed4df6a12e43c3ac8efffd15ac952a6e9d4770 Reviewed-by: Dmitry Shachnev <mitya57@gmail.com> Reviewed-by: Orgad Shaneh <orgads@gmail.com>
-rw-r--r--src/libs/utils/mimetypes/mimeprovider.cpp45
1 files changed, 19 insertions, 26 deletions
diff --git a/src/libs/utils/mimetypes/mimeprovider.cpp b/src/libs/utils/mimetypes/mimeprovider.cpp
index d444aa899c..53fa0502e5 100644
--- a/src/libs/utils/mimetypes/mimeprovider.cpp
+++ b/src/libs/utils/mimetypes/mimeprovider.cpp
@@ -784,32 +784,25 @@ void MimeXMLProvider::ensureLoaded()
{
if (!m_loaded /*|| shouldCheck()*/) {
m_loaded = true;
-// bool fdoXmlFound = false;
- QStringList allFiles;
-
-// const QStringList packageDirs = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, QLatin1String("mime/packages"), QStandardPaths::LocateDirectory);
-// //qDebug() << "packageDirs=" << packageDirs;
-// for (const QString &packageDir : packageDirs) {
-// QDir dir(packageDir);
-// const QStringList files = dir.entryList(QDir::Files | QDir::NoDotAndDotDot);
-// //qDebug() << static_cast<const void *>(this) << packageDir << files;
-// if (!fdoXmlFound)
-// fdoXmlFound = files.contains(QLatin1String("freedesktop.org.xml"));
-// QStringList::const_iterator endIt(files.constEnd());
-// for (QStringList::const_iterator it(files.constBegin()); it != endIt; ++it) {
-// allFiles.append(packageDir + QLatin1Char('/') + *it);
-// }
-// }
-
-// if (!fdoXmlFound) {
-// // We could instead install the file as part of installing Qt?
-#if (QT_VERSION >= QT_VERSION_CHECK(5, 11, 0))
- const char freedesktopOrgXml[] = ":/qt-project.org/qmime/packages/freedesktop.org.xml";
-#else
- const char freedesktopOrgXml[] = ":/qt-project.org/qmime/freedesktop.org.xml";
-#endif
- allFiles.prepend(QLatin1String(freedesktopOrgXml));
-// }
+ QStringList allFiles = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation,
+ QStringLiteral("mime/packages/freedesktop.org.xml"),
+ QStandardPaths::LocateFile);
+
+ if (allFiles.isEmpty()) {
+ // System freedesktop.org.xml file not found, try to use the one in QtCore.
+ // This is private API and has changed in the past:
+ // - Qt 5.11 added "package" subdir in 7a5644d6481a3c1a7416772998ca4e60c977bfbd
+ // - Qt 5.13 added an option to not bundle it at all
+ const QString fdoXml5_11 = QStringLiteral(":/qt-project.org/qmime/packages/freedesktop.org.xml");
+ const QString fdoXmlPre5_11 = QStringLiteral(":/qt-project.org/qmime/freedesktop.org.xml");
+ if (QFile::exists(fdoXml5_11))
+ allFiles << fdoXml5_11;
+ else if (QFile::exists(fdoXmlPre5_11))
+ allFiles << fdoXmlPre5_11;
+ else
+ qFatal("Utils::MimeXMLProvider: could not find the system freedesktop.org.xml file "
+ "and QtCore does not have an accessible copy.");
+ }
m_nameMimeTypeMap.clear();
m_aliases.clear();