Sha256: 501e6ef23893e7fca0cce88733d7748fe9d6beaa078500d267af7ef8b8de33de

Contents?: true

Size: 989 Bytes

Versions: 4

Compression:

Stored size: 989 Bytes

Contents

module Avro
  module Builder
    # TODO: eventually this should be refactored into something standalone
    # instead of a module that is included to provide the file handling methods.
    module FileHandler

      module ClassMethods
        # Load paths are used to search for imports and extends.
        def load_paths
          @load_paths ||= Set.new
        end
      end

      def self.included(base)
        base.extend ClassMethods
      end

      def read_file(name)
        File.read(find_file(name))
      end

      private

      def find_file(name)
        file_name = "#{name.to_s.sub(/\.rb$/, '')}.rb"
        matches = self.class.load_paths.flat_map do |load_path|
          Dir["#{load_path}/**/*.rb"].select do |file_path|
            file_path.end_with?(file_name)
          end
        end
        raise "Multiple matches: #{matches}" if matches.size > 1
        raise "File not found #{name}" if matches.empty?

        matches.first
      end

    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
avro-builder-0.3.1 lib/avro/builder/file_handler.rb
avro-builder-0.3.0 lib/avro/builder/file_handler.rb
avro-builder-0.2.0 lib/avro/builder/file_handler.rb
avro-builder-0.1.0 lib/avro/builder/file_handler.rb