X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=script%2Fpublic-inbox-convert;h=ca16b0dcde7bf4c04623629fef6b4450a670834e;hb=073e4082a07ddeebf7c3efcadde35d98adb21c92;hp=dbb2bd3800eba7ce1021f00eae8ed3665d629af6;hpb=7eda704e4ec5b2ab897ef8da4fc90c48fcfc45a9;p=public-inbox.git diff --git a/script/public-inbox-convert b/script/public-inbox-convert index dbb2bd38..ca16b0dc 100755 --- a/script/public-inbox-convert +++ b/script/public-inbox-convert @@ -12,26 +12,57 @@ use PublicInbox::Git; use PublicInbox::Spawn qw(spawn); use Cwd 'abs_path'; use File::Copy 'cp'; # preserves permissions: -my $usage = "Usage: public-inbox-convert OLD NEW\n"; -my $jobs; -my $index = 1; -my %opts = ( - '--jobs|j=i' => \$jobs, - '--index!' => \$index, -); -GetOptions(%opts) or die "bad command-line args\n$usage"; +my $usage = 'Usage: public-inbox-convert [options] OLD NEW'; +my $help = < 1, + # index defaults: + quiet => -1, compact => 0, maxsize => undef, fsync => 1, + reindex => 1, # we always reindex +}; +GetOptions($opt, qw(jobs|j=i index! help|?), + # index options + qw(verbose|v+ rethread compact|c+ fsync|sync! + indexlevel|index-level|L=s max_size|max-size=s + batch_size|batch-size=s + sequential_shard|sequential-shard|seq-shard + )) or die <{help}) { print $help; exit 0 }; my $old_dir = shift(@ARGV) or die $usage; my $new_dir = shift(@ARGV) or die $usage; die "$new_dir exists\n" if -d $new_dir; die "$old_dir not a directory\n" unless -d $old_dir; -my $config = PublicInbox::Config->new; +my $cfg = PublicInbox::Config->new; $old_dir = abs_path($old_dir); my $old; -if ($config) { - $config->each_inbox(sub { - $old = $_[0] if abs_path($_[0]->{inboxdir}) eq $old_dir; - }); -} +$cfg->each_inbox(sub { + $old = $_[0] if abs_path($_[0]->{inboxdir}) eq $old_dir; +}); unless ($old) { warn "W: $old_dir not configured in " . PublicInbox::Config::default_file() . "\n"; @@ -48,16 +79,20 @@ if ($old->version >= 2) { } $old->{indexlevel} //= PublicInbox::Admin::detect_indexlevel($old); -if ($index) { +my $env; +if ($opt->{'index'}) { my $mods = {}; PublicInbox::Admin::scan_ibx_modules($mods, $old); PublicInbox::Admin::require_or_die(keys %$mods); + PublicInbox::Admin::progress_prepare($opt); + $env = PublicInbox::Admin::index_prepare($opt, $cfg); } - +local %ENV = (%$env, %ENV) if $env; my $new = { %$old }; $new->{inboxdir} = abs_path($new_dir); $new->{version} = 2; -$new = PublicInbox::InboxWritable->new($new); +$new = PublicInbox::InboxWritable->new($new, { nproc => $opt->{jobs} }); +$new->{-no_fsync} = 1 if !$opt->{fsync}; my $v2w; $old->umask_prepare; @@ -73,7 +108,7 @@ $old->with_umask(sub { local $ENV{GIT_CONFIG} = $old_cfg; my $new_cfg = "$new->{inboxdir}/all.git/config"; $v2w = PublicInbox::V2Writable->new($new, 1); - $v2w->init_inbox($jobs); + $v2w->init_inbox(delete $opt->{jobs}); unlink $new_cfg; link_or_copy($old_cfg, $new_cfg); if (my $alt = $new->{altid}) { @@ -98,7 +133,7 @@ $clone may not be valid after migrating to v2, not copying my $state = ''; my $head = $old->{ref_head} || 'HEAD'; my ($rd, $pid) = $old->git->popen(qw(fast-export --use-done-feature), $head); -$v2w->idx_init; +$v2w->idx_init($opt); my $im = $v2w->importer; my ($r, $w) = $im->gfi_start; my $h = '[0-9a-f]'; @@ -155,10 +190,10 @@ if (my $mm = $old->mm) { # we want to trigger a reindex, not a from scratch index if # we're reusing the msgmap from an existing v1 installation. - $v2w->idx_init; + $v2w->idx_init($opt); my $epoch0 = PublicInbox::Git->new($v2w->git_init(0)); chop(my $cmt = $epoch0->qx(qw(rev-parse --verify), $head)); $v2w->last_epoch_commit(0, $cmt); } -$v2w->index_sync({reindex => 1}) if $index; +$v2w->index_sync($opt) if delete $opt->{'index'}; $v2w->done;