am 88af9eb8: Add willBecomeNonTerminal flag.
* commit '88af9eb862bf12b6d72f3d595708bd530ea03bfa': Add willBecomeNonTerminal flag.main
commit
af049b4556
|
@ -114,6 +114,10 @@ class PtNodeParams {
|
||||||
return DynamicPatriciaTrieReadingUtils::isDeleted(mFlags);
|
return DynamicPatriciaTrieReadingUtils::isDeleted(mFlags);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
AK_FORCE_INLINE bool willBecomeNonTerminal() const {
|
||||||
|
return DynamicPatriciaTrieReadingUtils::willBecomeNonTerminal(mFlags);
|
||||||
|
}
|
||||||
|
|
||||||
AK_FORCE_INLINE bool hasChildren() const {
|
AK_FORCE_INLINE bool hasChildren() const {
|
||||||
return mChildrenPos != NOT_A_DICT_POS;
|
return mChildrenPos != NOT_A_DICT_POS;
|
||||||
}
|
}
|
||||||
|
|
|
@ -48,6 +48,9 @@ class PtNodeWriter {
|
||||||
virtual bool markPtNodeAsMoved(const PtNodeParams *const toBeUpdatedPtNodeParams,
|
virtual bool markPtNodeAsMoved(const PtNodeParams *const toBeUpdatedPtNodeParams,
|
||||||
const int movedPos, const int bigramLinkedNodePos) = 0;
|
const int movedPos, const int bigramLinkedNodePos) = 0;
|
||||||
|
|
||||||
|
virtual bool markPtNodeAsWillBecomeNonTerminal(
|
||||||
|
const PtNodeParams *const toBeUpdatedPtNodeParams) = 0;
|
||||||
|
|
||||||
virtual bool updatePtNodeProbability(const PtNodeParams *const toBeUpdatedPtNodeParams,
|
virtual bool updatePtNodeProbability(const PtNodeParams *const toBeUpdatedPtNodeParams,
|
||||||
const int probability, const int timestamp) = 0;
|
const int probability, const int timestamp) = 0;
|
||||||
|
|
||||||
|
|
|
@ -42,6 +42,10 @@ bool DynamicPatriciaTrieGcEventListeners
|
||||||
}
|
}
|
||||||
if (!ForgettingCurveUtils::isValidEncodedProbability(newProbability)) {
|
if (!ForgettingCurveUtils::isValidEncodedProbability(newProbability)) {
|
||||||
isUselessPtNode = true;
|
isUselessPtNode = true;
|
||||||
|
if (!mPtNodeWriter->markPtNodeAsWillBecomeNonTerminal(ptNodeParams)) {
|
||||||
|
AKLOGE("Cannot mark PtNode as willBecomeNonTerminal.");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (mChildrenValue > 0) {
|
if (mChildrenValue > 0) {
|
||||||
|
|
|
@ -27,6 +27,7 @@ const DptReadingUtils::NodeFlags DptReadingUtils::MASK_MOVED = 0xC0;
|
||||||
const DptReadingUtils::NodeFlags DptReadingUtils::FLAG_IS_NOT_MOVED = 0xC0;
|
const DptReadingUtils::NodeFlags DptReadingUtils::FLAG_IS_NOT_MOVED = 0xC0;
|
||||||
const DptReadingUtils::NodeFlags DptReadingUtils::FLAG_IS_MOVED = 0x40;
|
const DptReadingUtils::NodeFlags DptReadingUtils::FLAG_IS_MOVED = 0x40;
|
||||||
const DptReadingUtils::NodeFlags DptReadingUtils::FLAG_IS_DELETED = 0x80;
|
const DptReadingUtils::NodeFlags DptReadingUtils::FLAG_IS_DELETED = 0x80;
|
||||||
|
const DptReadingUtils::NodeFlags DptReadingUtils::FLAG_WILL_BECOME_NON_TERMINAL = 0x00;
|
||||||
|
|
||||||
// TODO: Make DICT_OFFSET_ZERO_OFFSET = 0.
|
// TODO: Make DICT_OFFSET_ZERO_OFFSET = 0.
|
||||||
// Currently, DICT_OFFSET_INVALID is 0 in Java side but offset can be 0 during GC. So, the maximum
|
// Currently, DICT_OFFSET_INVALID is 0 in Java side but offset can be 0 during GC. So, the maximum
|
||||||
|
|
|
@ -54,12 +54,19 @@ class DynamicPatriciaTrieReadingUtils {
|
||||||
return FLAG_IS_DELETED == (MASK_MOVED & flags);
|
return FLAG_IS_DELETED == (MASK_MOVED & flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static AK_FORCE_INLINE bool willBecomeNonTerminal(const NodeFlags flags) {
|
||||||
|
return FLAG_WILL_BECOME_NON_TERMINAL == (MASK_MOVED & flags);
|
||||||
|
}
|
||||||
|
|
||||||
static AK_FORCE_INLINE NodeFlags updateAndGetFlags(const NodeFlags originalFlags,
|
static AK_FORCE_INLINE NodeFlags updateAndGetFlags(const NodeFlags originalFlags,
|
||||||
const bool isMoved, const bool isDeleted) {
|
const bool isMoved, const bool isDeleted, const bool willBecomeNonTerminal) {
|
||||||
NodeFlags flags = originalFlags;
|
NodeFlags flags = originalFlags;
|
||||||
|
flags = willBecomeNonTerminal ?
|
||||||
|
((flags & (~MASK_MOVED)) | FLAG_WILL_BECOME_NON_TERMINAL) : flags;
|
||||||
flags = isMoved ? ((flags & (~MASK_MOVED)) | FLAG_IS_MOVED) : flags;
|
flags = isMoved ? ((flags & (~MASK_MOVED)) | FLAG_IS_MOVED) : flags;
|
||||||
flags = isDeleted ? ((flags & (~MASK_MOVED)) | FLAG_IS_DELETED) : flags;
|
flags = isDeleted ? ((flags & (~MASK_MOVED)) | FLAG_IS_DELETED) : flags;
|
||||||
flags = (!isMoved && !isDeleted) ? ((flags & (~MASK_MOVED)) | FLAG_IS_NOT_MOVED) : flags;
|
flags = (!isMoved && !isDeleted && !willBecomeNonTerminal) ?
|
||||||
|
((flags & (~MASK_MOVED)) | FLAG_IS_NOT_MOVED) : flags;
|
||||||
return flags;
|
return flags;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -70,6 +77,7 @@ class DynamicPatriciaTrieReadingUtils {
|
||||||
static const NodeFlags FLAG_IS_NOT_MOVED;
|
static const NodeFlags FLAG_IS_NOT_MOVED;
|
||||||
static const NodeFlags FLAG_IS_MOVED;
|
static const NodeFlags FLAG_IS_MOVED;
|
||||||
static const NodeFlags FLAG_IS_DELETED;
|
static const NodeFlags FLAG_IS_DELETED;
|
||||||
|
static const NodeFlags FLAG_WILL_BECOME_NON_TERMINAL;
|
||||||
};
|
};
|
||||||
} // namespace latinime
|
} // namespace latinime
|
||||||
#endif /* LATINIME_DYNAMIC_PATRICIA_TRIE_READING_UTILS_H */
|
#endif /* LATINIME_DYNAMIC_PATRICIA_TRIE_READING_UTILS_H */
|
||||||
|
|
|
@ -44,7 +44,7 @@ bool Ver4PatriciaTrieNodeWriter::markPtNodeAsDeleted(
|
||||||
PatriciaTrieReadingUtils::getFlagsAndAdvancePosition(dictBuf, &pos);
|
PatriciaTrieReadingUtils::getFlagsAndAdvancePosition(dictBuf, &pos);
|
||||||
const PatriciaTrieReadingUtils::NodeFlags updatedFlags =
|
const PatriciaTrieReadingUtils::NodeFlags updatedFlags =
|
||||||
DynamicPatriciaTrieReadingUtils::updateAndGetFlags(originalFlags, false /* isMoved */,
|
DynamicPatriciaTrieReadingUtils::updateAndGetFlags(originalFlags, false /* isMoved */,
|
||||||
true /* isDeleted */);
|
true /* isDeleted */, false /* willBecomeNonTerminal */);
|
||||||
int writingPos = toBeUpdatedPtNodeParams->getHeadPos();
|
int writingPos = toBeUpdatedPtNodeParams->getHeadPos();
|
||||||
// Update flags.
|
// Update flags.
|
||||||
if (!DynamicPatriciaTrieWritingUtils::writeFlagsAndAdvancePosition(mTrieBuffer, updatedFlags,
|
if (!DynamicPatriciaTrieWritingUtils::writeFlagsAndAdvancePosition(mTrieBuffer, updatedFlags,
|
||||||
|
@ -74,7 +74,7 @@ bool Ver4PatriciaTrieNodeWriter::markPtNodeAsMoved(
|
||||||
PatriciaTrieReadingUtils::getFlagsAndAdvancePosition(dictBuf, &pos);
|
PatriciaTrieReadingUtils::getFlagsAndAdvancePosition(dictBuf, &pos);
|
||||||
const PatriciaTrieReadingUtils::NodeFlags updatedFlags =
|
const PatriciaTrieReadingUtils::NodeFlags updatedFlags =
|
||||||
DynamicPatriciaTrieReadingUtils::updateAndGetFlags(originalFlags, true /* isMoved */,
|
DynamicPatriciaTrieReadingUtils::updateAndGetFlags(originalFlags, true /* isMoved */,
|
||||||
false /* isDeleted */);
|
false /* isDeleted */, false /* willBecomeNonTerminal */);
|
||||||
int writingPos = toBeUpdatedPtNodeParams->getHeadPos();
|
int writingPos = toBeUpdatedPtNodeParams->getHeadPos();
|
||||||
// Update flags.
|
// Update flags.
|
||||||
if (!DynamicPatriciaTrieWritingUtils::writeFlagsAndAdvancePosition(mTrieBuffer, updatedFlags,
|
if (!DynamicPatriciaTrieWritingUtils::writeFlagsAndAdvancePosition(mTrieBuffer, updatedFlags,
|
||||||
|
@ -106,6 +106,26 @@ bool Ver4PatriciaTrieNodeWriter::markPtNodeAsMoved(
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool Ver4PatriciaTrieNodeWriter::markPtNodeAsWillBecomeNonTerminal(
|
||||||
|
const PtNodeParams *const toBeUpdatedPtNodeParams) {
|
||||||
|
int pos = toBeUpdatedPtNodeParams->getHeadPos();
|
||||||
|
const bool usesAdditionalBuffer = mTrieBuffer->isInAdditionalBuffer(pos);
|
||||||
|
const uint8_t *const dictBuf = mTrieBuffer->getBuffer(usesAdditionalBuffer);
|
||||||
|
if (usesAdditionalBuffer) {
|
||||||
|
pos -= mTrieBuffer->getOriginalBufferSize();
|
||||||
|
}
|
||||||
|
// Read original flags
|
||||||
|
const PatriciaTrieReadingUtils::NodeFlags originalFlags =
|
||||||
|
PatriciaTrieReadingUtils::getFlagsAndAdvancePosition(dictBuf, &pos);
|
||||||
|
const PatriciaTrieReadingUtils::NodeFlags updatedFlags =
|
||||||
|
DynamicPatriciaTrieReadingUtils::updateAndGetFlags(originalFlags, false /* isMoved */,
|
||||||
|
false /* isDeleted */, true /* willBecomeNonTerminal */);
|
||||||
|
int writingPos = toBeUpdatedPtNodeParams->getHeadPos();
|
||||||
|
// Update flags.
|
||||||
|
return DynamicPatriciaTrieWritingUtils::writeFlagsAndAdvancePosition(mTrieBuffer, updatedFlags,
|
||||||
|
&writingPos);
|
||||||
|
}
|
||||||
|
|
||||||
bool Ver4PatriciaTrieNodeWriter::updatePtNodeProbability(
|
bool Ver4PatriciaTrieNodeWriter::updatePtNodeProbability(
|
||||||
const PtNodeParams *const toBeUpdatedPtNodeParams, const int newProbability,
|
const PtNodeParams *const toBeUpdatedPtNodeParams, const int newProbability,
|
||||||
const int timestamp) {
|
const int timestamp) {
|
||||||
|
@ -281,12 +301,14 @@ bool Ver4PatriciaTrieNodeWriter::writePtNodeAndGetTerminalIdAndAdvancePosition(
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
int terminalId = Ver4DictConstants::NOT_A_TERMINAL_ID;
|
int terminalId = Ver4DictConstants::NOT_A_TERMINAL_ID;
|
||||||
if (ptNodeParams->getTerminalId() != Ver4DictConstants::NOT_A_TERMINAL_ID) {
|
if (!ptNodeParams->willBecomeNonTerminal()) {
|
||||||
terminalId = ptNodeParams->getTerminalId();
|
if (ptNodeParams->getTerminalId() != Ver4DictConstants::NOT_A_TERMINAL_ID) {
|
||||||
} else if (ptNodeParams->isTerminal()) {
|
terminalId = ptNodeParams->getTerminalId();
|
||||||
// Write terminal information using a new terminal id.
|
} else if (ptNodeParams->isTerminal()) {
|
||||||
// Get a new unused terminal id.
|
// Write terminal information using a new terminal id.
|
||||||
terminalId = mBuffers->getTerminalPositionLookupTable()->getNextTerminalId();
|
// Get a new unused terminal id.
|
||||||
|
terminalId = mBuffers->getTerminalPositionLookupTable()->getNextTerminalId();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
const int isTerminal = terminalId != Ver4DictConstants::NOT_A_TERMINAL_ID;
|
const int isTerminal = terminalId != Ver4DictConstants::NOT_A_TERMINAL_ID;
|
||||||
if (isTerminal) {
|
if (isTerminal) {
|
||||||
|
|
|
@ -54,6 +54,9 @@ class Ver4PatriciaTrieNodeWriter : public PtNodeWriter {
|
||||||
virtual bool markPtNodeAsMoved(const PtNodeParams *const toBeUpdatedPtNodeParams,
|
virtual bool markPtNodeAsMoved(const PtNodeParams *const toBeUpdatedPtNodeParams,
|
||||||
const int movedPos, const int bigramLinkedNodePos);
|
const int movedPos, const int bigramLinkedNodePos);
|
||||||
|
|
||||||
|
virtual bool markPtNodeAsWillBecomeNonTerminal(
|
||||||
|
const PtNodeParams *const toBeUpdatedPtNodeParams);
|
||||||
|
|
||||||
virtual bool updatePtNodeProbability(const PtNodeParams *const toBeUpdatedPtNodeParams,
|
virtual bool updatePtNodeProbability(const PtNodeParams *const toBeUpdatedPtNodeParams,
|
||||||
const int newProbability, const int timestamp);
|
const int newProbability, const int timestamp);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue