rockbox/utils/rbutilqt/base/ttsexes.cpp
Solomon Peachy 390d17893f rbutil: Rework TTS classes to use a stringlist for arguments
Instead of passing the entire cmdline as a single string that was
treated as the exectuable name on some platforms

Change-Id: Ic4f043a3a48e1b1bfab82bbfa8983c2d224606ec
2026-07-09 15:00:20 -04:00

126 lines
3.5 KiB
C++

/***************************************************************************
* __________ __ ___.
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
* \/ \/ \/ \/ \/
*
* Copyright (C) 2007 by Dominik Wenger
*
* All files in this archive are subject to the GNU General Public License.
* See the file COPYING in the source tree root for full license agreement.
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
* KIND, either express or implied.
*
****************************************************************************/
#include <QtCore>
#include "ttsexes.h"
#include "utils.h"
#include "rbsettings.h"
#include "Logger.h"
TTSExes::TTSExes(QObject* parent) : TTSBase(parent)
{
m_name = "false";
m_capabilities = TTSBase::None;
}
TTSBase::Capabilities TTSExes::capabilities()
{
return m_capabilities;
}
void TTSExes::generateSettings()
{
loadSettings();
insertSetting(eEXEPATH, new EncTtsSetting(this, EncTtsSetting::eSTRING,
tr("Path to TTS engine:"), m_TTSexec, EncTtsSetting::eBROWSEBTN));
insertSetting(eOPTIONS, new EncTtsSetting(this, EncTtsSetting::eSTRING,
tr("TTS engine options:"), m_TTSOpts));
}
void TTSExes::saveSettings()
{
RbSettings::setSubValue(m_name, RbSettings::TtsPath,
getSetting(eEXEPATH)->current().toString());
RbSettings::setSubValue(m_name, RbSettings::TtsOptions,
getSetting(eOPTIONS)->current().toString());
RbSettings::sync();
}
void TTSExes::loadSettings(void)
{
m_TTSexec = RbSettings::subValue(m_name, RbSettings::TtsPath).toString();
if(m_TTSexec.isEmpty()) m_TTSexec = Utils::findExecutable(m_name);
m_TTSOpts = RbSettings::subValue(m_name, RbSettings::TtsOptions).toString();
}
bool TTSExes::start(QString *errStr)
{
loadSettings();
QFileInfo tts(m_TTSexec);
if(tts.exists())
{
return true;
}
else
{
*errStr = tr("TTS executable not found");
return false;
}
}
TTSStatus TTSExes::voice(const QString& text, const QString& wavfile, QString *errStr)
{
(void) errStr;
QStringList exec;
if(wavfile.isEmpty() && m_capabilities & TTSBase::CanSpeak) {
if(m_TTSSpeakTemplate.isEmpty()) {
LOG_ERROR() << "internal error: TTS announces CanSpeak "
"but template empty!";
return FatalError;
}
exec = m_TTSSpeakTemplate;
}
else if(wavfile.isEmpty()) {
LOG_ERROR() << "no output file passed to voice() "
"but TTS can't speak directly.";
return FatalError;
}
else {
exec = m_TTSTemplate;
}
exec.replaceInStrings("%options",m_TTSOpts);
exec.replaceInStrings("%wavfile",wavfile);
exec.replaceInStrings("%text",text);
int ret;
if ((ret = QProcess::execute(m_TTSexec, exec))) {
LOG_ERROR() << "TTS exec failed (" << ret << "): " << m_TTSexec << " " << exec;
return FatalError;
}
if(!wavfile.isEmpty() && !QFileInfo(wavfile).isFile()) {
LOG_ERROR() << "output file does not exist:" << wavfile;
return FatalError;
}
return NoError;
}
bool TTSExes::configOk()
{
loadSettings();
if (QFileInfo::exists(m_TTSexec))
return true;
else
return false;
}