Class: Puppet::FileSystem::MemoryImpl Private
- Defined in:
- lib/puppet/file_system/memory_impl.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Instance Method Summary collapse
- #assert_path(path) ⇒ Object private
- #basename(path) ⇒ Object private
- #children(path) ⇒ Object private
- #directory?(path) ⇒ Boolean private
- #each_line(path, &block) ⇒ Object private
- #executable?(path) ⇒ Boolean private
- #exist?(path) ⇒ Boolean private
- #expand_path(path, dir_string = nil) ⇒ Object private
- #file?(path) ⇒ Boolean private
-
#initialize(*files) ⇒ MemoryImpl
constructor
private
A new instance of MemoryImpl.
- #open(path, *args, &block) ⇒ Object private
- #path_string(object) ⇒ Object private
- #pathname(path) ⇒ Object private
- #read(path, opts = {}) ⇒ Object private
- #read_preserve_line_endings(path) ⇒ Object private
- #readlink(path) ⇒ Object private
- #symlink?(path) ⇒ Boolean private
Constructor Details
#initialize(*files) ⇒ MemoryImpl
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of MemoryImpl.
3 4 5 |
# File 'lib/puppet/file_system/memory_impl.rb', line 3 def initialize(*files) @files = files + all_children_of(files) end |
Instance Method Details
#assert_path(path) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
78 79 80 81 82 83 84 |
# File 'lib/puppet/file_system/memory_impl.rb', line 78 def assert_path(path) if path.is_a?(Puppet::FileSystem::MemoryFile) path else find(path) or raise ArgumentError, _("Unable to find registered object for %{path}") % { path: path.inspect } end end |
#basename(path) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
52 53 54 |
# File 'lib/puppet/file_system/memory_impl.rb', line 52 def basename(path) path.duplicate_as(File.basename(path_string(path))) end |
#children(path) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
40 41 42 |
# File 'lib/puppet/file_system/memory_impl.rb', line 40 def children(path) path.children end |
#directory?(path) ⇒ Boolean
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
15 16 17 |
# File 'lib/puppet/file_system/memory_impl.rb', line 15 def directory?(path) path.directory? end |
#each_line(path, &block) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
44 45 46 |
# File 'lib/puppet/file_system/memory_impl.rb', line 44 def each_line(path, &block) path.each_line(&block) end |
#executable?(path) ⇒ Boolean
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
23 24 25 |
# File 'lib/puppet/file_system/memory_impl.rb', line 23 def executable?(path) path.executable? end |
#exist?(path) ⇒ Boolean
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
11 12 13 |
# File 'lib/puppet/file_system/memory_impl.rb', line 11 def exist?(path) path.exist? end |
#expand_path(path, dir_string = nil) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
7 8 9 |
# File 'lib/puppet/file_system/memory_impl.rb', line 7 def (path, dir_string = nil) File.(path, dir_string) end |
#file?(path) ⇒ Boolean
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
19 20 21 |
# File 'lib/puppet/file_system/memory_impl.rb', line 19 def file?(path) path.file? end |
#open(path, *args, &block) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
69 70 71 72 73 74 75 76 |
# File 'lib/puppet/file_system/memory_impl.rb', line 69 def open(path, *args, &block) handle = assert_path(path).handle if block_given? yield handle else return handle end end |
#path_string(object) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
56 57 58 |
# File 'lib/puppet/file_system/memory_impl.rb', line 56 def path_string(object) object.path end |
#pathname(path) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
48 49 50 |
# File 'lib/puppet/file_system/memory_impl.rb', line 48 def pathname(path) find(path) || Puppet::FileSystem::MemoryFile.a_missing_file(path) end |
#read(path, opts = {}) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
60 61 62 63 |
# File 'lib/puppet/file_system/memory_impl.rb', line 60 def read(path, opts = {}) handle = assert_path(path).handle handle.read end |
#read_preserve_line_endings(path) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
65 66 67 |
# File 'lib/puppet/file_system/memory_impl.rb', line 65 def read_preserve_line_endings(path) read(path) end |
#readlink(path) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
31 32 33 34 35 36 37 38 |
# File 'lib/puppet/file_system/memory_impl.rb', line 31 def readlink(path) path = path.path link = find(path) return Puppet::FileSystem::MemoryFile.a_missing_file(path) unless link source = link.source_path return Puppet::FileSystem::MemoryFile.a_missing_file(link) unless source find(source) || Puppet::FileSystem::MemoryFile.a_missing_file(source) end |
#symlink?(path) ⇒ Boolean
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
27 28 29 |
# File 'lib/puppet/file_system/memory_impl.rb', line 27 def symlink?(path) path.symlink? end |