vote up 0 vote down star
1

How do I read/write an ini file in ruby. I have an ini file that I need to

  1. read
  2. change an entry
  3. write out to a different location

How would I do that in ruby? The documentation on this is bleak.

flag

4 Answers

vote up 0 vote down check

I recently used ruby-inifile. Maybe it's overkill compared to the simple snippets here...

link|flag
it's not overkill if it's the simplest way. I tend to think that a gem designed to handle this specifically would be better. Don't suppose you could post an example? – Halpo Mar 5 at 17:47
Sure, like this, using Linux .desktop files : pastie.org/410612 I don't know if it's a gem though. – method Mar 8 at 1:45
vote up 0 vote down

Here's the module for reading and writing of .ini-files with as less change to original file as possible (for files which read humans and machines):

class IniFileExc < RuntimeError
end

class IniNode def initialize(name, value=nil) @line_start = -1; @line_end = -1; @level = 0; @name = name; @value = value; @keys = {}; @keylist = []; @modified = false; @deleted = false; end attr_reader :level,:line_start,:line_end,:name,:value,:keylist,:keys,:modified,:deleted attr_writer :level,:line_start,:line_end,:name,:value,:keylist,:keys,:modified,:deleted

def to_str return @name.to_s + ' = ' + @value.to_s; end

def to_s return @value.to_s; end def to_i return @value.to_i end def to_f return @value.to_f; end

def insert(key, nil); return @keys[key]; end

def insert(key, value) return false if (@keys.has_key?(key)); node = nil; if (value && ((value.class == IniNode) || (value.class == IniSection))) node = value; else if (@level <= 0) node = IniSection.new(key); else node = IniNode.new(key, value) end end node.line_start = @line_end + 1 if (node.line_start < 0); node.level = @level + 1; @keys[key] = node; @keylist.push(key); return true; end

def []=(key, value) rc = insert(key, value); @keys[key].value = value; @keys[key].modified = true; @modified = true; end

def delete(key) return false if (! @keys.has_key?(key)); @keys[key].deleted = true; @modified = true; end end

class IniSection < IniNode def initialize(name) super(name); end

def to_str return ('[' + @name + ']'); end end

class IniFile < IniNode def initialize(path, load=true) super(path); @lines = []; reload() if (load); end

def reload begin input = File.new(@name, "r"); rescue raise; else prevnode = node = self; lineno = 0; input.each do |line| @lines.push(line); parsed_node = parse_line(lineno, line); if (parsed_node); if (parsed_node.class == IniSection) if (parsed_node != node) prev_node = node; node = parsed_node; insert(node.name, node); prev_node.line_end = lineno - 1; end else node.insert(parsed_node.name, parsed_node); end end lineno += 1; end input.close;

  node.line_end = @line_end = lineno - 1;
end

end

def parse_line(lineno, line) return nil if (line =~ /^\s*$/); return nil if (line =~ /^\s*#/); return nil if (line =~ /^\s*;/); if (line =~ /^\s*[\s*(.+)\s*].*$/) rv = IniSection.new($1); rv.line_start = lineno; rv.level = @level + 1; return rv; elsif (line =~ /^\s*(\S?.[^=\s])\s=\s*(\S?[^#;][^#;\s\n]).$/) rv = IniNode.new($1, $2); rv.line_start = rv.line_end = lineno; rv.level = @level + 2; return rv; end return nil; end

def write inserted = {}; @keylist.each do |sect| sectnode = @keys[sect]; next if (!sectnode.modified || sectnode.deleted); if (sectnode.line_end < 0) @lines.push("\n"); @lines.push(sectnode.to_str + "\n"); end sectnode.keylist.each do |key| keynode = sectnode.keys[key]; next if (!keynode.modified || keynode.deleted); if (keynode.line_end < 0) if (sectnode.line_end < 0) @lines.push(keynode.to_str + "\n"); else idx = sectnode.line_end.to_i; inserted[idx] = [] if (! inserted.has_key?(idx)); inserted[idx].push(keynode.to_str); end else line = @lines[keynode.line_start]; if (line =~ /^(\s*)(\S?.[^=\s]\s=\s*\S?.+[^#;\s])(\s*[#;].*)$/) line = $1 + keynode.to_str + $3 + "\n"; else line = line.gsub(/^(\s*)(\S?.[^=\s]\s=\s*\S?[^#;]+[^#;\n\s])(.*)$/){ $1 + keynode.to_str + $3}; end @lines[keynode.line_start] = line; end end end

deleted = {};
@keylist.each do |sect|
  sectnode = @keys[sect];
  next  if (!sectnode.deleted && !sectnode.modified);
  if (sectnode.deleted && (sectnode.line_start >= 0) && (sectnode.line_end >= 0) \
      && (sectnode.line_end >= sectnode.line_start))
    for i in sectnode.line_start..sectnode.line_end
      deleted[i] = true;
    end
  end
  sectnode.keylist.each do |key|
    keynode = sectnode.keys[key];
    next  if (!keynode.deleted);
    deleted[keynode.line_start.to_i] = true  \
      if ((keynode.line_start >= 0) && (keynode.line_end >= 0) && (keynode.line_start == keynode.line_end));
  end
end

begin
  file = File.new(@name, 'w');
rescue
  raise(IniFileExc, "Failed to open " + @name + " for writing: #{$!}", caller);
else
  cnt = -1;
  @lines.each do |line|
    cnt += 1;
    if (inserted.has_key?(cnt))
      inserted[cnt].each do |ins|
        file.puts(ins + "\n");
      end
    end
    next  if (deleted[cnt]);
    file.puts(line);
  end
  file.close;
end

end # write end #class

Usage example:


begin
  ini = IniFile.new('file.ini');
  ini['common']['param'] = 'value';
  ini['common'].delete('unused_param');
  ini.delete('unused_section');
  print "Valuable value: ", ini['common']['param'], "\n";
  ini.write;
rescue IniFileExc
  print "Oh, that's not good: ", $!, "\n";
end

Hope this helps.

link|flag
vote up 0 vote down

If I understand correctly,

outFile = File.new('out.ini', 'w')
File.open('in.ini', 'r') do |inFile|
  inFile.each_line do |line|
    # foo is the entry you want to change, baz is its new value.
    outFile.puts(line.sub(/foo=(.*)/, 'foo=baz'))
  end
end
outFile.close

Note that when you use File.open with a block, the file will automatically be closed when the block terminates.

link|flag
vote up 2 vote down
file = File.new("your.ini", "r")
  while (line = file.gets)
   puts "#{line}" #additionally make changes
  end
file.close
link|flag
Can't make changes on a file that's opened with "r" - should be "r+" – Sarah Mei Mar 3 at 20:34
That's why I am outputting to console -- I don't like reading and writing the same file in one go (and some exercise for the OP) :) – dirkgently Mar 3 at 20:36
very simple I'm looking for a more abstract way addressing the keys and values not only line by line. something like x=INIfile.new('iniin.ini');x['section','key']='newvalue';x.write("newinifile.txtx") something like this seems more straightforward since I know that i'm working with an in file. – Halpo Mar 5 at 5:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.