about summary refs log tree commit homepage
path: root/lib/PublicInbox/Import.pm
diff options
context:
space:
mode:
authorEric Wong (Contractor, The Linux Foundation) <e@80x24.org>2018-02-09 23:38:03 +0000
committerEric Wong (Contractor, The Linux Foundation) <e@80x24.org>2018-02-09 23:42:50 +0000
commitd8bc86742a146f7665f0548cf855c2b2153617e0 (patch)
tree788a5f8c25acdd7b2de6250c83629fe9dc1d19bb /lib/PublicInbox/Import.pm
parenteaeac7cbdeb5246f433e4d9e205b314c99fc09c2 (diff)
downloadpublic-inbox-d8bc86742a146f7665f0548cf855c2b2153617e0.tar.gz
We'll reuse this class in v2, but won't be utilizing
per-git-repository ssoma.lock files.

Meanwhile, stop treating ::Inbox objects as an afterthought
and allow importing name and email into them.
Diffstat (limited to 'lib/PublicInbox/Import.pm')
-rw-r--r--lib/PublicInbox/Import.pm28
1 files changed, 20 insertions, 8 deletions
diff --git a/lib/PublicInbox/Import.pm b/lib/PublicInbox/Import.pm
index 299329b4..56633a84 100644
--- a/lib/PublicInbox/Import.pm
+++ b/lib/PublicInbox/Import.pm
@@ -13,13 +13,20 @@ use PublicInbox::MID qw(mid_mime mid2path);
 use PublicInbox::Address;
 
 sub new {
-        my ($class, $git, $name, $email, $inbox) = @_;
+        my ($class, $git, $name, $email, $ibx) = @_;
+        my $ref = 'refs/heads/master';
+        if ($ibx) {
+                $ref = $ibx->{ref_head} || 'refs/heads/master';
+                $name ||= $ibx->{name};
+                $email ||= $ibx->{-primary_address};
+        }
         bless {
                 git => $git,
                 ident => "$name <$email>",
                 mark => 1,
-                ref => 'refs/heads/master',
-                inbox => $inbox,
+                ref => $ref,
+                inbox => $ibx,
+                ssoma_lock => 1, # disable for v2
         }, $class
 }
 
@@ -34,12 +41,16 @@ sub gfi_start {
         pipe($out_r, $out_w) or die "pipe failed: $!";
         my $git = $self->{git};
         my $git_dir = $git->{git_dir};
-        my $lockpath = "$git_dir/ssoma.lock";
-        sysopen(my $lockfh, $lockpath, O_WRONLY|O_CREAT) or
-                die "failed to open lock $lockpath: $!";
 
-        # wait for other processes to be done
-        flock($lockfh, LOCK_EX) or die "lock failed: $!\n";
+        my $lockfh;
+        if ($self->{ssoma_lock}) {
+                my $lockpath = "$git_dir/ssoma.lock";
+                sysopen($lockfh, $lockpath, O_WRONLY|O_CREAT) or
+                        die "failed to open lock $lockpath: $!";
+                # wait for other processes to be done
+                flock($lockfh, LOCK_EX) or die "lock failed: $!\n";
+        }
+
         local $/ = "\n";
         chomp($self->{tip} = $git->qx(qw(rev-parse --revs-only), $self->{ref}));
 
@@ -247,6 +258,7 @@ sub done {
                 eval { run_die([@cmd, qw(gc --auto)], undef) };
         }
 
+        $self->{ssoma_lock} or return;
         my $lockfh = delete $self->{lockfh} or die "BUG: not locked: $!";
         flock($lockfh, LOCK_UN) or die "unlock failed: $!";
         close $lockfh or die "close lock failed: $!";