epic-s6ts
[kivitendo-erp.git] / SL / Inifile.pm
index f7fe27b..30afc66 100644 (file)
@@ -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 (<FH>) {
-    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;
-