* [PATCH 1/3] config: introduce each_inbox for iteration
2016-07-02 21:50 [PATCH 0/3] misc NNTP improvements Eric Wong
@ 2016-07-02 21:50 ` Eric Wong
2016-07-07 19:55 ` [PATCH 4/3] nntpd: avoid exiting subroutine via next Eric Wong
2016-07-02 21:50 ` [PATCH 2/3] nntp: simplify update_idle_time Eric Wong
2016-07-02 21:50 ` [PATCH 3/3] nntp: respect 3 minute idle time for shutdown Eric Wong
2 siblings, 1 reply; 5+ messages in thread
From: Eric Wong @ 2016-07-02 21:50 UTC (permalink / raw)
To: meta
This fills in the internal lookup hashes and simplifies
callers.
---
lib/PublicInbox/Config.pm | 18 ++++++++++++++----
lib/PublicInbox/ExtMsg.pm | 32 +++++++++++++++++---------------
lib/PublicInbox/NNTPD.pm | 21 +++++++++------------
3 files changed, 40 insertions(+), 31 deletions(-)
diff --git a/lib/PublicInbox/Config.pm b/lib/PublicInbox/Config.pm
index ddb4f6b..d34d11a 100644
--- a/lib/PublicInbox/Config.pm
+++ b/lib/PublicInbox/Config.pm
@@ -50,11 +50,21 @@ sub lookup {
_fill($self, $pfx);
}
-sub lookup_name {
+sub lookup_name ($$) {
my ($self, $name) = @_;
- my $rv = $self->{-by_name}->{$name};
- return $rv if $rv;
- $rv = _fill($self, "publicinbox.$name") or return;
+ $self->{-by_name}->{$name} || _fill($self, "publicinbox.$name");
+}
+
+sub each_inbox {
+ my ($self, $cb) = @_;
+ my %seen;
+ foreach my $k (keys %$self) {
+ $k =~ /\Apublicinbox\.([A-Z0-9a-z-]+)\.mainrepo\z/ or next;
+ next if $seen{$1};
+ $seen{$1} = 1;
+ my $ibx = lookup_name($self, $1) or next;
+ $cb->($ibx);
+ }
}
sub lookup_newsgroup {
diff --git a/lib/PublicInbox/ExtMsg.pm b/lib/PublicInbox/ExtMsg.pm
index 4b9e025..73bd4b1 100644
--- a/lib/PublicInbox/ExtMsg.pm
+++ b/lib/PublicInbox/ExtMsg.pm
@@ -30,19 +30,16 @@ sub ext_msg {
eval { require PublicInbox::Search };
my $have_xap = $@ ? 0 : 1;
- my (@nox, @ibx);
+ my (@nox, @ibx, @found);
- foreach my $k (keys %$pi_config) {
- $k =~ /\Apublicinbox\.([A-Z0-9a-z-]+)\.url\z/ or next;
- my $name = $1;
- next if $name eq $cur->{name};
- my $other = $pi_config->lookup_name($name) or next;
- next unless $other->base_url;
+ $pi_config->each_inbox(sub {
+ my ($other) = @_;
+ return if $other->{name} eq $cur->{name} || !$other->base_url;
my $s = $other->search;
if (!$s) {
push @nox, $other;
- next;
+ return;
}
# try to find the URL with Xapian to avoid forking
@@ -50,17 +47,22 @@ sub ext_msg {
if ($@) {
# xapian not configured properly for this repo
push @nox, $other;
- next;
+ return;
}
# maybe we found it!
- return r302($other, $mid) if defined $doc_id;
+ if (defined $doc_id) {
+ push @found, $other;
+ } else {
+ # no point in trying the fork fallback if we
+ # know Xapian is up-to-date but missing the
+ # message in the current repo
+ push @ibx, $other;
+ }
+ });
- # no point in trying the fork fallback if we
- # know Xapian is up-to-date but missing the
- # message in the current repo
- push @ibx, $other;
- }
+ # TODO: multiple hits
+ return r302($found[0], $mid) if @found;
# Xapian not installed or configured for some repos,
# do a full MID check:
diff --git a/lib/PublicInbox/NNTPD.pm b/lib/PublicInbox/NNTPD.pm
index 50d022b..a67811b 100644
--- a/lib/PublicInbox/NNTPD.pm
+++ b/lib/PublicInbox/NNTPD.pm
@@ -23,21 +23,18 @@ sub refresh_groups () {
my $pi_config = PublicInbox::Config->new;
my $new = {};
my @list;
- foreach my $k (keys %$pi_config) {
- $k =~ /\Apublicinbox\.([^\.]+)\.mainrepo\z/ or next;
- my $name = $1;
- my $git_dir = $pi_config->{$k};
- my $ngname = $pi_config->{"publicinbox.$name.newsgroup"};
- next unless defined $ngname;
- next if ($ngname eq ''); # disabled
- my $ng = $pi_config->lookup_newsgroup($ngname) or next;
-
- # Only valid if msgmap and search works
- if ($ng->nntp_usable) {
+ $pi_config->each_inbox(sub {
+ my ($ng) = @_;
+ my $ngname = $ng->{newsgroup} or next;
+ if (ref $ngname) {
+ warn 'multiple newsgroups not supported: '.
+ join(', ', @$ngname). "\n";
+ } elsif ($ng->nntp_usable) {
+ # Only valid if msgmap and search works
$new->{$ngname} = $ng;
push @list, $ng;
}
- }
+ });
@list = sort { $a->{newsgroup} cmp $b->{newsgroup} } @list;
$self->{grouplist} = \@list;
# this will destroy old groups that got deleted
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 3/3] nntp: respect 3 minute idle time for shutdown
2016-07-02 21:50 [PATCH 0/3] misc NNTP improvements Eric Wong
2016-07-02 21:50 ` [PATCH 1/3] config: introduce each_inbox for iteration Eric Wong
2016-07-02 21:50 ` [PATCH 2/3] nntp: simplify update_idle_time Eric Wong
@ 2016-07-02 21:50 ` Eric Wong
2 siblings, 0 replies; 5+ messages in thread
From: Eric Wong @ 2016-07-02 21:50 UTC (permalink / raw)
To: meta
This avoids breaking clients on graceful shutdown since
NNTP responses should usually be quick.
---
lib/PublicInbox/NNTP.pm | 15 ++++++++++++---
t/nntpd.t | 1 +
2 files changed, 13 insertions(+), 3 deletions(-)
diff --git a/lib/PublicInbox/NNTP.pm b/lib/PublicInbox/NNTP.pm
index b07e184..56d0838 100644
--- a/lib/PublicInbox/NNTP.pm
+++ b/lib/PublicInbox/NNTP.pm
@@ -998,10 +998,19 @@ sub watch_read {
$rv;
}
+sub not_idle_long ($$) {
+ my ($self, $now) = @_;
+ defined(my $fd = $self->{fd}) or return;
+ my $ary = $EXPMAP->{$fd} or return;
+ my $exp_at = $ary->[0] + $EXPTIME;
+ $exp_at > $now;
+}
+
# for graceful shutdown in PublicInbox::Daemon:
-sub busy () {
- my ($self) = @_;
- ($self->{rbuf} ne '' || $self->{long_res} || $self->{write_buf_size});
+sub busy {
+ my ($self, $now) = @_;
+ ($self->{rbuf} ne '' || $self->{long_res} || $self->{write_buf_size} ||
+ not_idle_long($self, $now));
}
1;
diff --git a/t/nntpd.t b/t/nntpd.t
index 5875b73..7192d78 100644
--- a/t/nntpd.t
+++ b/t/nntpd.t
@@ -219,6 +219,7 @@ EOF
is(scalar @r, 1, 'only one response line');
}
+ $n = $s = undef;
is($pid, waitpid($pid, 0), 'nntpd exited successfully');
my $eout = eval {
local $/;
^ permalink raw reply related [flat|nested] 5+ messages in thread