lyx_mirror/src/Thesaurus.C
Lars Gullik Bjønnes c38370d1c3 the exception safety patch
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8020 a592a061-630c-0410-9148-cb99ea01b6c8
2003-11-03 17:47:28 +00:00

95 lines
1.4 KiB
C

/**
* \file Thesaurus.C
* 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 <algorithm>
#include <string>
using std::string;
#ifdef HAVE_LIBAIKSAURUS
using std::sort;
Thesaurus::Thesaurus()
: aik_(new Aiksaurus)
{}
Thesaurus::~Thesaurus()
{
delete aik_;
}
Thesaurus::Meanings Thesaurus::lookup(string const & text)
{
Meanings meanings;
if (!aik_->find(text.c_str()))
return meanings;
// weird api, but ...
int prev_meaning = -1;
int cur_meaning;
string meaning;
// correct, returns "" at the end
string ret = aik_->next(cur_meaning);
while (!ret.empty()) {
if (cur_meaning != prev_meaning) {
meaning = ret;
ret = aik_->next(cur_meaning);
prev_meaning = cur_meaning;
} else {
if (ret != text) {
meanings[meaning].push_back(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(string const &)
{
return Meanings();
}
#endif // HAVE_LIBAIKSAURUS
// Global instance
Thesaurus thesaurus;