org.daisy.pipeline.tts.config.VoiceConfigExtension Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tts-common Show documentation
Show all versions of tts-common Show documentation
Common API for TTS functionality
The newest version!
package org.daisy.pipeline.tts.config;
import java.net.URI;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Map;
import net.sf.saxon.s9api.QName;
import net.sf.saxon.s9api.XdmNode;
import org.daisy.pipeline.tts.VoiceInfo;
import org.daisy.pipeline.tts.VoiceInfo.Gender;
import org.daisy.pipeline.tts.config.ConfigReader;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class VoiceConfigExtension implements ConfigReader.Extension {
private static final Logger logger = LoggerFactory.getLogger(VoiceConfigExtension.class);
@Override
public boolean parseNode(XdmNode node, URI documentURI, ConfigReader parent) {
String name = node.getNodeName().getLocalName();
if ("voice".equalsIgnoreCase(name)) {
String lang = node.getAttributeValue(new QName(null, "lang"));
if (lang == null)
node.getAttributeValue(new QName("http://www.w3.org/XML/1998/namespace", "lang"));
String vengine = node.getAttributeValue(new QName(null, "engine"));
String vname = node.getAttributeValue(new QName(null, "name"));
String priority = node.getAttributeValue(new QName(null, "priority"));
Gender gender = Gender.of(node.getAttributeValue(new QName(null, "gender")));
if (node.getAttributeValue(new QName(null, "marks")) != null) {
logger.warn("mark attribute on voice is deprecated");
}
if (priority == null)
priority = "5";
if (lang == null || vengine == null || vname == null || gender == null) {
logger.warn("Config file invalid near " + node.toString());
} else {
try {
mVoices.add(new VoiceInfo(vengine, vname, lang, gender, Float.valueOf(priority)));
} catch (NumberFormatException e) {
logger.warn("Error while converting config file's priority " + priority
+ " to float.");
} catch (IllegalArgumentException e) {
logger.warn("Invalid language in config file: " + lang);
logger.debug("Invalid language in config file: " + lang, e);
}
}
return true;
}
return false;
}
public Collection getVoiceDeclarations() {
return mVoices;
}
private Collection mVoices = new ArrayList();
}