2009-07-12 22:46:01 +00:00
|
|
|
/**
|
2009-08-01 17:24:13 +00:00
|
|
|
* \file HunspellChecker.cpp
|
2009-07-12 22:46:01 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Abdelrazak Younes
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2009-08-01 17:24:13 +00:00
|
|
|
#include "HunspellChecker.h"
|
2009-07-12 22:46:01 +00:00
|
|
|
|
|
|
|
#include "LyXRC.h"
|
|
|
|
#include "WordLangTuple.h"
|
|
|
|
|
|
|
|
#include "support/debug.h"
|
2009-08-02 09:17:32 +00:00
|
|
|
#include "support/docstring_list.h"
|
2009-08-08 17:05:31 +00:00
|
|
|
#include "support/FileName.h"
|
|
|
|
#include "support/gettext.h"
|
|
|
|
#include "support/lassert.h"
|
|
|
|
#include "support/os.h"
|
2009-07-12 22:46:01 +00:00
|
|
|
|
|
|
|
#include <hunspell/hunspell.hxx>
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
using namespace std;
|
2009-08-08 17:05:31 +00:00
|
|
|
using namespace lyx::support;
|
|
|
|
using namespace lyx::support::os;
|
2009-07-12 22:46:01 +00:00
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
|
|
namespace {
|
2009-08-01 18:03:26 +00:00
|
|
|
|
2009-07-12 22:46:01 +00:00
|
|
|
typedef map<std::string, Hunspell *> Spellers;
|
|
|
|
|
2009-08-01 18:03:26 +00:00
|
|
|
} // anon namespace
|
|
|
|
|
|
|
|
struct HunspellChecker::Private
|
2009-07-12 22:46:01 +00:00
|
|
|
{
|
2009-08-02 09:17:32 +00:00
|
|
|
Private() {}
|
|
|
|
|
|
|
|
~Private();
|
|
|
|
|
|
|
|
Hunspell * addSpeller(string const & lang);
|
|
|
|
Hunspell * speller(string const & lang);
|
|
|
|
|
2009-07-12 22:46:01 +00:00
|
|
|
/// the spellers
|
|
|
|
Spellers spellers_;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-08-02 09:17:32 +00:00
|
|
|
HunspellChecker::Private::~Private()
|
|
|
|
{
|
|
|
|
Spellers::iterator it = spellers_.begin();
|
|
|
|
Spellers::iterator end = spellers_.end();
|
|
|
|
|
|
|
|
for (; it != end; ++it) {
|
|
|
|
delete it->second;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Hunspell * HunspellChecker::Private::addSpeller(string const & lang)
|
|
|
|
{
|
2009-08-08 17:05:31 +00:00
|
|
|
string hunspell_path = external_path(lyxrc.hunspelldir_path);
|
|
|
|
LYXERR(Debug::FILES, "hunspell path: " << hunspell_path);
|
|
|
|
if (hunspell_path.empty())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
hunspell_path += "/" + lang;
|
|
|
|
// replace '_' with '-' as this is the convention used by hunspell.
|
|
|
|
hunspell_path[hunspell_path.size() - 3] = '-';
|
|
|
|
FileName const affix(hunspell_path + ".aff");
|
|
|
|
FileName const dict(hunspell_path + ".dic");
|
|
|
|
if (!affix.isReadableFile()) {
|
|
|
|
// FIXME: We should indicate somehow that this language is not
|
|
|
|
// supported.
|
|
|
|
LYXERR(Debug::FILES, "Hunspell affix file " << affix << " does not exist");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (!dict.isReadableFile()) {
|
|
|
|
LYXERR(Debug::FILES, "Hunspell dictionary file " << dict << " does not exist");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
Hunspell * h = new Hunspell(affix.absFilename().c_str(), dict.absFilename().c_str());
|
|
|
|
spellers_[lang] = h;
|
|
|
|
return h;
|
2009-08-02 09:17:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Hunspell * HunspellChecker::Private::speller(string const & lang)
|
|
|
|
{
|
|
|
|
Spellers::iterator it = spellers_.find(lang);
|
|
|
|
if (it != spellers_.end())
|
|
|
|
return it->second;
|
|
|
|
|
|
|
|
return addSpeller(lang);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-08-01 17:24:13 +00:00
|
|
|
HunspellChecker::HunspellChecker(): d(new Private)
|
2009-07-12 22:46:01 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-08-01 17:24:13 +00:00
|
|
|
HunspellChecker::~HunspellChecker()
|
2009-07-12 22:46:01 +00:00
|
|
|
{
|
|
|
|
delete d;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-08-02 09:17:32 +00:00
|
|
|
SpellChecker::Result HunspellChecker::check(WordLangTuple const & wl)
|
2009-07-12 22:46:01 +00:00
|
|
|
{
|
2009-08-02 09:17:32 +00:00
|
|
|
string const word_to_check = to_utf8(wl.word());
|
|
|
|
Hunspell * h = d->speller(wl.lang_code());
|
2009-08-08 17:05:31 +00:00
|
|
|
if (!h)
|
|
|
|
return OK;
|
2009-08-02 09:17:32 +00:00
|
|
|
int info;
|
|
|
|
if (h->spell(word_to_check.c_str(), &info))
|
|
|
|
return OK;
|
2009-08-08 17:05:31 +00:00
|
|
|
|
|
|
|
if (info & SPELL_COMPOUND) {
|
|
|
|
// FIXME: What to do with that?
|
|
|
|
LYXERR(Debug::FILES, "Hunspell compound word found " << word_to_check);
|
|
|
|
}
|
|
|
|
if (info & SPELL_FORBIDDEN) {
|
|
|
|
// FIXME: What to do with that?
|
|
|
|
LYXERR(Debug::FILES, "Hunspell explicit forbidden word found " << word_to_check);
|
2009-08-02 09:17:32 +00:00
|
|
|
}
|
2009-08-08 17:05:31 +00:00
|
|
|
|
2009-08-02 09:17:32 +00:00
|
|
|
return UNKNOWN_WORD;
|
2009-07-12 22:46:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-08-02 09:17:32 +00:00
|
|
|
void HunspellChecker::insert(WordLangTuple const & wl)
|
2009-07-12 22:46:01 +00:00
|
|
|
{
|
2009-08-02 09:17:32 +00:00
|
|
|
string const word_to_check = to_utf8(wl.word());
|
|
|
|
Hunspell * h = d->speller(wl.lang_code());
|
2009-08-08 17:05:31 +00:00
|
|
|
if (!h)
|
|
|
|
return;
|
2009-08-02 09:17:32 +00:00
|
|
|
h->add(word_to_check.c_str());
|
2009-07-12 22:46:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-08-01 17:24:13 +00:00
|
|
|
void HunspellChecker::accept(WordLangTuple const & word)
|
2009-07-12 22:46:01 +00:00
|
|
|
{
|
2009-08-02 09:17:32 +00:00
|
|
|
// FIXME: not implemented!
|
2009-07-12 22:46:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-08-02 09:17:32 +00:00
|
|
|
void HunspellChecker::suggest(WordLangTuple const & wl,
|
|
|
|
docstring_list & suggestions)
|
2009-07-12 22:46:01 +00:00
|
|
|
{
|
2009-08-02 09:17:32 +00:00
|
|
|
suggestions.clear();
|
|
|
|
string const word_to_check = to_utf8(wl.word());
|
|
|
|
Hunspell * h = d->speller(wl.lang_code());
|
2009-08-08 17:05:31 +00:00
|
|
|
if (!h)
|
|
|
|
return;
|
2009-08-02 09:17:32 +00:00
|
|
|
char *** suggestion_list = 0;
|
2009-08-08 17:05:31 +00:00
|
|
|
|
|
|
|
// FIXME: Hunspell::suggest() crashes on Win/MSVC9
|
|
|
|
return;
|
|
|
|
|
2009-08-02 09:17:32 +00:00
|
|
|
int const suggestion_number = h->suggest(suggestion_list, word_to_check.c_str());
|
|
|
|
if (suggestion_number == 0)
|
|
|
|
return;
|
|
|
|
h->free_list(suggestion_list, suggestion_number);
|
2009-07-12 22:46:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-08-01 17:24:13 +00:00
|
|
|
docstring const HunspellChecker::error()
|
2009-07-12 22:46:01 +00:00
|
|
|
{
|
|
|
|
return docstring();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|