]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/Config.pm
rename most instances of "list" to "inbox"
[public-inbox.git] / lib / PublicInbox / Config.pm
index 353a1fb2e3cdf73aee25237dfa2de968a848ce2a..331d25c56bd5cddfe43687d0b50f607d6e218d25 100644 (file)
@@ -5,38 +5,16 @@
 package PublicInbox::Config;
 use strict;
 use warnings;
+use base qw/Exporter/;
+our @EXPORT_OK = qw/try_cat/;
 use File::Path::Expand qw/expand_filename/;
 
 # returns key-value pairs of config directives in a hash
 # if keys may be multi-value, the value is an array ref containing all values
 sub new {
        my ($class, $file) = @_;
-       my ($in, $out);
-
        $file = default_file() unless defined($file);
-       my @cmd = (qw/git config/, "--file=$file", '-l');
-       my $cmd = join(' ', @cmd);
-       my $pid = open(my $fh, '-|', @cmd);
-       defined $pid or die "$cmd failed: $!\n";
-       my %rv;
-       foreach my $line (<$fh>) {
-               chomp $line;
-               my ($k, $v) = split(/=/, $line, 2);
-               my $cur = $rv{$k};
-
-               if (defined $cur) {
-                       if (ref($cur) eq "ARRAY") {
-                               push @$cur, $v;
-                       } else {
-                               $rv{$k} = [ $cur, $v ];
-                       }
-               } else {
-                       $rv{$k} = $v;
-               }
-       }
-       close $fh or die "failed to close ($cmd) pipe: $!\n";
-       $? and warn "$$ $cmd exited with: ($pid) $?\n";
-       bless \%rv, $class;
+       bless git_config_dump($file), $class;
 }
 
 sub lookup {
@@ -67,25 +45,64 @@ sub lookup {
                my $v = $self->{"$pfx.$k"};
                $rv{$k} = $v if defined $v;
        }
-       my $listname = $pfx;
-       $listname =~ s/\Apublicinbox\.//;
-       $rv{listname} = $listname;
+       my $inbox = $pfx;
+       $inbox =~ s/\Apublicinbox\.//;
+       $rv{inbox} = $inbox;
        my $v = $rv{address};
        $rv{-primary_address} = ref($v) eq 'ARRAY' ? $v->[0] : $v;
        \%rv;
 }
 
 sub get {
-       my ($self, $listname, $key) = @_;
+       my ($self, $inbox, $key) = @_;
 
-       $self->{"publicinbox.$listname.$key"};
+       $self->{"publicinbox.$inbox.$key"};
 }
 
+sub config_dir { $ENV{PI_DIR} || expand_filename('~/.public-inbox') }
+
 sub default_file {
        my $f = $ENV{PI_CONFIG};
        return $f if defined $f;
-       my $pi_dir = $ENV{PI_DIR} || expand_filename('~/.public-inbox');
-       "$pi_dir/config";
+       config_dir() . '/config';
+}
+
+sub git_config_dump {
+       my ($file) = @_;
+       my ($in, $out);
+       my @cmd = (qw/git config/, "--file=$file", '-l');
+       my $cmd = join(' ', @cmd);
+       my $pid = open(my $fh, '-|', @cmd);
+       defined $pid or die "$cmd failed: $!";
+       my %rv;
+       foreach my $line (<$fh>) {
+               chomp $line;
+               my ($k, $v) = split(/=/, $line, 2);
+               my $cur = $rv{$k};
+
+               if (defined $cur) {
+                       if (ref($cur) eq "ARRAY") {
+                               push @$cur, $v;
+                       } else {
+                               $rv{$k} = [ $cur, $v ];
+                       }
+               } else {
+                       $rv{$k} = $v;
+               }
+       }
+       close $fh or die "failed to close ($cmd) pipe: $!";
+       $? and warn "$$ $cmd exited with: ($pid) $?";
+       \%rv;
+}
+
+sub try_cat {
+       my ($path) = @_;
+       my $rv;
+       if (open(my $fh, '<', $path)) {
+               local $/;
+               $rv = <$fh>;
+       }
+       $rv;
 }
 
 1;