]> git.lyx.org Git - lyx.git/blobdiff - src/HunspellChecker.cpp
Account for old versions of Pygments
[lyx.git] / src / HunspellChecker.cpp
index ea4b88c5c0cacdcc467b76e9f378ae32ce00c1e2..ec5466f300d794644bdc2b6d7d45b9e62f01044d 100644 (file)
@@ -65,6 +65,7 @@ struct HunspellChecker::Private
        Hunspell * addSpeller(Language const * lang, string & hpath);
        Hunspell * addSpeller(Language const * lang);
        Hunspell * speller(Language const * lang);
+       Hunspell * lookup(Language const * lang);
        /// ignored words
        bool isIgnored(WordLangTuple const & wl) const;
        /// personal word list interface
@@ -83,15 +84,18 @@ struct HunspellChecker::Private
        /// the location below system/user directory
        /// there the aff+dic files lookup will happen
        const string dictDirectory(void) const { return "dicts"; }
-       int maxLookupSelector(void) const { return 4; }
+       int maxLookupSelector(void) const { return 5; }
        const string HunspellDictionaryName(Language const * lang) {
                return lang->variety().empty() 
                        ? lang->code()
                        : lang->code() + "-" + lang->variety();
        }
-       const string osPackageDictDirectory(void) {
+       const string myspellPackageDictDirectory(void) {
                return "/usr/share/myspell";
        }
+       const string hunspellPackageDictDirectory(void) {
+               return "/usr/share/hunspell";
+       }
 };
 
 
@@ -150,15 +154,14 @@ bool HunspellChecker::Private::haveLanguageFiles(string const & hpath)
 const string HunspellChecker::Private::dictPath(int selector)
 {
        switch (selector) {
+       case 4:
+               return hunspellPackageDictDirectory();
        case 3:
-               return addName(osPackageDictDirectory(),dictDirectory());
-               break;
+               return myspellPackageDictDirectory();
        case 2:
                return addName(package().system_support().absFileName(),dictDirectory());
-               break;
        case 1:
                return addName(package().user_support().absFileName(),dictDirectory());
-               break;
        default:
                return user_path_;
        }
@@ -167,13 +170,17 @@ const string HunspellChecker::Private::dictPath(int selector)
 
 bool HunspellChecker::Private::haveDictionary(Language const * lang, string & hpath)
 {
-       if (hpath.empty())
+       if (hpath.empty() || !lang)
                return false;
 
+       if (lookup(lang)) return true;
+
+       string d_name = HunspellDictionaryName(lang);
+
        LYXERR(Debug::FILES, "check hunspell path: " << hpath
-                               << " for language " << (lang ? lang->lang() : "NULL" ));
+               << " for language " << lang->lang() << " with name " << d_name);
 
-       string h_path = addName(hpath, HunspellDictionaryName(lang));
+       string h_path = addName(hpath, d_name);
        // first we try lang code+variety
        if (haveLanguageFiles(h_path)) {
                LYXERR(Debug::FILES, "  found " << h_path);
@@ -199,24 +206,27 @@ bool HunspellChecker::Private::haveDictionary(Language const * lang)
                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)
 {
+       Hunspell * h = lookup(lang);
+       if (h) return h;
+
        setUserPath(lyxrc.hunspelldir_path);
-       Spellers::iterator it = spellers_.find(lang->lang());
-       if (it != spellers_.end())
-               return it->second;
        return addSpeller(lang);
 }
 
 
+Hunspell * HunspellChecker::Private::lookup(Language const * lang)
+{
+       Spellers::iterator it = spellers_.find(lang->lang());
+       return it != spellers_.end() ? it->second : 0;
+}
+
+
 Hunspell * HunspellChecker::Private::addSpeller(Language const * lang,string & path)
 {
        if (!haveDictionary(lang, path)) {
@@ -227,7 +237,7 @@ Hunspell * HunspellChecker::Private::addSpeller(Language const * lang,string & p
        FileName const affix(path + ".aff");
        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");
+       LYXERR(Debug::FILES, "Hunspell speller for langage " << lang << " at " << dict << " added.");
        spellers_[lang->lang()] = h;
        return h;
 }