Explorar el Código

CodecsComponent: more thorough codecs updating

This also fixes a bad case of EAE getting deleted by the code for
deleting old codecs. (Damn special cases.)
Vincent Lang hace 8 años
padre
commit
b4201ca905
Se han modificado 2 ficheros con 29 adiciones y 8 borrados
  1. 26 7
      src/player/CodecsComponent.cpp
  2. 3 1
      src/player/CodecsComponent.h

+ 26 - 7
src/player/CodecsComponent.cpp

@@ -175,9 +175,11 @@ static QString codecsPath()
 ///////////////////////////////////////////////////////////////////////////////////////////////////
 static QString eaePrefixPath()
 {
+  // (Keep in sync with PMS paths.)
   return codecsRootPath() + "EasyAudioEncoder-" + STRINGIFY(EAE_VERSION) + "-" + getBuildType();
 }
 
+///////////////////////////////////////////////////////////////////////////////////////////////////
 static QString eaeBinaryPath()
 {
 QString exeSuffix = "";
@@ -187,6 +189,12 @@ QString exeSuffix = "";
   return eaePrefixPath() + "/EasyAudioEncoder/EasyAudioEncoder" + exeSuffix;
 }
 
+///////////////////////////////////////////////////////////////////////////////////////////////////
+static bool eaeIsPresent()
+{
+  return QFile(eaeBinaryPath()).exists();
+}
+
 ///////////////////////////////////////////////////////////////////////////////////////////////////
 static int indexOfCodecInList(const QList<CodecDriver>& list, const CodecDriver& codec)
 {
@@ -536,6 +544,7 @@ static void updateCodecs()
   };
 
   QSet<QString> codecFiles;
+  bool needEAE = false;
 
   for (auto dir : candidates)
   {
@@ -551,6 +560,10 @@ static void updateCodecs()
 
       for (auto codecdirEntry : entryDir.entryList(QDir::Files))
         codecFiles.insert(codecdirEntry);
+
+      // NOTE: PMS also uses this prefix
+      if (entry.startsWith("EasyAudioEncoder-") && !eaeIsPresent())
+        needEAE = true;
     }
   }
 
@@ -558,16 +571,17 @@ static void updateCodecs()
 
   for (CodecDriver& codec : g_cachedCodecList)
   {
-    if (codecFiles.contains(codec.getFileName()))
-    {
-      if (codec.external && !codec.present)
+    if ((codecFiles.contains(codec.getFileName()) && codec.external && !codec.present) ||
+        (codec.getSystemCodecType() == "eae" && needEAE))
         install.append(codec);
-    }
   }
 
   if (!install.empty())
   {
-    QLOG_INFO() << "Updating some codecs...";
+    QStringList codecs;
+    for (auto codec : install)
+      codecs.append(codec.getMangledName());
+    QLOG_INFO() << "Updating some codecs: " + codecs.join(", ");
 
     auto fetcher = new CodecsFetcher();
     QObject::connect(fetcher, &CodecsFetcher::done, [](CodecsFetcher* sender)
@@ -575,6 +589,7 @@ static void updateCodecs()
       QLOG_INFO() << "Codec update finished.";
       sender->deleteLater();
     });
+    fetcher->startCodecs = false;
     fetcher->installCodecs(install);
   }
 }
@@ -610,6 +625,10 @@ static void deleteOldCodecs()
     if (entry.startsWith(g_codecVersion + "-"))
       continue;
 
+    // EAE is "special"
+    if (entry.startsWith(QString("EasyAudioEncoder-") + STRINGIFY(EAE_VERSION) + "-"))
+      continue;
+
     QLOG_DEBUG() << "Deleting old directory: " << entryPath.absolutePath();
     entryPath.removeRecursively();
   }
@@ -668,7 +687,7 @@ void CodecsFetcher::installCodecs(const QList<CodecDriver>& codecs)
     if (codec.getSystemCodecType() == "eae")
     {
       m_eaeNeeded = true;
-      if (!QFile(eaeBinaryPath()).exists())
+      if (!eaeIsPresent())
         m_fetchEAE = true;
     }
   }
@@ -720,7 +739,7 @@ void CodecsFetcher::startNext()
   if (m_Codecs.isEmpty())
   {
     // Do final initializations.
-    if (m_eaeNeeded)
+    if (m_eaeNeeded && startCodecs)
       startEAE();
 
     emit done(this);

+ 3 - 1
src/player/CodecsComponent.h

@@ -98,7 +98,7 @@ class CodecsFetcher : public QObject
   Q_OBJECT
 public:
   CodecsFetcher()
-  : m_eaeNeeded(false), m_fetchEAE(false)
+  : startCodecs(true), m_eaeNeeded(false), m_fetchEAE(false)
   {
   }
 
@@ -109,6 +109,8 @@ public:
   // For free use by the user of this object.
   QVariant userData;
 
+  bool startCodecs;
+
 Q_SIGNALS:
   void done(CodecsFetcher* sender);