Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(43)

Side by Side Diff: ui/gfx/render_text_harfbuzz.cc

Issue 326123003: RenderTextHarfBuzz: Decide run direction by BiDi embedding level (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ui/gfx/render_text_harfbuzz.h" 5 #include "ui/gfx/render_text_harfbuzz.h"
6 6
7 #include <map> 7 #include <map>
8 8
9 #include "base/i18n/bidi_line_iterator.h" 9 #include "base/i18n/bidi_line_iterator.h"
10 #include "base/i18n/break_iterator.h" 10 #include "base/i18n/break_iterator.h"
(...skipping 845 matching lines...) Expand 10 before | Expand all | Expand 10 after
856 size_t position = LayoutIndexToTextIndex(run->range.end()); 856 size_t position = LayoutIndexToTextIndex(run->range.end());
857 position = IndexOfAdjacentGrapheme(position, CURSOR_BACKWARD); 857 position = IndexOfAdjacentGrapheme(position, CURSOR_BACKWARD);
858 return SelectionModel(position, CURSOR_FORWARD); 858 return SelectionModel(position, CURSOR_FORWARD);
859 } 859 }
860 860
861 void RenderTextHarfBuzz::ItemizeText() { 861 void RenderTextHarfBuzz::ItemizeText() {
862 const base::string16& text = GetLayoutText(); 862 const base::string16& text = GetLayoutText();
863 const bool is_text_rtl = GetTextDirection() == base::i18n::RIGHT_TO_LEFT; 863 const bool is_text_rtl = GetTextDirection() == base::i18n::RIGHT_TO_LEFT;
864 DCHECK_NE(0U, text.length()); 864 DCHECK_NE(0U, text.length());
865 865
866 // If ICU fails to itemize the text, we set |fake_runs| and create a run that 866 // If ICU fails to itemize the text, we create a run that spans the entire
867 // spans the entire text. This is needed because early returning and leaving 867 // text. This is needed because leaving the runs set empty causes some clients
868 // the runs set empty causes some clients to crash/misbehave since they expect 868 // to crash/misbehave since they expect non-zero text metrics from a non-empty
msw 2014/06/10 17:42:52 nit: remove "crash/" to shorten the comment by a l
ckocagil 2014/06/10 19:12:52 Done.
869 // non-zero text metrics from a non-empty text. 869 // text.
870 base::i18n::BiDiLineIterator bidi_iterator; 870 base::i18n::BiDiLineIterator bidi_iterator;
871 bool fake_runs = !bidi_iterator.Open(text, is_text_rtl, false); 871 if (!bidi_iterator.Open(text, is_text_rtl, false)) {
872 internal::TextRunHarfBuzz* run = new internal::TextRunHarfBuzz;
873 run->range = Range(0, text.length());
874 runs_.push_back(run);
875 visual_to_logical_ = logical_to_visual_ = std::vector<int32_t>(1, 0);
876 return;
877 }
872 878
873 // Temporarily apply composition underlines and selection colors. 879 // Temporarily apply composition underlines and selection colors.
874 ApplyCompositionAndSelectionStyles(); 880 ApplyCompositionAndSelectionStyles();
875 881
876 // Build the list of runs from the script items and ranged styles. Use an 882 // Build the list of runs from the script items and ranged styles. Use an
877 // empty color BreakList to avoid breaking runs at color boundaries. 883 // empty color BreakList to avoid breaking runs at color boundaries.
878 BreakList<SkColor> empty_colors; 884 BreakList<SkColor> empty_colors;
879 empty_colors.SetMax(text.length()); 885 empty_colors.SetMax(text.length());
880 internal::StyleIterator style(empty_colors, styles()); 886 internal::StyleIterator style(empty_colors, styles());
881 887
882 for (size_t run_break = 0; run_break < text.length();) { 888 for (size_t run_break = 0; run_break < text.length();) {
883 internal::TextRunHarfBuzz* run = new internal::TextRunHarfBuzz; 889 internal::TextRunHarfBuzz* run = new internal::TextRunHarfBuzz;
884 run->range.set_start(run_break); 890 run->range.set_start(run_break);
885 run->font_style = (style.style(BOLD) ? Font::BOLD : 0) | 891 run->font_style = (style.style(BOLD) ? Font::BOLD : 0) |
886 (style.style(ITALIC) ? Font::ITALIC : 0); 892 (style.style(ITALIC) ? Font::ITALIC : 0);
887 run->strike = style.style(STRIKE); 893 run->strike = style.style(STRIKE);
888 run->diagonal_strike = style.style(DIAGONAL_STRIKE); 894 run->diagonal_strike = style.style(DIAGONAL_STRIKE);
889 run->underline = style.style(UNDERLINE); 895 run->underline = style.style(UNDERLINE);
890 896
891 if (fake_runs) { 897 int32 script_item_break = 0;
892 run_break = text.length(); 898 bidi_iterator.GetLogicalRun(run_break, &script_item_break, &run->level);
893 } else { 899 // Odd BiDi embedding levels correspond to RTL runs.
894 int32 script_item_break = 0; 900 run->is_rtl = (run->level % 2) == 1;
msw 2014/06/10 17:42:51 Is this also true in RTL UI (--lang=he)?
ckocagil 2014/06/10 19:12:52 AFAICT, yes.
msw 2014/06/10 20:47:56 I wonder if that's right. Do we need to set a base
ckocagil 2014/06/11 07:18:08 I think base directions are only relevant *before*
msw 2014/06/11 07:54:19 You're right about the function ordering, but my q
895 bidi_iterator.GetLogicalRun(run_break, &script_item_break, &run->level); 901 // Find the length and script of this script run.
896 // Find the length and script of this script run. 902 script_item_break = ScriptInterval(text, run_break,
897 script_item_break = ScriptInterval(text, run_break, 903 script_item_break - run_break, &run->script) + run_break;
898 script_item_break - run_break, &run->script) + run_break;
899 904
900 // Find the next break and advance the iterators as needed. 905 // Find the next break and advance the iterators as needed.
901 run_break = std::min(static_cast<size_t>(script_item_break), 906 run_break = std::min(static_cast<size_t>(script_item_break),
902 TextIndexToLayoutIndex(style.GetRange().end())); 907 TextIndexToLayoutIndex(style.GetRange().end()));
903 908
904 // Break runs adjacent to character substrings in certain code blocks. 909 // Break runs adjacent to character substrings in certain code blocks.
905 // This avoids using their fallback fonts for more characters than needed, 910 // This avoids using their fallback fonts for more characters than needed,
906 // in cases like "\x25B6 Media Title", etc. http://crbug.com/278913 911 // in cases like "\x25B6 Media Title", etc. http://crbug.com/278913
907 if (run_break > run->range.start()) { 912 if (run_break > run->range.start()) {
908 const size_t run_start = run->range.start(); 913 const size_t run_start = run->range.start();
909 const int32 run_length = static_cast<int32>(run_break - run_start); 914 const int32 run_length = static_cast<int32>(run_break - run_start);
910 base::i18n::UTF16CharIterator iter(text.c_str() + run_start, 915 base::i18n::UTF16CharIterator iter(text.c_str() + run_start,
911 run_length); 916 run_length);
912 const UBlockCode first_block_code = ublock_getCode(iter.get()); 917 const UBlockCode first_block_code = ublock_getCode(iter.get());
913 const bool first_block_unusual = IsUnusualBlockCode(first_block_code); 918 const bool first_block_unusual = IsUnusualBlockCode(first_block_code);
914 while (iter.Advance() && iter.array_pos() < run_length) { 919 while (iter.Advance() && iter.array_pos() < run_length) {
915 const UBlockCode current_block_code = ublock_getCode(iter.get()); 920 const UBlockCode current_block_code = ublock_getCode(iter.get());
916 if (current_block_code != first_block_code && 921 if (current_block_code != first_block_code &&
917 (first_block_unusual || IsUnusualBlockCode(current_block_code))) { 922 (first_block_unusual || IsUnusualBlockCode(current_block_code))) {
918 run_break = run_start + iter.array_pos(); 923 run_break = run_start + iter.array_pos();
919 break; 924 break;
920 }
921 } 925 }
922 } 926 }
923 } 927 }
924 928
925 DCHECK(IsValidCodePointIndex(text, run_break)); 929 DCHECK(IsValidCodePointIndex(text, run_break));
926 style.UpdatePosition(LayoutIndexToTextIndex(run_break)); 930 style.UpdatePosition(LayoutIndexToTextIndex(run_break));
927 run->range.set_end(run_break); 931 run->range.set_end(run_break);
928 UBiDiDirection direction = ubidi_getBaseDirection( 932
929 text.c_str() + run->range.start(), run->range.length());
930 if (direction == UBIDI_NEUTRAL)
931 run->is_rtl = is_text_rtl;
932 else
933 run->is_rtl = direction == UBIDI_RTL;
934 runs_.push_back(run); 933 runs_.push_back(run);
935 } 934 }
936 935
937 // Undo the temporarily applied composition underlines and selection colors. 936 // Undo the temporarily applied composition underlines and selection colors.
938 UndoCompositionAndSelectionStyles(); 937 UndoCompositionAndSelectionStyles();
939 938
940 const size_t num_runs = runs_.size(); 939 const size_t num_runs = runs_.size();
941 std::vector<UBiDiLevel> levels(num_runs); 940 std::vector<UBiDiLevel> levels(num_runs);
942 for (size_t i = 0; i < num_runs; ++i) 941 for (size_t i = 0; i < num_runs; ++i)
943 levels[i] = runs_[i]->level; 942 levels[i] = runs_[i]->level;
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
992 run->positions[i].set(run->width + x_offset, y_offset); 991 run->positions[i].set(run->width + x_offset, y_offset);
993 run->width += 992 run->width +=
994 SkScalarRoundToInt(SkFixedToScalar(hb_positions[i].x_advance)); 993 SkScalarRoundToInt(SkFixedToScalar(hb_positions[i].x_advance));
995 } 994 }
996 995
997 hb_buffer_destroy(buffer); 996 hb_buffer_destroy(buffer);
998 hb_font_destroy(harfbuzz_font); 997 hb_font_destroy(harfbuzz_font);
999 } 998 }
1000 999
1001 } // namespace gfx 1000 } // namespace gfx
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698