Class: LogStash::Config::AST::Hash

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

Constant Summary

Constants included from LogStashCompilerLSCLGrammar::LogStash::Compiler::LSCL::AST::Helpers

LogStashCompilerLSCLGrammar::LogStash::Compiler::LSCL::AST::Helpers::AND_METHOD, LogStashCompilerLSCLGrammar::LogStash::Compiler::LSCL::AST::Helpers::BOOLEAN_DSL_METHOD_SIGNATURE, LogStashCompilerLSCLGrammar::LogStash::Compiler::LSCL::AST::Helpers::NAND_METHOD, LogStashCompilerLSCLGrammar::LogStash::Compiler::LSCL::AST::Helpers::OR_METHOD, LogStashCompilerLSCLGrammar::LogStash::Compiler::LSCL::AST::Helpers::XOR_METHOD

Instance Method Summary collapse

Methods inherited from Node

#text_value_for_comments

Methods included from LogStashCompilerLSCLGrammar::LogStash::Compiler::LSCL::AST::Helpers

#base_id, #base_protocol, #base_source_with_metadata, #base_source_with_metadata=, #compose, #compose_for, #jdsl, jdsl, #line_and_column, #source_meta

Instance Method Details

#compileObject



376
377
378
379
# File 'lib/logstash/config/config_ast.rb', line 376

def compile
  validate!
  return "{" << recursive_select(HashEntry).collect(&:compile).reject(&:empty?).join(", ") << "}"
end

#find_duplicate_keysObject



371
372
373
374
# File 'lib/logstash/config/config_ast.rb', line 371

def find_duplicate_keys
  values = recursive_select(HashEntry).collect { |hash_entry| hash_entry.name.text_value }
  values.find_all { |v| values.count(v) > 1 }.uniq
end

#validate!Object



355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
# File 'lib/logstash/config/config_ast.rb', line 355

def validate!
  duplicate_values = find_duplicate_keys

  if duplicate_values.size > 0
    raise ConfigurationError.new(
      I18n.t("logstash.runner.configuration.invalid_plugin_settings_duplicate_keys",
             :keys => duplicate_values.join(', '),
             :line => input.line_of(interval.first),
             :column => input.column_of(interval.first),
             :byte => interval.first + 1,
             :after => input[0..interval.first]
            )
    )
  end
end