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 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193
|
// 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/.
// Aspell's main word list is laid out as follows:
//
// * header
// * jump table for editdist 1
// * jump table for editdist 2
// * data block
// * hash table
// data block laid out as follows:
//
// Words:
// (<8 bit frequency><8 bit: flags><8 bit: offset>
// <8 bit: word size><word><null>
// [<affix info><null>][<category info><null>])+
// Words with soundslike:
// (<8 bit: offset to next item><8 bit: soundslike size><soundslike>
// <words>)+
// Flags are mapped as follows:
// bits 0-3: word info
// bit 4: duplicate flag
// bit 5: <unused>
// bit 6: have affix info
// bit 7: have compound info
#include <utility>
using std::pair;
#include <string.h>
#include <stdio.h>
//#include <errno.h>
#include "settings.h"
#include "block_vector.hpp"
#include "config.hpp"
#include "data.hpp"
#include "data_util.hpp"
#include "errors.hpp"
#include "file_util.hpp"
#include "fstream.hpp"
#include "language.hpp"
#include "stack_ptr.hpp"
#include "objstack.hpp"
#include "vector.hpp"
#include "vector_hash-t.hpp"
#include "check_list.hpp"
#include "lsort.hpp"
#include "iostream.hpp"
#include "gettext.h"
typedef unsigned int u32int;
static const u32int u32int_max = (u32int)-1;
typedef unsigned short u16int;
typedef unsigned char byte;
#ifdef HAVE_MMAP
// POSIX headers
#include <fcntl.h>
#include <unistd.h>
#include <sys/mman.h>
#endif
#ifndef MAP_FAILED
#define MAP_FAILED (-1)
#endif
#ifdef HAVE_MMAP
static inline char * mmap_open(unsigned int block_size,
FStream & f,
unsigned int offset)
{
f.flush();
int fd = f.file_no();
return static_cast<char *>
(mmap(NULL, block_size, PROT_READ, MAP_SHARED, fd, offset));
}
static inline void mmap_free(char * block, unsigned int size)
{
munmap(block, size);
}
#else
static inline char * mmap_open(unsigned int,
FStream & f,
unsigned int)
{
return reinterpret_cast<char *>(MAP_FAILED);
}
static inline void mmap_free(char *, unsigned int)
{
abort();
}
#endif
static byte HAVE_AFFIX_FLAG = 1 << 7;
static byte HAVE_CATEGORY_FLAG = 1 << 6;
static byte DUPLICATE_FLAG = 1 << 4;
// this flag is set when there is is more than one word for a
// particulear "clean" word such as "jello" "Jello". It is set on all
// but the last word of the group. Ie, if it is set than the next
// word when converted to its "clean" form equals the same value.
static byte WORD_INFO_MASK = 0x0F;
static const int FREQUENCY_INFO_O = 4;
static const int FLAGS_O = 3;
static const int NEXT_O = 2;
static const int WORD_SIZE_O = 1;
static inline int get_word_size(const char * d) {
return *reinterpret_cast<const byte *>(d - WORD_SIZE_O);
}
static inline byte get_flags(const char * d) {
return *reinterpret_cast<const byte *>(d - FLAGS_O);
}
static inline byte get_offset(const char * d) {
return *reinterpret_cast<const byte *>(d - NEXT_O);
}
static inline const char * get_next(const char * d) {
return d + *reinterpret_cast<const byte *>(d - NEXT_O);
}
static inline const char * get_sl_words_begin(const char * d) {
return d + *reinterpret_cast<const byte *>(d - WORD_SIZE_O) + 4;
// FIXME: This isn't right when frequency info is stored in the table
}
// get_next might go past the end so don't JUST compare
// for equality. Ie use while (cur < end) not (cur != end)
static inline const char * get_sl_words_end(const char * d) {
return get_next(d) - 3;
}
static inline const char * get_affix(const char * d) {
int word_size = get_word_size(d);
if (get_flags(d) & HAVE_AFFIX_FLAG)
return d + word_size + 1;
else
return d + word_size;
}
static inline const char * get_category(const char * d) {
int word_size = get_word_size(d);
if (get_flags(d) & (HAVE_AFFIX_FLAG | HAVE_CATEGORY_FLAG))
return d + strlen(d + word_size + 1) + 1;
else if (get_flags(d) & HAVE_CATEGORY_FLAG)
return d + word_size + 1;
else
return d + word_size;
}
static inline bool duplicate_flag(const char * d) {
return get_flags(d) & DUPLICATE_FLAG;
}
namespace {
using namespace aspeller;
/////////////////////////////////////////////////////////////////////
//
// ReadOnlyDict
//
struct Jump
{
char sl[4];
u32int loc;
Jump() {memset(this, 0, sizeof(Jump));}
};
class ReadOnlyDict : public Dictionary
{
public: //but don't use
struct WordLookupParms {
const char * block_begin;
WordLookupParms() {}
typedef BlockVector<const u32int> Vector;
typedef u32int Value;
typedef const char * Key;
static const bool is_multi = false;
Key key(Value v) const {return block_begin + v;}
InsensitiveHash hash;
InsensitiveEqual equal;
bool is_nonexistent(Value v) const {return v == u32int_max;}
void make_nonexistent(const Value & v) const {abort();}
};
typedef VectorHashTable<WordLookupParms> WordLookup;
public: // but don't use
char * block;
u32int block_size;
char * mmaped_block;
u32int mmaped_size;
const Jump * jump1;
const Jump * jump2;
WordLookup word_lookup;
const char * word_block;
const char * first_word;
ReadOnlyDict(const ReadOnlyDict&);
ReadOnlyDict& operator= (const ReadOnlyDict&);
struct Elements;
struct SoundslikeElements;
public:
WordEntryEnumeration * detailed_elements() const;
Size size() const;
bool empty() const;
ReadOnlyDict()
: Dictionary(basic_dict, "ReadOnlyDict")
{
block = 0;
}
~ReadOnlyDict() {
if (block != 0) {
if (mmaped_block)
mmap_free(mmaped_block, mmaped_size);
else
free(block);
}
}
PosibErr<void> load(ParmString, Config &, DictList *, SpellerImpl *);
bool lookup(ParmString word, const SensitiveCompare *, WordEntry &) const;
bool clean_lookup(ParmString, WordEntry &) const;
bool soundslike_lookup(const WordEntry &, WordEntry &) const;
bool soundslike_lookup(ParmString, WordEntry &) const;
SoundslikeEnumeration * soundslike_elements() const;
};
static inline void convert(const char * w, WordEntry & o) {
o.what = WordEntry::Word;
o.word = w;
o.aff = get_affix(w);
o.word_size = get_word_size(w);
o.word_info = get_flags(w) & WORD_INFO_MASK;
}
//
//
//
struct ReadOnlyDict::Elements : public WordEntryEnumeration
{
const char * w;
WordEntry wi;
Elements(const char * w0) : w(w0) {wi.what = WordEntry::Word;}
WordEntry * next() {
if (get_offset(w) == 0) w += 2; // FIXME: This needs to be 3
// when freq info is used
if (get_offset(w) == 0) return 0;
convert(w, wi);
w = get_next(w);
return &wi;
}
bool at_end() const {return get_offset(w) == 0;}
WordEntryEnumeration * clone() const {return new Elements(*this);}
void assign (const WordEntryEnumeration * other) {
*this = *static_cast<const Elements *>(other);}
};
WordEntryEnumeration * ReadOnlyDict::detailed_elements() const {
return new Elements(first_word);
}
ReadOnlyDict::Size ReadOnlyDict::size() const {
return word_lookup.size();
}
bool ReadOnlyDict::empty() const {
return word_lookup.empty();
}
static const char * const cur_check_word = "aspell default speller rowl 1.10";
struct DataHead {
// all sizes except the last four must to divisible by:
static const unsigned int align = 16;
char check_word[64];
u32int endian_check; // = 12345678
char lang_hash[16];
u32int head_size;
u32int block_size;
u32int jump1_offset;
u32int jump2_offset;
u32int word_offset;
u32int hash_offset;
u32int word_count;
u32int word_buckets;
u32int soundslike_count;
u32int dict_name_size;
u32int lang_name_size;
u32int soundslike_name_size;
u32int soundslike_version_size;
u32int first_word_offset; // from word block
byte affix_info; // 0 = none, 1 = partially expanded, 2 = full
byte invisible_soundslike;
byte soundslike_root_only;
byte compound_info; //
byte freq_info;
};
PosibErr<void> ReadOnlyDict::load(ParmString f0, Config & config,
DictList *, SpellerImpl *)
{
set_file_name(f0);
const char * fn = file_name();
FStream f;
RET_ON_ERR(f.open(fn, "rb"));
DataHead data_head;
f.read(&data_head, sizeof(DataHead));
#if 0
COUT << "Head Size: " << data_head.head_size << "\n";
COUT << "Data Block Size: " << data_head.data_block_size << "\n";
COUT << "Hash Block Size: " << data_head.hash_block_size << "\n";
COUT << "Total Block Size: " << data_head.total_block_size << "\n";
#endif
if (strcmp(data_head.check_word, cur_check_word) != 0)
return make_err(bad_file_format, fn);
if (data_head.endian_check != 12345678)
return make_err(bad_file_format, fn, _("Wrong endian order."));
CharVector word;
word.resize(data_head.dict_name_size);
f.read(word.data(), data_head.dict_name_size);
word.resize(data_head.lang_name_size);
f.read(word.data(), data_head.lang_name_size);
PosibErr<void> pe = set_check_lang(word.data(),config);
if (pe.has_err()) {
if (pe.prvw_err()->is_a(language_related_error))
return pe.with_file(fn);
else
return pe;
}
if (data_head.soundslike_name_size != 0) {
word.resize(data_head.soundslike_name_size);
f.read(word.data(), data_head.soundslike_name_size);
if (strcmp(word.data(), lang()->soundslike_name()) != 0)
return make_err(bad_file_format, fn, _("Wrong soundslike."));
word.resize(data_head.soundslike_version_size);
f.read(word.data(), data_head.soundslike_version_size);
if (strcmp(word.data(), lang()->soundslike_version()) != 0)
return make_err(bad_file_format, fn, _("Wrong soundslike version."));
}
invisible_soundslike = data_head.invisible_soundslike;
soundslike_root_only = data_head.soundslike_root_only;
affix_compressed = data_head.affix_info;
block_size = data_head.block_size;
int offset = data_head.head_size;
mmaped_block = mmap_open(block_size + offset, f, 0);
if( mmaped_block != (char *)MAP_FAILED) {
block = mmaped_block + offset;
mmaped_size = block_size + offset;
} else {
mmaped_block = 0;
block = (char *)malloc(block_size);
f.seek(data_head.head_size);
f.read(block, block_size);
}
if (data_head.jump2_offset) {
fast_scan = true;
jump1 = reinterpret_cast<const Jump *>(block + data_head.jump1_offset);
jump2 = reinterpret_cast<const Jump *>(block + data_head.jump2_offset);
} else {
jump1 = jump2 = 0;
}
word_block = block + data_head.word_offset;
first_word = word_block + data_head.first_word_offset;
word_lookup.parms().block_begin = word_block;
word_lookup.parms().hash .lang = lang();
word_lookup.parms().equal.cmp.lang = lang();
const u32int * begin = reinterpret_cast<const u32int *>
(block + data_head.hash_offset);
word_lookup.vector().set(begin, begin + data_head.word_buckets);
word_lookup.set_size(data_head.word_count);
return no_err;
}
void lookup_adv(WordEntry * wi);
static inline void prep_next(WordEntry * wi,
const char * w,
const SensitiveCompare * c,
const char * orig)
{
loop:
if (!duplicate_flag(w)) return;
w = get_next(w);
if (!(*c)(orig, w)) goto loop;
wi->intr[0] = (void *)w;
wi->intr[1] = (void *)c;
wi->intr[2] = (void *)orig;
wi->adv_ = lookup_adv;
}
void lookup_adv(WordEntry * wi)
{
const char * w = (const char *)wi->intr[0];
const SensitiveCompare * c = (const SensitiveCompare *)wi->intr[1];
const char * orig = (const char *)wi->intr[2];
wi->word = w;
wi->adv_ = 0;
prep_next(wi, w, c, orig);
}
bool ReadOnlyDict::lookup(ParmString word, const SensitiveCompare * c,
WordEntry & o) const
{
o.clear();
WordLookup::const_iterator i = word_lookup.find(word);
if (i == word_lookup.end()) return false;
const char * w = word_block + *i;
for (;;) {
if ((*c)(word, w)) {
o.what = WordEntry::Word;
convert(w,o);
prep_next(&o, w, c, word);
return true;
}
if (!duplicate_flag(w)) break;
w = get_next(w);
}
return false;
}
struct ReadOnlyDict::SoundslikeElements : public SoundslikeEnumeration
{
WordEntry data;
const ReadOnlyDict * obj;
const Jump * jump1;
const Jump * jump2;
const char * cur;
const char * prev;
int level;
bool invisible_soundslike;
WordEntry * next(int stopped_at);
SoundslikeElements(const ReadOnlyDict * o)
: obj(o), jump1(obj->jump1), jump2(obj->jump2), cur(0),
level(1), invisible_soundslike(o->invisible_soundslike) {
data.what = o->invisible_soundslike ? WordEntry::Word : WordEntry::Soundslike;}
};
WordEntry * ReadOnlyDict::SoundslikeElements::next(int stopped_at) {
//CERR << level << ":" << stopped_at << " :";
//CERR << jump1->sl << ":" << jump2->sl << "\n";
loop:
const char * tmp = cur;
const char * p;
if (level == 1 && stopped_at < 2) {
++jump1;
tmp = jump1->sl;
goto jquit;
} else if (level == 2 && stopped_at < 3) {
++jump2;
if (jump2[-1].sl[1] != jump2[0].sl[1]) {
++jump1;
level = 1;
tmp = jump1->sl;
} else {
tmp = jump2->sl;
}
goto jquit;
} else if (level == 1) {
level = 2;
jump2 = obj->jump2 + jump1->loc;
tmp = jump2->sl;
goto jquit;
} else if (level == 2) {
tmp = cur = obj->word_block + jump2->loc;
level = 3;
} else if (get_offset(cur) == 0) {
level = 2;
++jump2;
if (jump2[-1].sl[1] != jump2[0].sl[1]) {
level = 1;
++jump1;
tmp = jump1->sl;
} else {
tmp = jump2->sl;
}
goto jquit;
}
cur = get_next(cur); // this will be the NEXT item looked at
p = prev;
prev = tmp;
if (p) {
// PRECOND:
// unless stopped_at >= LARGE_NUM
// strlen(p) >= stopped_at
// (stopped_at >= 3) implies
// strncmp(p, tmp, 3) == 0 if !invisible_soundslike
// strncmp(to_sl(p), to_sl(tmp), 3) == 0 if invisible_soundslike
if (stopped_at == 3) {
if (p[3] == tmp[3]) goto loop;
} else if (stopped_at == 4) {
if (p[3] == tmp[3] && tmp[3] &&
p[4] == tmp[4]) goto loop;
} else if (stopped_at == 5) {
if (p[3] == tmp[3] && tmp[3] &&
p[4] == tmp[4] && tmp[4] &&
p[5] == tmp[5]) goto loop;
}
}
data.word = tmp;
data.word_size = get_word_size(tmp);
if (invisible_soundslike) {
convert(tmp, data);
data.what = WordEntry::Word;
}
data.intr[0] = (void *)tmp;
return &data;
jquit:
prev = 0;
if (!*tmp) return 0;
data.word = tmp;
data.word_size = !tmp[1] ? 1 : !tmp[2] ? 2 : 3;
data.intr[0] = 0;
if (invisible_soundslike) {
data.what = WordEntry::Clean;
data.aff = 0;
}
return &data;
}
SoundslikeEnumeration * ReadOnlyDict::soundslike_elements() const {
return new SoundslikeElements(this);
}
static void soundslike_next(WordEntry * w)
{
const char * cur = (const char *)(w->intr[0]);
const char * end = (const char *)(w->intr[1]);
convert(cur, *w);
cur = get_next(cur);
w->intr[0] = (void *)cur;
if (cur >= end) w->adv_ = 0;
}
static void clean_lookup_adv(WordEntry * wi)
{
const char * w = wi->word;
w = get_next(w);
convert(w,*wi);
if (!duplicate_flag(w)) wi->adv_ = 0;
}
bool ReadOnlyDict::clean_lookup(ParmString sl, WordEntry & o) const
{
o.clear();
WordLookup::const_iterator i = word_lookup.find(sl);
if (i == word_lookup.end()) return false;
const char * w = word_block + *i;
convert(w, o);
if (duplicate_flag(w)) o.adv_ = clean_lookup_adv;
return true;
}
bool ReadOnlyDict::soundslike_lookup(const WordEntry & s, WordEntry & w) const
{
if (s.intr[0] == 0) {
return false;
} else if (!invisible_soundslike) {
w.clear();
w.what = WordEntry::Word;
w.intr[0] = (void *)get_sl_words_begin(s.word);
w.intr[1] = (void *)get_sl_words_end(s.word);
w.adv_ = soundslike_next;
soundslike_next(&w);
return true;
} else {
w.clear();
w.what = WordEntry::Word;
convert(s.word, w);
return true;
}
}
bool ReadOnlyDict::soundslike_lookup(ParmString s, WordEntry & w) const
{
if (invisible_soundslike) {
return ReadOnlyDict::clean_lookup(s,w);
} else {
return false;
}
}
}
namespace aspeller {
Dictionary * new_default_readonly_dict() {
return new ReadOnlyDict();
}
}
namespace {
// Possible:
// No Affix Compression:
// no soundslike
// invisible soundslike
// with soundslike
// Affix Compression:
// group by root:
// no soundslike
// invisible soundslike
// with soundslike
// expand prefix:
// no soundslike
// invisible soundslike
using namespace aspeller;
struct WordData {
static const unsigned struct_size;
WordData * next;
char * sl;
char * aff;
byte word_size;
byte sl_size;
byte data_size;
byte flags;
char word[1];
};
const unsigned WordData::struct_size = sizeof(WordData) - 1;
struct SoundslikeLess {
InsensitiveCompare icomp;
SoundslikeLess(const Language * l) : icomp(l) {}
bool operator() (WordData * x, WordData * y) const {
int res = strcmp(x->sl, y->sl);
if (res != 0) return res < 0;
res = icomp(x->word, y->word);
if (res != 0) return res < 0;
return strcmp(x->word, y->word) < 0;
}
};
struct WordLookupParms {
const char * block_begin;
WordLookupParms() {}
typedef acommon::Vector<u32int> Vector;
typedef u32int Value;
typedef const char * Key;
static const bool is_multi = false;
Key key(Value v) const {return block_begin + v;}
InsensitiveHash hash;
InsensitiveEqual equal;
bool is_nonexistent(Value v) const {return v == u32int_max;}
void make_nonexistent(Value & v) const {v = u32int_max;}
};
typedef VectorHashTable<WordLookupParms> WordLookup;
static inline unsigned int round_up(unsigned int i, unsigned int size) {
return ((i + size - 1)/size)*size;
}
static void advance_file(FStream & out, int pos) {
int diff = pos - out.tell();
assert(diff >= 0);
for(; diff != 0; --diff)
out << '\0';
}
PosibErr<void> create (StringEnumeration * els,
const Language & lang,
Config & config)
{
assert(sizeof(u16int) == 2);
assert(sizeof(u32int) == 4);
bool full_soundslike = !(strcmp(lang.soundslike_name(), "none") == 0 ||
strcmp(lang.soundslike_name(), "stripped") == 0 ||
strcmp(lang.soundslike_name(), "simple") == 0);
bool affix_compress = (lang.affix() &&
config.retrieve_bool("affix-compress"));
bool partially_expand = (affix_compress &&
!full_soundslike &&
config.retrieve_bool("partially-expand"));
bool invisible_soundslike = false;
if (partially_expand)
invisible_soundslike = true;
else if (config.have("invisible-soundslike"))
invisible_soundslike = config.retrieve_bool("invisible-soundslike");
else if (!full_soundslike)
invisible_soundslike = true;
ConvEC iconv;
if (!config.have("norm-strict"))
config.replace("norm-strict", "true");
if (config.have("encoding"))
RET_ON_ERR(iconv.setup(config, config.retrieve("encoding"), lang.charmap(),NormFrom));
else
RET_ON_ERR(iconv.setup(config, lang.data_encoding(), lang.charmap(), NormFrom));
String base = config.retrieve("master-path");
DataHead data_head;
memset(&data_head, 0, sizeof(data_head));
strcpy(data_head.check_word, cur_check_word);
data_head.endian_check = 12345678;
data_head.dict_name_size = 1;
data_head.lang_name_size = strlen(lang.name()) + 1;
data_head.soundslike_name_size = strlen(lang.soundslike_name()) + 1;
data_head.soundslike_version_size = strlen(lang.soundslike_version()) + 1;
data_head.head_size = sizeof(DataHead);
data_head.head_size += data_head.dict_name_size;
data_head.head_size += data_head.lang_name_size;
data_head.head_size += data_head.soundslike_name_size;
data_head.head_size += data_head.soundslike_version_size;
data_head.head_size = round_up(data_head.head_size, DataHead::align);
data_head.affix_info = affix_compress ? partially_expand ? 1 : 2 : 0;
data_head.invisible_soundslike = invisible_soundslike;
data_head.soundslike_root_only = affix_compress && !partially_expand ? 1 : 0;
#if 0
CERR.printl("FLAGS: ");
if (full_soundslike) CERR.printl(" full soundslike");
if (invisible_soundslike) CERR.printl(" invisible soundslike");
if (data_head.soundslike_root_only) CERR.printl(" soundslike root only");
if (affix_compress) CERR.printl(" affix compress");
if (partially_expand) CERR.printl(" partially expand");
CERR.printl("---");
#endif
String temp;
int num_entries = 0;
int uniq_entries = 0;
ObjStack buf(16*1024);
String sl_buf;
WordData * first = 0;
//
// Read in Wordlist
//
{
WordListIterator wl_itr(els, &lang, config.retrieve_bool("warn") ? &CERR : 0);
wl_itr.init(config);
ObjStack exp_buf;
WordAff * exp_list;
WordAff single;
single.next = 0;
Vector<WordAff> af_list;
WordData * * prev = &first;
for (;;) {
PosibErr<bool> pe = wl_itr.adv();
if (pe.has_err()) return pe;
if (!pe.data) break;
const char * w = wl_itr->word.str;
unsigned int s = wl_itr->word.size;
const char * affixes = wl_itr->aff.str;
if (*affixes && !lang.affix())
return make_err(other_error,
_("Affix flags found in word but no affix file given."));
if (*affixes && !affix_compress) {
exp_buf.reset();
exp_list = lang.affix()->expand(w, affixes, exp_buf);
} else if (*affixes && partially_expand) {
// expand any affixes which will effect the first
// 3 letters of a word. This is needed so that the
// jump tables will function correctly
exp_buf.reset();
exp_list = lang.affix()->expand(w, affixes, exp_buf, 3);
} else {
single.word.str = w;
single.word.size = strlen(w);
single.aff = (const byte *)affixes;
exp_list = &single;
}
// iterate through each expanded word
for (WordAff * p = exp_list; p; p = p->next)
{
const char * w = p->word.str;
s = p->word.size;
unsigned total_size = WordData::struct_size;
unsigned data_size = s + 1;
unsigned aff_size = strlen((const char *)p->aff);
if (aff_size > 0) data_size += aff_size + 1;
total_size += data_size;
lang.to_soundslike(sl_buf, w);
const char * sl = sl_buf.str();
unsigned sl_size = sl_buf.size();
if (strcmp(sl,w) == 0) sl = w;
if (sl != w) total_size += sl_size + 1;
if (total_size - WordData::struct_size > 240)
return make_err(invalid_word, MsgConv(lang)(w),
_("The total word length, with soundslike data, is larger than 240 characters."));
WordData * b = (WordData *)buf.alloc(total_size, sizeof(void *));
*prev = b;
b->next = 0;
prev = &b->next;
b->word_size = s;
b->sl_size = strlen(sl);
b->data_size = data_size;
b->flags = lang.get_word_info(w);
char * z = b->word;
memcpy(z, w, s + 1);
z += s + 1;
if (aff_size > 0) {
b->flags |= HAVE_AFFIX_FLAG;
b->aff = z;
memcpy(z, p->aff, aff_size + 1);
z += aff_size + 1;
} else {
b->aff = 0;
}
if (sl != w) {
memcpy(z, sl, sl_size + 1);
b->sl = z;
} else {
b->sl = b->word;
}
}
}
delete els;
}
//
// sort WordData linked list based on (sl, word)
//
first = sort(first, SoundslikeLess(&lang));
//
// duplicate check
//
WordData * prev = first;
WordData * cur = first ? first->next : 0;
InsensitiveEqual ieq(&lang);
while (cur) {
if (strcmp(prev->word, cur->word) == 0) {
// merge affix info if necessary
if (!prev->aff && cur->aff) {
prev->flags |= HAVE_AFFIX_FLAG;
prev->aff = cur->aff;
prev->data_size += strlen(prev->aff) + 1;
} else if (prev->aff && cur->aff) {
unsigned l1 = strlen(prev->aff);
unsigned l2 = strlen(cur->aff);
char * aff = (char *)buf.alloc(l1 + l2 + 1);
memcpy(aff, prev->aff, l1);
prev->aff = aff;
aff += l1;
for (const char * p = cur->aff; *p; ++p) {
if (memchr(prev->aff, *p, l1)) continue;
*aff = *p;
++aff;
}
*aff = '\0';
prev->data_size = prev->word_size + (aff - prev->aff) + 2;
}
prev->next = cur->next;
} else {
if (ieq(prev->word, cur->word)) prev->flags |= DUPLICATE_FLAG;
else ++uniq_entries;
++num_entries;
prev = cur;
}
cur = cur->next;
}
//
//
//
unsigned data_size = 16;
WordData * p = first;
if (invisible_soundslike) {
for (; p; p = p->next)
data_size += 3 + p->data_size;
} else {
while (p)
{
unsigned ds = 2 + p->sl_size + 1;
char * prev = p->sl;
do {
ds += 3 + p->data_size;
p->sl = prev;
p = p->next;
} while (p && strcmp(prev, p->sl) == 0 && ds + 3 + p->data_size < 255);
data_size += ds;
}
}
//
// Create the final data structures
//
CharVector data;
data.reserve(data_size);
data.write32(0); // to avoid nasty special cases
unsigned int prev_pos = data.size();
data.write32(0);
unsigned prev_w_pos = data.size();
WordLookup lookup(affix_compress
? uniq_entries * 3 / 2
: uniq_entries * 5 / 4);
lookup.parms().block_begin = data.begin();
lookup.parms().hash .lang = ⟨
lookup.parms().equal.cmp.lang = ⟨
Vector<Jump> jump1;
Vector<Jump> jump2;
const int head_size = invisible_soundslike ? 3 : 2;
const char * prev_sl = "";
p = first;
while (p)
{
if (invisible_soundslike) {
data.write(p->flags); // flags
data.write('\0'); // place holder for offset to next item
data.write(p->word_size);
} else {
data.write('\0'); // place holder for offset to next item
data.write(p->sl_size);
}
if (strncmp(prev_sl, p->sl, 3) != 0) {
Jump jump;
strncpy(jump.sl, p->sl, 3);
jump.loc = data.size();
jump2.push_back(jump);
if (strncmp(prev_sl, p->sl, 2) != 0) {
Jump jump;
strncpy(jump.sl, p->sl, 2);
jump.loc = jump2.size() - 1;
jump1.push_back(jump);
}
data[prev_pos - NEXT_O] = (byte)(data.size() - prev_pos - head_size + 1);
// when advanced to this position the offset byte will
// be null (since it will point to the null terminator
// of the last word) and will thus signal the end of the
// group
} else {
data[prev_pos - NEXT_O] = (byte)(data.size() - prev_pos);
}
prev_pos = data.size();
prev_sl = p->sl;
if (invisible_soundslike) {
unsigned pos = data.size();
prev_w_pos = data.size();
data.write(p->word, p->word_size + 1);
if (p->aff) data.write(p->aff, p->data_size - p->word_size - 1);
lookup.insert(pos);
p = p->next;
} else {
data.write(p->sl, p->sl_size + 1);
// write all word entries with the same soundslike
do {
data.write(p->flags);
data.write(p->data_size + 3);
data.write(p->word_size);
unsigned pos = data.size();
data[prev_w_pos - NEXT_O] = (byte)(pos - prev_w_pos);
data.write(p->word, p->word_size + 1);
if (p->aff) data.write(p->aff, p->data_size - p->word_size - 1);
lookup.insert(pos);
prev_w_pos = pos;
prev_sl = p->sl;
p = p->next;
} while (p && prev_sl == p->sl); // yes I really mean to use pointer compare here
}
}
// add special end case
if (data.size() % 2 != 0) data.write('\0');
data.write16(0);
data.write16(0);
data[prev_pos - NEXT_O] |= (byte)(data.size() - prev_pos);
jump2.push_back(Jump());
jump1.push_back(Jump());
data.write(0);
data.write(0);
data.write(0);
if (invisible_soundslike)
data_head.first_word_offset = data[4 - NEXT_O] + 4;
else
data_head.first_word_offset = data[8 - NEXT_O] + 8;
memset(data.data(), 0, 8);
//CERR.printf("%d == %d\n", lookup.size(), uniq_entries);
//assert(lookup.size() == uniq_entries);
data_head.word_count = num_entries;
data_head.word_buckets = lookup.bucket_count();
FStream out;
out.open(base, "wb");
advance_file(out, data_head.head_size);
// Write jump1 table
data_head.jump1_offset = out.tell() - data_head.head_size;
out.write(jump1.data(), jump1.size() * sizeof(Jump));
// Write jump2 table
advance_file(out, round_up(out.tell(), DataHead::align));
data_head.jump2_offset = out.tell() - data_head.head_size;
out.write(jump2.data(), jump2.size() * sizeof(Jump));
// Write data block
advance_file(out, round_up(out.tell(), DataHead::align));
data_head.word_offset = out.tell() - data_head.head_size;
out.write(data.data(), data.size());
// Write hash
advance_file(out, round_up(out.tell(), DataHead::align));
data_head.hash_offset = out.tell() - data_head.head_size;
out.write(&lookup.vector().front(), lookup.vector().size() * 4);
// calculate block size
advance_file(out, round_up(out.tell(), DataHead::align));
data_head.block_size = out.tell() - data_head.head_size;
// write data head to file
out.seek(0);
out.write(&data_head, sizeof(DataHead));
out.write(" ", 1);
out.write(lang.name(), data_head.lang_name_size);
out.write(lang.soundslike_name(), data_head.soundslike_name_size);
out.write(lang.soundslike_version(), data_head.soundslike_version_size);
return no_err;
}
}
namespace aspeller {
PosibErr<void> create_default_readonly_dict(StringEnumeration * els,
Config & config)
{
CachePtr<Language> lang;
PosibErr<Language *> res = new_language(config);
if (res.has_err()) return res;
lang.reset(res.data);
lang->set_lang_defaults(config);
RET_ON_ERR(create(els,*lang,config));
return no_err;
}
}
|