Class: PuppetX::IniFile
- Inherits:
-
Object
- Object
- PuppetX::IniFile
- Includes:
- Enumerable
- Defined in:
- lib/puppet_x/twp/inifile.rb
Overview
class IniFile
Defined Under Namespace
Constant Summary collapse
- VERSION =
'3.0.0'
Instance Attribute Summary collapse
-
#encoding ⇒ Object
Get and set the encoding.
-
#filename ⇒ Object
Get and set the filename.
Class Method Summary collapse
-
.load(filename, opts = {}) ⇒ Object
p p Public: Open an INI file and load the contents.
Instance Method Summary collapse
-
#[](section) ⇒ Object
Public: Get the section Hash by name.
-
#[]=(section, value) ⇒ Object
Public: Set the section to a hash of parameter/value pairs.
-
#clone ⇒ Object
Public: Produces a duplicate of this IniFile.
-
#delete_section(section) ⇒ Object
Public: Remove a section identified by name from the IniFile.
-
#dup ⇒ Object
Public: Produces a duplicate of this IniFile.
-
#each ⇒ Object
Public: Yield each INI file section, parameter, and value in turn to the given block.
-
#each_section ⇒ Object
Public: Yield each section in turn to the given block.
-
#eql?(other) ⇒ Boolean
(also: #==)
Public: Compare this IniFile to some other IniFile.
-
#escape_value(value) ⇒ Object
Escape special characters.
-
#freeze ⇒ Object
Public: Freeze the state of this IniFile object.
-
#initialize(opts = {}) ⇒ IniFile
constructor
Public: Create a new INI file from the given set of options.
-
#match(regex) ⇒ Object
Public: Create a Hash containing only those INI file sections whose names match the given regular expression.
-
#merge(other) ⇒ Object
Public: Creates a copy of this inifile with the entries from the other_inifile merged into the copy.
-
#merge!(other) ⇒ Object
Public: Merges other_inifile into this inifile, overwriting existing entries.
-
#parse(content) ⇒ Object
Parse the given content and store the information in this IniFile instance.
-
#read(opts = {}) ⇒ Object
(also: #restore)
Public: Read the contents of the INI file from the file system and replace and set the state of this IniFile instance.
-
#section?(section) ⇒ Boolean
Public: Check to see if the IniFile contains the section.
-
#sections ⇒ Object
Returns an Array of section names contained in this IniFile.
-
#taint ⇒ Object
Public: Mark this IniFile as tainted – this will traverse each section marking each as tainted.
-
#to_h ⇒ Object
Returns this IniFile converted to a Hash.
-
#to_s ⇒ Object
Returns this IniFile converted to a String.
-
#write(opts = {}) ⇒ Object
(also: #save)
Public: Write the contents of this IniFile to the file system.
Constructor Details
#initialize(opts = {}) ⇒ IniFile
Public: Create a new INI file from the given set of options. If :content is provided then it will be used to populate the INI file. If a :filename is provided then the contents of the file will be parsed and stored in the INI file. If neither the :content or :filename is provided then an empty INI file is created.
opts - The Hash of options (default: {})
:content - The String/Hash containing the INI contents
:comment - String containing the comment character(s)
:parameter - String used to separate parameter and value
:encoding - Encoding String for reading / writing
:default - The String name of the default global section
:filename - The filename as a String
Examples
IniFile.new
#=> an empty IniFile instance
IniFile.new( :content => "[global]\nfoo=bar" )
#=> an IniFile instance
IniFile.new( :filename => 'file.ini', :encoding => 'UTF-8' )
#=> an IniFile instance
IniFile.new( :content => "[global]\nfoo=bar", :comment => '#' )
#=> an IniFile instance
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
# File 'lib/puppet_x/twp/inifile.rb', line 73 def initialize(opts = {}) @comment = opts.fetch(:comment, '#') @param = opts.fetch(:parameter, '=') @encoding = opts.fetch(:encoding, nil) @default = opts.fetch(:default, 'global') @filename = opts.fetch(:filename, nil) content = opts.fetch(:content, nil) @ini = Hash.new { |h, k| h[k] = {} } if content.is_a?(Hash) then merge!(content) elsif content then parse(content) elsif @filename then read end end |
Instance Attribute Details
#encoding ⇒ Object
Get and set the encoding
43 44 45 |
# File 'lib/puppet_x/twp/inifile.rb', line 43 def encoding @encoding end |
#filename ⇒ Object
Get and set the filename
40 41 42 |
# File 'lib/puppet_x/twp/inifile.rb', line 40 def filename @filename end |
Class Method Details
.load(filename, opts = {}) ⇒ Object
p p Public: Open an INI file and load the contents.
filename - The name of the file as a String opts - The Hash of options (default: {})
:comment - String containing the comment character(s)
:parameter - String used to separate parameter and value
:encoding - Encoding String for reading / writing
:default - The String name of the default global section
Examples
IniFile.load('file.ini')
#=> IniFile instance
IniFile.load('does/not/exist.ini')
#=> nil
Returns an IniFile instance or nil if the file could not be opened.
34 35 36 37 |
# File 'lib/puppet_x/twp/inifile.rb', line 34 def self.load(filename, opts = {}) return unless File.file? filename new(opts.merge(filename: filename)) end |
Instance Method Details
#[](section) ⇒ Object
Public: Get the section Hash by name. If the section does not exist, then it will be created.
section - The section name as a String.
Examples
inifile['global']
#=> global section Hash
Returns the Hash of parameter/value pairs for this section.
270 271 272 273 |
# File 'lib/puppet_x/twp/inifile.rb', line 270 def [](section) return nil if section.nil? @ini[section.to_s] end |
#[]=(section, value) ⇒ Object
Public: Set the section to a hash of parameter/value pairs.
section - The section name as a String. value - The Hash of parameter/value pairs.
Examples
inifile['tenderloin'] = { 'gritty' => 'yes' }
#=> { 'gritty' => 'yes' }
Returns the value Hash.
286 287 288 |
# File 'lib/puppet_x/twp/inifile.rb', line 286 def []=(section, value) @ini[section.to_s] = value end |
#clone ⇒ Object
Public: Produces a duplicate of this IniFile. The duplicate is independent of the original – i.e. the duplicate can be modified without changing the original. The tainted state and the frozen state of the original is copied to the duplicate.
Returns a new IniFile.
361 362 363 364 365 |
# File 'lib/puppet_x/twp/inifile.rb', line 361 def clone other = dup other.freeze if frozen? other end |
#delete_section(section) ⇒ Object
Public: Remove a section identified by name from the IniFile.
section - The section name as a String.
Returns the deleted section Hash.
255 256 257 |
# File 'lib/puppet_x/twp/inifile.rb', line 255 def delete_section(section) @ini.delete section.to_s end |
#dup ⇒ Object
Public: Produces a duplicate of this IniFile. The duplicate is independent of the original – i.e. the duplicate can be modified without changing the original. The tainted state of the original is copied to the duplicate.
Returns a new IniFile.
347 348 349 350 351 352 353 |
# File 'lib/puppet_x/twp/inifile.rb', line 347 def dup other = super other.instance_variable_set(:@ini, Hash.new { |h, k| h[k] = {} }) @ini.each_pair { |s, h| other[s].merge! h } other.taint if tainted? other end |
#each ⇒ Object
Public: Yield each INI file section, parameter, and value in turn to the given block.
block - The block that will be iterated by the each method. The block will
be passed the current section and the parameter/value pair.
Examples
inifile.each do |section, parameter, value|
puts "#{parameter} = #{value} [in section - #{section}]"
end
Returns this IniFile.
222 223 224 225 226 227 228 229 230 |
# File 'lib/puppet_x/twp/inifile.rb', line 222 def each return unless block_given? @ini.each do |section, hash| hash.each do |param, val| yield section, param, val end end self end |
#each_section ⇒ Object
Public: Yield each section in turn to the given block.
block - The block that will be iterated by the each method. The block will
be passed the current section as a Hash.
Examples
inifile.each_section do |section|
puts section.inspect
end
Returns this IniFile.
244 245 246 247 248 |
# File 'lib/puppet_x/twp/inifile.rb', line 244 def each_section return unless block_given? @ini.each_key { |section| yield section } self end |
#eql?(other) ⇒ Boolean Also known as: ==
Public: Compare this IniFile to some other IniFile. For two INI files to be equivalent, they must have the same sections with the same parameter / value pairs in each section.
other - The other IniFile.
Returns true if the INI files are equivalent and false if they differ.
374 375 376 377 378 |
# File 'lib/puppet_x/twp/inifile.rb', line 374 def eql?(other) return true if equal? other return false unless other.instance_of? self.class @ini == other.instance_variable_get(:@ini) end |
#escape_value(value) ⇒ Object
Escape special characters.
value - The String value to escape.
Returns the escaped value.
386 387 388 389 390 391 392 393 394 |
# File 'lib/puppet_x/twp/inifile.rb', line 386 def escape_value(value) value = value.to_s.dup value.gsub!(%r{\\([0nrt])}, '\\\\\1') value.gsub!(%r{\n}, '\n') value.gsub!(%r{\r}, '\r') value.gsub!(%r{\t}, '\t') value.gsub!(%r{\0}, '\0') value end |
#freeze ⇒ Object
Public: Freeze the state of this IniFile object. Any attempts to change the object will raise an error.
Returns this IniFile.
324 325 326 327 328 329 |
# File 'lib/puppet_x/twp/inifile.rb', line 324 def freeze super @ini.each_value { |h| h.freeze } @ini.freeze self end |
#match(regex) ⇒ Object
Public: Create a Hash containing only those INI file sections whose names match the given regular expression.
regex - The Regexp used to match section names.
Examples
inifile.match(/^tree_/)
#=> Hash of matching sections
Return a Hash containing only those sections that match the given regular expression.
302 303 304 |
# File 'lib/puppet_x/twp/inifile.rb', line 302 def match(regex) @ini.dup.delete_if { |section, _| section !~ regex } end |
#merge(other) ⇒ Object
Public: Creates a copy of this inifile with the entries from the other_inifile merged into the copy.
other - The other IniFile.
Returns a new IniFile.
160 161 162 |
# File 'lib/puppet_x/twp/inifile.rb', line 160 def merge(other) dup.merge!(other) end |
#merge!(other) ⇒ Object
Public: Merges other_inifile into this inifile, overwriting existing entries. Useful for having a system inifile with user overridable settings elsewhere.
other - The other IniFile.
Returns this IniFile.
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 |
# File 'lib/puppet_x/twp/inifile.rb', line 171 def merge!(other) return self if other.nil? my_keys = @ini.keys other_keys = case other when IniFile other.instance_variable_get(:@ini).keys when Hash other.keys else raise Error, "cannot merge contents from '#{other.class.name}'" end (my_keys & other_keys).each do |key| case other[key] when Hash @ini[key].merge!(other[key]) when nil nil else raise Error, "cannot merge section #{key.inspect} - unsupported type: #{other[key].class.name}" end end (other_keys - my_keys).each do |key| @ini[key] = case other[key] when Hash other[key].dup when nil {} else raise Error, "cannot merge section #{key.inspect} - unsupported type: #{other[key].class.name}" end end self end |
#parse(content) ⇒ Object
Parse the given content and store the information in this IniFile instance. All data will be cleared out and replaced with the information read from the content.
content - A String or a file descriptor (must respond to ‘each_line`)
Returns this IniFile.
403 404 405 406 407 |
# File 'lib/puppet_x/twp/inifile.rb', line 403 def parse(content) parser = Parser.new(@ini, @param, @comment, @default) parser.parse(content) self end |
#read(opts = {}) ⇒ Object Also known as: restore
Public: Read the contents of the INI file from the file system and replace and set the state of this IniFile instance. If left unspecified the currently configured filename and encoding will be used when reading from the file system. Otherwise the filename and encoding can be specified in the options hash.
opts - The default options Hash
:filename - The filename as a String
:encoding - The encoding as a String
Returns this IniFile instance if the read was successful; nil is returned if the file could not be read.
127 128 129 130 131 132 133 134 135 |
# File 'lib/puppet_x/twp/inifile.rb', line 127 def read(opts = {}) filename = opts.fetch(:filename, @filename) encoding = opts.fetch(:encoding, @encoding) return unless File.file? filename mode = encoding ? "r:#{encoding}" : 'r' File.open(filename, mode) { |fd| parse fd } self end |
#section?(section) ⇒ Boolean
Public: Check to see if the IniFile contains the section.
section - The section name as a String.
Returns true if the section exists in the IniFile.
311 312 313 |
# File 'lib/puppet_x/twp/inifile.rb', line 311 def section?(section) @ini.key? section.to_s end |
#sections ⇒ Object
Returns an Array of section names contained in this IniFile.
316 317 318 |
# File 'lib/puppet_x/twp/inifile.rb', line 316 def sections @ini.keys end |
#taint ⇒ Object
Public: Mark this IniFile as tainted – this will traverse each section marking each as tainted.
Returns this IniFile.
335 336 337 338 339 340 |
# File 'lib/puppet_x/twp/inifile.rb', line 335 def taint super @ini.each_value { |h| h.taint } @ini.taint self end |
#to_h ⇒ Object
Returns this IniFile converted to a Hash.
150 151 152 |
# File 'lib/puppet_x/twp/inifile.rb', line 150 def to_h @ini.dup end |
#to_s ⇒ Object
Returns this IniFile converted to a String.
139 140 141 142 143 144 145 146 147 |
# File 'lib/puppet_x/twp/inifile.rb', line 139 def to_s s = [] @ini.each do |section, hash| s << "[#{section}]" hash.each { |param, val| s << "#{param} #{@param} #{escape_value val}" } s << '' end s.join("\n") end |
#write(opts = {}) ⇒ Object Also known as: save
Public: Write the contents of this IniFile to the file system. If left unspecified, the currently configured filename and encoding will be used. Otherwise the filename and encoding can be specified in the options hash.
opts - The default options Hash
:filename - The filename as a String
:encoding - The encoding as a String
Returns this IniFile instance.
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 |
# File 'lib/puppet_x/twp/inifile.rb', line 98 def write(opts = {}) filename = opts.fetch(:filename, @filename) encoding = opts.fetch(:encoding, @encoding) mode = encoding ? "w:#{encoding}" : 'w' File.open(filename, mode) do |f| @ini.each do |section, hash| f.puts "[#{section}]" hash.each { |param, val| f.puts "#{param} #{@param} #{escape_value val}" } f.puts end end self end |