Class: ReHighlightScanner

Inherits:
HighlightScanner show all
Defined in:
ext/ae-editor/ae-editor.rb

Instance Method Summary collapse

Methods inherited from HighlightScanner

#classes

Constructor Details

#initialize(_langs_conf) ⇒ ReHighlightScanner

Returns a new instance of ReHighlightScanner.



4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
# File 'ext/ae-editor/ae-editor.rb', line 4082

def initialize(_langs_conf)
  super(_langs_conf)
  @h_re = Hash.new
  @op_to_end_line = Array.new
  @op_to_end_line.concat(@langs_conf['re_op.to_line_end'].split(',')) if @langs_conf['re_op.to_line_end']

  @op_only_first = Array.new
  @op_only_first.concat(@langs_conf['re_op.only_first'].split(',')) if @langs_conf['re_op.only_first']
  
  self.classes.each{|c|
    @h_re[c]=Regexp::new(@langs_conf["re.#{c}"].strip) if @langs_conf["re.#{c}"]
  }
end

Instance Method Details

#find_tag(_tag, _row, _line_txt) ⇒ Object



4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
# File 'ext/ae-editor/ae-editor.rb', line 4097

def find_tag(_tag, _row, _line_txt)
  _txt = _line_txt
  to_ret = []
  _re = @h_re[_tag]
  m = _re.match(_txt)
  _end = 0
#    index = _line_txt.index("oldaccel1")
#    stampa = index && index >0
#    stampa=true
#    p "_line_txt=#{_line_txt}" if stampa
#    p "_tag=#{_tag}" if stampa
  while m && (_txt=m.post_match)
    if !defined?(_old_txt) || _txt != _old_txt
      b1 = _line_txt[m.begin(0)+_end-1..m.begin(0)+_end-1]
      b2 = _line_txt[m.begin(0)+_end..m.begin(0)+_end]
      e1 = _line_txt[m.end(0)+_end..m.end(0)+_end]        
      e2 = _line_txt[m.end(0)-1+_end..m.end(0)+_end-1]
      achar = ["\s","\t","\n",nil,')',']','}','',':','=',">","<"]
      
      ok = (achar.include?(b1)||achar.include?(b2)) && (achar.include?(e1)||achar.include?(e2))
      ok = ok || _line_txt[m.begin(0)+_end..m.end(0)+_end-1].strip.length==1
      
      

#        p "" if stampa
#        p "_line_txt[m.begin(0)+_end..m.begin(0)+_end]=#{_line_txt[m.begin(0)+_end..m.begin(0)+_end]}"   if stampa
#        p "_line_txt[m.end(0)+_end..m.end(0)+_end]=#{_line_txt[m.end(0)+_end..m.end(0)+_end]}"   if stampa
#        p "_line_txt[m.begin(0)+_end..m.end(0)+_end]=#{_line_txt[m.begin(0)+_end..m.end(0)+_end]}"   if stampa
#        p "ok=#{ok}"  if stampa
      
      if ok
        _old_txt = _txt
        _ibegin = _row.to_s+'.'+(m.begin(0)+_end).to_s
        _end = m.end(0) + _end  
        _iend = _row.to_s+'.'+(_end.to_s)
        to_ret << [_ibegin, _iend]
      end
      if @op_only_first.include?(_tag) && ok
        m = nil
      else
        m = _re.match(_txt)
      end
    else
      m = nil
    end
  end
  to_ret
end

#highlight_tags(_row_begin, _code, _classes = self.classes) ⇒ Object



4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
# File 'ext/ae-editor/ae-editor.rb', line 4146

def highlight_tags(_row_begin,_code,_classes=self.classes)
  super(_row_begin,_code)
  tags_map = Hash.new 
  lines = _code.split("\n")
  lines.each_with_index{|_line,_i|
    _line+="\n"
    _row = _row_begin+_i
    #p "_row=#{_row}-_line=#{_line}"
    _txt = _line
    _end = 0
    @op_to_end_line.each{|c|
      if _classes.include?(c) && @h_re[c]
        m_c = @h_re[c].match(_txt)
        if m_c then
          _ibegin = _row.to_s+'.'+(m_c.begin(0)).to_s
          _iend = _row.to_s+'.'+(_line.length - 1).to_s
          tags_map[c] = [] if tags_map[c].nil?
          tags_map[c] << [_ibegin, _iend]
          _txt = m_c.pre_match
        end
      end
    } if @langs_conf['re_op.to_line_end']

    _classes.each{|c|
      if !@op_to_end_line.include?(c) && @h_re[c]
        _tags = find_tag(c, _row, _txt)
        if _tags.length >0
          tags_map[c] = [] if tags_map[c].nil?
          tags_map[c].concat(_tags)
        end
      end
    } if _txt.strip.length > 0  
  }
  tags_map
end