2013-03-01 13:41:30 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2011-05-04 11:29:45 +00:00
|
|
|
|
|
|
|
#include "nsHyphenator.h"
|
|
|
|
#include "nsIFile.h"
|
|
|
|
#include "nsUTF8Utils.h"
|
2012-02-24 10:15:46 +00:00
|
|
|
#include "nsUnicodeProperties.h"
|
2011-05-04 11:29:45 +00:00
|
|
|
#include "nsUnicharUtilCIID.h"
|
2011-10-06 15:06:32 +00:00
|
|
|
#include "nsIURI.h"
|
2011-05-04 11:29:45 +00:00
|
|
|
|
|
|
|
#include "hyphen.h"
|
|
|
|
|
2011-10-06 15:06:32 +00:00
|
|
|
nsHyphenator::nsHyphenator(nsIURI *aURI)
|
2012-07-30 14:20:58 +00:00
|
|
|
: mDict(nullptr)
|
2011-05-04 11:29:45 +00:00
|
|
|
{
|
2011-10-06 15:06:32 +00:00
|
|
|
nsCString uriSpec;
|
|
|
|
nsresult rv = aURI->GetSpec(uriSpec);
|
2011-09-14 19:20:26 +00:00
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
return;
|
|
|
|
}
|
2011-10-06 15:06:32 +00:00
|
|
|
mDict = hnj_hyphen_load(uriSpec.get());
|
2011-05-04 11:29:45 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
if (mDict) {
|
2011-10-06 15:06:32 +00:00
|
|
|
printf("loaded hyphenation patterns from %s\n", uriSpec.get());
|
2011-05-04 11:29:45 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
nsHyphenator::~nsHyphenator()
|
|
|
|
{
|
2012-07-30 14:20:58 +00:00
|
|
|
if (mDict != nullptr) {
|
2011-05-04 11:29:45 +00:00
|
|
|
hnj_hyphen_free((HyphenDict*)mDict);
|
2012-07-30 14:20:58 +00:00
|
|
|
mDict = nullptr;
|
2011-05-04 11:29:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool
|
2011-05-04 11:29:45 +00:00
|
|
|
nsHyphenator::IsValid()
|
|
|
|
{
|
2012-07-30 14:20:58 +00:00
|
|
|
return (mDict != nullptr);
|
2011-05-04 11:29:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsHyphenator::Hyphenate(const nsAString& aString,
|
2014-02-08 18:10:44 +00:00
|
|
|
FallibleTArray<bool>& aHyphens)
|
2011-05-04 11:29:45 +00:00
|
|
|
{
|
|
|
|
if (!aHyphens.SetLength(aString.Length())) {
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
2011-10-17 14:59:28 +00:00
|
|
|
memset(aHyphens.Elements(), false, aHyphens.Length());
|
2011-05-04 11:29:45 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool inWord = false;
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t wordStart = 0, wordLimit = 0;
|
|
|
|
uint32_t chLen;
|
|
|
|
for (uint32_t i = 0; i < aString.Length(); i += chLen) {
|
|
|
|
uint32_t ch = aString[i];
|
2011-07-20 10:15:06 +00:00
|
|
|
chLen = 1;
|
|
|
|
|
|
|
|
if (NS_IS_HIGH_SURROGATE(ch)) {
|
|
|
|
if (i + 1 < aString.Length() && NS_IS_LOW_SURROGATE(aString[i+1])) {
|
|
|
|
ch = SURROGATE_TO_UCS4(ch, aString[i+1]);
|
|
|
|
chLen = 2;
|
|
|
|
} else {
|
|
|
|
NS_WARNING("unpaired surrogate found during hyphenation");
|
|
|
|
}
|
|
|
|
}
|
2011-05-04 11:29:45 +00:00
|
|
|
|
2012-02-24 10:15:46 +00:00
|
|
|
nsIUGenCategory::nsUGenCategory cat = mozilla::unicode::GetGenCategory(ch);
|
2011-05-04 11:29:45 +00:00
|
|
|
if (cat == nsIUGenCategory::kLetter || cat == nsIUGenCategory::kMark) {
|
|
|
|
if (!inWord) {
|
2011-10-17 14:59:28 +00:00
|
|
|
inWord = true;
|
2011-05-04 11:29:45 +00:00
|
|
|
wordStart = i;
|
|
|
|
}
|
2011-07-20 10:15:06 +00:00
|
|
|
wordLimit = i + chLen;
|
|
|
|
if (i + chLen < aString.Length()) {
|
2011-05-04 11:29:45 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (inWord) {
|
2014-01-04 15:02:17 +00:00
|
|
|
const char16_t *begin = aString.BeginReading();
|
2011-07-20 10:15:06 +00:00
|
|
|
NS_ConvertUTF16toUTF8 utf8(begin + wordStart,
|
2011-05-04 11:29:45 +00:00
|
|
|
wordLimit - wordStart);
|
|
|
|
nsAutoTArray<char,200> utf8hyphens;
|
|
|
|
utf8hyphens.SetLength(utf8.Length() + 5);
|
2012-07-30 14:20:58 +00:00
|
|
|
char **rep = nullptr;
|
|
|
|
int *pos = nullptr;
|
|
|
|
int *cut = nullptr;
|
2011-05-04 11:29:45 +00:00
|
|
|
int err = hnj_hyphen_hyphenate2((HyphenDict*)mDict,
|
|
|
|
utf8.BeginReading(), utf8.Length(),
|
2012-07-30 14:20:58 +00:00
|
|
|
utf8hyphens.Elements(), nullptr,
|
2011-05-04 11:29:45 +00:00
|
|
|
&rep, &pos, &cut);
|
|
|
|
if (!err) {
|
2011-07-20 10:15:06 +00:00
|
|
|
// Surprisingly, hnj_hyphen_hyphenate2 converts the 'hyphens' buffer
|
|
|
|
// from utf8 code unit indexing (which would match the utf8 input
|
|
|
|
// string directly) to Unicode character indexing.
|
|
|
|
// We then need to convert this to utf16 code unit offsets for Gecko.
|
|
|
|
const char *hyphPtr = utf8hyphens.Elements();
|
2014-01-04 15:02:17 +00:00
|
|
|
const char16_t *cur = begin + wordStart;
|
|
|
|
const char16_t *end = begin + wordLimit;
|
2011-07-20 10:15:06 +00:00
|
|
|
while (cur < end) {
|
|
|
|
if (*hyphPtr & 0x01) {
|
2011-10-17 14:59:28 +00:00
|
|
|
aHyphens[cur - begin] = true;
|
2011-05-04 11:29:45 +00:00
|
|
|
}
|
2011-07-20 10:15:06 +00:00
|
|
|
cur++;
|
|
|
|
if (cur < end && NS_IS_LOW_SURROGATE(*cur) &&
|
|
|
|
NS_IS_HIGH_SURROGATE(*(cur-1)))
|
|
|
|
{
|
|
|
|
cur++;
|
2011-05-04 11:29:45 +00:00
|
|
|
}
|
2011-07-20 10:15:06 +00:00
|
|
|
hyphPtr++;
|
2011-05-04 11:29:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-17 14:59:28 +00:00
|
|
|
inWord = false;
|
2011-05-04 11:29:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|