X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FHunspellChecker.cpp;h=ea4b88c5c0cacdcc467b76e9f378ae32ce00c1e2;hb=5a01424bf0dbb939cbff1c72ecd99359803a4675;hp=af3d8404c01b09ad7e8fb8ab35792249cbe13a32;hpb=a2287675d2362eea8ae6f853a1666db5f78a9d89;p=lyx.git diff --git a/src/HunspellChecker.cpp b/src/HunspellChecker.cpp index af3d8404c0..ea4b88c5c0 100644 --- a/src/HunspellChecker.cpp +++ b/src/HunspellChecker.cpp @@ -55,11 +55,14 @@ struct HunspellChecker::Private Private(); ~Private(); + void cleanCache(); + void setUserPath(std::string const & path); const string dictPath(int selector); bool haveLanguageFiles(string const & hpath); - bool haveDictionary(string const & lang, string & hpath); - bool haveDictionary(string const & lang); - Hunspell * addSpeller(string const & lang, string & hpath); + bool haveDictionary(Language const * lang, string & hpath); + bool haveDictionary(Language const * lang); + int numDictionaries() const; + Hunspell * addSpeller(Language const * lang, string & hpath); Hunspell * addSpeller(Language const * lang); Hunspell * speller(Language const * lang); /// ignored words @@ -74,26 +77,53 @@ struct HunspellChecker::Private IgnoreList ignored_; /// LangPersonalWordList personal_; + /// + std::string user_path_; /// the location below system/user directory /// there the aff+dic files lookup will happen - const string dictDirectory(void) const { return "dict"; } - int maxLookupSelector(void) const { return 3; } + const string dictDirectory(void) const { return "dicts"; } + int maxLookupSelector(void) const { return 4; } + const string HunspellDictionaryName(Language const * lang) { + return lang->variety().empty() + ? lang->code() + : lang->code() + "-" + lang->variety(); + } + const string osPackageDictDirectory(void) { + return "/usr/share/myspell"; + } }; HunspellChecker::Private::Private() { + setUserPath(lyxrc.hunspelldir_path); } HunspellChecker::Private::~Private() +{ + cleanCache(); +} + + +void HunspellChecker::Private::setUserPath(std::string const & path) +{ + if (user_path_ != lyxrc.hunspelldir_path) { + cleanCache(); + user_path_ = path; + } +} + + +void HunspellChecker::Private::cleanCache() { Spellers::iterator it = spellers_.begin(); Spellers::iterator end = spellers_.end(); for (; it != end; ++it) { - if ( 0 != it->second) delete it->second; + delete it->second; + it->second = 0; } LangPersonalWordList::const_iterator pdit = personal_.begin(); @@ -120,6 +150,9 @@ bool HunspellChecker::Private::haveLanguageFiles(string const & hpath) const string HunspellChecker::Private::dictPath(int selector) { switch (selector) { + case 3: + return addName(osPackageDictDirectory(),dictDirectory()); + break; case 2: return addName(package().system_support().absFileName(),dictDirectory()); break; @@ -127,59 +160,67 @@ const string HunspellChecker::Private::dictPath(int selector) return addName(package().user_support().absFileName(),dictDirectory()); break; default: - return lyxrc.hunspelldir_path; + return user_path_; } } -bool HunspellChecker::Private::haveDictionary(string const & lang, string & hpath) +bool HunspellChecker::Private::haveDictionary(Language const * lang, string & hpath) { - if (hpath.empty()) { + if (hpath.empty()) return false; - } - LYXERR(Debug::FILES, "check hunspell path: " << hpath << " for language " << lang); - string h_path = addName(hpath, lang); - if (!haveLanguageFiles(h_path)) { - // try with '_' replaced by '-' - h_path = addName(hpath, subst(lang, '_', '-')); - if (!haveLanguageFiles(h_path)) { - // FIXME: We should indicate somehow that this language is not - // supported, probably by popping a warning. But we'll need to - // remember which warnings we've issued. - return false; - } + LYXERR(Debug::FILES, "check hunspell path: " << hpath + << " for language " << (lang ? lang->lang() : "NULL" )); + + string h_path = addName(hpath, HunspellDictionaryName(lang)); + // first we try lang code+variety + if (haveLanguageFiles(h_path)) { + LYXERR(Debug::FILES, " found " << h_path); + hpath = h_path; + return true; } + // another try with code, '_' replaced by '-' + h_path = addName(hpath, subst(lang->code(), '_', '-')); + if (!haveLanguageFiles(h_path)) + return false; + LYXERR(Debug::FILES, " found " << h_path); hpath = h_path; return true; } -bool HunspellChecker::Private::haveDictionary(string const & lang) +bool HunspellChecker::Private::haveDictionary(Language const * lang) { bool result = false; - for ( int p = 0; !result && p < maxLookupSelector(); p++ ) { + + setUserPath(lyxrc.hunspelldir_path); + for (int p = 0; !result && p < maxLookupSelector(); ++p) { string lpath = dictPath(p); result = haveDictionary(lang, lpath); } + // FIXME: if result is false... + // we should indicate somehow that this language is not + // supported, probably by popping a warning. But we'll need to + // remember which warnings we've issued. return result; } Hunspell * HunspellChecker::Private::speller(Language const * lang) { - Spellers::iterator it = spellers_.find(lang->code()); + setUserPath(lyxrc.hunspelldir_path); + Spellers::iterator it = spellers_.find(lang->lang()); if (it != spellers_.end()) return it->second; - return addSpeller(lang); } -Hunspell * HunspellChecker::Private::addSpeller(string const & lang,string & path) +Hunspell * HunspellChecker::Private::addSpeller(Language const * lang,string & path) { if (!haveDictionary(lang, path)) { - spellers_[lang] = 0; + spellers_[lang->lang()] = 0; return 0; } @@ -187,7 +228,7 @@ Hunspell * HunspellChecker::Private::addSpeller(string const & lang,string & pat FileName const dict(path + ".dic"); Hunspell * h = new Hunspell(affix.absFileName().c_str(), dict.absFileName().c_str()); LYXERR(Debug::FILES, "Hunspell speller for langage " << lang << " at " << dict << " found"); - spellers_[lang] = h; + spellers_[lang->lang()] = h; return h; } @@ -195,11 +236,11 @@ Hunspell * HunspellChecker::Private::addSpeller(string const & lang,string & pat Hunspell * HunspellChecker::Private::addSpeller(Language const * lang) { Hunspell * h = 0; - for ( int p = 0; p < maxLookupSelector() && 0 == h; p++ ) { + for (int p = 0; p < maxLookupSelector() && 0 == h; ++p) { string lpath = dictPath(p); - h = addSpeller(lang->code(), lpath); + h = addSpeller(lang, lpath); } - if (0 != h) { + if (h) { string const encoding = h->get_dic_encoding(); PersonalWordList * pd = new PersonalWordList(lang->lang()); pd->load(); @@ -215,13 +256,25 @@ Hunspell * HunspellChecker::Private::addSpeller(Language const * lang) } +int HunspellChecker::Private::numDictionaries() const +{ + int result = 0; + Spellers::const_iterator it = spellers_.begin(); + Spellers::const_iterator et = spellers_.end(); + + for (; it != et; ++it) + result += it->second != 0; + return result; +} + + bool HunspellChecker::Private::isIgnored(WordLangTuple const & wl) const { IgnoreList::const_iterator it = ignored_.begin(); for (; it != ignored_.end(); ++it) { - if ((*it).lang()->code() != wl.lang()->code()) + if (it->lang()->code() != wl.lang()->code()) continue; - if ((*it).word() == wl.word()) + if (it->word() == wl.word()) return true; } return false; @@ -267,9 +320,9 @@ bool HunspellChecker::Private::learned(WordLangTuple const & wl) } -HunspellChecker::HunspellChecker(): d(new Private) -{ -} +HunspellChecker::HunspellChecker() + : d(new Private) +{} HunspellChecker::~HunspellChecker() @@ -285,22 +338,24 @@ SpellChecker::Result HunspellChecker::check(WordLangTuple const & wl) Hunspell * h = d->speller(wl.lang()); if (!h) - return WORD_OK; + return NO_DICTIONARY; int info; string const encoding = h->get_dic_encoding(); string const word_to_check = to_iconv_encoding(wl.word(), encoding); + LYXERR(Debug::GUI, "spellCheck: \"" << + wl.word() << "\", lang = " << wl.lang()->lang()) ; if (h->spell(word_to_check.c_str(), &info)) return d->learned(wl) ? LEARNED_WORD : WORD_OK; if (info & SPELL_COMPOUND) { // FIXME: What to do with that? - LYXERR(Debug::FILES, "Hunspell compound word found " << word_to_check); + LYXERR(Debug::GUI, "Hunspell compound word found " << word_to_check); } if (info & SPELL_FORBIDDEN) { // This was removed from personal dictionary - LYXERR(Debug::FILES, "Hunspell explicit forbidden word found " << word_to_check); + LYXERR(Debug::GUI, "Hunspell explicit forbidden word found " << word_to_check); } return UNKNOWN_WORD; @@ -356,11 +411,36 @@ void HunspellChecker::suggest(WordLangTuple const & wl, } +void HunspellChecker::stem(WordLangTuple const & wl, + docstring_list & suggestions) +{ + suggestions.clear(); + Hunspell * h = d->speller(wl.lang()); + if (!h) + return; + string const encoding = h->get_dic_encoding(); + string const word_to_check = to_iconv_encoding(wl.word(), encoding); + char ** suggestion_list; + int const suggestion_number = h->stem(&suggestion_list, word_to_check.c_str()); + if (suggestion_number <= 0) + return; + for (int i = 0; i != suggestion_number; ++i) + suggestions.push_back(from_iconv_encoding(suggestion_list[i], encoding)); + h->free_list(&suggestion_list, suggestion_number); +} + + bool HunspellChecker::hasDictionary(Language const * lang) const { if (!lang) return false; - return (d->haveDictionary(lang->code())); + return d->haveDictionary(lang); +} + + +int HunspellChecker::numDictionaries() const +{ + return d->numDictionaries(); }