2010-12-01 12:22:15 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2010 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef LATINIME_BIGRAM_DICTIONARY_H
|
|
|
|
#define LATINIME_BIGRAM_DICTIONARY_H
|
|
|
|
|
2012-05-02 07:00:24 +00:00
|
|
|
#include <map>
|
2012-04-17 02:38:44 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2012-05-02 10:05:27 +00:00
|
|
|
#include "defines.h"
|
|
|
|
|
2010-12-01 12:22:15 +00:00
|
|
|
namespace latinime {
|
|
|
|
|
|
|
|
class BigramDictionary {
|
2012-01-06 03:24:38 +00:00
|
|
|
public:
|
2012-07-11 02:31:48 +00:00
|
|
|
BigramDictionary(const unsigned char *dict, int maxWordLength, int maxPredictions);
|
2012-10-29 09:06:22 +00:00
|
|
|
int getBigrams(const int *word, int length, int *inputCodes, int codesSize, int *outWords,
|
|
|
|
int *frequencies, int *outputTypes) const;
|
|
|
|
void fillBigramAddressToFrequencyMapAndFilter(const int *prevWord, const int prevWordLength,
|
2012-06-14 23:35:23 +00:00
|
|
|
std::map<int, int> *map, uint8_t *filter) const;
|
2012-10-29 09:06:22 +00:00
|
|
|
bool isValidBigram(const int *word1, int length1, const int *word2, int length2) const;
|
2010-12-01 12:22:15 +00:00
|
|
|
~BigramDictionary();
|
2012-01-06 03:24:38 +00:00
|
|
|
private:
|
2012-06-14 18:25:50 +00:00
|
|
|
DISALLOW_IMPLICIT_CONSTRUCTORS(BigramDictionary);
|
2012-10-29 09:06:22 +00:00
|
|
|
bool addWordBigram(int *word, int length, int frequency, int *bigramFreq, int *bigramCodePoints,
|
|
|
|
int *outputTypes) const;
|
2010-12-02 09:11:54 +00:00
|
|
|
int getBigramAddress(int *pos, bool advance);
|
|
|
|
int getBigramFreq(int *pos);
|
|
|
|
void searchForTerminalNode(int addressLookingFor, int frequency);
|
|
|
|
bool getFirstBitOfByte(int *pos) { return (DICT[*pos] & 0x80) > 0; }
|
|
|
|
bool getSecondBitOfByte(int *pos) { return (DICT[*pos] & 0x40) > 0; }
|
2012-10-29 09:06:22 +00:00
|
|
|
bool checkFirstCharacter(int *word, int *inputCodes) const;
|
|
|
|
int getBigramListPositionForWord(const int *prevWord, const int prevWordLength,
|
2012-08-17 04:06:28 +00:00
|
|
|
const bool forceLowerCaseSearch) const;
|
2010-12-02 09:11:54 +00:00
|
|
|
|
|
|
|
const unsigned char *DICT;
|
|
|
|
const int MAX_WORD_LENGTH;
|
2012-07-11 02:31:48 +00:00
|
|
|
const int MAX_PREDICTIONS;
|
2012-03-28 09:21:04 +00:00
|
|
|
// TODO: Re-implement proximity correction for bigram correction
|
|
|
|
static const int MAX_ALTERNATIVES = 1;
|
2010-12-01 12:22:15 +00:00
|
|
|
};
|
2011-06-18 04:09:55 +00:00
|
|
|
} // namespace latinime
|
2010-12-01 12:22:15 +00:00
|
|
|
#endif // LATINIME_BIGRAM_DICTIONARY_H
|