2007-07-19 07:26:51 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* 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/. */
|
2007-07-19 07:26:51 +04:00
|
|
|
|
|
|
|
#include "nsComplexBreaker.h"
|
|
|
|
|
|
|
|
#include <pango/pango-break.h>
|
|
|
|
#include "nsUTF8Utils.h"
|
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsTArray.h"
|
|
|
|
|
2014-01-04 19:02:17 +04:00
|
|
|
void NS_GetComplexLineBreaks(const char16_t* aText, uint32_t aLength,
|
2012-08-22 19:56:38 +04:00
|
|
|
uint8_t* aBreakBefore) {
|
2007-07-19 07:26:51 +04:00
|
|
|
NS_ASSERTION(aText, "aText shouldn't be null");
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
memset(aBreakBefore, false, aLength * sizeof(uint8_t));
|
2007-09-04 07:58:52 +04:00
|
|
|
|
2016-02-02 18:36:30 +03:00
|
|
|
AutoTArray<PangoLogAttr, 2000> attrBuffer;
|
2020-04-24 16:31:14 +03:00
|
|
|
// XXX(Bug 1631371) Check if this should use a fallible operation as it
|
|
|
|
// pretended earlier.
|
|
|
|
attrBuffer.AppendElements(aLength + 1);
|
2007-07-19 07:26:51 +04:00
|
|
|
|
|
|
|
NS_ConvertUTF16toUTF8 aUTF8(aText, aLength);
|
|
|
|
|
|
|
|
const gchar* p = aUTF8.Data();
|
|
|
|
const gchar* end = p + aUTF8.Length();
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t u16Offset = 0;
|
2007-07-19 07:26:51 +04:00
|
|
|
|
|
|
|
static PangoLanguage* language = pango_language_from_string("en");
|
|
|
|
|
|
|
|
while (p < end) {
|
|
|
|
PangoLogAttr* attr = attrBuffer.Elements();
|
|
|
|
pango_get_log_attrs(p, end - p, -1, language, attr, attrBuffer.Length());
|
|
|
|
|
|
|
|
while (p < end) {
|
|
|
|
aBreakBefore[u16Offset] = attr->is_line_break;
|
|
|
|
if (NS_IS_LOW_SURROGATE(aText[u16Offset]))
|
2011-10-17 18:59:28 +04:00
|
|
|
aBreakBefore[++u16Offset] = false; // Skip high surrogate
|
2007-07-19 07:26:51 +04:00
|
|
|
++u16Offset;
|
|
|
|
|
2018-07-06 10:44:43 +03:00
|
|
|
// We're iterating over text obtained from NS_ConvertUTF16toUTF8,
|
|
|
|
// so we know we have valid UTF-8 and don't need to check for
|
|
|
|
// errors.
|
|
|
|
uint32_t ch = UTF8CharEnumerator::NextChar(&p, end);
|
2007-07-19 07:26:51 +04:00
|
|
|
++attr;
|
|
|
|
|
2018-07-06 10:44:43 +03:00
|
|
|
if (!ch) {
|
2007-07-19 07:26:51 +04:00
|
|
|
// pango_break (pango 1.16.2) only analyses text before the
|
|
|
|
// first NUL (but sets one extra attr). Workaround loop to call
|
|
|
|
// pango_break again to analyse after the NUL is done somewhere else
|
2015-05-20 18:44:09 +03:00
|
|
|
// (gfx/thebes/gfxFontconfigFonts.cpp: SetupClusterBoundaries()).
|
2007-07-19 07:26:51 +04:00
|
|
|
// So, we do the same here for pango_get_log_attrs.
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|