2003-03-26 01:20:25 +00:00
|
|
|
/**
|
2009-08-01 17:24:13 +00:00
|
|
|
* \file AspellChecker.cpp
|
2003-08-23 00:17:00 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
2003-03-26 01:20:25 +00:00
|
|
|
*
|
|
|
|
* \author Kevin Atkinson
|
2003-08-23 00:17:00 +00:00
|
|
|
* \author John Levon
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
2003-03-26 01:20:25 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2009-08-01 17:24:13 +00:00
|
|
|
#include "AspellChecker.h"
|
2010-12-02 18:52:31 +00:00
|
|
|
#include "PersonalWordList.h"
|
|
|
|
|
2007-12-17 16:51:23 +00:00
|
|
|
#include "LyXRC.h"
|
2003-03-26 01:20:25 +00:00
|
|
|
#include "WordLangTuple.h"
|
|
|
|
|
2008-04-30 08:26:40 +00:00
|
|
|
#include "support/lassert.h"
|
2009-08-01 17:48:33 +00:00
|
|
|
#include "support/debug.h"
|
2009-08-02 09:17:32 +00:00
|
|
|
#include "support/docstring_list.h"
|
2009-08-01 17:48:33 +00:00
|
|
|
|
2010-06-06 19:10:10 +00:00
|
|
|
#include "support/filetools.h"
|
2010-05-29 14:36:51 +00:00
|
|
|
#include "support/Package.h"
|
2010-04-08 22:56:12 +00:00
|
|
|
#include "support/FileName.h"
|
|
|
|
#include "support/Path.h"
|
|
|
|
|
2009-08-01 17:48:33 +00:00
|
|
|
#include <aspell.h>
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include <string>
|
2003-09-12 07:41:09 +00:00
|
|
|
|
2007-12-12 10:16:00 +00:00
|
|
|
using namespace std;
|
2010-05-29 14:36:51 +00:00
|
|
|
using namespace lyx::support;
|
2003-10-07 13:32:17 +00:00
|
|
|
|
2006-10-21 07:26:07 +00:00
|
|
|
namespace lyx {
|
2003-09-05 16:31:30 +00:00
|
|
|
|
2009-08-01 17:48:33 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
struct Speller {
|
|
|
|
AspellConfig * config;
|
2010-05-29 14:36:51 +00:00
|
|
|
AspellCanHaveError * e_speller;
|
2010-12-02 18:52:31 +00:00
|
|
|
docstring_list ignored_words_;
|
2009-08-01 17:48:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef std::map<std::string, Speller> Spellers;
|
2010-12-02 18:52:31 +00:00
|
|
|
typedef map<std::string, PersonalWordList *> LangPersonalWordList;
|
2009-08-01 17:48:33 +00:00
|
|
|
|
|
|
|
} // anon namespace
|
|
|
|
|
|
|
|
struct AspellChecker::Private
|
2003-03-26 01:20:25 +00:00
|
|
|
{
|
2010-05-29 14:36:51 +00:00
|
|
|
Private() {}
|
2003-03-26 01:20:25 +00:00
|
|
|
|
2009-08-01 17:48:33 +00:00
|
|
|
~Private();
|
2003-03-26 01:20:25 +00:00
|
|
|
|
2010-01-18 17:02:05 +00:00
|
|
|
/// add a speller of the given language and variety
|
2010-12-02 18:52:31 +00:00
|
|
|
AspellSpeller * addSpeller(Language const * lang);
|
2009-08-02 09:17:32 +00:00
|
|
|
|
|
|
|
///
|
2010-12-02 18:52:31 +00:00
|
|
|
AspellSpeller * speller(Language const * lang);
|
2010-01-18 17:02:05 +00:00
|
|
|
|
2010-06-06 19:10:10 +00:00
|
|
|
bool isValidDictionary(AspellConfig * config,
|
|
|
|
string const & lang, string const & variety);
|
|
|
|
bool checkAspellData(AspellConfig * config,
|
|
|
|
string const & basepath, string const & datapath, string const & dictpath,
|
|
|
|
string const & lang, string const & variety);
|
|
|
|
AspellConfig * getConfig(string const & lang, string const & variety);
|
|
|
|
|
2010-12-02 18:52:31 +00:00
|
|
|
SpellChecker::Result check(AspellSpeller * m,
|
|
|
|
string const & word) const;
|
|
|
|
|
|
|
|
void initSessionDictionary(Speller const & speller, PersonalWordList * pd);
|
|
|
|
void insert(WordLangTuple const & word);
|
|
|
|
void remove(WordLangTuple const & word);
|
|
|
|
bool learned(WordLangTuple const & word);
|
|
|
|
|
|
|
|
void accept(Speller & speller, WordLangTuple const & word);
|
|
|
|
|
2009-08-01 17:48:33 +00:00
|
|
|
/// the spellers
|
|
|
|
Spellers spellers_;
|
|
|
|
|
2010-12-02 18:52:31 +00:00
|
|
|
LangPersonalWordList personal_;
|
|
|
|
|
2010-06-06 19:10:10 +00:00
|
|
|
/// the location below system/user directory
|
|
|
|
/// there the rws files lookup will happen
|
2011-02-17 17:09:06 +00:00
|
|
|
const string dictDirectory(void) { return "dicts"; }
|
2010-06-06 19:10:10 +00:00
|
|
|
/// there the dat+cmap files lookup will happen
|
|
|
|
const string dataDirectory(void) { return "data"; }
|
|
|
|
/// os package directory constants
|
|
|
|
/// macports on Mac OS X or
|
|
|
|
/// aspell rpms on Linux
|
|
|
|
const string osPackageBase(void) {
|
|
|
|
#ifdef USE_MACOSX_PACKAGING
|
|
|
|
return "/opt/local";
|
|
|
|
#else
|
|
|
|
return "/usr";
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
const string osPackageDictDirectory(void) {
|
|
|
|
#ifdef USE_MACOSX_PACKAGING
|
|
|
|
return "/share/aspell";
|
|
|
|
#else
|
|
|
|
return "/lib/aspell-0.60";
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
const string osPackageDataDirectory(void) { return "/lib/aspell-0.60"; }
|
|
|
|
|
2009-08-01 17:48:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
AspellChecker::Private::~Private()
|
2003-03-26 01:20:25 +00:00
|
|
|
{
|
|
|
|
Spellers::iterator it = spellers_.begin();
|
|
|
|
Spellers::iterator end = spellers_.end();
|
|
|
|
|
|
|
|
for (; it != end; ++it) {
|
2010-05-29 14:36:51 +00:00
|
|
|
if (it->second.e_speller) {
|
|
|
|
AspellSpeller * speller = to_aspell_speller(it->second.e_speller);
|
|
|
|
aspell_speller_save_all_word_lists(speller);
|
|
|
|
delete_aspell_can_have_error(it->second.e_speller);
|
|
|
|
}
|
2003-03-26 01:20:25 +00:00
|
|
|
delete_aspell_config(it->second.config);
|
|
|
|
}
|
2010-12-02 18:52:31 +00:00
|
|
|
|
|
|
|
LangPersonalWordList::const_iterator pdit = personal_.begin();
|
|
|
|
LangPersonalWordList::const_iterator pdet = personal_.end();
|
|
|
|
|
|
|
|
for (; pdit != pdet; ++pdit) {
|
|
|
|
if ( 0 == pdit->second)
|
|
|
|
continue;
|
|
|
|
PersonalWordList * pd = pdit->second;
|
|
|
|
pd->save();
|
|
|
|
delete pd;
|
|
|
|
}
|
2003-03-26 01:20:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-06-06 19:10:10 +00:00
|
|
|
bool AspellChecker::Private::isValidDictionary(AspellConfig * config,
|
2010-05-29 14:36:51 +00:00
|
|
|
string const & lang, string const & variety)
|
|
|
|
{
|
|
|
|
bool have = false;
|
|
|
|
// code taken from aspell's list-dicts example
|
|
|
|
// the returned pointer should _not_ need to be deleted
|
|
|
|
AspellDictInfoList * dlist = get_aspell_dict_info_list(config);
|
|
|
|
AspellDictInfoEnumeration * dels = aspell_dict_info_list_elements(dlist);
|
|
|
|
const AspellDictInfo * entry;
|
|
|
|
|
|
|
|
while (0 != (entry = aspell_dict_info_enumeration_next(dels))) {
|
|
|
|
LYXERR(Debug::DEBUG, "aspell dict:"
|
|
|
|
<< " name=" << entry->name
|
|
|
|
<< ",code=" << entry->code
|
|
|
|
<< ",variety=" << entry->jargon);
|
|
|
|
if (entry->code == lang && (variety.empty() || entry->jargon == variety)) {
|
|
|
|
have = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
delete_aspell_dict_info_enumeration(dels);
|
|
|
|
LYXERR(Debug::FILES, "aspell dictionary: " << lang << (have ? " yes" : " no"));
|
|
|
|
return have;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-06-06 19:10:10 +00:00
|
|
|
bool AspellChecker::Private::checkAspellData(AspellConfig * config,
|
|
|
|
string const & basepath, string const & datapath, string const & dictpath,
|
2010-05-29 14:36:51 +00:00
|
|
|
string const & lang, string const & variety)
|
|
|
|
{
|
|
|
|
FileName base(basepath);
|
2010-06-06 19:10:10 +00:00
|
|
|
bool have_dict = base.isDirectory() ;
|
|
|
|
|
2010-05-29 14:36:51 +00:00
|
|
|
if (have_dict) {
|
2010-06-06 19:10:10 +00:00
|
|
|
FileName data(addPath(base.absFileName(), datapath));
|
|
|
|
FileName dict(addPath(base.absFileName(), dictpath));
|
|
|
|
have_dict = dict.isDirectory() && data.isDirectory();
|
|
|
|
if (have_dict) {
|
|
|
|
LYXERR(Debug::FILES, "aspell dict-dir: " << dict);
|
|
|
|
LYXERR(Debug::FILES, "aspell data-dir: " << data);
|
|
|
|
aspell_config_replace(config, "dict-dir", dict.absFileName().c_str());
|
|
|
|
aspell_config_replace(config, "data-dir", data.absFileName().c_str());
|
|
|
|
have_dict = isValidDictionary(config, lang, variety);
|
|
|
|
}
|
2010-05-29 14:36:51 +00:00
|
|
|
}
|
|
|
|
return have_dict ;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-06-06 19:10:10 +00:00
|
|
|
AspellConfig * AspellChecker::Private::getConfig(string const & lang, string const & variety)
|
2010-04-08 22:56:12 +00:00
|
|
|
{
|
|
|
|
AspellConfig * config = new_aspell_config();
|
2010-04-14 13:22:00 +00:00
|
|
|
bool have_dict = false;
|
2010-06-06 19:10:10 +00:00
|
|
|
string const sysdir = lyx::support::package().system_support().absFileName() ;
|
|
|
|
string const userdir = lyx::support::package().user_support().absFileName() ;
|
2010-05-29 14:36:51 +00:00
|
|
|
|
|
|
|
LYXERR(Debug::FILES, "aspell user dir: " << userdir);
|
2010-06-06 19:10:10 +00:00
|
|
|
have_dict = checkAspellData(config, userdir, dataDirectory(), dictDirectory(), lang, variety);
|
|
|
|
if (!have_dict) {
|
|
|
|
LYXERR(Debug::FILES, "aspell sysdir dir: " << sysdir);
|
|
|
|
have_dict = checkAspellData(config, sysdir, dataDirectory(), dictDirectory(), lang, variety);
|
2010-04-14 13:22:00 +00:00
|
|
|
}
|
2010-05-29 14:36:51 +00:00
|
|
|
if (!have_dict) {
|
2010-06-06 19:10:10 +00:00
|
|
|
// check for package data of OS installation
|
|
|
|
have_dict = checkAspellData(config, osPackageBase(), osPackageDataDirectory(), osPackageDictDirectory(), lang, variety);
|
2010-04-08 22:56:12 +00:00
|
|
|
}
|
|
|
|
return config ;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-12-02 18:52:31 +00:00
|
|
|
void AspellChecker::Private::initSessionDictionary(
|
|
|
|
Speller const & speller,
|
|
|
|
PersonalWordList * pd)
|
2003-03-26 01:20:25 +00:00
|
|
|
{
|
2010-12-02 18:52:31 +00:00
|
|
|
AspellSpeller * aspell = to_aspell_speller(speller.e_speller);
|
|
|
|
aspell_speller_clear_session(aspell);
|
|
|
|
docstring_list::const_iterator it = pd->begin();
|
|
|
|
docstring_list::const_iterator et = pd->end();
|
|
|
|
for (; it != et; ++it) {
|
|
|
|
string const word_to_add = to_utf8(*it);
|
|
|
|
aspell_speller_add_to_session(aspell, word_to_add.c_str(), -1);
|
|
|
|
}
|
|
|
|
it = speller.ignored_words_.begin();
|
|
|
|
et = speller.ignored_words_.end();
|
|
|
|
for (; it != et; ++it) {
|
|
|
|
string const word_to_add = to_utf8(*it);
|
|
|
|
aspell_speller_add_to_session(aspell, word_to_add.c_str(), -1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-29 14:36:51 +00:00
|
|
|
|
2010-12-02 18:52:31 +00:00
|
|
|
AspellSpeller * AspellChecker::Private::addSpeller(Language const * lang)
|
|
|
|
{
|
|
|
|
Speller m;
|
|
|
|
string const code = lang->code();
|
|
|
|
string const variety = lang->variety();
|
|
|
|
m.config = getConfig(code, variety);
|
2010-01-18 17:02:05 +00:00
|
|
|
// Aspell supports both languages and varieties (such as German
|
|
|
|
// old vs. new spelling). The respective naming convention is
|
|
|
|
// lang_REGION-variety (e.g. de_DE-alt).
|
2010-12-02 18:52:31 +00:00
|
|
|
aspell_config_replace(m.config, "lang", code.c_str());
|
2010-01-18 17:02:05 +00:00
|
|
|
if (!variety.empty())
|
2010-05-29 14:36:51 +00:00
|
|
|
aspell_config_replace(m.config, "variety", variety.c_str());
|
2006-12-12 08:17:22 +00:00
|
|
|
// Set the encoding to utf-8.
|
|
|
|
// aspell does also understand "ucs-4", so we would not need a
|
|
|
|
// conversion in theory, but if this is used it expects all
|
|
|
|
// char const * arguments to be a cast from uint const *, and it
|
|
|
|
// seems that this uint is not compatible with our char_type on some
|
|
|
|
// platforms (cygwin, OS X). Therefore we use utf-8, that does
|
|
|
|
// always work.
|
2010-05-29 14:36:51 +00:00
|
|
|
aspell_config_replace(m.config, "encoding", "utf-8");
|
2008-11-15 20:06:06 +00:00
|
|
|
if (lyxrc.spellchecker_accept_compound)
|
2007-12-17 16:51:23 +00:00
|
|
|
// Consider run-together words as legal compounds
|
2010-05-29 14:36:51 +00:00
|
|
|
aspell_config_replace(m.config, "run-together", "true");
|
2007-12-17 16:51:23 +00:00
|
|
|
else
|
|
|
|
// Report run-together words as errors
|
2010-05-29 14:36:51 +00:00
|
|
|
aspell_config_replace(m.config, "run-together", "false");
|
|
|
|
|
|
|
|
m.e_speller = new_aspell_speller(m.config);
|
|
|
|
if (aspell_error_number(m.e_speller) != 0) {
|
|
|
|
// FIXME: We should indicate somehow that this language is not supported.
|
|
|
|
LYXERR(Debug::FILES, "aspell error: " << aspell_error_message(m.e_speller));
|
2010-06-14 19:33:43 +00:00
|
|
|
delete_aspell_can_have_error(m.e_speller);
|
|
|
|
delete_aspell_config(m.config);
|
|
|
|
m.config = 0;
|
|
|
|
m.e_speller = 0;
|
2010-12-02 18:52:31 +00:00
|
|
|
} else {
|
|
|
|
PersonalWordList * pd = new PersonalWordList(lang->lang());
|
|
|
|
pd->load();
|
|
|
|
personal_[lang->lang()] = pd;
|
|
|
|
initSessionDictionary(m, pd);
|
2003-03-26 01:20:25 +00:00
|
|
|
}
|
2010-12-02 18:52:31 +00:00
|
|
|
|
2011-02-18 11:54:14 +00:00
|
|
|
spellers_[lang->lang()] = m;
|
2010-06-15 08:35:41 +00:00
|
|
|
return m.e_speller ? to_aspell_speller(m.e_speller) : 0;
|
2009-08-02 09:17:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-12-02 18:52:31 +00:00
|
|
|
AspellSpeller * AspellChecker::Private::speller(Language const * lang)
|
2009-08-02 09:17:32 +00:00
|
|
|
{
|
2011-02-18 11:54:14 +00:00
|
|
|
Spellers::iterator it = spellers_.find(lang->lang());
|
2009-08-02 09:17:32 +00:00
|
|
|
if (it != spellers_.end())
|
2010-05-29 14:36:51 +00:00
|
|
|
return to_aspell_speller(it->second.e_speller);
|
2009-08-02 09:17:32 +00:00
|
|
|
|
2010-12-02 18:52:31 +00:00
|
|
|
return addSpeller(lang);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SpellChecker::Result AspellChecker::Private::check(
|
|
|
|
AspellSpeller * m, string const & word)
|
|
|
|
const
|
|
|
|
{
|
|
|
|
int const word_ok = aspell_speller_check(m, word.c_str(), -1);
|
|
|
|
LASSERT(word_ok != -1, /**/);
|
|
|
|
return (word_ok) ? WORD_OK : UNKNOWN_WORD;
|
2010-01-18 17:02:05 +00:00
|
|
|
}
|
|
|
|
|
2010-12-02 18:52:31 +00:00
|
|
|
void AspellChecker::Private::accept(Speller & speller, WordLangTuple const & word)
|
|
|
|
{
|
|
|
|
speller.ignored_words_.push_back(word.word());
|
|
|
|
}
|
2010-01-18 17:02:05 +00:00
|
|
|
|
2010-12-02 18:52:31 +00:00
|
|
|
|
|
|
|
/// personal word list interface
|
|
|
|
void AspellChecker::Private::remove(WordLangTuple const & word)
|
2010-01-18 17:02:05 +00:00
|
|
|
{
|
2010-12-02 18:52:31 +00:00
|
|
|
PersonalWordList * pd = personal_[word.lang()->lang()];
|
|
|
|
if (!pd)
|
|
|
|
return;
|
|
|
|
pd->remove(word.word());
|
2011-02-18 11:54:14 +00:00
|
|
|
Spellers::iterator it = spellers_.find(word.lang()->lang());
|
2010-12-02 18:52:31 +00:00
|
|
|
if (it != spellers_.end()) {
|
|
|
|
initSessionDictionary(it->second, pd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void AspellChecker::Private::insert(WordLangTuple const & word)
|
|
|
|
{
|
2011-02-18 11:54:14 +00:00
|
|
|
Spellers::iterator it = spellers_.find(word.lang()->lang());
|
2010-12-02 18:52:31 +00:00
|
|
|
if (it != spellers_.end()) {
|
|
|
|
AspellSpeller * speller = to_aspell_speller(it->second.e_speller);
|
|
|
|
aspell_speller_add_to_session(speller, to_utf8(word.word()).c_str(), -1);
|
|
|
|
PersonalWordList * pd = personal_[word.lang()->lang()];
|
|
|
|
if (!pd)
|
|
|
|
return;
|
|
|
|
pd->insert(word.word());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AspellChecker::Private::learned(WordLangTuple const & word)
|
|
|
|
{
|
|
|
|
PersonalWordList * pd = personal_[word.lang()->lang()];
|
|
|
|
if (!pd)
|
|
|
|
return false;
|
|
|
|
return pd->exists(word.word());
|
2003-03-26 01:20:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-08-01 17:48:33 +00:00
|
|
|
AspellChecker::AspellChecker(): d(new Private)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
AspellChecker::~AspellChecker()
|
|
|
|
{
|
|
|
|
delete d;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SpellChecker::Result AspellChecker::check(WordLangTuple const & word)
|
2003-03-26 01:20:25 +00:00
|
|
|
{
|
2010-01-18 17:02:05 +00:00
|
|
|
|
2010-12-02 18:52:31 +00:00
|
|
|
AspellSpeller * m = d->speller(word.lang());
|
2010-01-18 17:02:05 +00:00
|
|
|
|
2009-08-02 09:17:32 +00:00
|
|
|
if (!m)
|
2010-08-05 20:10:40 +00:00
|
|
|
return WORD_OK;
|
2003-03-26 01:20:25 +00:00
|
|
|
|
2009-06-22 20:59:56 +00:00
|
|
|
if (word.word().empty())
|
|
|
|
// MSVC compiled Aspell doesn't like it.
|
2010-08-05 20:10:40 +00:00
|
|
|
return WORD_OK;
|
2009-06-22 20:59:56 +00:00
|
|
|
|
2010-07-02 12:41:14 +00:00
|
|
|
string const word_str = to_utf8(word.word());
|
2010-12-02 18:52:31 +00:00
|
|
|
SpellChecker::Result rc = d->check(m, word_str);
|
|
|
|
return (rc == WORD_OK && d->learned(word)) ? LEARNED_WORD : rc;
|
2003-03-26 01:20:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-09-14 05:24:04 +00:00
|
|
|
void AspellChecker::advanceChangeNumber()
|
|
|
|
{
|
|
|
|
nextChangeNumber();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-08-01 17:24:13 +00:00
|
|
|
void AspellChecker::insert(WordLangTuple const & word)
|
2003-03-26 01:20:25 +00:00
|
|
|
{
|
2010-12-02 18:52:31 +00:00
|
|
|
d->insert(word);
|
|
|
|
advanceChangeNumber();
|
2003-03-26 01:20:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-08-01 17:24:13 +00:00
|
|
|
void AspellChecker::accept(WordLangTuple const & word)
|
2003-03-26 01:20:25 +00:00
|
|
|
{
|
2011-02-18 11:54:14 +00:00
|
|
|
Spellers::iterator it = d->spellers_.find(word.lang()->lang());
|
2010-05-29 14:36:51 +00:00
|
|
|
if (it != d->spellers_.end()) {
|
|
|
|
AspellSpeller * speller = to_aspell_speller(it->second.e_speller);
|
|
|
|
aspell_speller_add_to_session(speller, to_utf8(word.word()).c_str(), -1);
|
2010-12-02 18:52:31 +00:00
|
|
|
d->accept(it->second, word);
|
2010-09-14 05:24:04 +00:00
|
|
|
advanceChangeNumber();
|
2010-05-29 14:36:51 +00:00
|
|
|
}
|
2003-03-26 01:20:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-08-02 09:17:32 +00:00
|
|
|
void AspellChecker::suggest(WordLangTuple const & wl,
|
|
|
|
docstring_list & suggestions)
|
2003-03-26 01:20:25 +00:00
|
|
|
{
|
2009-08-02 09:17:32 +00:00
|
|
|
suggestions.clear();
|
2010-12-02 18:52:31 +00:00
|
|
|
AspellSpeller * m = d->speller(wl.lang());
|
2010-01-18 17:02:05 +00:00
|
|
|
|
2009-08-02 09:17:32 +00:00
|
|
|
if (!m)
|
|
|
|
return;
|
2003-03-26 01:20:25 +00:00
|
|
|
|
2009-08-02 09:17:32 +00:00
|
|
|
AspellWordList const * sugs =
|
|
|
|
aspell_speller_suggest(m, to_utf8(wl.word()).c_str(), -1);
|
|
|
|
LASSERT(sugs != 0, /**/);
|
|
|
|
AspellStringEnumeration * els = aspell_word_list_elements(sugs);
|
|
|
|
if (!els || aspell_word_list_empty(sugs))
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
char const * str = aspell_string_enumeration_next(els);
|
|
|
|
if (!str)
|
|
|
|
break;
|
|
|
|
suggestions.push_back(from_utf8(str));
|
|
|
|
}
|
2005-01-05 20:21:27 +00:00
|
|
|
|
2009-08-02 09:17:32 +00:00
|
|
|
delete_aspell_string_enumeration(els);
|
2003-03-26 01:20:25 +00:00
|
|
|
}
|
|
|
|
|
2010-12-02 18:52:31 +00:00
|
|
|
void AspellChecker::remove(WordLangTuple const & word)
|
|
|
|
{
|
|
|
|
d->remove(word);
|
|
|
|
advanceChangeNumber();
|
|
|
|
}
|
2003-03-26 01:20:25 +00:00
|
|
|
|
2010-02-10 08:10:31 +00:00
|
|
|
bool AspellChecker::hasDictionary(Language const * lang) const
|
|
|
|
{
|
|
|
|
bool have = false;
|
2010-05-29 14:36:51 +00:00
|
|
|
Spellers::iterator it = d->spellers_.begin();
|
|
|
|
Spellers::iterator end = d->spellers_.end();
|
|
|
|
|
|
|
|
if (lang) {
|
|
|
|
for (; it != end && !have; ++it) {
|
2010-06-15 08:35:41 +00:00
|
|
|
have = it->second.config && d->isValidDictionary(it->second.config, lang->code(), lang->variety());
|
2010-05-29 14:36:51 +00:00
|
|
|
}
|
|
|
|
if (!have) {
|
2010-06-06 19:10:10 +00:00
|
|
|
AspellConfig * config = d->getConfig(lang->code(), lang->variety());
|
|
|
|
have = d->isValidDictionary(config, lang->code(), lang->variety());
|
2010-05-29 14:36:51 +00:00
|
|
|
delete_aspell_config(config);
|
2010-02-10 08:10:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return have;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-08-01 17:24:13 +00:00
|
|
|
docstring const AspellChecker::error()
|
2003-03-26 01:20:25 +00:00
|
|
|
{
|
2010-05-29 14:36:51 +00:00
|
|
|
Spellers::iterator it = d->spellers_.begin();
|
|
|
|
Spellers::iterator end = d->spellers_.end();
|
2003-03-26 01:20:25 +00:00
|
|
|
char const * err = 0;
|
2007-05-28 22:27:45 +00:00
|
|
|
|
2010-05-29 14:36:51 +00:00
|
|
|
for (; it != end && 0 == err; ++it) {
|
|
|
|
if (it->second.e_speller && aspell_error_number(it->second.e_speller) != 0)
|
|
|
|
err = aspell_error_message(it->second.e_speller);
|
|
|
|
}
|
2003-03-26 01:20:25 +00:00
|
|
|
|
2006-12-08 19:46:16 +00:00
|
|
|
// FIXME UNICODE: err is not in UTF8, but probably the locale encoding
|
2006-10-21 00:16:43 +00:00
|
|
|
return (err ? from_utf8(err) : docstring());
|
2003-03-26 01:20:25 +00:00
|
|
|
}
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|