mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
Merge "Add TrieMap.save()." into lmp-dev
This commit is contained in:
commit
3437032a91
@ -16,6 +16,8 @@
|
||||
|
||||
#include "suggest/policyimpl/dictionary/utils/trie_map.h"
|
||||
|
||||
#include "suggest/policyimpl/dictionary/utils/dict_file_writing_utils.h"
|
||||
|
||||
namespace latinime {
|
||||
|
||||
const int TrieMap::INVALID_INDEX = -1;
|
||||
@ -98,6 +100,11 @@ bool TrieMap::put(const int key, const uint64_t value, const int bitmapEntryInde
|
||||
return putInternal(unsignedKey, value, getBitShuffledKey(unsignedKey), bitmapEntryIndex,
|
||||
readEntry(bitmapEntryIndex), 0 /* level */);
|
||||
}
|
||||
|
||||
bool TrieMap::save(FILE *const file) const {
|
||||
return DictFileWritingUtils::writeBufferToFileTail(file, &mBuffer);
|
||||
}
|
||||
|
||||
/**
|
||||
* Iterate next entry in a certain level.
|
||||
*
|
||||
|
@ -19,6 +19,7 @@
|
||||
|
||||
#include <climits>
|
||||
#include <cstdint>
|
||||
#include <cstdio>
|
||||
#include <vector>
|
||||
|
||||
#include "defines.h"
|
||||
@ -192,6 +193,8 @@ class TrieMap {
|
||||
return TrieMapRange(this, bitmapEntryIndex);
|
||||
}
|
||||
|
||||
bool save(FILE *const file) const;
|
||||
|
||||
private:
|
||||
DISALLOW_COPY_AND_ASSIGN(TrieMap);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user