1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494
|
// This file is part of The New Aspell
// Copyright (C) 2000-2001 by Kevin Atkinson under the GNU LGPL
// license version 2.0 or 2.1. You should have received a copy of the
// LGPL license along with this library if you did not you can find it
// at http://www.gnu.org/.
#include <assert.h>
#include <string.h>
// POSIX includes
#include <sys/types.h>
#include <dirent.h>
#include "asc_ctype.hpp"
#include "can_have_error.hpp"
#include "config.hpp"
#include "convert.hpp"
#include "enumeration.hpp"
#include "errors.hpp"
#include "filter.hpp"
#include "fstream.hpp"
#include "getdata.hpp"
#include "info.hpp"
#include "speller.hpp"
#include "stack_ptr.hpp"
#include "string_enumeration.hpp"
#include "string_list.hpp"
#include "string_map.hpp"
#include "gettext.h"
#if 0
#include "preload.h"
#define LT_NON_POSIX_NAMESPACE 1
#ifdef USE_LTDL
#include <ltdl.h>
#endif
#endif
using namespace acommon;
namespace acommon {
static void free_lt_handle(SpellerLtHandle h)
{
#ifdef USE_LTDL
int s;
s = lt_dlclose((lt_dlhandle)h);
assert (s == 0);
s = lt_dlexit();
assert (s == 0);
#endif
}
extern "C"
Speller * libaspell_speller_default_LTX_new_speller_class(SpellerLtHandle);
PosibErr<Speller *> get_speller_class(Config * config)
{
String name = config->retrieve("module");
assert(name == "default");
return libaspell_speller_default_LTX_new_speller_class(0);
#if 0
unsigned int i;
for (i = 0; i != aspell_speller_funs_size; ++i) {
if (strcmp(name.c_str(), aspell_speller_funs[i].name) == 0) {
return (*aspell_speller_funs[i].fun)(config, 0);
}
}
#ifdef USE_LTDL
int s = lt_dlinit();
assert(s == 0);
String libname;
libname = LIBDIR "/libaspell_";
libname += name;
libname += ".la";
lt_dlhandle h = lt_dlopen (libname.c_str());
if (h == 0)
return (new CanHaveErrorImpl())
->set_error(cant_load_module, name.c_str());
lt_ptr_t fun = lt_dlsym (h, "new_aspell_speller_class");
assert (fun != 0);
CanHaveError * m = (*(NewSpellerClass)(fun))(config, h);
assert (m != 0);
if (m->error_number() != 0)
free_lt_handle(h);
return m;
#else
return (new CanHaveErrorImpl())
->set_error(cant_load_module, name.c_str());
#endif
#endif
}
// Note this writes all over str
static void split_string_list(StringList & list, ParmString str)
{
const char * s0 = str;
const char * s1;
while (true) {
while (*s0 != '\0' && asc_isspace(*s0)) ++s0;
if (*s0 == '\0') break;
s1 = s0;
while (!asc_isspace(*s1)) ++s1;
String temp(s0,s1-s0);
list.add(temp);
if (*s1 != '\0')
s0 = s1 + 1;
}
}
enum IsBetter {BetterMatch, WorseMatch, SameMatch};
struct Better
{
unsigned int cur_rank;
unsigned int best_rank;
unsigned int worst_rank;
virtual void init() = 0;
virtual void set_best_from_cur() = 0;
virtual void set_cur_rank() = 0;
IsBetter better_match(IsBetter prev);
virtual ~Better();
};
Better::~Better() {}
IsBetter Better::better_match (IsBetter prev)
{
if (prev == WorseMatch)
return prev;
set_cur_rank();
if (cur_rank >= worst_rank)
return WorseMatch;
else if (cur_rank < best_rank)
return BetterMatch;
else if (cur_rank == best_rank)
return prev;
else // cur_rank > best_rank
if (prev == SameMatch)
return WorseMatch;
else
return BetterMatch;
}
struct BetterList : public Better
{
const char * cur;
StringList list;
const char * best;
BetterList();
void init();
void set_best_from_cur();
void set_cur_rank();
};
BetterList::BetterList()
{
}
void BetterList::init() {
StringListEnumeration es = list.elements_obj();
worst_rank = 0;
while ( (es.next()) != 0)
++worst_rank;
best_rank = worst_rank;
}
void BetterList::set_best_from_cur()
{
best_rank = cur_rank;
best = cur;
}
void BetterList::set_cur_rank()
{
StringListEnumeration es = list.elements_obj();
const char * m;
cur_rank = 0;
while ( (m = es.next()) != 0 && strcmp(m, cur) != 0)
++cur_rank;
}
struct BetterSize : public Better
{
unsigned int cur;
const char * cur_str;
char req_type;
unsigned int requested;
unsigned int size;
unsigned int best;
const char * best_str;
void init();
void set_best_from_cur();
void set_cur_rank();
};
void BetterSize::init() {
worst_rank = 0xFFF;
best_rank = worst_rank;
}
void BetterSize::set_best_from_cur()
{
best_rank = cur_rank;
best = cur;
best_str = cur_str;
}
void BetterSize::set_cur_rank()
{
int diff = cur - requested;
int sign;
if (diff < 0) {
cur_rank = -diff;
sign = -1;
} else {
cur_rank = diff;
sign = 1;
}
cur_rank <<= 1;
if ((sign == -1 && req_type == '+') || (sign == 1 && req_type == '-'))
cur_rank |= 0x1;
else if ((sign == -1 && req_type == '>') || (sign == 1 && req_type == '<'))
cur_rank |= 0x100;
}
struct BetterVariety : public Better
{
const char * cur;
StringList list;
const char * best;
BetterVariety() {}
void init();
void set_best_from_cur();
void set_cur_rank();
};
void BetterVariety::init() {
worst_rank = 3;
best_rank = 3;
}
void BetterVariety::set_best_from_cur()
{
best_rank = cur_rank;
best = cur;
}
void BetterVariety::set_cur_rank()
{
if (strlen(cur) == 0) {
cur_rank = 2;
} else {
StringListEnumeration es = list.elements_obj();
const char * m;
cur_rank = 3;
unsigned list_size = 0, num = 0;
while ( (m = es.next()) != 0 ) {
++list_size;
unsigned s = strlen(m);
const char * c = cur;
unsigned p;
bool match = false;
num = 0;
for (; *c != '\0'; c += p) {
++num;
p = strcspn(c, "-");
if (p == s && memcmp(m, c, s) == 0) {match = true; break;}
if (c[p] == '-') p++;
}
if (!match) goto fail;
cur_rank = 0;
}
if (cur_rank == 0 && num != list_size) cur_rank = 1;
}
return;
fail:
cur_rank = 3;
}
PosibErr<Config *> find_word_list(Config * c)
{
Config * config = new_config();
RET_ON_ERR(config->read_in_settings(c));
String dict_name;
if (config->have("master")) {
dict_name = config->retrieve("master");
} else {
////////////////////////////////////////////////////////////////////
//
// Give first preference to an exact match for the language-country
// code, then give preference to those in the alternate code list
// in the order they are presented, then if there is no match
// look for one for just language. If that fails give up.
// Once the best matching code is found, try to find a matching
// variety if one exists, other wise look for one with no variety.
//
BetterList b_code;
//BetterList b_jargon;
BetterVariety b_variety;
BetterList b_module;
BetterSize b_size;
Better * better[4] = {&b_code,&b_variety,&b_module,&b_size};
const DictInfo * best = 0;
//
// retrieve and normalize code
//
const char * p;
String code;
PosibErr<String> str = config->retrieve("lang");
p = str.data.c_str();
while (asc_isalpha(*p))
code += asc_tolower(*p++);
String lang = code;
bool have_country = false;
if (*p == '-' || *p == '_') {
++p;
have_country = true;
code += '_';
while (asc_isalpha(*p))
code += asc_toupper(*p++);
}
//
// Retrieve acceptable code search orders
//
String lang_country_list;
if (have_country) {
lang_country_list = code;
lang_country_list += ' ';
}
String lang_only_list = lang;
lang_only_list += ' ';
// read retrieve lang_country_list and lang_only_list from file(s)
// FIXME: Write Me
//
split_string_list(b_code.list, lang_country_list);
split_string_list(b_code.list, lang_only_list);
b_code.init();
//
// Retrieve Variety
//
config->retrieve_list("variety", &b_variety.list);
if (b_variety.list.empty() && config->have("jargon"))
b_variety.list.add(config->retrieve("jargon"));
b_variety.init();
str.data.clear();
//
// Retrieve module list
//
if (config->have("module"))
b_module.list.add(config->retrieve("module"));
else if (config->have("module-search-order"))
config->retrieve_list("module-search-order", &b_module.list);
{
StackPtr<ModuleInfoEnumeration> els(get_module_info_list(config)->elements());
const ModuleInfo * entry;
while ( (entry = els->next()) != 0)
b_module.list.add(entry->name);
}
b_module.init();
//
// Retrieve size
//
str = config->retrieve("size");
p = str.data.c_str();
if (p[0] == '+' || p[0] == '-' || p[0] == '<' || p[0] == '>') {
b_size.req_type = p[0];
++p;
} else {
b_size.req_type = '+';
}
if (!asc_isdigit(p[0]) || !asc_isdigit(p[1]) || p[2] != '\0')
abort(); //FIXME: create an error condition here
b_size.requested = atoi(p);
b_size.init();
//
//
//
const DictInfoList * dlist = get_dict_info_list(config);
DictInfoEnumeration * dels = dlist->elements();
const DictInfo * entry;
while ( (entry = dels->next()) != 0) {
b_code .cur = entry->code;
b_module.cur = entry->module->name;
b_variety.cur = entry->variety;
b_size.cur_str = entry->size_str;
b_size.cur = entry->size;
//
// check to see if we got a better match than the current
// best_match if any
//
IsBetter is_better = SameMatch;
for (int i = 0; i != 4; ++i)
is_better = better[i]->better_match(is_better);
if (is_better == BetterMatch) {
for (int i = 0; i != 4; ++i)
better[i]->set_best_from_cur();
best = entry;
}
}
delete dels;
//
// set config to best match
//
if (best != 0) {
String main_wl,flags;
PosibErrBase ret = get_dict_file_name(best, main_wl, flags);
if (ret.has_err()) {
delete config;
return ret;
}
dict_name = best->name;
config->replace("lang", b_code.best);
config->replace("language-tag", b_code.best);
config->replace("master", main_wl.c_str());
config->replace("master-flags", flags.c_str());
config->replace("module", b_module.best);
config->replace("jargon", b_variety.best);
config->replace("clear-variety", "");
unsigned p;
for (const char * c = b_module.best; *c != '\0'; c += p) {
p = strcspn(c, "-");
config->replace("add-variety", String(c, p));
}
config->replace("size", b_size.best_str);
} else {
delete config;
return make_err(no_wordlist_for_lang, code);
}
}
const StringMap * dict_aliases = get_dict_aliases(config);
const char * val = dict_aliases->lookup(dict_name);
if (val) config->replace("master", val);
return config;
}
PosibErr<void> reload_filters(Speller * m)
{
m->to_internal_->filter.clear();
m->from_internal_->filter.clear();
// Add enocder and decoder filters if any
RET_ON_ERR(setup_filter(m->to_internal_->filter, m->config(),
true, false, false));
RET_ON_ERR(setup_filter(m->from_internal_->filter, m->config(),
false, false, true));
return no_err;
}
PosibErr<Speller *> new_speller(Config * c0)
{
aspell_gettext_init();
RET_ON_ERR_SET(find_word_list(c0), Config *, c);
StackPtr<Speller> m(get_speller_class(c));
RET_ON_ERR(m->setup(c));
RET_ON_ERR(reload_filters(m));
return m.release();
}
void delete_speller(Speller * m)
{
SpellerLtHandle h = ((Speller *)(m))->lt_handle();
delete m;
if (h != 0) free_lt_handle(h);
}
}
|