123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- #include <stdexcept>
- #include <algorithm>
- #include "util_log.h"
- #include "util_converter.h"
- #include "ConfGroup.h"
- #include "Deleter.h"
- namespace sinsy
- {
- ConfGroup::ConfGroup()
- {
- }
- ConfGroup::~ConfGroup()
- {
- clear();
- }
- void ConfGroup::clear()
- {
- confs.clear();
- }
- bool ConfGroup::convert(const std::string& enc, ConvertableList::iterator begin, ConvertableList::iterator end) const
- {
- const ConfList::const_iterator itrEnd(confs.end());
- for (ConfList::const_iterator itr(confs.begin()); itrEnd != itr; ++itr) {
- ConvertableList::iterator b(begin);
- for (ConvertableList::iterator e(b); end != b; ++e) {
- if ((end == e) || (*e)->isConverted()) {
- if (b == e) {
- ++b;
- } else {
- (*itr)->convert(enc, b, e);
- b = e;
- }
- if (end == e) break;
- }
- }
- }
- return true;
- }
- void ConfGroup::add(const IConf* conf)
- {
- if (NULL == conf) {
- std::runtime_error("ConfGroup::addConf() NULL pointer");
- }
- confs.push_back(conf);
- }
- std::string ConfGroup::getSilStr() const
- {
- if (!confs.empty()) {
- return confs.front()->getSilStr();
- }
- return DEFAULT_SIL_STR;
- }
- };
|