Class: Puppet::FileServing::Content
- Extended by:
- Indirector
- Defined in:
- lib/puppet/file_serving/content.rb
Overview
A class that handles retrieving file contents. It only reads the file when its content is specifically asked for.
Constant Summary
Constants included from Indirector
Instance Attribute Summary collapse
-
#content ⇒ Object
Read the content of our file in.
Attributes inherited from Base
#links, #path, #relative_path, #source
Class Method Summary collapse
Instance Method Summary collapse
-
#collect(source_permissions = nil) ⇒ Object
This is no longer used, but is still called by the file server implementations when interacting with their model abstraction.
- #to_binary ⇒ Object
Methods included from Indirector
Methods inherited from Base
absolute?, #exist?, #full_path, #initialize, #stat, #to_data_hash
Methods included from Util::MethodHelper
#requiredopts, #set_options, #symbolize_options
Constructor Details
This class inherits a constructor from Puppet::FileServing::Base
Instance Attribute Details
#content ⇒ Object
Read the content of our file in.
30 31 32 33 34 35 36 37 38 |
# File 'lib/puppet/file_serving/content.rb', line 30 def content unless @content # This stat can raise an exception, too. raise(ArgumentError, _("Cannot read the contents of links unless following links")) if stat.ftype == "symlink" @content = Puppet::FileSystem.binread(full_path) end @content end |
Class Method Details
.from_binary(content) ⇒ Object
18 19 20 21 22 |
# File 'lib/puppet/file_serving/content.rb', line 18 def self.from_binary(content) instance = new("/this/is/a/fake/path") instance.content = content instance end |
.supported_formats ⇒ Object
14 15 16 |
# File 'lib/puppet/file_serving/content.rb', line 14 def self.supported_formats [:binary] end |
Instance Method Details
#collect(source_permissions = nil) ⇒ Object
This is no longer used, but is still called by the file server implementations when interacting with their model abstraction.
26 27 |
# File 'lib/puppet/file_serving/content.rb', line 26 def collect( = nil) end |
#to_binary ⇒ Object
40 41 42 |
# File 'lib/puppet/file_serving/content.rb', line 40 def to_binary File.new(full_path, "rb") end |