Class: LogStash::Config::AST::Branch

Inherits:
Node
  • Object
show all
Defined in:
lib/logstash/config/config_ast.rb

Instance Method Summary collapse

Methods inherited from Node

#text_value_for_comments

Instance Method Details

#compileObject



381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
# File 'lib/logstash/config/config_ast.rb', line 381

def compile

  # this construct is non obvious. we need to loop through each event and apply the conditional.
  # each branch of a conditional will contain a construct (a filter for example) that also loops through
  # the events variable so we have to initialize it to [event] for the branch code.
  # at the end, events is returned to handle the case where no branch match and no branch code is executed
  # so we must make sure to return the current event.

  type = recursive_select_parent(PluginSection).first.plugin_type.text_value

  if type == "filter"
    i = LogStash::Config::AST.defered_conditionals_index += 1
    source = <<-CODE
      def cond_func_#{i}(input_events)
        result = []
        input_events.each do |event|
          events = [event]
          #{super}
          end
          result += events
        end
        result
      end
    CODE
    LogStash::Config::AST.defered_conditionals << source

    <<-CODE
      events = cond_func_#{i}(events)
    CODE
  else # Output
    <<-CODE
      #{super}
      end
    CODE
  end
end