]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/Inbox.pm
inbox: cloneurl: avoid undef to hash table value
[public-inbox.git] / lib / PublicInbox / Inbox.pm
index bee44f8a92e7ae8861b01064ff10831605b51a1f..1d5fc708ad28b2649cf5a2460bfcbba96c8f3eeb 100644 (file)
@@ -8,6 +8,7 @@ use PublicInbox::Git;
 use PublicInbox::MID qw(mid2path);
 use PublicInbox::Eml;
 use List::Util qw(max);
+use Carp qw(croak);
 
 # Long-running "git-cat-file --batch" processes won't notice
 # unlinked packs, so we need to restart those processes occasionally.
@@ -15,63 +16,47 @@ use List::Util qw(max);
 # admin will attempt to replace them atomically after compact/vacuum
 # and we need to be prepared for that.
 my $cleanup_timer;
-my $cleanup_avail = -1; # 0, or 1
-my $have_devel_peek;
 my $CLEANUP = {}; # string(inbox) -> inbox
 
 sub git_cleanup ($) {
        my ($self) = @_;
-       my $git = $self->{git} or return;
-       $git->cleanup;
+       my $git = $self->{git} // return undef;
+       # normal inboxes have low startup cost and there may be many, so
+       # keep process+pipe counts in check.  ExtSearch may have high startup
+       # cost (e.g. ->ALL) and but likely one per-daemon, so cleanup only
+       # if there's unlinked files
+       my $live = $self->isa(__PACKAGE__) ? $git->cleanup
+                                       : $git->cleanup_if_unlinked;
+       delete($self->{git}) unless $live;
+       $live;
 }
 
+# returns true if further checking is required
+sub cleanup_shards { $_[0]->{search} ? $_[0]->{search}->cleanup_shards : undef }
+
 sub cleanup_task () {
        $cleanup_timer = undef;
        my $next = {};
        for my $ibx (values %$CLEANUP) {
-               my $again;
-               if ($have_devel_peek) {
-                       foreach my $f (qw(search)) {
-                               # we bump refcnt by assigning tmp, here:
-                               my $tmp = $ibx->{$f} or next;
-                               next if Devel::Peek::SvREFCNT($tmp) > 2;
-                               delete $ibx->{$f};
-                               # refcnt is zero when tmp is out-of-scope
-                       }
-               }
-               git_cleanup($ibx);
-               if (my $gits = $ibx->{-repo_objs}) {
-                       foreach my $git (@$gits) {
-                               $again = 1 if $git->cleanup;
-                       }
+               my $again = git_cleanup($ibx);
+               $ibx->cleanup_shards and $again = 1;
+               for my $git (@{$ibx->{-repo_objs}}) {
+                       $again = 1 if $git->cleanup;
                }
                check_inodes($ibx);
-               if ($have_devel_peek) {
-                       $again ||= !!$ibx->{search};
-               }
                $next->{"$ibx"} = $ibx if $again;
        }
        $CLEANUP = $next;
+       $cleanup_timer //= PublicInbox::DS::later(\&cleanup_task);
 }
 
-sub cleanup_possible () {
+sub _cleanup_later ($) {
        # no need to require DS, here, if it were enabled another
        # module would've require'd it, already
-       eval { PublicInbox::DS::in_loop() } or return 0;
-
-       eval {
-               require Devel::Peek; # needs separate package in Fedora
-               $have_devel_peek = 1;
-       };
-       1;
-}
-
-sub _cleanup_later ($) {
-       my ($self) = @_;
-       $cleanup_avail = cleanup_possible() if $cleanup_avail < 0;
-       return if $cleanup_avail != 1;
-       $cleanup_timer //= PublicInbox::DS::later(\&cleanup_task);
-       $CLEANUP->{"$self"} = $self;
+       if (eval { PublicInbox::DS::in_loop() }) {
+               $cleanup_timer //= PublicInbox::DS::later(\&cleanup_task);
+               $CLEANUP->{"$_[0]"} = $_[0]; # $self
+       }
 }
 
 sub _set_limiter ($$$) {
@@ -108,8 +93,6 @@ sub new {
        } else {
                delete $opts->{feedmax};
        }
-       $opts->{nntpserver} ||= $pi_cfg->{'publicinbox.nntpserver'};
-
        # allow any combination of multi-line or comma-delimited hide entries
        my $hide = {};
        if (defined(my $h = $opts->{hide})) {
@@ -127,11 +110,12 @@ sub version {
 
 sub git_epoch {
        my ($self, $epoch) = @_; # v2-only, callers always supply $epoch
-       $self->{"$epoch.git"} ||= do {
+       $self->{"$epoch.git"} //= do {
                my $git_dir = "$self->{inboxdir}/git/$epoch.git";
                return unless -d $git_dir;
                my $g = PublicInbox::Git->new($git_dir);
-               $g->{-httpbackend_limiter} = $self->{-httpbackend_limiter};
+               my $lim = $self->{-httpbackend_limiter};
+               $g->{-httpbackend_limiter} = $lim if $lim;
                # caller must manually cleanup when done
                $g;
        };
@@ -139,11 +123,12 @@ sub git_epoch {
 
 sub git {
        my ($self) = @_;
-       $self->{git} ||= do {
+       $self->{git} //= do {
                my $git_dir = $self->{inboxdir};
                $git_dir .= '/all.git' if $self->version == 2;
                my $g = PublicInbox::Git->new($git_dir);
-               $g->{-httpbackend_limiter} = $self->{-httpbackend_limiter};
+               my $lim = $self->{-httpbackend_limiter};
+               $g->{-httpbackend_limiter} = $lim if $lim;
                _cleanup_later($self);
                $g;
        };
@@ -168,8 +153,8 @@ sub max_git_epoch {
 }
 
 sub mm {
-       my ($self) = @_;
-       $self->{mm} ||= eval {
+       my ($self, $req) = @_;
+       $self->{mm} //= eval {
                require PublicInbox::Msgmap;
                my $dir = $self->{inboxdir};
                if ($self->version >= 2) {
@@ -177,17 +162,17 @@ sub mm {
                } else {
                        PublicInbox::Msgmap->new($dir);
                }
-       };
+       } // ($req ? croak("E: $@") : undef);
 }
 
 sub search {
        my ($self) = @_;
-       my $srch = $self->{search} //= eval {
+       $self->{search} // eval {
                _cleanup_later($self);
                require PublicInbox::Search;
-               PublicInbox::Search->new($self);
+               my $srch = PublicInbox::Search->new($self);
+               (eval { $srch->xdb }) ? ($self->{search} = $srch) : undef;
        };
-       (eval { $srch->xdb }) ? $srch : undef;
 }
 
 # isrch is preferred for read-only interfaces if available since it
@@ -195,19 +180,18 @@ sub search {
 sub isrch { $_[0]->{isrch} // search($_[0]) }
 
 sub over {
-       $_[0]->{over} //= eval {
-               my $srch = $_[0]->{search} //= eval {
-                       _cleanup_later($_[0]);
+       my ($self, $req) = @_;
+       $self->{over} // eval {
+               my $srch = $self->{search} // do {
                        require PublicInbox::Search;
-                       PublicInbox::Search->new($_[0]);
+                       PublicInbox::Search->new($self);
                };
                my $over = PublicInbox::Over->new("$srch->{xpfx}/over.sqlite3");
                $over->dbh; # may fail
-               $over;
-       };
+               $self->{over} = $over;
+       } // ($req ? croak("E: $@") : undef);
 }
 
-
 sub try_cat {
        my ($path) = @_;
        open(my $fh, '<', $path) or return '';
@@ -232,16 +216,16 @@ sub description {
 
 sub cloneurl {
        my ($self) = @_;
-       ($self->{cloneurl} //= do {
+       $self->{cloneurl} // do {
                my $s = try_cat("$self->{inboxdir}/cloneurl");
                my @urls = split(/\s+/s, $s);
-               scalar(@urls) ? \@urls : undef
-       }) // [];
+               scalar(@urls) ? ($self->{cloneurl} = \@urls) : undef;
+       } // [];
 }
 
 sub base_url {
        my ($self, $env) = @_; # env - PSGI env
-       if ($env) {
+       if ($env && $env->{'psgi.url_scheme'}) {
                my $url = PublicInbox::Git::host_prefix_url($env, '');
                # for mount in Plack::Builder
                $url .= '/' if $url !~ m!/\z!;
@@ -249,7 +233,8 @@ sub base_url {
        }
        # called from a non-PSGI environment (e.g. NNTP/POP3):
        $self->{-base_url} ||= do {
-               my $url = $self->{url}->[0] or return undef;
+               my $url = $self->{url} // return undef;
+               $url = $url->[0] // return undef;
                # expand protocol-relative URLs to HTTPS if we're
                # not inside a web server
                $url = "https:$url" if $url =~ m!\A//!;
@@ -258,55 +243,56 @@ sub base_url {
        };
 }
 
-sub nntp_url {
-       my ($self) = @_;
-       $self->{-nntp_url} ||= do {
-               # no checking for nntp_usable here, we can point entirely
-               # to non-local servers or users run by a different user
-               my $ns = $self->{nntpserver};
-               my $group = $self->{newsgroup};
-               my @urls;
-               if ($ns && $group) {
-                       $ns = [ $ns ] if ref($ns) ne 'ARRAY';
-                       @urls = map {
-                               my $u = m!\Anntps?://! ? $_ : "nntp://$_";
-                               $u .= '/' if $u !~ m!/\z!;
-                               $u.$group;
-                       } @$ns;
-               }
-
-               my $mirrors = $self->{nntpmirror};
-               if ($mirrors) {
-                       my @m;
-                       foreach (@$mirrors) {
-                               my $u = m!\Anntps?://! ? $_ : "nntp://$_";
-                               if ($u =~ m!\Anntps?://[^/]+/?\z!) {
-                                       if ($group) {
-                                               $u .= '/' if $u !~ m!/\z!;
-                                               $u .= $group;
-                                       } else {
-                                               warn
-"publicinbox.$self->{name}.nntpmirror=$_ missing newsgroup name\n";
-                                       }
+sub _x_url ($$$) {
+       my ($self, $x, $ctx) = @_; # $x is "nntp" or "imap"
+       # no checking for nntp_usable here, we can point entirely
+       # to non-local servers or users run by a different user
+       my $ns = $self->{"${x}server"} //
+              $ctx->{www}->{pi_cfg}->get_all("publicinbox.${x}server");
+       my $group = $self->{newsgroup};
+       my @urls;
+       if ($ns && $group) {
+               @urls = map {
+                       my $u = m!\A${x}s?://! ? $_ : "$x://$_";
+                       $u .= '/' if $u !~ m!/\z!;
+                       $u.$group;
+               } @$ns;
+       }
+       if (my $mirrors = $self->{"${x}mirror"}) {
+               my @m;
+               for (@$mirrors) {
+                       my $u = m!\A${x}s?://! ? $_ : "$x://$_";
+                       if ($u =~ m!\A${x}s?://[^/]+/?\z!) {
+                               if ($group) {
+                                       $u .= '/' if $u !~ m!/\z!;
+                                       $u .= $group;
+                               } else { # n.b. IMAP uses "newsgroup"
+                                       warn <<EOM;
+publicinbox.$self->{name}.${x}mirror=$_ missing newsgroup name
+EOM
                                }
-                               # else: allow full URLs like:
-                               # nntp://news.example.com/alt.example
-                               push @m, $u;
                        }
-
-                       # List::Util::uniq requires Perl 5.26+, maybe we
-                       # can use it by 2030 or so
-                       my %seen;
-                       @urls = grep { !$seen{$_}++ } (@urls, @m);
+                       # else: allow full URLs like:
+                       # nntp://news.example.com/alt.example
+                       push @m, $u;
                }
-               \@urls;
-       };
+
+               # List::Util::uniq requires Perl 5.26+, maybe we
+               # can use it by 2030 or so
+               my %seen;
+               @urls = grep { !$seen{$_}++ } (@urls, @m);
+       }
+       \@urls;
 }
 
+# my ($self, $ctx) = @_;
+sub nntp_url { $_[0]->{-nntp_url} //= _x_url($_[0], 'nntp', $_[1]) }
+sub imap_url { $_[0]->{-imap_url} //= _x_url($_[0], 'imap', $_[1]) }
+
 sub nntp_usable {
        my ($self) = @_;
        my $ret = mm($self) && over($self);
-       $self->{mm} = $self->{over} = $self->{search} = undef;
+       delete @$self{qw(mm over search)};
        $ret;
 }
 
@@ -421,4 +407,16 @@ sub uidvalidity { $_[0]->{uidvalidity} //= eval { $_[0]->mm->created_at } }
 
 sub eidx_key { $_[0]->{newsgroup} // $_[0]->{inboxdir} }
 
+sub mailboxid { # rfc 8474, 8620, 8621
+       my ($self, $imap_slice) = @_;
+       my $pfx = defined($imap_slice) ? $self->{newsgroup} : $self->{name};
+       utf8::encode($pfx); # to octets
+       # RFC 8620, 1.2 recommends not starting with dash or digits
+       # "A good solution to these issues is to prefix every id with a single
+       #  alphabetical character."
+       'M'.join('', map { sprintf('%02x', ord) } split(//, $pfx)) .
+               (defined($imap_slice) ? sprintf('-%x', $imap_slice) : '') .
+               sprintf('-%x', uidvalidity($self) // 0)
+}
+
 1;