2013-06-11 04:01:49 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013, 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.
|
|
|
|
*/
|
|
|
|
|
2013-08-13 12:22:40 +01:00
|
|
|
#ifndef LATINIME_HEADER_POLICY_H
|
|
|
|
#define LATINIME_HEADER_POLICY_H
|
2013-06-11 04:01:49 +01:00
|
|
|
|
2013-08-13 04:26:01 +01:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2013-06-11 04:01:49 +01:00
|
|
|
#include "defines.h"
|
2013-08-13 12:22:40 +01:00
|
|
|
#include "suggest/core/policy/dictionary_header_structure_policy.h"
|
2013-09-18 10:27:01 +01:00
|
|
|
#include "suggest/policyimpl/dictionary/header/header_read_write_utils.h"
|
2013-09-18 10:08:33 +01:00
|
|
|
#include "suggest/policyimpl/dictionary/utils/format_utils.h"
|
2013-06-11 04:01:49 +01:00
|
|
|
|
|
|
|
namespace latinime {
|
|
|
|
|
2013-08-13 12:22:40 +01:00
|
|
|
class HeaderPolicy : public DictionaryHeaderStructurePolicy {
|
2013-06-11 04:01:49 +01:00
|
|
|
public:
|
2013-09-26 02:45:03 +01:00
|
|
|
// Reads information from existing dictionary buffer.
|
|
|
|
HeaderPolicy(const uint8_t *const dictBuf, const int dictSize)
|
|
|
|
: mDictFormatVersion(FormatUtils::detectFormatVersion(dictBuf, dictSize)),
|
2013-09-18 10:08:33 +01:00
|
|
|
mDictionaryFlags(HeaderReadWriteUtils::getFlags(dictBuf)),
|
|
|
|
mSize(HeaderReadWriteUtils::getHeaderSize(dictBuf)),
|
2013-09-26 02:45:03 +01:00
|
|
|
mAttributeMap(createAttributeMapAndReadAllAttributes(dictBuf)),
|
2013-09-05 04:28:38 +01:00
|
|
|
mMultiWordCostMultiplier(readMultipleWordCostMultiplier()),
|
|
|
|
mUsesForgettingCurve(readUsesForgettingCurveFlag()),
|
|
|
|
mLastUpdatedTime(readLastUpdatedTime()) {}
|
2013-08-13 12:22:40 +01:00
|
|
|
|
2013-09-26 02:45:03 +01:00
|
|
|
// Constructs header information using an attribute map.
|
|
|
|
HeaderPolicy(const FormatUtils::FORMAT_VERSION dictFormatVersion,
|
|
|
|
const HeaderReadWriteUtils::AttributeMap *const attributeMap)
|
|
|
|
: mDictFormatVersion(dictFormatVersion),
|
|
|
|
mDictionaryFlags(HeaderReadWriteUtils::createAndGetDictionaryFlagsUsingAttributeMap(
|
|
|
|
attributeMap)), mSize(0), mAttributeMap(*attributeMap),
|
|
|
|
mMultiWordCostMultiplier(readUsesForgettingCurveFlag()),
|
|
|
|
mUsesForgettingCurve(readUsesForgettingCurveFlag()),
|
|
|
|
mLastUpdatedTime(readLastUpdatedTime()) {}
|
|
|
|
|
2013-08-13 12:22:40 +01:00
|
|
|
~HeaderPolicy() {}
|
2013-06-11 04:01:49 +01:00
|
|
|
|
|
|
|
AK_FORCE_INLINE int getSize() const {
|
|
|
|
return mSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
AK_FORCE_INLINE bool supportsDynamicUpdate() const {
|
2013-09-18 10:08:33 +01:00
|
|
|
return HeaderReadWriteUtils::supportsDynamicUpdate(mDictionaryFlags);
|
2013-06-11 04:01:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
AK_FORCE_INLINE bool requiresGermanUmlautProcessing() const {
|
2013-09-18 10:08:33 +01:00
|
|
|
return HeaderReadWriteUtils::requiresGermanUmlautProcessing(mDictionaryFlags);
|
2013-06-11 04:01:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
AK_FORCE_INLINE bool requiresFrenchLigatureProcessing() const {
|
2013-09-18 10:08:33 +01:00
|
|
|
return HeaderReadWriteUtils::requiresFrenchLigatureProcessing(mDictionaryFlags);
|
2013-06-11 04:01:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
AK_FORCE_INLINE float getMultiWordCostMultiplier() const {
|
|
|
|
return mMultiWordCostMultiplier;
|
|
|
|
}
|
|
|
|
|
2013-09-05 04:28:38 +01:00
|
|
|
AK_FORCE_INLINE bool usesForgettingCurve() const {
|
|
|
|
return mUsesForgettingCurve;
|
|
|
|
}
|
|
|
|
|
|
|
|
AK_FORCE_INLINE int getLastUpdatedTime() const {
|
|
|
|
return mLastUpdatedTime;
|
|
|
|
}
|
|
|
|
|
2013-09-04 11:00:53 +01:00
|
|
|
void readHeaderValueOrQuestionMark(const char *const key,
|
|
|
|
int *outValue, int outValueSize) const;
|
2013-06-27 09:31:13 +01:00
|
|
|
|
2013-09-18 10:08:33 +01:00
|
|
|
bool writeHeaderToBuffer(BufferWithExtendableBuffer *const bufferToWrite,
|
|
|
|
const bool updatesLastUpdatedTime) const;
|
|
|
|
|
2013-06-11 04:01:49 +01:00
|
|
|
private:
|
2013-08-13 12:22:40 +01:00
|
|
|
DISALLOW_IMPLICIT_CONSTRUCTORS(HeaderPolicy);
|
2013-06-11 04:01:49 +01:00
|
|
|
|
|
|
|
static const char *const MULTIPLE_WORDS_DEMOTION_RATE_KEY;
|
2013-09-05 04:28:38 +01:00
|
|
|
static const char *const USES_FORGETTING_CURVE_KEY;
|
|
|
|
static const char *const LAST_UPDATED_TIME_KEY;
|
2013-09-26 02:45:03 +01:00
|
|
|
static const int DEFAULT_MULTIPLE_WORDS_DEMOTION_RATE;
|
2013-09-04 11:00:53 +01:00
|
|
|
static const float MULTIPLE_WORD_COST_MULTIPLIER_SCALE;
|
2013-06-11 04:01:49 +01:00
|
|
|
|
2013-09-18 10:08:33 +01:00
|
|
|
const FormatUtils::FORMAT_VERSION mDictFormatVersion;
|
|
|
|
const HeaderReadWriteUtils::DictionaryFlags mDictionaryFlags;
|
2013-06-11 04:01:49 +01:00
|
|
|
const int mSize;
|
2013-09-18 10:08:33 +01:00
|
|
|
HeaderReadWriteUtils::AttributeMap mAttributeMap;
|
2013-06-11 04:01:49 +01:00
|
|
|
const float mMultiWordCostMultiplier;
|
2013-09-05 04:28:38 +01:00
|
|
|
const bool mUsesForgettingCurve;
|
|
|
|
const int mLastUpdatedTime;
|
2013-06-11 04:01:49 +01:00
|
|
|
|
2013-09-04 11:00:53 +01:00
|
|
|
float readMultipleWordCostMultiplier() const;
|
|
|
|
|
2013-09-05 04:28:38 +01:00
|
|
|
bool readUsesForgettingCurveFlag() const;
|
|
|
|
|
|
|
|
int readLastUpdatedTime() const;
|
|
|
|
|
2013-09-18 10:08:33 +01:00
|
|
|
static HeaderReadWriteUtils::AttributeMap createAttributeMapAndReadAllAttributes(
|
2013-09-04 11:00:53 +01:00
|
|
|
const uint8_t *const dictBuf);
|
|
|
|
};
|
2013-06-11 04:01:49 +01:00
|
|
|
} // namespace latinime
|
2013-08-13 12:22:40 +01:00
|
|
|
#endif /* LATINIME_HEADER_POLICY_H */
|