summaryrefslogtreecommitdiffstats
path: root/rbutil/rbutilqt/talkfile.cpp
blob: ee65dc27af825396bc54bf0ef03325d8ae079687 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
/***************************************************************************
 *             __________               __   ___.
 *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
 *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
 *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
 *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
 *                     \/            \/     \/    \/            \/
 *
 *   Copyright (C) 2007 by Dominik Wenger
 *   $Id$
 *
 * 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)
{
   
}

void TalkFileCreator::setTTsType(QString tts)
{
	m_curTTS = tts;
	int index = m_supportedTTS.indexOf(m_curTTS);
	m_curTTSTemplate = m_supportedTTSTemplates.at(index);
}

void TalkFileCreator::setEncType(QString enc)
{
	m_curEnc = enc;
	int index = m_supportedEnc.indexOf(m_curEnc);
	m_curEncTemplate = m_supportedEncTemplates.at(index);
}

bool TalkFileCreator::initEncoder()
{
    QFileInfo enc(m_EncExec);
    if(enc.exists())
    {
        return true;
    }
    else
    {
        return false;
    }
}

bool TalkFileCreator::initTTS()
{
    QFileInfo tts(m_TTSexec);
    
    if(tts.exists())
    {
        return true;
    }
    else
    {
        return false;
    }
}

bool TalkFileCreator::createTalkFiles(ProgressloggerInterface* logger)
{
	m_abort = false;
    m_logger = logger;
    m_logger->addItem("Starting Talkfile generation",LOGINFO);
    if(!initTTS())
    {
        m_logger->addItem("Init of TTS engine failed",LOGERROR);
        return false;
    }
    if(!initEncoder())
    {
        m_logger->addItem("Init of encoder failed",LOGERROR);
        return false;
    }
    QApplication::processEvents();
    
    connect(logger,SIGNAL(aborted()),this,SLOT(abort()));
    m_logger->setProgressMax(0);
    QDirIterator it(m_dir,QDirIterator::Subdirectories);
    QSettings installlog(m_mountpoint + "/.rockbox/rbutil.log", QSettings::IniFormat, 0);
    installlog.beginGroup("talkfiles");
    // iterate over all entrys
    while (it.hasNext()) 
    {
    	if(m_abort)
    	{
    		m_logger->addItem("Talkfile creation aborted",LOGERROR);
    		return false;
    	}
    	
    	QApplication::processEvents();  
        QFileInfo fileInf = it.fileInfo();
        QString toSpeak;
        QString filename;
        QString wavfilename;
        
        if(fileInf.fileName() == "." || fileInf.fileName() == ".." || fileInf.suffix() == "talk")
        { 	
        	it.next();
            continue;
        }
        if(fileInf.isDir())  // if it is a dir
        {
            toSpeak = fileInf.fileName();
            filename = fileInf.absolutePath() + "/_dirname.talk";
        }
        else   // if it is a file
        {
            if(m_stripExtensions)
                toSpeak = fileInf.baseName();
            else
                toSpeak = fileInf.fileName();
            filename = fileInf.absoluteFilePath() + ".talk";
        }
        wavfilename = filename + ".wav";
        
        QFileInfo filenameInf(filename);
        QFileInfo wavfilenameInf(wavfilename);
        
        if(!filenameInf.exists() || m_overwriteTalk)
        {
            if(!wavfilenameInf.exists() || m_overwriteWav)
            {
                m_logger->addItem("Voicing of " + toSpeak,LOGINFO);
                if(!voice(toSpeak,wavfilename))
                {
                    m_logger->addItem("Voicing of " + toSpeak + " failed",LOGERROR);
                    m_logger->abort();
                    return false;
                }
            }
            m_logger->addItem("Encoding of " + toSpeak,LOGINFO);
            if(!encode(wavfilename,filename))
            {
                m_logger->addItem("Encoding of " + wavfilename + " failed",LOGERROR);
                m_logger->abort();
                return false;
            }
        }
        
        if(m_removeWav)
        {
            QFile wavfile(wavfilename);
            wavfile.remove();
            installlog.remove(wavfilename);
        }
        else
            installlog.setValue(wavfilename.remove(m_mountpoint),installlog.value(wavfilename,0).toInt()+1);
        
        installlog.setValue(filename.remove(m_mountpoint),installlog.value(filename,0).toInt()+1);
        it.next();
    }
    
    installlog.endGroup();
    m_logger->addItem("Finished creating Talkfiles",LOGOK);
    m_logger->setProgressMax(1);
    m_logger->setProgressValue(1);
    m_logger->abort();
    
    return true; 

}

void TalkFileCreator::abort()
{
	m_abort = true;
}

bool TalkFileCreator::voice(QString text,QString wavfile)
{
           
   QString execstring = m_curTTSTemplate;
    	
   execstring.replace("%exe",m_TTSexec);
   execstring.replace("%options",m_TTSOpts);
   execstring.replace("%wavfile",wavfile);
   execstring.replace("%text",text);
        
   QProcess::execute(execstring);
   return true;
   
}

bool TalkFileCreator::encode(QString input,QString output)
{
   	QString execstring = m_curEncTemplate;
        	
    execstring.replace("%exe",m_EncExec);
    execstring.replace("%options",m_EncOpts);
    execstring.replace("%input",input);
    execstring.replace("%output",output);
           
   QProcess::execute(execstring);
   return true;

}

QString TalkFileCreator::getTTsOpts(QString ttsname)
{
    int index = m_supportedTTS.indexOf(ttsname);

    return m_supportedTTSOpts.at(index);
}

QString TalkFileCreator::getEncOpts(QString encname)
{
    int index = m_supportedEnc.indexOf(encname);

    return m_supportedEncOpts.at(index);
}