Class: LogStash::Config::AST::Hash
Instance Method Summary collapse
Methods inherited from Node
Instance Method Details
#compile ⇒ Object
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_keys ⇒ Object
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 |