1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
|
/*
* Copyright (C) 2006 Lars Knoll <lars@trolltech.com>
* Copyright (C) 2007 Apple Inc. All rights reserved.
* Copyright (C) 2008 Jürg Billeter <j@bitron.ch>
* Copyright (C) 2008 Dominik Röttsches <dominik.roettsches@access-company.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
*/
#include "config.h"
#include "GOwnPtr.h"
#include "TextBreakIterator.h"
#include <pango/pango.h>
namespace WebCore {
enum UBreakIteratorType {
UBRK_CHARACTER,
UBRK_WORD,
UBRK_LINE,
UBRK_SENTENCE
};
class TextBreakIterator {
public:
UBreakIteratorType m_type;
int m_length;
PangoLogAttr* m_logAttrs;
int m_index;
};
static TextBreakIterator* setUpIterator(bool& createdIterator, TextBreakIterator*& iterator,
UBreakIteratorType type, const UChar* string, int length)
{
if (!string)
return 0;
if (!createdIterator) {
iterator = new TextBreakIterator();
createdIterator = true;
}
if (!iterator)
return 0;
long utf8len;
GOwnPtr<char> utf8;
utf8.set(g_utf16_to_utf8(string, length, 0, &utf8len, 0));
// FIXME: assumes no surrogate pairs
iterator->m_type = type;
iterator->m_length = length;
if (createdIterator)
g_free(iterator->m_logAttrs);
iterator->m_logAttrs = g_new0(PangoLogAttr, length + 1);
iterator->m_index = -1;
pango_get_log_attrs(utf8.get(), utf8len, -1, 0, iterator->m_logAttrs, length + 1);
return iterator;
}
TextBreakIterator* characterBreakIterator(const UChar* string, int length)
{
static bool createdCharacterBreakIterator = false;
static TextBreakIterator* staticCharacterBreakIterator;
return setUpIterator(createdCharacterBreakIterator, staticCharacterBreakIterator, UBRK_CHARACTER, string, length);
}
TextBreakIterator* cursorMovementIterator(const UChar* string, int length)
{
// FIXME: This needs closer inspection to achieve behaviour identical to the ICU version.
return characterBreakIterator(string, length);
}
TextBreakIterator* wordBreakIterator(const UChar* string, int length)
{
static bool createdWordBreakIterator = false;
static TextBreakIterator* staticWordBreakIterator;
return setUpIterator(createdWordBreakIterator, staticWordBreakIterator, UBRK_WORD, string, length);
}
TextBreakIterator* lineBreakIterator(const UChar* string, int length)
{
static bool createdLineBreakIterator = false;
static TextBreakIterator* staticLineBreakIterator;
return setUpIterator(createdLineBreakIterator, staticLineBreakIterator, UBRK_LINE, string, length);
}
TextBreakIterator* sentenceBreakIterator(const UChar* string, int length)
{
static bool createdSentenceBreakIterator = false;
static TextBreakIterator* staticSentenceBreakIterator;
return setUpIterator(createdSentenceBreakIterator, staticSentenceBreakIterator, UBRK_SENTENCE, string, length);
}
int textBreakFirst(TextBreakIterator* bi)
{
// see textBreakLast
int firstCursorPosition = -1;
int pos = 0;
while (pos <= bi->m_length && (firstCursorPosition < 0)) {
if (bi->m_logAttrs[pos].is_cursor_position)
firstCursorPosition = pos;
}
bi->m_index = firstCursorPosition;
return firstCursorPosition;
}
int textBreakLast(TextBreakIterator* bi)
{
// TextBreakLast is not meant to find just any break according to bi->m_type
// but really the one near the last character.
// (cmp ICU documentation for ubrk_first and ubrk_last)
// From ICU docs for ubrk_last:
// "Determine the index immediately beyond the last character in the text being scanned."
// So we should advance or traverse back based on bi->m_logAttrs cursor positions.
// If last character position in the original string is a whitespace,
// traverse to the left until the first non-white character position is found
// and return the position of the first white-space char after this one.
// Otherwise return m_length, as "the first character beyond the last" is outside our string.
bool whiteSpaceAtTheEnd = true;
int nextWhiteSpacePos = bi->m_length;
int pos = bi->m_length;
while (pos >= 0 && whiteSpaceAtTheEnd) {
if (bi->m_logAttrs[pos].is_cursor_position) {
if (whiteSpaceAtTheEnd = bi->m_logAttrs[pos].is_white)
nextWhiteSpacePos = pos;
}
pos--;
}
bi->m_index = nextWhiteSpacePos;
return nextWhiteSpacePos;
}
int textBreakNext(TextBreakIterator* bi)
{
for (int i = bi->m_index + 1; i <= bi->m_length; i++) {
// FIXME: UBRK_WORD case: Single multibyte characters (i.e. white space around them), such as the euro symbol €,
// are not marked as word_start & word_end as opposed to the way ICU does it.
// This leads to - for example - different word selection behaviour when right clicking.
if ((bi->m_type == UBRK_LINE && bi->m_logAttrs[i].is_line_break)
|| (bi->m_type == UBRK_WORD && (bi->m_logAttrs[i].is_word_start || bi->m_logAttrs[i].is_word_end))
|| (bi->m_type == UBRK_CHARACTER && bi->m_logAttrs[i].is_cursor_position)
|| (bi->m_type == UBRK_SENTENCE && (bi->m_logAttrs[i].is_sentence_start || bi->m_logAttrs[i].is_sentence_end)) ) {
bi->m_index = i;
return i;
}
}
return TextBreakDone;
}
int textBreakPrevious(TextBreakIterator* bi)
{
for (int i = bi->m_index - 1; i >= 0; i--) {
if ((bi->m_type == UBRK_LINE && bi->m_logAttrs[i].is_line_break)
|| (bi->m_type == UBRK_WORD && (bi->m_logAttrs[i].is_word_start || bi->m_logAttrs[i].is_word_end))
|| (bi->m_type == UBRK_CHARACTER && bi->m_logAttrs[i].is_cursor_position)
|| (bi->m_type == UBRK_SENTENCE && (bi->m_logAttrs[i].is_sentence_start || bi->m_logAttrs[i].is_sentence_end)) ) {
bi->m_index = i;
return i;
}
}
return textBreakFirst(bi);
}
int textBreakPreceding(TextBreakIterator* bi, int pos)
{
bi->m_index = pos;
return textBreakPrevious(bi);
}
int textBreakFollowing(TextBreakIterator* bi, int pos)
{
if (pos < 0)
pos = -1;
bi->m_index = pos;
return textBreakNext(bi);
}
int textBreakCurrent(TextBreakIterator* bi)
{
return bi->m_index;
}
bool isTextBreak(TextBreakIterator* bi, int pos)
{
if (bi->m_index < 0)
return false;
return ((bi->m_type == UBRK_LINE && bi->m_logAttrs[bi->m_index].is_line_break)
|| (bi->m_type == UBRK_WORD && bi->m_logAttrs[bi->m_index].is_word_end)
|| (bi->m_type == UBRK_CHARACTER && bi->m_logAttrs[bi->m_index].is_char_break)
|| (bi->m_type == UBRK_SENTENCE && bi->m_logAttrs[bi->m_index].is_sentence_end) );
}
}
|