diff options
author | 2010-12-01 19:09:29 +0900 | |
---|---|---|
committer | 2010-12-01 19:26:36 +0900 | |
commit | d4952c8fe9e71c2b313a68077e03d64c8b5196db (patch) | |
tree | ff2882312ca417dbe5c2efc5b09412ff72f5ebdd /native/src | |
parent | bd20db25be46e342c5a66b00edc8d0fc845da22b (diff) | |
download | latinime-d4952c8fe9e71c2b313a68077e03d64c8b5196db.tar.gz latinime-d4952c8fe9e71c2b313a68077e03d64c8b5196db.tar.xz latinime-d4952c8fe9e71c2b313a68077e03d64c8b5196db.zip |
Move a logic for finding words with a missing character to the native code.
Change-Id: I58338643830ff4f9708f78a9c26f75c8bf2ebf45
Diffstat (limited to 'native/src')
-rw-r--r-- | native/src/dictionary.cpp | 101 | ||||
-rw-r--r-- | native/src/dictionary.h | 12 |
2 files changed, 72 insertions, 41 deletions
diff --git a/native/src/dictionary.cpp b/native/src/dictionary.cpp index 7f58fc137..b20dc1173 100644 --- a/native/src/dictionary.cpp +++ b/native/src/dictionary.cpp @@ -37,6 +37,10 @@ #define DICTIONARY_HEADER_SIZE 2 #define NOT_VALID_WORD -99 +#define SUGGEST_MISSING_CHARACTERS true +#define SUGGEST_MISSING_CHARACTERS_THRESHOLD 5 + + namespace latinime { Dictionary::Dictionary(void *dict, int typedLetterMultiplier, int fullWordMultiplier) @@ -56,7 +60,42 @@ int Dictionary::getSuggestions(int *codes, int codesSize, unsigned short *outWor int maxWordLength, int maxWords, int maxAlternatives, int skipPos, int *nextLetters, int nextLettersSize) { - int suggWords; + + initSuggestions(codes, codesSize, outWords, frequencies, maxWordLength, maxWords, + maxAlternatives); + + int suggestedWordsCount = getSuggestionCandidates(codesSize, maxWords, skipPos, nextLetters, + nextLettersSize); + + // If there aren't sufficient suggestions, search for words by allowing wild cards at + // the different character positions. This feature is not ready for prime-time as we need + // to figure out the best ranking for such words compared to proximity corrections and + // completions. + if (SUGGEST_MISSING_CHARACTERS && suggestedWordsCount < SUGGEST_MISSING_CHARACTERS_THRESHOLD) { + for (int i = 0; i < codesSize; ++i) { + int tempCount = getSuggestionCandidates(codesSize, maxWords, i, NULL, 0); + if (tempCount > suggestedWordsCount) { + suggestedWordsCount = tempCount; + break; + } + } + } + + if (DEBUG_DICT) { + LOGI("Returning %d words", suggestedWordsCount); + LOGI("Next letters: "); + for (int k = 0; k < nextLettersSize; k++) { + if (nextLetters[k] > 0) { + LOGI("%c = %d,", k, nextLetters[k]); + } + } + LOGI("\n"); + } + return suggestedWordsCount; +} + +void Dictionary::initSuggestions(int *codes, int codesSize, unsigned short *outWords, + int *frequencies, int maxWordLength, int maxWords, int maxAlternatives) { mFrequencies = frequencies; mOutputChars = outWords; mInputCodes = codes; @@ -64,39 +103,29 @@ int Dictionary::getSuggestions(int *codes, int codesSize, unsigned short *outWor mMaxAlternatives = maxAlternatives; mMaxWordLength = maxWordLength; mMaxWords = maxWords; - mSkipPos = skipPos; mMaxEditDistance = mInputLength < 5 ? 2 : mInputLength / 2; - mNextLettersFrequencies = nextLetters; - mNextLettersSize = nextLettersSize; +} +int Dictionary::getSuggestionCandidates(int inputLength, int maxWords, int skipPos, + int *nextLetters, int nextLettersSize) { if (checkIfDictVersionIsLatest()) { - getWordsRec(DICTIONARY_HEADER_SIZE, 0, mInputLength * 3, false, 1, 0, 0); + getWordsRec(DICTIONARY_HEADER_SIZE, 0, inputLength * 3, false, 1, 0, 0, skipPos, + nextLetters, nextLettersSize); } else { - getWordsRec(0, 0, mInputLength * 3, false, 1, 0, 0); + getWordsRec(0, 0, inputLength * 3, false, 1, 0, 0, skipPos, nextLetters, nextLettersSize); } // Get the word count - suggWords = 0; - while (suggWords < mMaxWords && mFrequencies[suggWords] > 0) suggWords++; - if (DEBUG_DICT) LOGI("Returning %d words", suggWords); - - if (DEBUG_DICT) { - LOGI("Next letters: "); - for (int k = 0; k < nextLettersSize; k++) { - if (mNextLettersFrequencies[k] > 0) { - LOGI("%c = %d,", k, mNextLettersFrequencies[k]); - } - } - LOGI("\n"); + int suggestedWordsCount = 0; + while (suggestedWordsCount < maxWords && mFrequencies[suggestedWordsCount] > 0) { + suggestedWordsCount++; } - return suggWords; + return suggestedWordsCount; } -void -Dictionary::registerNextLetter(unsigned short c) -{ - if (c < mNextLettersSize) { - mNextLettersFrequencies[c]++; +void Dictionary::registerNextLetter(unsigned short c, int *nextLetters, int nextLettersSize) { + if (c < nextLettersSize) { + nextLetters[c]++; } } @@ -287,7 +316,7 @@ static char QUOTE = '\''; void Dictionary::getWordsRec(int pos, int depth, int maxDepth, bool completion, int snr, int inputIndex, - int diffs) + int diffs, int skipPos, int *nextLetters, int nextLettersSize) { // Optimization: Prune out words that are too long compared to how much was typed. if (depth > maxDepth) { @@ -321,19 +350,20 @@ Dictionary::getWordsRec(int pos, int depth, int maxDepth, bool completion, int s mWord[depth] = c; if (terminal) { addWord(mWord, depth + 1, freq * snr); - if (depth >= mInputLength && mSkipPos < 0) { - registerNextLetter(mWord[mInputLength]); + if (depth >= mInputLength && skipPos < 0) { + registerNextLetter(mWord[mInputLength], nextLetters, nextLettersSize); } } if (childrenAddress != 0) { - getWordsRec(childrenAddress, depth + 1, maxDepth, - completion, snr, inputIndex, diffs); + getWordsRec(childrenAddress, depth + 1, maxDepth, completion, snr, inputIndex, + diffs, skipPos, nextLetters, nextLettersSize); } - } else if ((c == QUOTE && currentChars[0] != QUOTE) || mSkipPos == depth) { + } else if ((c == QUOTE && currentChars[0] != QUOTE) || skipPos == depth) { // Skip the ' or other letter and continue deeper mWord[depth] = c; if (childrenAddress != 0) { - getWordsRec(childrenAddress, depth + 1, maxDepth, false, snr, inputIndex, diffs); + getWordsRec(childrenAddress, depth + 1, maxDepth, false, snr, inputIndex, diffs, + skipPos, nextLetters, nextLettersSize); } } else { int j = 0; @@ -346,22 +376,23 @@ Dictionary::getWordsRec(int pos, int depth, int maxDepth, bool completion, int s if (//INCLUDE_TYPED_WORD_IF_VALID || !sameAsTyped(mWord, depth + 1)) { int finalFreq = freq * snr * addedWeight; - if (mSkipPos < 0) finalFreq *= mFullWordMultiplier; + if (skipPos < 0) finalFreq *= mFullWordMultiplier; addWord(mWord, depth + 1, finalFreq); } } if (childrenAddress != 0) { getWordsRec(childrenAddress, depth + 1, maxDepth, true, snr * addedWeight, inputIndex + 1, - diffs + (j > 0)); + diffs + (j > 0), skipPos, nextLetters, nextLettersSize); } } else if (childrenAddress != 0) { getWordsRec(childrenAddress, depth + 1, maxDepth, - false, snr * addedWeight, inputIndex + 1, diffs + (j > 0)); + false, snr * addedWeight, inputIndex + 1, diffs + (j > 0), + skipPos, nextLetters, nextLettersSize); } } j++; - if (mSkipPos >= 0) break; + if (skipPos >= 0) break; } } } diff --git a/native/src/dictionary.h b/native/src/dictionary.h index d13496e01..2dac3b2c4 100644 --- a/native/src/dictionary.h +++ b/native/src/dictionary.h @@ -48,7 +48,10 @@ public: ~Dictionary(); private: - + void initSuggestions(int *codes, int codesSize, unsigned short *outWords, int *frequencies, + int maxWordLength, int maxWords, int maxAlternatives); + int getSuggestionCandidates(int inputLength, int maxWords, int skipPos, int *nextLetters, + int nextLettersSize); void getVersionNumber(); bool checkIfDictVersionIsLatest(); int getAddress(int *pos); @@ -70,9 +73,9 @@ private: bool addWordBigram(unsigned short *word, int length, int frequency); unsigned short toLowerCase(unsigned short c); void getWordsRec(int pos, int depth, int maxDepth, bool completion, int frequency, - int inputIndex, int diffs); + int inputIndex, int diffs, int skipPos, int *nextLetters, int nextLettersSize); int isValidWordRec(int pos, unsigned short *word, int offset, int length); - void registerNextLetter(unsigned short c); + void registerNextLetter(unsigned short c, int *nextLetters, int nextLettersSize); unsigned char *mDict; void *mAsset; @@ -88,13 +91,10 @@ private: int mInputLength; int mMaxAlternatives; unsigned short mWord[128]; - int mSkipPos; int mMaxEditDistance; int mFullWordMultiplier; int mTypedLetterMultiplier; - int *mNextLettersFrequencies; - int mNextLettersSize; int mVersion; int mBigram; }; |