123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192 |
- /* ----------------------------------------------------------------- */
- /* The HMM-Based Singing Voice Synthesis System "Sinsy" */
- /* developed by Sinsy Working Group */
- /* http://sinsy.sourceforge.net/ */
- /* ----------------------------------------------------------------- */
- /* */
- /* Copyright (c) 2009-2015 Nagoya Institute of Technology */
- /* Department of Computer Science */
- /* */
- /* All rights reserved. */
- /* */
- /* Redistribution and use in source and binary forms, with or */
- /* without modification, are permitted provided that the following */
- /* conditions are met: */
- /* */
- /* - Redistributions of source code must retain the above copyright */
- /* notice, this list of conditions and the following disclaimer. */
- /* - Redistributions in binary form must reproduce the above */
- /* copyright notice, this list of conditions and the following */
- /* disclaimer in the documentation and/or other materials provided */
- /* with the distribution. */
- /* - Neither the name of the Sinsy working group nor the names of */
- /* its contributors may be used to endorse or promote products */
- /* derived from this software without specific prior written */
- /* permission. */
- /* */
- /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND */
- /* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, */
- /* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF */
- /* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE */
- /* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS */
- /* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, */
- /* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED */
- /* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, */
- /* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON */
- /* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, */
- /* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY */
- /* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE */
- /* POSSIBILITY OF SUCH DAMAGE. */
- /* ----------------------------------------------------------------- */
- #include <stdexcept>
- #include <algorithm>
- #include "util_log.h"
- #include "StringTokenizer.h"
- #include "Deleter.h"
- #include "ConfManager.h"
- #include "ConfGroup.h"
- #include "util_converter.h"
- #include "JConf.h"
- namespace sinsy
- {
- namespace
- {
- const std::string UTF_8_STRS("utf_8, utf8, utf-8");
- const std::string SHIFT_JIS_STRS("shift_jis, shift-jis, sjis");
- const std::string EUC_JP_STRS("euc-jp, euc_jp, eucjp");
- const std::string CODE_SEPARATOR = "|";
- };
- /*!
- constructor
- */
- ConfManager::ConfManager() : uJConf(NULL), sJConf(NULL), eJConf(NULL), jConfs(NULL)
- {
- }
- /*!
- destructor
- */
- ConfManager::~ConfManager()
- {
- clear();
- }
- /*!
- @internal
- clear all confs
- */
- void ConfManager::clear()
- {
- std::for_each(deleteList.begin(), deleteList.end(), Deleter<IConf>());
- deleteList.clear();
- uJConf = NULL;
- sJConf = NULL;
- eJConf = NULL;
- jConfs = NULL;
- confList.clear();
- }
- /*!
- @internal
- add Japanese conf
- */
- void ConfManager::addJConf(IConf* conf)
- {
- if (!jConfs) {
- jConfs = new ConfGroup();
- deleteList.push_back(jConfs);
- confList.push_back(jConfs);
- }
- jConfs->add(conf);
- }
- /*!
- set languages
- (Currently, you can set only Japanese (j))
- */
- bool ConfManager::setLanguages(const std::string& languages, const std::string& dirPath)
- {
- clear();
- const std::string::const_iterator itrEnd(languages.end());
- for (std::string::const_iterator itr(languages.begin()); itrEnd != itr; ++itr) {
- char lang(*itr);
- switch (lang) {
- case 'j' : { // Japanese
- const std::string TABLE_UTF_8(dirPath + "/japanese.utf_8.table");
- const std::string CONF_UTF_8(dirPath + "/japanese.utf_8.conf");
- const std::string TABLE_SHIFT_JIS(dirPath + "/japanese.shift_jis.table");
- const std::string CONF_SHIFT_JIS(dirPath + "/japanese.shift_jis.conf");
- const std::string TABLE_EUC_JP(dirPath + "/japanese.euc_jp.table");
- const std::string CONF_EUC_JP(dirPath + "/japanese.euc_jp.conf");
- const std::string MACRON_TABLE(dirPath + "/japanese.macron");
- uJConf = new JConf(UTF_8_STRS);
- sJConf = new JConf(SHIFT_JIS_STRS);
- eJConf = new JConf(EUC_JP_STRS);
- // utf-8
- if (!uJConf->read(TABLE_UTF_8, CONF_UTF_8, MACRON_TABLE)) {
- ERR_MSG("Cannot read Japanese table or config or macron file : " << TABLE_UTF_8 << ", " << CONF_UTF_8);
- delete uJConf;
- uJConf = NULL;
- return false;
- }
- addJConf(uJConf);
- deleteList.push_back(uJConf);
- // shift_jis
- if (!sJConf->read(TABLE_SHIFT_JIS, CONF_SHIFT_JIS, MACRON_TABLE)) {
- ERR_MSG("Cannot read Japanese table or config or macron file :" << TABLE_SHIFT_JIS << ", " << CONF_SHIFT_JIS);
- delete sJConf;
- sJConf = NULL;
- return false;
- }
- addJConf(sJConf);
- deleteList.push_back(sJConf);
- // euc-jp
- if (!eJConf->read(TABLE_EUC_JP, CONF_EUC_JP, MACRON_TABLE)) {
- ERR_MSG("Cannot read Japanese table or config or macron file : " << TABLE_EUC_JP << ", " << CONF_EUC_JP);
- delete eJConf;
- eJConf = NULL;
- return false;
- }
- addJConf(eJConf);
- deleteList.push_back(eJConf);
- break;
- }
- default :
- ERR_MSG("Unknown language flag : " << lang);
- return false;
- }
- }
- return true;
- }
- /*!
- set default confs
- */
- void ConfManager::setDefaultConfs(ConfGroup& confs) const
- {
- confs.clear();
- const ConfList::const_iterator itrEnd(confList.end());
- for (ConfList::const_iterator itr(confList.begin()); itrEnd != itr ; ++itr) {
- confs.add(*itr);
- }
- // unknown conf
- confs.add(&uConf);
- return;
- }
- }; // namespace sinsy
|