From: Eric Wong <e@80x24.org>
To: meta@public-inbox.org
Subject: [PATCH 10/14] solver: hold patches in temporary directory
Date: Sun, 27 Jan 2019 04:03:37 +0000 [thread overview]
Message-ID: <20190127040341.26107-11-e@80x24.org> (raw)
In-Reply-To: <20190127040341.26107-1-e@80x24.org>
We can avoid bumping up RLIMIT_NOFILE too much by storing
patches in a temporary directory. And we can share this
top-level directory with our temporary git repository.
Since we no longer rely on a working-tree for git, we are free
to rearrange the layout and avoid relying on the ".git"
convention and relying on "git -C" for chdir.
This may also ease porting public-inbox to older systems
where git does not support "-C" for chdir.
---
lib/PublicInbox/Git.pm | 2 +-
lib/PublicInbox/SolverGit.pm | 57 +++++++++++++++++++-----------------
2 files changed, 31 insertions(+), 28 deletions(-)
diff --git a/lib/PublicInbox/Git.pm b/lib/PublicInbox/Git.pm
index a0b934a..3ad0811 100644
--- a/lib/PublicInbox/Git.pm
+++ b/lib/PublicInbox/Git.pm
@@ -50,7 +50,7 @@ sub new {
my ($class, $git_dir) = @_;
my @st;
$st[7] = $st[10] = 0;
- # may contain {-wt} field (working-tree (File::Temp::Dir))
+ # may contain {-tmp} field for File::Temp::Dir
bless { git_dir => $git_dir, st => \@st }, $class
}
diff --git a/lib/PublicInbox/SolverGit.pm b/lib/PublicInbox/SolverGit.pm
index a7a9a0a..e307202 100644
--- a/lib/PublicInbox/SolverGit.pm
+++ b/lib/PublicInbox/SolverGit.pm
@@ -214,9 +214,8 @@ sub prepare_index ($) {
dbg($self, 'preparing index');
my $rdr = { 0 => fileno($in) };
- my $cmd = [ qw(git -C), $self->{wt_dir},
- qw(update-index -z --index-info) ];
- my $qsp = PublicInbox::Qspawn->new($cmd, undef, $rdr);
+ my $cmd = [ qw(git update-index -z --index-info) ];
+ my $qsp = PublicInbox::Qspawn->new($cmd, $self->{git_env}, $rdr);
$qsp->psgi_qx($self->{psgi_env}, undef, sub {
my ($bref) = @_;
if (my $err = $qsp->{err}) {
@@ -229,16 +228,16 @@ sub prepare_index ($) {
}
# pure Perl "git init"
-sub do_git_init_wt ($) {
+sub do_git_init ($) {
my ($self) = @_;
- my $wt = File::Temp->newdir('solver.wt-XXXXXXXX', TMPDIR => 1);
- my $dir = $self->{wt_dir} = $wt->dirname;
+ my $dir = $self->{tmp}->dirname;
+ my $git_dir = "$dir/git";
foreach ('', qw(objects refs objects/info refs/heads)) {
- mkdir("$dir/.git/$_") or die "mkdir $_: $!";
+ mkdir("$git_dir/$_") or die "mkdir $_: $!";
}
- open my $fh, '>', "$dir/.git/config" or die "open .git/config: $!";
- print $fh <<'EOF' or die "print .git/config $!";
+ open my $fh, '>', "$git_dir/config" or die "open git/config: $!";
+ print $fh <<'EOF' or die "print git/config $!";
[core]
repositoryFormatVersion = 0
filemode = true
@@ -246,19 +245,23 @@ sub do_git_init_wt ($) {
fsyncObjectfiles = false
logAllRefUpdates = false
EOF
- close $fh or die "close .git/config: $!";
+ close $fh or die "close git/config: $!";
- open $fh, '>', "$dir/.git/HEAD" or die "open .git/HEAD: $!";
- print $fh "ref: refs/heads/master\n" or die "print .git/HEAD: $!";
- close $fh or die "close .git/HEAD: $!";
+ open $fh, '>', "$git_dir/HEAD" or die "open git/HEAD: $!";
+ print $fh "ref: refs/heads/master\n" or die "print git/HEAD: $!";
+ close $fh or die "close git/HEAD: $!";
- my $f = '.git/objects/info/alternates';
- open $fh, '>', "$dir/$f" or die "open: $f: $!";
+ my $f = 'objects/info/alternates';
+ open $fh, '>', "$git_dir/$f" or die "open: $f: $!";
print($fh (map { "$_->{git_dir}/objects\n" } @{$self->{gits}})) or
die "print $f: $!";
close $fh or die "close: $f: $!";
- my $wt_git = $self->{wt_git} = PublicInbox::Git->new("$dir/.git");
- $wt_git->{-wt} = $wt;
+ my $tmp_git = $self->{tmp_git} = PublicInbox::Git->new($git_dir);
+ $tmp_git->{-tmp} = $self->{tmp};
+ $self->{git_env} = {
+ GIT_DIR => $git_dir,
+ GIT_INDEX_FILE => "$git_dir/index",
+ };
prepare_index($self);
}
@@ -280,8 +283,8 @@ sub do_step ($) {
# step 2: then we instantiate a working tree once
# the todo queue is finally empty:
- } elsif (!defined($self->{wt_git})) {
- do_git_init_wt($self);
+ } elsif (!defined($self->{tmp_git})) {
+ do_git_init($self);
# step 3: apply each patch in the stack
} elsif (scalar @{$self->{patches}}) {
@@ -342,20 +345,20 @@ sub parse_ls_files ($$$$) {
"BUG: index mismatch: file=$file != path_b=$di->{path_b}";
}
- my $wt_git = $self->{wt_git} or die 'no git working tree';
- my (undef, undef, $size) = $wt_git->check($oid_b_full);
+ my $tmp_git = $self->{tmp_git} or die 'no git working tree';
+ my (undef, undef, $size) = $tmp_git->check($oid_b_full);
defined($size) or die "check $oid_b_full failed";
dbg($self, "index at:\n$mode_b $oid_b_full\t$file");
- my $created = [ $wt_git, $oid_b_full, 'blob', $size, $di ];
+ my $created = [ $tmp_git, $oid_b_full, 'blob', $size, $di ];
mark_found($self, $di->{oid_b}, $created);
next_step($self); # onto the next patch
}
sub start_ls_files ($$) {
my ($self, $di) = @_;
- my $cmd = [qw(git -C), $self->{wt_dir}, qw(ls-files -s -z)];
- my $qsp = PublicInbox::Qspawn->new($cmd);
+ my $cmd = [qw(git ls-files -s -z)];
+ my $qsp = PublicInbox::Qspawn->new($cmd, $self->{git_env});
$qsp->psgi_qx($self->{psgi_env}, undef, sub {
my ($bref) = @_;
eval { parse_ls_files($self, $qsp, $bref, $di) };
@@ -376,11 +379,10 @@ sub do_git_apply ($) {
"\n" . join('', @{$di->{hdr_lines}}));
# we need --ignore-whitespace because some patches are CRLF
- my $cmd = [ qw(git -C), $self->{wt_dir},
- qw(apply --cached --ignore-whitespace
+ my $cmd = [ qw(git apply --cached --ignore-whitespace
--whitespace=warn --verbose) ];
my $rdr = { 0 => fileno($tmp), 2 => 1 };
- my $qsp = PublicInbox::Qspawn->new($cmd, undef, $rdr);
+ my $qsp = PublicInbox::Qspawn->new($cmd, $self->{git_env}, $rdr);
$qsp->psgi_qx($self->{psgi_env}, undef, sub {
my ($bref) = @_;
close $tmp;
@@ -483,6 +485,7 @@ sub solve ($$$$$) {
$self->{todo} = [ { %$hints, oid_b => $oid_want } ];
$self->{patches} = []; # [ $di, $di, ... ]
$self->{found} = {}; # { abbr => [ ::Git, oid, type, size, $di ] }
+ $self->{tmp} = File::Temp->newdir('solver.tmp-XXXXXXXX', TMPDIR => 1);
dbg($self, "solving $oid_want ...");
my $step_cb = step_cb($self);
--
EW
next prev parent reply other threads:[~2019-01-27 4:03 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-01-27 4:03 [PATCH 00/14] convert solver to use pi-httpd.async Eric Wong
2019-01-27 4:03 ` [PATCH 01/14] httpd/async: remove needless sysread wrapper Eric Wong
2019-01-27 4:03 ` [PATCH 02/14] qspawn: implement psgi_return and use it for githttpbackend Eric Wong
2019-01-27 4:03 ` [PATCH 03/14] qspawn|getlinebody: support streaming filters Eric Wong
2019-01-27 4:03 ` [PATCH 04/14] qspawn|httpd/async: improve and fix out-of-date comments Eric Wong
2019-01-27 4:03 ` [PATCH 05/14] httpd/async: stop running command if client disconnects Eric Wong
2019-01-27 4:03 ` [PATCH 06/14] qspawn: implement psgi_qx Eric Wong
2019-01-27 4:03 ` [PATCH 07/14] t/qspawn.t: psgi_qx stderr test Eric Wong
2019-01-27 4:03 ` [PATCH 08/14] view: swap CRLF for LF in HTML output Eric Wong
2019-01-27 4:03 ` [PATCH 09/14] solver: rewrite to use Qspawn->psgi_qx and pi-httpd.async Eric Wong
2019-01-27 4:03 ` Eric Wong [this message]
2019-01-27 4:03 ` [PATCH 11/14] solver: reduce "git apply" invocations Eric Wong
2019-01-27 4:03 ` [PATCH 12/14] qspawn: decode $? for user-friendliness Eric Wong
2019-01-27 4:03 ` [PATCH 13/14] viewvcs: do not show final error message twice Eric Wong
2019-01-27 4:03 ` [PATCH 14/14] solver: crank up max patches to 9999 Eric Wong
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://public-inbox.org/README
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190127040341.26107-11-e@80x24.org \
--to=e@80x24.org \
--cc=meta@public-inbox.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).