lyx_mirror/src/Thesaurus.cpp
Jürgen Spitzmüller 5a7524ac9b * src/Thesaurus.cpp:
- check for aiksaurus errors (fix bug 2691)

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18699 a592a061-630c-0410-9148-cb99ea01b6c8
2007-06-07 17:27:10 +00:00

125 lines
2.1 KiB
C++

/**
* \file Thesaurus.cpp
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author John Levon
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "Thesaurus.h"
#include "gettext.h"
#include "support/lstrings.h"
#include "frontends/alert.h"
#include <algorithm>
namespace lyx {
#ifdef HAVE_LIBAIKSAURUS
using support::bformat;
using std::sort;
using std::string;
Thesaurus::Thesaurus()
: aik_(new Aiksaurus)
{}
Thesaurus::~Thesaurus()
{
delete aik_;
}
Thesaurus::Meanings Thesaurus::lookup(docstring const & t)
{
Meanings meanings;
// aiksaurus is for english text only, therefore it does not work
// with non-ascii strings.
// The interface of the Thesaurus class uses docstring because a
// non-english thesaurus is possible in theory.
if (!support::isAscii(t))
// to_ascii() would assert
return meanings;
string const text = to_ascii(t);
docstring error = from_ascii(aik_->error());
if (!error.empty()) {
static bool sent_error = false;
if (!sent_error) {
frontend::Alert::error(_("Thesaurus failure"),
bformat(_("Aiksaurus returned the following error:\n\n%1$s."),
error));
sent_error = true;
}
return meanings;
}
if (!aik_->find(text.c_str()))
return meanings;
// weird api, but ...
int prev_meaning = -1;
int cur_meaning;
docstring meaning;
// correct, returns "" at the end
string ret = aik_->next(cur_meaning);
while (!ret.empty()) {
if (cur_meaning != prev_meaning) {
meaning = from_ascii(ret);
ret = aik_->next(cur_meaning);
prev_meaning = cur_meaning;
} else {
if (ret != text)
meanings[meaning].push_back(from_ascii(ret));
}
ret = aik_->next(cur_meaning);
}
for (Meanings::iterator it = meanings.begin();
it != meanings.end(); ++it)
sort(it->second.begin(), it->second.end());
return meanings;
}
#else
Thesaurus::Thesaurus()
{
}
Thesaurus::~Thesaurus()
{
}
Thesaurus::Meanings Thesaurus::lookup(docstring const &)
{
return Meanings();
}
#endif // HAVE_LIBAIKSAURUS
// Global instance
Thesaurus thesaurus;
} // namespace lyx