2017-11-27 13:45:24 +03:00
|
|
|
# frozen_string_literal: true
|
2010-04-01 11:45:16 +04:00
|
|
|
##
|
|
|
|
# Manages changes of attributes in a block of text
|
2008-04-26 20:14:19 +04:00
|
|
|
|
|
|
|
class RDoc::Markup::AttributeManager
|
|
|
|
|
2010-04-01 11:45:16 +04:00
|
|
|
##
|
|
|
|
# The NUL character
|
|
|
|
|
2008-04-26 20:14:19 +04:00
|
|
|
NULL = "\000".freeze
|
|
|
|
|
2010-04-01 11:45:16 +04:00
|
|
|
#--
|
2008-04-26 20:14:19 +04:00
|
|
|
# We work by substituting non-printing characters in to the text. For now
|
|
|
|
# I'm assuming that I can substitute a character in the range 0..8 for a 7
|
|
|
|
# bit character without damaging the encoded string, but this might be
|
|
|
|
# optimistic
|
2010-04-01 11:45:16 +04:00
|
|
|
#++
|
2008-04-26 20:14:19 +04:00
|
|
|
|
2010-12-20 06:22:49 +03:00
|
|
|
A_PROTECT = 004 # :nodoc:
|
2010-04-01 11:45:16 +04:00
|
|
|
|
2010-12-20 06:22:49 +03:00
|
|
|
##
|
|
|
|
# Special mask character to prevent inline markup handling
|
|
|
|
|
|
|
|
PROTECT_ATTR = A_PROTECT.chr # :nodoc:
|
2008-04-26 20:14:19 +04:00
|
|
|
|
2012-11-27 08:28:14 +04:00
|
|
|
##
|
|
|
|
# The attributes enabled for this markup object.
|
|
|
|
|
|
|
|
attr_reader :attributes
|
|
|
|
|
2008-04-26 20:14:19 +04:00
|
|
|
##
|
|
|
|
# This maps delimiters that occur around words (such as *bold* or +tt+)
|
|
|
|
# where the start and end delimiters and the same. This lets us optimize
|
|
|
|
# the regexp
|
|
|
|
|
2010-04-01 11:45:16 +04:00
|
|
|
attr_reader :matching_word_pairs
|
2008-04-26 20:14:19 +04:00
|
|
|
|
|
|
|
##
|
|
|
|
# And this is used when the delimiters aren't the same. In this case the
|
|
|
|
# hash maps a pattern to the attribute character
|
|
|
|
|
2010-04-01 11:45:16 +04:00
|
|
|
attr_reader :word_pair_map
|
2008-04-26 20:14:19 +04:00
|
|
|
|
|
|
|
##
|
|
|
|
# This maps HTML tags to the corresponding attribute char
|
|
|
|
|
2010-04-01 11:45:16 +04:00
|
|
|
attr_reader :html_tags
|
|
|
|
|
|
|
|
##
|
|
|
|
# A \ in front of a character that would normally be processed turns off
|
|
|
|
# processing. We do this by turning \< into <#{PROTECT}
|
|
|
|
|
|
|
|
attr_reader :protectable
|
2008-04-26 20:14:19 +04:00
|
|
|
|
|
|
|
##
|
2018-10-17 09:28:20 +03:00
|
|
|
# And this maps _regexp handling_ sequences to a name. A regexp handling
|
|
|
|
# sequence is something like a WikiWord
|
2008-04-26 20:14:19 +04:00
|
|
|
|
2018-10-17 09:28:20 +03:00
|
|
|
attr_reader :regexp_handlings
|
2010-04-01 11:45:16 +04:00
|
|
|
|
|
|
|
##
|
|
|
|
# Creates a new attribute manager that understands bold, emphasized and
|
|
|
|
# teletype text.
|
|
|
|
|
|
|
|
def initialize
|
|
|
|
@html_tags = {}
|
|
|
|
@matching_word_pairs = {}
|
2010-12-20 06:22:49 +03:00
|
|
|
@protectable = %w[<]
|
2018-10-17 09:28:20 +03:00
|
|
|
@regexp_handlings = []
|
2010-04-01 11:45:16 +04:00
|
|
|
@word_pair_map = {}
|
2012-11-27 08:28:14 +04:00
|
|
|
@attributes = RDoc::Markup::Attributes.new
|
2010-04-01 11:45:16 +04:00
|
|
|
|
|
|
|
add_word_pair "*", "*", :BOLD
|
|
|
|
add_word_pair "_", "_", :EM
|
|
|
|
add_word_pair "+", "+", :TT
|
|
|
|
|
|
|
|
add_html "em", :EM
|
|
|
|
add_html "i", :EM
|
|
|
|
add_html "b", :BOLD
|
|
|
|
add_html "tt", :TT
|
|
|
|
add_html "code", :TT
|
|
|
|
end
|
|
|
|
|
2008-04-26 20:14:19 +04:00
|
|
|
##
|
|
|
|
# Return an attribute object with the given turn_on and turn_off bits set
|
|
|
|
|
|
|
|
def attribute(turn_on, turn_off)
|
|
|
|
RDoc::Markup::AttrChanger.new turn_on, turn_off
|
|
|
|
end
|
|
|
|
|
2010-12-20 06:22:49 +03:00
|
|
|
##
|
|
|
|
# Changes the current attribute from +current+ to +new+
|
|
|
|
|
|
|
|
def change_attribute current, new
|
2008-04-26 20:14:19 +04:00
|
|
|
diff = current ^ new
|
|
|
|
attribute(new & diff, current & diff)
|
|
|
|
end
|
|
|
|
|
2010-12-20 06:22:49 +03:00
|
|
|
##
|
|
|
|
# Used by the tests to change attributes by name from +current_set+ to
|
|
|
|
# +new_set+
|
|
|
|
|
|
|
|
def changed_attribute_by_name current_set, new_set
|
2008-04-26 20:14:19 +04:00
|
|
|
current = new = 0
|
|
|
|
current_set.each do |name|
|
2012-11-27 08:28:14 +04:00
|
|
|
current |= @attributes.bitmap_for(name)
|
2008-04-26 20:14:19 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
new_set.each do |name|
|
2012-11-27 08:28:14 +04:00
|
|
|
new |= @attributes.bitmap_for(name)
|
2008-04-26 20:14:19 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
change_attribute(current, new)
|
|
|
|
end
|
|
|
|
|
2010-12-20 06:22:49 +03:00
|
|
|
##
|
|
|
|
# Copies +start_pos+ to +end_pos+ from the current string
|
|
|
|
|
2008-04-26 20:14:19 +04:00
|
|
|
def copy_string(start_pos, end_pos)
|
|
|
|
res = @str[start_pos...end_pos]
|
|
|
|
res.gsub!(/\000/, '')
|
|
|
|
res
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
# Map attributes like <b>text</b>to the sequence
|
|
|
|
# \001\002<char>\001\003<char>, where <char> is a per-attribute specific
|
|
|
|
# character
|
|
|
|
|
|
|
|
def convert_attrs(str, attrs)
|
|
|
|
# first do matching ones
|
2010-04-01 11:45:16 +04:00
|
|
|
tags = @matching_word_pairs.keys.join("")
|
2008-04-26 20:14:19 +04:00
|
|
|
|
2014-09-11 05:03:22 +04:00
|
|
|
re = /(^|\W)([#{tags}])([#\\]?[\w:.\/-]+?\S?)\2(\W|$)/
|
2008-04-26 20:14:19 +04:00
|
|
|
|
|
|
|
1 while str.gsub!(re) do
|
2010-04-01 11:45:16 +04:00
|
|
|
attr = @matching_word_pairs[$2]
|
2008-04-26 20:14:19 +04:00
|
|
|
attrs.set_attrs($`.length + $1.length + $2.length, $3.length, attr)
|
|
|
|
$1 + NULL * $2.length + $3 + NULL * $2.length + $4
|
|
|
|
end
|
|
|
|
|
|
|
|
# then non-matching
|
2010-04-01 11:45:16 +04:00
|
|
|
unless @word_pair_map.empty? then
|
|
|
|
@word_pair_map.each do |regexp, attr|
|
2008-04-26 20:14:19 +04:00
|
|
|
str.gsub!(regexp) {
|
|
|
|
attrs.set_attrs($`.length + $1.length, $2.length, attr)
|
|
|
|
NULL * $1.length + $2 + NULL * $3.length
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-04-01 11:45:16 +04:00
|
|
|
##
|
|
|
|
# Converts HTML tags to RDoc attributes
|
|
|
|
|
2008-04-26 20:14:19 +04:00
|
|
|
def convert_html(str, attrs)
|
2010-04-01 11:45:16 +04:00
|
|
|
tags = @html_tags.keys.join '|'
|
2008-04-26 20:14:19 +04:00
|
|
|
|
|
|
|
1 while str.gsub!(/<(#{tags})>(.*?)<\/\1>/i) {
|
2010-04-01 11:45:16 +04:00
|
|
|
attr = @html_tags[$1.downcase]
|
2008-04-26 20:14:19 +04:00
|
|
|
html_length = $1.length + 2
|
|
|
|
seq = NULL * html_length
|
|
|
|
attrs.set_attrs($`.length + html_length, $2.length, attr)
|
|
|
|
seq + $2 + seq + NULL
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2010-04-01 11:45:16 +04:00
|
|
|
##
|
2018-10-17 09:28:20 +03:00
|
|
|
# Converts regexp handling sequences to RDoc attributes
|
2010-04-01 11:45:16 +04:00
|
|
|
|
2018-10-17 09:28:20 +03:00
|
|
|
def convert_regexp_handlings str, attrs
|
|
|
|
@regexp_handlings.each do |regexp, attribute|
|
2012-12-17 03:07:49 +04:00
|
|
|
str.scan(regexp) do
|
|
|
|
capture = $~.size == 1 ? 0 : 1
|
2012-11-27 08:28:14 +04:00
|
|
|
|
2012-12-17 03:07:49 +04:00
|
|
|
s, e = $~.offset capture
|
2012-11-27 08:28:14 +04:00
|
|
|
|
2018-10-17 09:28:20 +03:00
|
|
|
attrs.set_attrs s, e - s, attribute | @attributes.regexp_handling
|
2008-04-26 20:14:19 +04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
2018-10-17 09:28:20 +03:00
|
|
|
# Escapes regexp handling sequences of text to prevent conversion to RDoc
|
2008-04-26 20:14:19 +04:00
|
|
|
|
|
|
|
def mask_protected_sequences
|
2010-12-20 06:22:49 +03:00
|
|
|
# protect __send__, __FILE__, etc.
|
|
|
|
@str.gsub!(/__([a-z]+)__/i,
|
|
|
|
"_#{PROTECT_ATTR}_#{PROTECT_ATTR}\\1_#{PROTECT_ATTR}_#{PROTECT_ATTR}")
|
2013-09-19 03:33:36 +04:00
|
|
|
@str.gsub!(/(\A|[^\\])\\([#{Regexp.escape @protectable.join}])/m,
|
|
|
|
"\\1\\2#{PROTECT_ATTR}")
|
|
|
|
@str.gsub!(/\\(\\[#{Regexp.escape @protectable.join}])/m, "\\1")
|
2008-04-26 20:14:19 +04:00
|
|
|
end
|
|
|
|
|
2010-04-01 11:45:16 +04:00
|
|
|
##
|
2018-10-17 09:28:20 +03:00
|
|
|
# Unescapes regexp handling sequences of text
|
2010-04-01 11:45:16 +04:00
|
|
|
|
2008-04-26 20:14:19 +04:00
|
|
|
def unmask_protected_sequences
|
|
|
|
@str.gsub!(/(.)#{PROTECT_ATTR}/, "\\1\000")
|
|
|
|
end
|
|
|
|
|
2010-04-01 11:45:16 +04:00
|
|
|
##
|
|
|
|
# Adds a markup class with +name+ for words wrapped in the +start+ and
|
|
|
|
# +stop+ character. To make words wrapped with "*" bold:
|
|
|
|
#
|
|
|
|
# am.add_word_pair '*', '*', :BOLD
|
2008-04-26 20:14:19 +04:00
|
|
|
|
|
|
|
def add_word_pair(start, stop, name)
|
|
|
|
raise ArgumentError, "Word flags may not start with '<'" if
|
|
|
|
start[0,1] == '<'
|
|
|
|
|
2012-11-27 08:28:14 +04:00
|
|
|
bitmap = @attributes.bitmap_for name
|
2008-04-26 20:14:19 +04:00
|
|
|
|
|
|
|
if start == stop then
|
2010-04-01 11:45:16 +04:00
|
|
|
@matching_word_pairs[start] = bitmap
|
2008-04-26 20:14:19 +04:00
|
|
|
else
|
|
|
|
pattern = /(#{Regexp.escape start})(\S+)(#{Regexp.escape stop})/
|
2010-04-01 11:45:16 +04:00
|
|
|
@word_pair_map[pattern] = bitmap
|
2008-04-26 20:14:19 +04:00
|
|
|
end
|
|
|
|
|
2010-04-01 11:45:16 +04:00
|
|
|
@protectable << start[0,1]
|
|
|
|
@protectable.uniq!
|
2008-04-26 20:14:19 +04:00
|
|
|
end
|
|
|
|
|
2010-04-01 11:45:16 +04:00
|
|
|
##
|
|
|
|
# Adds a markup class with +name+ for words surrounded by HTML tag +tag+.
|
|
|
|
# To process emphasis tags:
|
|
|
|
#
|
|
|
|
# am.add_html 'em', :EM
|
|
|
|
|
2008-04-26 20:14:19 +04:00
|
|
|
def add_html(tag, name)
|
2012-11-27 08:28:14 +04:00
|
|
|
@html_tags[tag.downcase] = @attributes.bitmap_for name
|
2008-04-26 20:14:19 +04:00
|
|
|
end
|
|
|
|
|
2010-04-01 11:45:16 +04:00
|
|
|
##
|
2018-10-17 09:28:20 +03:00
|
|
|
# Adds a regexp handling for +pattern+ with +name+. A simple URL handler
|
2010-04-01 11:45:16 +04:00
|
|
|
# would be:
|
|
|
|
#
|
2018-10-17 09:28:20 +03:00
|
|
|
# @am.add_regexp_handling(/((https?:)\S+\w)/, :HYPERLINK)
|
2010-04-01 11:45:16 +04:00
|
|
|
|
2018-10-17 09:28:20 +03:00
|
|
|
def add_regexp_handling pattern, name
|
|
|
|
@regexp_handlings << [pattern, @attributes.bitmap_for(name)]
|
2008-04-26 20:14:19 +04:00
|
|
|
end
|
|
|
|
|
2010-04-01 11:45:16 +04:00
|
|
|
##
|
2018-10-17 09:28:20 +03:00
|
|
|
# Processes +str+ converting attributes, HTML and regexp handlings
|
2010-04-01 11:45:16 +04:00
|
|
|
|
2012-11-27 08:28:14 +04:00
|
|
|
def flow str
|
2017-11-27 13:45:24 +03:00
|
|
|
@str = str.dup
|
2008-04-26 20:14:19 +04:00
|
|
|
|
|
|
|
mask_protected_sequences
|
|
|
|
|
|
|
|
@attrs = RDoc::Markup::AttrSpan.new @str.length
|
|
|
|
|
2018-10-17 09:28:20 +03:00
|
|
|
convert_attrs @str, @attrs
|
|
|
|
convert_html @str, @attrs
|
|
|
|
convert_regexp_handlings @str, @attrs
|
2008-04-26 20:14:19 +04:00
|
|
|
|
|
|
|
unmask_protected_sequences
|
|
|
|
|
2010-04-01 11:45:16 +04:00
|
|
|
split_into_flow
|
2008-04-26 20:14:19 +04:00
|
|
|
end
|
|
|
|
|
2010-04-01 11:45:16 +04:00
|
|
|
##
|
|
|
|
# Debug method that prints a string along with its attributes
|
|
|
|
|
2008-04-26 20:14:19 +04:00
|
|
|
def display_attributes
|
|
|
|
puts
|
|
|
|
puts @str.tr(NULL, "!")
|
|
|
|
bit = 1
|
|
|
|
16.times do |bno|
|
|
|
|
line = ""
|
|
|
|
@str.length.times do |i|
|
|
|
|
if (@attrs[i] & bit) == 0
|
|
|
|
line << " "
|
|
|
|
else
|
|
|
|
if bno.zero?
|
|
|
|
line << "S"
|
|
|
|
else
|
|
|
|
line << ("%d" % (bno+1))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
puts(line) unless line =~ /^ *$/
|
|
|
|
bit <<= 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-12-20 06:22:49 +03:00
|
|
|
##
|
|
|
|
# Splits the string into chunks by attribute change
|
|
|
|
|
2008-04-26 20:14:19 +04:00
|
|
|
def split_into_flow
|
|
|
|
res = []
|
|
|
|
current_attr = 0
|
|
|
|
|
|
|
|
str_len = @str.length
|
|
|
|
|
|
|
|
# skip leading invisible text
|
|
|
|
i = 0
|
|
|
|
i += 1 while i < str_len and @str[i].chr == "\0"
|
|
|
|
start_pos = i
|
|
|
|
|
|
|
|
# then scan the string, chunking it on attribute changes
|
|
|
|
while i < str_len
|
|
|
|
new_attr = @attrs[i]
|
|
|
|
if new_attr != current_attr
|
|
|
|
if i > start_pos
|
|
|
|
res << copy_string(start_pos, i)
|
|
|
|
start_pos = i
|
|
|
|
end
|
|
|
|
|
|
|
|
res << change_attribute(current_attr, new_attr)
|
|
|
|
current_attr = new_attr
|
|
|
|
|
2018-10-17 09:28:20 +03:00
|
|
|
if (current_attr & @attributes.regexp_handling) != 0 then
|
2008-04-26 20:14:19 +04:00
|
|
|
i += 1 while
|
2018-10-17 09:28:20 +03:00
|
|
|
i < str_len and (@attrs[i] & @attributes.regexp_handling) != 0
|
2008-04-26 20:14:19 +04:00
|
|
|
|
2018-10-17 09:28:20 +03:00
|
|
|
res << RDoc::Markup::RegexpHandling.new(current_attr,
|
|
|
|
copy_string(start_pos, i))
|
2008-04-26 20:14:19 +04:00
|
|
|
start_pos = i
|
|
|
|
next
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# move on, skipping any invisible characters
|
|
|
|
begin
|
|
|
|
i += 1
|
|
|
|
end while i < str_len and @str[i].chr == "\0"
|
|
|
|
end
|
|
|
|
|
|
|
|
# tidy up trailing text
|
|
|
|
if start_pos < str_len
|
|
|
|
res << copy_string(start_pos, str_len)
|
|
|
|
end
|
|
|
|
|
|
|
|
# and reset to all attributes off
|
|
|
|
res << change_attribute(current_attr, 0) if current_attr != 0
|
|
|
|
|
2010-04-01 11:45:16 +04:00
|
|
|
res
|
2008-04-26 20:14:19 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|