Class: Unicode::DisplayWidth
- Inherits:
-
Object
- Object
- Unicode::DisplayWidth
- Defined in:
- lib/unicode/display_width.rb,
lib/unicode/display_width/index.rb,
lib/unicode/display_width/constants.rb,
lib/unicode/display_width/emoji_support.rb
Defined Under Namespace
Modules: EmojiSupport
Constant Summary collapse
- DEFAULT_AMBIGUOUS =
1- INITIAL_DEPTH =
0x10000- ASCII_NON_ZERO_REGEX =
/[\0\x05\a\b\n-\x0F]/- ASCII_NON_ZERO_STRING =
"\0\x05\a\b\n-\x0F"- ASCII_BACKSPACE =
"\b"- AMBIGUOUS_MAP =
{ 1 => :WIDTH_ONE, 2 => :WIDTH_TWO, }
- FIRST_AMBIGUOUS =
{ WIDTH_ONE: 768, WIDTH_TWO: 161, }
- NOT_COMMON_NARROW_REGEX =
{ WIDTH_ONE: /[^\u{10}-\u{2FF}]/m, WIDTH_TWO: /[^\u{10}-\u{A1}]/m, }
- FIRST_4096 =
{ WIDTH_ONE: decompress_index(INDEX[:WIDTH_ONE][0][0], 1), WIDTH_TWO: decompress_index(INDEX[:WIDTH_TWO][0][0], 1), }
- EMOJI_SEQUENCES_REGEX_MAPPING =
{ rgi: :REGEX_INCLUDE_MQE_UQE, rgi_at: :REGEX_INCLUDE_MQE_UQE, possible: :REGEX_WELL_FORMED, }
- REGEX_EMOJI_VS16 =
Regexp.union( Regexp.compile( Unicode::Emoji::REGEX_TEXT_PRESENTATION.source + "(?<![#*0-9])" + "\u{FE0F}" ), Unicode::Emoji::REGEX_EMOJI_KEYCAP )
- REGEX_EMOJI_ALL_SEQUENCES =
ebase = Unicode::Emoji::REGEX_PROP_MODIFIER_BASE.source
Regexp.union(/.[\u{1F3FB}-\u{1F3FF}\u{FE0F}]?(\u{200D}.[\u{1F3FB}-\u{1F3FF}\u{FE0F}]?)+|.[\u{1F3FB}-\u{1F3FF}]/, Unicode::Emoji::REGEX_EMOJI_KEYCAP)
- REGEX_EMOJI_ALL_SEQUENCES_AND_VS16 =
Regexp.union(REGEX_EMOJI_ALL_SEQUENCES, REGEX_EMOJI_VS16)
- VERSION =
"3.2.0"- UNICODE_VERSION =
"17.0.0"- DATA_DIRECTORY =
File.(File.dirname(__FILE__) + "/../../../data/")
- INDEX_FILENAME =
DATA_DIRECTORY + "/display_width.marshal.gz"
Class Method Summary collapse
- .decompress_index(index, level) ⇒ Object
-
.emoji_width(string, mode = :all, ambiguous = DEFAULT_AMBIGUOUS) ⇒ Object
Returns width of all considered Emoji and remaining string.
-
.emoji_width_via_possible(string, emoji_set_regex, strict_eaw = false, ambiguous = DEFAULT_AMBIGUOUS) ⇒ Object
Match possible Emoji first, then refine.
- .normalize_options(string, ambiguous = nil, overwrite = nil, old_options = {}, **options) ⇒ Object
-
.of(string, ambiguous = nil, overwrite = nil, old_options = {}, **options) ⇒ Object
Returns monospace display width of string.
-
.width_ascii(string) ⇒ Object
Returns width for ASCII-only strings.
-
.width_custom(string, overwrite) ⇒ Object
Returns width of custom overwrites and remaining string.
Instance Method Summary collapse
- #get_config(**kwargs) ⇒ Object
-
#initialize(ambiguous: DEFAULT_AMBIGUOUS, overwrite: {}, emoji: true) ⇒ DisplayWidth
constructor
A new instance of DisplayWidth.
- #of(string, **kwargs) ⇒ Object
Constructor Details
#initialize(ambiguous: DEFAULT_AMBIGUOUS, overwrite: {}, emoji: true) ⇒ DisplayWidth
Returns a new instance of DisplayWidth.
229 230 231 232 233 |
# File 'lib/unicode/display_width.rb', line 229 def initialize(ambiguous: DEFAULT_AMBIGUOUS, overwrite: {}, emoji: true) @ambiguous = ambiguous @overwrite = overwrite @emoji = emoji end |
Class Method Details
.decompress_index(index, level) ⇒ Object
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
# File 'lib/unicode/display_width/index.rb', line 14 def self.decompress_index(index, level) index.flat_map{ |value| if level > 0 if value.instance_of?(Array) value[15] ||= nil decompress_index(value, level - 1) else decompress_index([value] * 16, level - 1) end else if value.instance_of?(Array) value[15] ||= nil value else [value] * 16 end end } end |
.emoji_width(string, mode = :all, ambiguous = DEFAULT_AMBIGUOUS) ⇒ Object
Returns width of all considered Emoji and remaining string
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 |
# File 'lib/unicode/display_width.rb', line 143 def self.emoji_width(string, mode = :all, ambiguous = DEFAULT_AMBIGUOUS) res = 0 if emoji_set_regex = EMOJI_SEQUENCES_REGEX_MAPPING[mode] emoji_width_via_possible( string, Unicode::Emoji.const_get(emoji_set_regex), mode == :rgi_at, ambiguous, ) elsif mode == :all_no_vs16 no_emoji_string = string.gsub(REGEX_EMOJI_ALL_SEQUENCES){ res += 2; "" } [res, no_emoji_string] elsif mode == :vs16 no_emoji_string = string.gsub(REGEX_EMOJI_VS16){ res += 2; "" } [res, no_emoji_string] elsif mode == :all no_emoji_string = string.gsub(REGEX_EMOJI_ALL_SEQUENCES_AND_VS16){ res += 2; "" } [res, no_emoji_string] else [0, string] end end |
.emoji_width_via_possible(string, emoji_set_regex, strict_eaw = false, ambiguous = DEFAULT_AMBIGUOUS) ⇒ Object
Match possible Emoji first, then refine
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 |
# File 'lib/unicode/display_width.rb', line 173 def self.emoji_width_via_possible(string, emoji_set_regex, strict_eaw = false, ambiguous = DEFAULT_AMBIGUOUS) res = 0 # For each string possibly an emoji no_emoji_string = string.gsub(REGEX_EMOJI_ALL_SEQUENCES_AND_VS16){ |emoji_candidate| # Check if we have a combined Emoji with width 2 (or EAW an Apple Terminal) if emoji_candidate == emoji_candidate[emoji_set_regex] if strict_eaw res += self.of(emoji_candidate[0], ambiguous, emoji: false) else res += 2 end "" # We are dealing with a default text presentation emoji or a well-formed sequence not matching the above Emoji set else if !strict_eaw # Ensure all explicit VS16 sequences have width 2 emoji_candidate.gsub!(REGEX_EMOJI_VS16){ res += 2; "" } end emoji_candidate end } [res, no_emoji_string] end |
.normalize_options(string, ambiguous = nil, overwrite = nil, old_options = {}, **options) ⇒ Object
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 |
# File 'lib/unicode/display_width.rb', line 201 def self.(string, ambiguous = nil, overwrite = nil, = {}, **) unless .empty? warn "Unicode::DisplayWidth: Please migrate to keyword arguments - #{.inspect}" .merge! end [:ambiguous] = ambiguous if ambiguous [:ambiguous] ||= DEFAULT_AMBIGUOUS if [:ambiguous] != 1 && [:ambiguous] != 2 raise ArgumentError, "Unicode::DisplayWidth: Ambiguous width must be 1 or 2" end if overwrite && !overwrite.empty? warn "Unicode::DisplayWidth: Please migrate to keyword arguments - overwrite: #{overwrite.inspect}" [:overwrite] = overwrite end [:overwrite] ||= {} if [nil, true, :auto].include?([:emoji]) [:emoji] = EmojiSupport.recommended elsif [:emoji] == false [:emoji] = :none end end |
.of(string, ambiguous = nil, overwrite = nil, old_options = {}, **options) ⇒ Object
Returns monospace display width of string
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 |
# File 'lib/unicode/display_width.rb', line 51 def self.of(string, ambiguous = nil, overwrite = nil, = {}, **) # Binary strings don't make much sense when calculating display width. # Assume it's valid UTF-8 if string.encoding == Encoding::BINARY && !string.force_encoding(Encoding::UTF_8).valid_encoding? # Didn't work out, go back to binary string.force_encoding(Encoding::BINARY) end string = string.encode(Encoding::UTF_8, invalid: :replace, undef: :replace) unless string.encoding == Encoding::UTF_8 = (string, ambiguous, overwrite, , **) width = 0 unless [:overwrite].empty? width, string = width_custom(string, [:overwrite]) end if string.ascii_only? return width + width_ascii(string) end ambiguous_index_name = AMBIGUOUS_MAP[[:ambiguous]] unless string.match?(NOT_COMMON_NARROW_REGEX[ambiguous_index_name]) return width + string.size end # Retrieve Emoji width if [:emoji] != :none e_width, string = emoji_width( string, [:emoji], [:ambiguous], ) width += e_width unless string.match?(NOT_COMMON_NARROW_REGEX[ambiguous_index_name]) return width + string.size end end index_full = INDEX[ambiguous_index_name] index_low = FIRST_4096[ambiguous_index_name] first_ambiguous = FIRST_AMBIGUOUS[ambiguous_index_name] string.each_codepoint{ |codepoint| if codepoint > 15 && codepoint < first_ambiguous width += 1 elsif codepoint < 0x1001 width += index_low[codepoint] || 1 else d = INITIAL_DEPTH w = index_full[codepoint / d] while w.instance_of? Array w = w[(codepoint %= d) / (d /= 16)] end width += w || 1 end } # Return result + prevent negative lengths width < 0 ? 0 : width end |
.width_ascii(string) ⇒ Object
Returns width for ASCII-only strings. Will consider zero-width control symbols.
133 134 135 136 137 138 139 140 |
# File 'lib/unicode/display_width.rb', line 133 def self.width_ascii(string) if string.match?(ASCII_NON_ZERO_REGEX) res = string.delete(ASCII_NON_ZERO_STRING).bytesize - string.count(ASCII_BACKSPACE) return res < 0 ? 0 : res end string.bytesize end |
.width_custom(string, overwrite) ⇒ Object
Returns width of custom overwrites and remaining string
117 118 119 120 121 122 123 124 125 126 127 128 129 130 |
# File 'lib/unicode/display_width.rb', line 117 def self.width_custom(string, overwrite) width = 0 string = string.each_codepoint.select{ |codepoint| if overwrite[codepoint] width += overwrite[codepoint] nil else codepoint end }.pack("U*") [width, string] end |
Instance Method Details
#get_config(**kwargs) ⇒ Object
235 236 237 238 239 240 241 |
# File 'lib/unicode/display_width.rb', line 235 def get_config(**kwargs) { ambiguous: kwargs[:ambiguous] || @ambiguous, overwrite: kwargs[:overwrite] || @overwrite, emoji: kwargs[:emoji] || @emoji, } end |
#of(string, **kwargs) ⇒ Object
243 244 245 |
# File 'lib/unicode/display_width.rb', line 243 def of(string, **kwargs) self.class.of(string, **get_config(**kwargs)) end |