X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FInifile.pm;h=30afc66c1a4731030e63f8c259aee66ad21695d0;hb=3782a90c336bc6c506f572e607c8526cb5e79ea3;hp=f7fe27b3c60fd7afa3c0bdee0a6f616f97dc663b;hpb=db53dc8ab328b82c7af17896487674ad98f2af6b;p=kivitendo-erp.git diff --git a/SL/Inifile.pm b/SL/Inifile.pm index f7fe27b3c..30afc66c1 100644 --- a/SL/Inifile.pm +++ b/SL/Inifile.pm @@ -25,7 +25,8 @@ # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, +# MA 02110-1335, USA. #===================================================================== # # routines to retrieve / manipulate win ini style files @@ -37,56 +38,50 @@ package Inifile; use IO::File; +use strict; + sub new { - $main::lxdebug->enter_sub(); + $main::lxdebug->enter_sub(2); - my ($type, $file) = @_; + my ($type, $file, %options) = @_; my $id = ""; - my $skip; - - local *FH; - - my $self = { "FILE" => $file }; + my $cur; - open FH, "$file" or Form->error("$file : $!"); + my $self = { FILE => $file, ORDER => [] }; - while () { - next if m/^(#|;|\s)/; + open my $fh, "$file" or $::form->error("$file : $!"); + for (<$fh>) { chomp; - # strip comments - s/(#|;).*//g; - - # remove any trailing whitespace - s/^\s*//; - s/\s*$//; + if (!$options{verbatim}) { + # strip comments + # remove any trailing whitespace + s/\s*#.*$//; + s/^\s*//; + } else { + next if m/^\s*#/; + } next unless $_; - if (m/^\[/) { - s/(\[|\])//g; - - $id = $_; + if (m/^\[(.*)\]$/) { + $id = $1; + $cur = $self->{$1} ||= { }; - $self->{$id} ||= { }; - - push @{ $self->{ORDER} }, $_; - - next; + push @{ $self->{ORDER} }, $1; + } else { + # add key=value to $id + my ($key, $value) = split m/=/, $_, 2; + $cur->{$key} = $value; } - # add key=value to $id - my ($key, $value) = split m/=/, $_, 2; - - $self->{$id}->{$key} = $value; - } - close FH; + close $fh; - $main::lxdebug->leave_sub(); + $main::lxdebug->leave_sub(2); return bless $self, $type; } @@ -97,7 +92,7 @@ sub write { my ($self) = @_; my $file = $self->{FILE}; - my $fh = IO::File->new($file, "w") || Form->error("$file : $!"); + my $fh = IO::File->new($file, "w") || $::form->error("$file : $!"); foreach my $section_name (sort keys %{ $self }) { next if $section_name =~ m/^[A-Z]+$/; @@ -114,4 +109,3 @@ sub write { } 1; -