Sha256: 6bd507479715ba4b9036f1d199ac7ff7167583936434ed5386d5c5900092f2ae

Contents?: true

Size: 1.42 KB

Versions: 415

Compression:

Stored size: 1.42 KB

Contents

# An in-memory file abstraction. Commonly used with Puppet::FileSystem::File#overlay
# @api private
class Puppet::FileSystem::MemoryFile
  attr_reader :path, :children

  def self.a_missing_file(path)
    new(path, :exist? => false, :executable? => false)
  end

  def self.a_regular_file_containing(path, content)
    new(path, :exist? => true, :executable? => false, :content => content)
  end

  def self.an_executable(path)
    new(path, :exist? => true, :executable? => true)
  end

  def self.a_directory(path, children = [])
    new(path,
        :exist? => true,
        :excutable? => true,
        :directory? => true,
        :children => children)
  end

  def initialize(path, properties)
    @path = path
    @properties = properties
    @children = (properties[:children] || []).collect do |child|
      child.duplicate_as(File.join(@path, child.path))
    end
  end

  def directory?; @properties[:directory?]; end
  def exist?; @properties[:exist?]; end
  def executable?; @properties[:executable?]; end

  def each_line(&block)
    handle.each_line(&block)
  end

  def handle
    raise Errno::ENOENT unless exist?
    StringIO.new(@properties[:content] || '')
  end

  def duplicate_as(other_path)
    self.class.new(other_path, @properties)
  end

  def absolute?
    Pathname.new(path).absolute?
  end

  def to_path
    path
  end

  def to_s
    to_path
  end

  def inspect
    "<Puppet::FileSystem::MemoryFile:#{to_s}>"
  end
end

Version data entries

415 entries across 415 versions & 3 rubygems

Version Path
puppet-5.5.17-x86-mingw32 lib/puppet/file_system/memory_file.rb
puppet-5.5.17 lib/puppet/file_system/memory_file.rb
puppet-6.10.1 lib/puppet/file_system/memory_file.rb
puppet-5.5.17-x64-mingw32 lib/puppet/file_system/memory_file.rb
puppet-6.10.1-x86-mingw32 lib/puppet/file_system/memory_file.rb
puppet-5.5.17-universal-darwin lib/puppet/file_system/memory_file.rb
puppet-6.10.1-x64-mingw32 lib/puppet/file_system/memory_file.rb
puppet-6.10.1-universal-darwin lib/puppet/file_system/memory_file.rb
puppet-6.4.4 lib/puppet/file_system/memory_file.rb
puppet-6.4.4-x86-mingw32 lib/puppet/file_system/memory_file.rb
puppet-6.4.4-x64-mingw32 lib/puppet/file_system/memory_file.rb
puppet-6.4.4-universal-darwin lib/puppet/file_system/memory_file.rb
puppet-6.10.0 lib/puppet/file_system/memory_file.rb
puppet-6.10.0-x86-mingw32 lib/puppet/file_system/memory_file.rb
puppet-6.10.0-x64-mingw32 lib/puppet/file_system/memory_file.rb
puppet-6.10.0-universal-darwin lib/puppet/file_system/memory_file.rb
puppet-6.9.0 lib/puppet/file_system/memory_file.rb
puppet-6.9.0-x86-mingw32 lib/puppet/file_system/memory_file.rb
puppet-6.9.0-x64-mingw32 lib/puppet/file_system/memory_file.rb
puppet-6.9.0-universal-darwin lib/puppet/file_system/memory_file.rb