2007-08-05 16:17:35 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 by Dominik Wenger
|
2007-08-23 22:11:50 +00:00
|
|
|
* $Id$
|
2007-08-05 16:17:35 +00:00
|
|
|
*
|
|
|
|
* 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 "talkfile.h"
|
|
|
|
|
|
|
|
TalkFileCreator::TalkFileCreator(QObject* parent): QObject(parent)
|
|
|
|
{
|
2007-08-29 09:27:35 +00:00
|
|
|
|
2007-08-05 16:17:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool TalkFileCreator::createTalkFiles(ProgressloggerInterface* logger)
|
|
|
|
{
|
2007-08-29 09:27:35 +00:00
|
|
|
m_abort = false;
|
2007-08-05 16:17:35 +00:00
|
|
|
m_logger = logger;
|
2007-10-19 21:49:07 +00:00
|
|
|
m_logger->addItem("Starting Talk file generation",LOGINFO);
|
2007-09-23 13:35:45 +00:00
|
|
|
|
2007-12-15 13:13:57 +00:00
|
|
|
//tts
|
|
|
|
m_tts = getTTS(userSettings->value("tts").toString());
|
|
|
|
m_tts->setUserCfg(userSettings);
|
2007-09-23 13:35:45 +00:00
|
|
|
|
|
|
|
if(!m_tts->start())
|
2007-08-05 16:17:35 +00:00
|
|
|
{
|
|
|
|
m_logger->addItem("Init of TTS engine failed",LOGERROR);
|
|
|
|
return false;
|
|
|
|
}
|
2007-12-14 19:26:54 +00:00
|
|
|
|
|
|
|
// Encoder
|
|
|
|
m_enc = getEncoder(userSettings->value("encoder").toString());
|
|
|
|
m_enc->setUserCfg(userSettings);
|
|
|
|
|
|
|
|
if(!m_enc->start())
|
2007-08-05 16:17:35 +00:00
|
|
|
{
|
2007-12-14 19:26:54 +00:00
|
|
|
m_logger->addItem("Init of Encoder engine failed",LOGERROR);
|
2007-09-23 13:35:45 +00:00
|
|
|
m_tts->stop();
|
2007-08-05 16:17:35 +00:00
|
|
|
return false;
|
|
|
|
}
|
2007-12-14 19:26:54 +00:00
|
|
|
|
2007-08-05 16:17:35 +00:00
|
|
|
QApplication::processEvents();
|
2007-09-15 22:57:07 +00:00
|
|
|
|
2007-08-05 16:17:35 +00:00
|
|
|
connect(logger,SIGNAL(aborted()),this,SLOT(abort()));
|
|
|
|
m_logger->setProgressMax(0);
|
|
|
|
QDirIterator it(m_dir,QDirIterator::Subdirectories);
|
2007-08-10 22:17:43 +00:00
|
|
|
QSettings installlog(m_mountpoint + "/.rockbox/rbutil.log", QSettings::IniFormat, 0);
|
|
|
|
installlog.beginGroup("talkfiles");
|
2007-08-05 16:17:35 +00:00
|
|
|
// iterate over all entrys
|
2007-09-15 22:57:07 +00:00
|
|
|
while (it.hasNext())
|
2007-08-05 16:17:35 +00:00
|
|
|
{
|
2007-08-29 09:27:35 +00:00
|
|
|
if(m_abort)
|
|
|
|
{
|
2007-10-19 21:49:07 +00:00
|
|
|
m_logger->addItem("Talk file creation aborted",LOGERROR);
|
2007-09-23 13:35:45 +00:00
|
|
|
m_tts->stop();
|
2007-08-29 09:27:35 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
QApplication::processEvents();
|
2007-08-05 16:17:35 +00:00
|
|
|
QFileInfo fileInf = it.fileInfo();
|
|
|
|
QString toSpeak;
|
|
|
|
QString filename;
|
|
|
|
QString wavfilename;
|
2007-12-14 19:26:54 +00:00
|
|
|
|
|
|
|
QString path = fileInf.filePath();
|
|
|
|
qDebug() << path;
|
|
|
|
|
|
|
|
if( path.endsWith("..") || path.endsWith(".talk") )
|
2007-08-29 09:27:35 +00:00
|
|
|
{
|
|
|
|
it.next();
|
2007-08-05 16:17:35 +00:00
|
|
|
continue;
|
|
|
|
}
|
2007-12-14 19:26:54 +00:00
|
|
|
|
2007-10-19 21:49:07 +00:00
|
|
|
//! if it is a dir
|
|
|
|
if(fileInf.isDir())
|
2007-08-05 16:17:35 +00:00
|
|
|
{
|
2007-10-12 15:52:04 +00:00
|
|
|
// skip entry if folder talking isnt enabled
|
|
|
|
if(m_talkFolders == false)
|
|
|
|
{
|
|
|
|
it.next();
|
|
|
|
continue;
|
2007-12-14 19:26:54 +00:00
|
|
|
}
|
|
|
|
int index1 = path.lastIndexOf("/");
|
|
|
|
int index2 = path.lastIndexOf("/",index1-1);
|
|
|
|
|
|
|
|
toSpeak = path.mid(index2+1,(index1-index2)-1);
|
|
|
|
|
|
|
|
filename = path.left(index1) + "/_dirname.talk";
|
|
|
|
qDebug() << "toSpeak: " << toSpeak << "filename: " << filename;
|
2007-08-05 16:17:35 +00:00
|
|
|
}
|
|
|
|
else // if it is a file
|
|
|
|
{
|
2007-10-12 15:52:04 +00:00
|
|
|
// skip entry if file talking isnt enabled
|
|
|
|
if(m_talkFiles == false)
|
|
|
|
{
|
|
|
|
it.next();
|
|
|
|
continue;
|
|
|
|
}
|
2007-08-05 16:17:35 +00:00
|
|
|
if(m_stripExtensions)
|
|
|
|
toSpeak = fileInf.baseName();
|
|
|
|
else
|
|
|
|
toSpeak = fileInf.fileName();
|
|
|
|
filename = fileInf.absoluteFilePath() + ".talk";
|
|
|
|
}
|
|
|
|
wavfilename = filename + ".wav";
|
2007-09-15 22:57:07 +00:00
|
|
|
|
2007-08-05 16:17:35 +00:00
|
|
|
QFileInfo filenameInf(filename);
|
|
|
|
QFileInfo wavfilenameInf(wavfilename);
|
2007-09-15 22:57:07 +00:00
|
|
|
|
2007-10-19 21:49:07 +00:00
|
|
|
//! the actual generation of the .talk files
|
2007-08-05 16:17:35 +00:00
|
|
|
if(!filenameInf.exists() || m_overwriteTalk)
|
|
|
|
{
|
|
|
|
if(!wavfilenameInf.exists() || m_overwriteWav)
|
|
|
|
{
|
|
|
|
m_logger->addItem("Voicing of " + toSpeak,LOGINFO);
|
2007-09-23 13:35:45 +00:00
|
|
|
if(!m_tts->voice(toSpeak,wavfilename))
|
2007-08-05 16:17:35 +00:00
|
|
|
{
|
|
|
|
m_logger->addItem("Voicing of " + toSpeak + " failed",LOGERROR);
|
|
|
|
m_logger->abort();
|
2007-09-23 13:35:45 +00:00
|
|
|
m_tts->stop();
|
2007-12-14 19:26:54 +00:00
|
|
|
m_enc->stop();
|
2007-08-05 16:17:35 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
m_logger->addItem("Encoding of " + toSpeak,LOGINFO);
|
2007-12-14 19:26:54 +00:00
|
|
|
if(!m_enc->encode(wavfilename,filename))
|
2007-08-05 16:17:35 +00:00
|
|
|
{
|
|
|
|
m_logger->addItem("Encoding of " + wavfilename + " failed",LOGERROR);
|
|
|
|
m_logger->abort();
|
2007-09-23 13:35:45 +00:00
|
|
|
m_tts->stop();
|
2007-12-14 19:26:54 +00:00
|
|
|
m_enc->stop();
|
2007-08-05 16:17:35 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2007-10-19 21:49:07 +00:00
|
|
|
|
|
|
|
//! remove the intermedia wav file, if requested
|
2007-08-29 17:54:52 +00:00
|
|
|
QString now = QDate::currentDate().toString("yyyyMMdd");
|
2007-08-05 16:17:35 +00:00
|
|
|
if(m_removeWav)
|
|
|
|
{
|
|
|
|
QFile wavfile(wavfilename);
|
|
|
|
wavfile.remove();
|
2007-08-10 22:17:43 +00:00
|
|
|
installlog.remove(wavfilename);
|
|
|
|
}
|
|
|
|
else
|
2007-10-19 21:49:07 +00:00
|
|
|
installlog.setValue(wavfilename.remove(0,m_mountpoint.length()),now);
|
|
|
|
|
|
|
|
//! add the .talk file to the install log
|
|
|
|
installlog.setValue(filename.remove(0,m_mountpoint.length()),now);
|
2007-08-05 16:17:35 +00:00
|
|
|
it.next();
|
|
|
|
}
|
2007-09-15 22:57:07 +00:00
|
|
|
|
2007-08-10 22:17:43 +00:00
|
|
|
installlog.endGroup();
|
2007-09-23 13:35:45 +00:00
|
|
|
m_tts->stop();
|
2007-10-19 21:49:07 +00:00
|
|
|
m_logger->addItem("Finished creating Talk files",LOGOK);
|
2007-08-05 16:17:35 +00:00
|
|
|
m_logger->setProgressMax(1);
|
|
|
|
m_logger->setProgressValue(1);
|
|
|
|
m_logger->abort();
|
2007-09-15 22:57:07 +00:00
|
|
|
|
|
|
|
return true;
|
2007-08-05 16:17:35 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void TalkFileCreator::abort()
|
|
|
|
{
|
2007-08-29 09:27:35 +00:00
|
|
|
m_abort = true;
|
2007-08-05 16:17:35 +00:00
|
|
|
}
|
|
|
|
|