Class: TracWiki::Env

Inherits:
Object
  • Object
show all
Defined in:
lib/trac-wiki/env.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(parser, env = {}) ⇒ Env

Returns a new instance of Env.



6
7
8
9
10
11
# File 'lib/trac-wiki/env.rb', line 6

def initialize(parser, env = {})
  @parser = parser
  @env = env || {}
  @argv = {}
  @argv_stack = []
end

Instance Attribute Details

#envObject

Returns the value of attribute env.



5
6
7
# File 'lib/trac-wiki/env.rb', line 5

def env
  @env
end

Instance Method Details

#[](key) ⇒ Object



188
189
190
# File 'lib/trac-wiki/env.rb', line 188

def [](key)
  at(key)
end

#[]=(key, val) ⇒ Object



192
193
194
195
# File 'lib/trac-wiki/env.rb', line 192

def []=(key,val)
  #print "set #{key} to #{val}\n"
  atput(key,val)
end

#_do_macro_temp_low(macro_name) ⇒ Object



214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
# File 'lib/trac-wiki/env.rb', line 214

def _do_macro_temp_low(macro_name)
  if ! @parser.template_handler.nil?
    str = @parser.template_handler.call(macro_name, @env, @argv)
    is_defined = !str.nil?
    @parser.used_templates[macro_name] = is_defined if macro_name != 'unkmacro'
    if is_defined
      if @argv_stack.size > 32
         return "TOO_DEEP_RECURSION(`#{str}`)\n"
         #return "TOO_DEEP_RECURSION"
      end
      # FIXME: melo by nahlasit jestli to chce expandovat | wiki expadnovat |raw html
      #print "temp(#{macro_name}) --> : #{str}\n"
      #print "bf ex: [#{str}]\n"
      str = expand(str)
      #print "af ex: [#{str}]\n"
      return str
    end
  end
  #return "UNKNOWN-MACRO(#{macro_name})"
  return "UNKNOWN-MACRO(#{@argv['0']})" if macro_name == 'unkmacro'
  return "{{unkmacro #{macro_name}}}" if @argv['##'] == '0'
  return "{{unkmacro #{macro_name}|#{@argv['00']}}}"
end

#arg(idx, default = nil) ⇒ Object



104
105
106
# File 'lib/trac-wiki/env.rb', line 104

def arg(idx, default = nil)
  @env[:cmd_args][idx] || default || ''
end

#arg_countObject



100
101
102
# File 'lib/trac-wiki/env.rb', line 100

def arg_count
  @env[:cmd_args].size
end

#at(key, default = nil, to_str = true) ⇒ Object



123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
# File 'lib/trac-wiki/env.rb', line 123

def at(key, default = nil, to_str = true)

  return @argv[key] if @argv.key? key

  prepare_y if key =~ /^y\./

  cur = @env
  key.split(/\./).each do |subkey|
    subkey = at($1, '') if subkey =~ /\A\$(.*)/
    #print "at:subkey: #{subkey}\n"
    if cur.is_a? Hash
      cur = cur[subkey]
    elsif cur.is_a? Array
      cur = cur[subkey.to_i]
    else
      #print "at(#{key})->: default"
      cur = nil
    end
    #print "at(#{key}) -> default\n" if cur.nil?
    if cur.nil?
      if ! @parser.at_callback.nil?
        val = @parser.at_callback.call(key, self) 
        return val if ! val.nil?
      end
      return default
    end
  end
  #rint "at(#{key})->#{cur}\n"
  to_str ? cur.to_s : cur
end

#atput(key, val = nil) ⇒ Object



153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
# File 'lib/trac-wiki/env.rb', line 153

def atput(key, val = nil)
  #print "atput: #{key}, #{val} env:"
  #pp @env

  # local variable
  if @argv.key? key
     @argv[key] = val
     return
  end

  cur = @env
  if val.is_a? Symbol
    @env[key] = val
    return
  end
  keys = key.split(/\./)
  lastkey = keys.pop
  keys.each do |subkey|
    if cur.is_a? Hash
      cur = cur[subkey]
    elsif cur.is_a? Array
      cur = cur[subkey.to_i]
    else
      return
    end
  end
  if  cur.is_a? Hash
    cur[lastkey] = val
  elsif cur.is_a? Array
    cur[lastkey.to_i] = val
  end
  #print "atput:env:"
  #pp @env
end

#do_macro_arg_to_env(args) ⇒ Object



238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
# File 'lib/trac-wiki/env.rb', line 238

def do_macro_arg_to_env(args)
  argv = {}
  argv['00'] = args.join('|')
  argv['##'] = args.size.to_s
  arg0 = []

  idx = 1
  args.each do |arg|
    if arg =~ /\A\s*(\w+)=\s*(.*)/m
      argv[$1] = $2
    else
      argv[idx.to_s] = arg
      arg0.push arg
      idx+=1
    end
  end
  argv['0'] = arg0.join('|')
  argv['#'] = arg0.size.to_s
  return argv
end

#do_macro_cmd(macro_name, args) ⇒ Object

calls {!cmd} (if exists r: result of {!cmd}



88
89
90
91
92
93
94
95
96
97
98
# File 'lib/trac-wiki/env.rb', line 88

def do_macro_cmd(macro_name, args)
  return '|' if macro_name == '!'
  if @parser.macro_commands.key?(macro_name)
    @env[:cmd_args] =  args
    @env[:cmd_arg0] =  macro_name
    #print "mac: #{macro_name} env:" ; pp (@env)
    ret = @parser.macro_commands[macro_name].call(self)
    return ret
  end
  "UCMD(#{macro_name}|#{@env['arg']})"
end

#do_macro_templ(macro_name, args) ⇒ Object

expand macro ‘macro_name` with `args` afer expansion all {macros} will be expanded recursively r: expanded string



200
201
202
203
204
205
206
207
208
209
210
211
212
# File 'lib/trac-wiki/env.rb', line 200

def do_macro_templ(macro_name, args)
  return "!{{toc}}" if macro_name == 'toc'
  return args.join('|').strip  if macro_name == '#echo'
  return '' if macro_name == '#'

  @argv_stack.push @argv

  @argv = do_macro_arg_to_env(args)
  ret = _do_macro_temp_low(macro_name)

  @argv = @argv_stack.pop
  return ret
end

#do_macro_var(var_name, args) ⇒ Object



259
260
261
262
263
264
265
# File 'lib/trac-wiki/env.rb', line 259

def do_macro_var(var_name, args)
  ret = at(var_name, nil)
  return ret if !ret.nil?
  return args.join('|')  if args.size > 0
  return ''
  "UVAR(#{var_name}|#{@env['arg']})"
end

#expand(str) ⇒ Object



275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
# File 'lib/trac-wiki/env.rb', line 275

def expand(str)
  ret = ''
  return '' if str.nil?
  while str =~ TracWiki::Parser::MACRO_BEG_INSIDE_REX
      prefix, macro_name2, str = $1, $2, $'
      ret << prefix
      # FIXME if macro_name2 =~ /^!/
      mac_out, str, lines, offset = parse_macro_all(macro_name2, str, nil)

      ret << mac_out
      #print "Too long macro expadion" if ret.size > 1_000_000
      raise TooLongException if ret.size > 1_000_000
  end
  #print "text: #{text.nil?}\n"
  #print "ret: #{ret.nil?}\n"
  ret += str
  return ret.gsub(/\\\r?\n\s*/, '')
end

#expand_arg(idx, default = nil) ⇒ Object

template expand



268
269
270
# File 'lib/trac-wiki/env.rb', line 268

def expand_arg(idx, default = nil)
  expand(arg(idx, default))
end

#parse_balanced(str) ⇒ Object

r: [args], rest-of-str, num-of-lines, offset-last-line



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
# File 'lib/trac-wiki/env.rb', line 55

def parse_balanced(str)
  str.sub!(/\A(\s*[\r\n])*([ \t]*[\|:]?)/, '')
  emptylines,  empty  = $1||'', $2||''
  lines = emptylines.count("\n")
  offset = empty.size
  return [], $', 0, offset+2 if str =~ /\A}}/
  #print "_parse_macro_cmd: #{macro_name}, str#{str}\n"
  dep = 0
  args = ['']
  while str =~ /{{|}}|\n|\|/
    prefix, match, str  = $`, $&, $'
    offset += prefix.size + match.size
    #raise "offset is nil" if offset.nil? 
    args[-1] += prefix
    if match == '{{'
      dep += 1
    elsif match == '}}'
      dep -= 1
      return args, str, lines, offset if dep < 0
    elsif match == "\n" 
      lines += 1
      offset = 0
    elsif match == '|' && dep == 0
      args.push('')
      next
    end
    args[-1]  += $&
  end
  raise "eol in parsing macro params"
end

#parse_macro_all(macro_name, str, macro_name_size = nil) ⇒ Object

r: expanded-macro, rest-of-str, lines, offset-in-line



14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# File 'lib/trac-wiki/env.rb', line 14

def parse_macro_all(macro_name, str, macro_name_size = nil)
  str_size = str.size
  args, rest, lines, offset = parse_balanced(str)
  atput('maclen', str_size - rest.size + macro_name_size) if ! macro_name_size.nil?


  if macro_name =~ /\A!/
     # {{!cmd}}
     mac_out = parse_macro_cmd(macro_name, args)
  else
     # {{$cmd}},  {{template}}, ...
     if @argv_stack.size == 0
       prefix_size  = lines == 0  ? macro_name.size + 2 + at('offset',0).to_i : 0
       @env['maclines'] = lines
       @env['eoffset'] = offset + prefix_size 
       @env['elineno'] = at('lineno', 0).to_i + lines
     end 
     mac_out = parse_macro_vartempl(macro_name, args)
  end
  return mac_out || '', rest, lines, offset
end

#parse_macro_cmd(macro_name, args) ⇒ Object

parse to next }} (with balanced {..}) like parse_macro_vartempl but not expand content r: [expansion, rest_of_str, count_of_consumed_lines]



50
51
52
# File 'lib/trac-wiki/env.rb', line 50

def parse_macro_cmd(macro_name, args)
   return do_macro_cmd(macro_name, args)
end

#parse_macro_vartempl(macro_name, args) ⇒ Object

read to args to }} (while balancing and }) ret: (arg, rest, lines) mac_out – string to }} (macros inside expanded) rest – str aftrer }} lines – howmany n eaten from str (from begining to }})



41
42
43
44
45
# File 'lib/trac-wiki/env.rb', line 41

def parse_macro_vartempl(macro_name, args)
  args.map! { |arg| expand(arg) }
  return do_macro_var($1, args) if macro_name =~ /^\$(.*)/
  return do_macro_templ(macro_name, args)
end

#pp_envObject



272
273
274
# File 'lib/trac-wiki/env.rb', line 272

def pp_env
  pp(@env)
end

#prepare_yObject



108
109
110
111
112
113
114
115
116
117
118
119
120
121
# File 'lib/trac-wiki/env.rb', line 108

def prepare_y
  #print "prepare_y\n"
  return if @env.key? 'y'
  arg = @argv['00']
  return if arg.nil?
  begin
    @env['y'] = YAML.load(arg)
    #print "y"
    #pp @env['y']
  rescue
    @env['y'] = nil
    #print "y:nil\n"
  end
end