Skip to content

Commit 2d9e23f

Browse files
tdewey-rpiTheAssassin
authored andcommitted
deployers: Simplify TextToSpeechPluginsDeployer
With the refactor of BasicPluginsDeployer, we can collapse the contents of the TextToSpeechPluginsDeployer to just a call into the base class, with the appropriate argument.
1 parent 3b6e451 commit 2d9e23f

File tree

1 file changed

+1
-31
lines changed

1 file changed

+1
-31
lines changed
+1-31
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,8 @@
1-
// system headers
2-
#include <filesystem>
3-
4-
// library headers
5-
#include <linuxdeploy/core/log.h>
6-
71
// local headers
82
#include "TextToSpeechPluginsDeployer.h"
93

104
using namespace linuxdeploy::plugin::qt;
11-
using namespace linuxdeploy::core::log;
12-
13-
namespace fs = std::filesystem;
145

156
bool TextToSpeechPluginsDeployer::doDeploy() {
16-
// calling the default code is optional, but it won't hurt for now
17-
if (!BasicPluginsDeployer::deploy())
18-
return false;
19-
20-
const std::string pluginsName = "texttospeech";
21-
22-
ldLog() << "Deploying" << pluginsName << "plugins" << std::endl;
23-
24-
for (fs::directory_iterator i(qtPluginsPath / pluginsName); i != fs::directory_iterator(); ++i) {
25-
if (i->path().extension() == ".debug") {
26-
ldLog() << LD_DEBUG << "skipping .debug file:" << i->path() << std::endl;
27-
continue;
28-
}
29-
30-
// terminate with a "/" to make sure the deployer will deploy the file into the target directory properly
31-
// has to be cast to string, unfortunately, as std::filesystem doesn't allow for adding a terminating /
32-
const auto targetPath = (appDir.path() / "usr/plugins/" / pluginsName).string() + "/";
33-
if (!appDir.deployLibrary(*i, targetPath))
34-
return false;
35-
}
36-
37-
return true;
7+
return deployStandardQtPlugins({"texttospeech"});
388
}

0 commit comments

Comments
 (0)