Sha256: c0d422ef5a9acef88b72d590298b9de52d36aad77c41c63642e0f494db68adba

Contents?: true

Size: 1.77 KB

Versions: 133

Compression:

Stored size: 1.77 KB

Contents

#
# Fluent
#
#    Licensed under the Apache License, Version 2.0 (the "License");
#    you may not use this file except in compliance with the License.
#    You may obtain a copy of the License at
#
#        http://www.apache.org/licenses/LICENSE-2.0
#
#    Unless required by applicable law or agreed to in writing, software
#    distributed under the License is distributed on an "AS IS" BASIS,
#    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#    See the License for the specific language governing permissions and
#    limitations under the License.
#

require 'fluent/config/error'
require 'fluent/config/element'
require 'fluent/configurable'

module Fluent
  module Config
    def self.parse(str, fname, basepath = Dir.pwd, v1_config = nil, syntax: :v1)
      parser = if fname =~ /\.rb$/ || syntax == :ruby
                 :ruby
               elsif v1_config.nil?
                 case syntax
                 when :v1 then :v1
                 when :v0 then :v0
                 else
                   raise ArgumentError, "Unknown Fluentd configuration syntax: '#{syntax}'"
                 end
               elsif v1_config then :v1
               else :v0
               end
      case parser
      when :v1
        require 'fluent/config/v1_parser'
        V1Parser.parse(str, fname, basepath, Kernel.binding)
      when :v0
        # TODO: show deprecated message in v1
        require 'fluent/config/parser'
        Parser.parse(str, fname, basepath)
      when :ruby
        require 'fluent/config/dsl'
        Config::DSL::Parser.parse(str, File.join(basepath, fname))
      else
        raise "[BUG] unknown configuration parser specification:'#{parser}'"
      end
    end

    def self.new(name = '')
      Element.new(name, '', {}, [])
    end
  end
end

Version data entries

133 entries across 133 versions & 2 rubygems

Version Path
fluentd-1.7.1 lib/fluent/config.rb
fluentd-1.7.0-x64-mingw32 lib/fluent/config.rb
fluentd-1.7.0-x86-mingw32 lib/fluent/config.rb
fluentd-1.7.0 lib/fluent/config.rb
fluentd-1.7.0.rc1 lib/fluent/config.rb
fluentd-1.6.3-x64-mingw32 lib/fluent/config.rb
fluentd-1.6.3-x86-mingw32 lib/fluent/config.rb
fluentd-1.6.3 lib/fluent/config.rb
fluentd-1.6.2-x64-mingw32 lib/fluent/config.rb
fluentd-1.6.2-x86-mingw32 lib/fluent/config.rb
fluentd-1.6.2 lib/fluent/config.rb
fluentd-1.6.1-x86-mingw32 lib/fluent/config.rb
fluentd-1.6.1-x64-mingw32 lib/fluent/config.rb
fluentd-1.6.1 lib/fluent/config.rb
fluentd-1.6.0-x64-mingw32 lib/fluent/config.rb
fluentd-1.6.0-x86-mingw32 lib/fluent/config.rb
fluentd-1.6.0 lib/fluent/config.rb
fluentd-1.5.2-x86-mingw32 lib/fluent/config.rb
fluentd-1.5.2-x64-mingw32 lib/fluent/config.rb
fluentd-1.5.2 lib/fluent/config.rb