LineBreaker.cpp 16.6 KB
Newer Older
R
Raph Levien 已提交
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
/*
 * Copyright (C) 2015 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.
 */

#define VERBOSE_DEBUG 0

#include <limits>

#define LOG_TAG "Minikin"
#include <cutils/log.h>

#include <minikin/Layout.h>
#include <minikin/LineBreaker.h>

using std::vector;

namespace android {

const int CHAR_TAB = 0x0009;

// Large scores in a hierarchy; we prefer desperate breaks to an overfull line. All these
// constants are larger than any reasonable actual width score.
const float SCORE_INFTY = std::numeric_limits<float>::max();
const float SCORE_OVERFULL = 1e12f;
const float SCORE_DESPERATE = 1e10f;

39 40 41 42 43 44 45
// Multiplier for hyphen penalty on last line.
const float LAST_LINE_PENALTY_MULTIPLIER = 4.0f;
// Penalty assigned to each line break (to try to minimize number of lines)
// TODO: when we implement full justification (so spaces can shrink and stretch), this is
// probably not the most appropriate method.
const float LINE_PENALTY_MULTIPLIER = 2.0f;

46 47 48 49 50 51
// Very long words trigger O(n^2) behavior in hyphenation, so we disable hyphenation for
// unreasonably long words. This is somewhat of a heuristic because extremely long words
// are possible in some languages. This does mean that very long real words can get
// broken by desperate breaks, with no hyphens.
const size_t LONGEST_HYPHENATED_WORD = 45;

R
Raph Levien 已提交
52 53 54 55
// When the text buffer is within this limit, capacity of vectors is retained at finish(),
// to avoid allocation.
const size_t MAX_TEXT_BUF_RETAIN = 32678;

56
void LineBreaker::setLocale(const icu::Locale& locale, Hyphenator* hyphenator) {
57
    mWordBreaker.setLocale(locale);
58 59 60 61

    mHyphenator = hyphenator;
}

R
Raph Levien 已提交
62
void LineBreaker::setText() {
63
    mWordBreaker.setText(mTextBuf.data(), mTextBuf.size());
R
Raph Levien 已提交
64 65

    // handle initial break here because addStyleRun may never be called
66
    mWordBreaker.next();
R
Raph Levien 已提交
67
    mCandidates.clear();
68
    Candidate cand = {0, 0, 0.0, 0.0, 0.0, 0.0, 0, 0};
R
Raph Levien 已提交
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
    mCandidates.push_back(cand);

    // reset greedy breaker state
    mBreaks.clear();
    mWidths.clear();
    mFlags.clear();
    mLastBreak = 0;
    mBestBreak = 0;
    mBestScore = SCORE_INFTY;
    mPreBreak = 0;
    mFirstTabIndex = INT_MAX;
}

void LineBreaker::setLineWidths(float firstWidth, int firstWidthLineCount, float restWidth) {
    mLineWidths.setWidths(firstWidth, firstWidthLineCount, restWidth);
}

86

R
Raph Levien 已提交
87 88
void LineBreaker::setIndents(const std::vector<float>& indents) {
    mLineWidths.setIndents(indents);
89 90
}

R
Raph Levien 已提交
91
// This function determines whether a character is a space that disappears at end of line.
92 93
// It is the Unicode set: [[:General_Category=Space_Separator:]-[:Line_Break=Glue:]],
// plus '\n'.
R
Raph Levien 已提交
94 95
// Note: all such characters are in the BMP, so it's ok to use code units for this.
static bool isLineEndSpace(uint16_t c) {
96 97
    return c == '\n' || c == ' ' || c == 0x1680 || (0x2000 <= c && c <= 0x200A && c != 0x2007) ||
            c == 0x205F || c == 0x3000;
R
Raph Levien 已提交
98 99
}

100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
// This function determines whether a character is like U+2010 HYPHEN in
// line breaking and usage: a character immediately after which line breaks
// are allowed, but words containing it should not be automatically
// hyphenated. This is a curated set, created by manually inspecting all
// the characters that have the Unicode line breaking property of BA or HY
// and seeing which ones are hyphens.
static bool isLineBreakingHyphen(uint16_t c) {
    return (c == 0x002D || // HYPHEN-MINUS
            c == 0x058A || // ARMENIAN HYPHEN
            c == 0x05BE || // HEBREW PUNCTUATION MAQAF
            c == 0x1400 || // CANADIAN SYLLABICS HYPHEN
            c == 0x2010 || // HYPHEN
            c == 0x2013 || // EN DASH
            c == 0x2027 || // HYPHENATION POINT
            c == 0x2E17 || // DOUBLE OBLIQUE HYPHEN
            c == 0x2E40);  // DOUBLE HYPHEN
}

R
Raph Levien 已提交
118 119 120 121 122
// Ordinarily, this method measures the text in the range given. However, when paint
// is nullptr, it assumes the widths have already been calculated and stored in the
// width buffer.
// This method finds the candidate word breaks (using the ICU break iterator) and sends them
// to addCandidate.
123
float LineBreaker::addStyleRun(MinikinPaint* paint, const FontCollection* typeface,
R
Raph Levien 已提交
124 125 126 127 128
        FontStyle style, size_t start, size_t end, bool isRtl) {
    Layout layout;  // performance TODO: move layout to self object to reduce allocation cost?
    float width = 0.0f;
    int bidiFlags = isRtl ? kBidi_Force_RTL : kBidi_Force_LTR;

129
    float hyphenPenalty = 0.0;
R
Raph Levien 已提交
130 131 132 133 134 135
    if (paint != nullptr) {
        layout.setFontCollection(typeface);
        layout.doLayout(mTextBuf.data(), start, end - start, mTextBuf.size(), bidiFlags, style,
                *paint);
        layout.getAdvances(mCharWidths.data() + start);
        width = layout.getAdvance();
136 137 138

        // a heuristic that seems to perform well
        hyphenPenalty = 0.5 * paint->size * paint->scaleX * mLineWidths.getLineWidth(0);
139 140 141
        if (mHyphenationFrequency == kHyphenationFrequency_Normal) {
            hyphenPenalty *= 4.0; // TODO: Replace with a better value after some testing
        }
142 143

        mLinePenalty = std::max(mLinePenalty, hyphenPenalty * LINE_PENALTY_MULTIPLIER);
R
Raph Levien 已提交
144 145
    }

146 147
    size_t current = (size_t)mWordBreaker.current();
    size_t afterWord = start;
148 149 150
    size_t lastBreak = start;
    ParaWidth lastBreakWidth = mWidth;
    ParaWidth postBreak = mWidth;
151
    bool temporarilySkipHyphenation = false;
R
Raph Levien 已提交
152 153 154 155 156 157 158 159 160 161 162 163 164
    for (size_t i = start; i < end; i++) {
        uint16_t c = mTextBuf[i];
        if (c == CHAR_TAB) {
            mWidth = mPreBreak + mTabStops.nextTab(mWidth - mPreBreak);
            if (mFirstTabIndex == INT_MAX) {
                mFirstTabIndex = (int)i;
            }
            // fall back to greedy; other modes don't know how to deal with tabs
            mStrategy = kBreakStrategy_Greedy;
        } else {
            mWidth += mCharWidths[i];
            if (!isLineEndSpace(c)) {
                postBreak = mWidth;
165
                afterWord = i + 1;
R
Raph Levien 已提交
166 167 168
            }
        }
        if (i + 1 == current) {
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
            // TODO: Add a new type of HyphenEdit for breaks whose hyphen already exists, so
            // we can pass the whole word down to Hyphenator like the soft hyphen case.
            bool wordEndsInHyphen = isLineBreakingHyphen(c);
            size_t wordStart = mWordBreaker.wordStart();
            size_t wordEnd = mWordBreaker.wordEnd();
            if (paint != nullptr && mHyphenator != nullptr &&
                    mHyphenationFrequency != kHyphenationFrequency_None &&
                    !wordEndsInHyphen && !temporarilySkipHyphenation &&
                    wordEnd > wordStart && wordEnd - wordStart <= LONGEST_HYPHENATED_WORD) {
                mHyphenator->hyphenate(&mHyphBuf, &mTextBuf[wordStart], wordEnd - wordStart);
#if VERBOSE_DEBUG
                std::string hyphenatedString;
                for (size_t j = wordStart; j < wordEnd; j++) {
                    if (mHyphBuf[j - wordStart]) hyphenatedString.push_back('-');
                    // Note: only works with ASCII, should do UTF-8 conversion here
                    hyphenatedString.push_back(buffer()[j]);
185
                }
186 187
                ALOGD("hyphenated string: %s", hyphenatedString.c_str());
#endif
188

189 190 191 192 193 194 195 196 197 198 199 200 201 202
                // measure hyphenated substrings
                for (size_t j = wordStart; j < wordEnd; j++) {
                    uint8_t hyph = mHyphBuf[j - wordStart];
                    if (hyph) {
                        paint->hyphenEdit = hyph;
                        layout.doLayout(mTextBuf.data(), lastBreak, j - lastBreak,
                                mTextBuf.size(), bidiFlags, style, *paint);
                        ParaWidth hyphPostBreak = lastBreakWidth + layout.getAdvance();
                        paint->hyphenEdit = 0;
                        layout.doLayout(mTextBuf.data(), j, afterWord - j,
                                mTextBuf.size(), bidiFlags, style, *paint);
                        ParaWidth hyphPreBreak = postBreak - layout.getAdvance();
                        addWordBreak(j, hyphPreBreak, hyphPostBreak, hyphenPenalty, hyph);
                    }
203
                }
R
Raph Levien 已提交
204
            }
205 206 207 208 209 210 211 212 213 214
            // Skip hyphenating the next word if and only if the present word ends in a hyphen
            temporarilySkipHyphenation = wordEndsInHyphen;

            // Skip break for zero-width characters inside replacement span
            if (paint != nullptr || current == end || mCharWidths[current] > 0) {
                addWordBreak(current, mWidth, postBreak, 0.0, 0);
            }
            lastBreak = current;
            lastBreakWidth = mWidth;
            current = (size_t)mWordBreaker.next();
R
Raph Levien 已提交
215 216 217 218 219 220 221 222 223
        }
    }

    return width;
}

// add a word break (possibly for a hyphenated fragment), and add desperate breaks if
// needed (ie when word exceeds current line width)
void LineBreaker::addWordBreak(size_t offset, ParaWidth preBreak, ParaWidth postBreak,
224
        float penalty, uint8_t hyph) {
R
Raph Levien 已提交
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
    Candidate cand;
    ParaWidth width = mCandidates.back().preBreak;
    if (postBreak - width > currentLineWidth()) {
        // Add desperate breaks.
        // Note: these breaks are based on the shaping of the (non-broken) original text; they
        // are imprecise especially in the presence of kerning, ligatures, and Arabic shaping.
        size_t i = mCandidates.back().offset;
        width += mCharWidths[i++];
        for (; i < offset; i++) {
            float w = mCharWidths[i];
            if (w > 0) {
                cand.offset = i;
                cand.preBreak = width;
                cand.postBreak = width;
                cand.penalty = SCORE_DESPERATE;
240
                cand.hyphenEdit = 0;
R
Raph Levien 已提交
241
#if VERBOSE_DEBUG
242
                ALOGD("desperate cand: %zd %g:%g",
R
Raph Levien 已提交
243 244 245 246 247 248 249 250 251 252 253 254
                        mCandidates.size(), cand.postBreak, cand.preBreak);
#endif
                addCandidate(cand);
                width += w;
            }
        }
    }

    cand.offset = offset;
    cand.preBreak = preBreak;
    cand.postBreak = postBreak;
    cand.penalty = penalty;
255
    cand.hyphenEdit = hyph;
R
Raph Levien 已提交
256
#if VERBOSE_DEBUG
257
    ALOGD("cand: %zd %g:%g", mCandidates.size(), cand.postBreak, cand.preBreak);
R
Raph Levien 已提交
258 259 260 261 262 263 264 265 266 267 268 269 270
#endif
    addCandidate(cand);
}

// TODO performance: could avoid populating mCandidates if greedy only
void LineBreaker::addCandidate(Candidate cand) {
    size_t candIndex = mCandidates.size();
    mCandidates.push_back(cand);
    if (cand.postBreak - mPreBreak > currentLineWidth()) {
        // This break would create an overfull line, pick the best break and break there (greedy)
        if (mBestBreak == mLastBreak) {
            mBestBreak = candIndex;
        }
271 272
        pushBreak(mCandidates[mBestBreak].offset, mCandidates[mBestBreak].postBreak - mPreBreak,
                mCandidates[mBestBreak].hyphenEdit);
R
Raph Levien 已提交
273 274 275 276 277 278 279 280 281 282 283 284 285
        mBestScore = SCORE_INFTY;
#if VERBOSE_DEBUG
        ALOGD("break: %d %g", mBreaks.back(), mWidths.back());
#endif
        mLastBreak = mBestBreak;
        mPreBreak = mCandidates[mBestBreak].preBreak;
    }
    if (cand.penalty <= mBestScore) {
        mBestBreak = candIndex;
        mBestScore = cand.penalty;
    }
}

286 287 288 289 290 291 292 293 294
void LineBreaker::pushBreak(int offset, float width, uint8_t hyph) {
    mBreaks.push_back(offset);
    mWidths.push_back(width);
    int flags = (mFirstTabIndex < mBreaks.back()) << kTab_Shift;
    flags |= hyph;
    mFlags.push_back(flags);
    mFirstTabIndex = INT_MAX;
}

R
Raph Levien 已提交
295 296 297 298 299 300 301 302 303 304 305 306 307 308
void LineBreaker::addReplacement(size_t start, size_t end, float width) {
    mCharWidths[start] = width;
    std::fill(&mCharWidths[start + 1], &mCharWidths[end], 0.0f);
    addStyleRun(nullptr, nullptr, FontStyle(), start, end, false);
}

float LineBreaker::currentLineWidth() const {
    return mLineWidths.getLineWidth(mBreaks.size());
}

void LineBreaker::computeBreaksGreedy() {
    // All breaks but the last have been added in addCandidate already.
    size_t nCand = mCandidates.size();
    if (nCand == 1 || mLastBreak != nCand - 1) {
309 310
        pushBreak(mCandidates[nCand - 1].offset, mCandidates[nCand - 1].postBreak - mPreBreak, 0);
        // don't need to update mBestScore, because we're done
R
Raph Levien 已提交
311 312 313 314 315 316
#if VERBOSE_DEBUG
        ALOGD("final break: %d %g", mBreaks.back(), mWidths.back());
#endif
    }
}

317 318
// Follow "prev" links in mCandidates array, and copy to result arrays.
void LineBreaker::finishBreaksOptimal() {
R
Raph Levien 已提交
319 320 321 322
    // clear existing greedy break result
    mBreaks.clear();
    mWidths.clear();
    mFlags.clear();
323 324 325 326 327 328 329 330 331 332 333 334 335
    size_t nCand = mCandidates.size();
    size_t prev;
    for (size_t i = nCand - 1; i > 0; i = prev) {
        prev = mCandidates[i].prev;
        mBreaks.push_back(mCandidates[i].offset);
        mWidths.push_back(mCandidates[i].postBreak - mCandidates[prev].preBreak);
        mFlags.push_back(mCandidates[i].hyphenEdit);
    }
    std::reverse(mBreaks.begin(), mBreaks.end());
    std::reverse(mWidths.begin(), mWidths.end());
    std::reverse(mFlags.begin(), mFlags.end());
}

336
void LineBreaker::computeBreaksOptimal(bool isRectangle) {
337 338
    size_t active = 0;
    size_t nCand = mCandidates.size();
339
    float width = mLineWidths.getLineWidth(0);
340 341 342 343
    for (size_t i = 1; i < nCand; i++) {
        bool atEnd = i == nCand - 1;
        float best = SCORE_INFTY;
        size_t bestPrev = 0;
344
        size_t lineNumberLast = 0;
345

346 347 348 349
        if (!isRectangle) {
            size_t lineNumberLast = mCandidates[active].lineNumber;
            width = mLineWidths.getLineWidth(lineNumberLast);
        }
350 351 352 353
        ParaWidth leftEdge = mCandidates[i].postBreak - width;
        float bestHope = 0;

        for (size_t j = active; j < i; j++) {
354 355 356 357 358 359 360 361 362 363
            if (!isRectangle) {
                size_t lineNumber = mCandidates[j].lineNumber;
                if (lineNumber != lineNumberLast) {
                    float widthNew = mLineWidths.getLineWidth(lineNumber);
                    if (widthNew != width) {
                        leftEdge = mCandidates[i].postBreak - width;
                        bestHope = 0;
                        width = widthNew;
                    }
                    lineNumberLast = lineNumber;
364 365 366 367 368 369
                }
            }
            float jScore = mCandidates[j].score;
            if (jScore + bestHope >= best) continue;
            float delta = mCandidates[j].preBreak - leftEdge;

370
            // compute width score for line
371 372 373 374

            // Note: the "bestHope" optimization makes the assumption that, when delta is
            // non-negative, widthScore will increase monotonically as successive candidate
            // breaks are considered.
375
            float widthScore = 0.0f;
376
            float additionalPenalty = 0.0f;
377
            if (delta < 0) {
378 379 380
                widthScore = SCORE_OVERFULL;
            } else if (atEnd && mStrategy != kBreakStrategy_Balanced) {
                // increase penalty for hyphen on last line
381
                additionalPenalty = LAST_LINE_PENALTY_MULTIPLIER * mCandidates[j].penalty;
382
            } else {
383
                widthScore = delta * delta;
384
            }
R
Raph Levien 已提交
385 386 387 388 389 390 391

            if (delta < 0) {
                active = j + 1;
            } else {
                bestHope = widthScore;
            }

392
            float score = jScore + widthScore + additionalPenalty;
R
Raph Levien 已提交
393 394 395 396 397
            if (score <= best) {
                best = score;
                bestPrev = j;
            }
        }
398
        mCandidates[i].score = best + mCandidates[i].penalty + mLinePenalty;
R
Raph Levien 已提交
399
        mCandidates[i].prev = bestPrev;
400
        mCandidates[i].lineNumber = mCandidates[bestPrev].lineNumber + 1;
401
#if VERBOSE_DEBUG
402
        ALOGD("break %zd: score=%g, prev=%zd", i, mCandidates[i].score, mCandidates[i].prev);
403
#endif
R
Raph Levien 已提交
404
    }
405
    finishBreaksOptimal();
R
Raph Levien 已提交
406 407 408 409 410 411
}

size_t LineBreaker::computeBreaks() {
    if (mStrategy == kBreakStrategy_Greedy) {
        computeBreaksGreedy();
    } else {
412
        computeBreaksOptimal(mLineWidths.isConstant());
R
Raph Levien 已提交
413 414 415 416 417
    }
    return mBreaks.size();
}

void LineBreaker::finish() {
418
    mWordBreaker.finish();
R
Raph Levien 已提交
419 420 421 422 423 424 425 426 427 428
    mWidth = 0;
    mCandidates.clear();
    mBreaks.clear();
    mWidths.clear();
    mFlags.clear();
    if (mTextBuf.size() > MAX_TEXT_BUF_RETAIN) {
        mTextBuf.clear();
        mTextBuf.shrink_to_fit();
        mCharWidths.clear();
        mCharWidths.shrink_to_fit();
429 430
        mHyphBuf.clear();
        mHyphBuf.shrink_to_fit();
R
Raph Levien 已提交
431 432 433 434 435 436
        mCandidates.shrink_to_fit();
        mBreaks.shrink_to_fit();
        mWidths.shrink_to_fit();
        mFlags.shrink_to_fit();
    }
    mStrategy = kBreakStrategy_Greedy;
437
    mHyphenationFrequency = kHyphenationFrequency_Normal;
438
    mLinePenalty = 0.0f;
R
Raph Levien 已提交
439 440 441
}

}  // namespace android