]> Sergey Matveev's repositories - public-inbox.git/log
public-inbox.git
5 years agoviewvcs: wire up syntax-highlighting for blobs
Eric Wong [Sun, 27 Jan 2019 11:38:42 +0000 (11:38 +0000)]
viewvcs: wire up syntax-highlighting for blobs

And update 216dark.css to match a color scheme I'm used to;
which is fairly minimal and doesn't use all the classes
"highlight" provides.

5 years agohlmod: disable enclosing <pre> tag
Eric Wong [Sun, 27 Jan 2019 11:36:22 +0000 (11:36 +0000)]
hlmod: disable enclosing <pre> tag

We already have a <pre> tag in ViewVCS, and nesting <pre>
inside the pre-existing <pre> overrides the "white-space:pre"
we use to align line numbers.

5 years agot/hl_mod: extra check to ensure we escape HTML
Eric Wong [Sun, 27 Jan 2019 11:35:29 +0000 (11:35 +0000)]
t/hl_mod: extra check to ensure we escape HTML

Otherwise, it's open season on our users :<

5 years agowwwhighlight: read_in_full returns undef on errors
Eric Wong [Sun, 27 Jan 2019 05:09:22 +0000 (05:09 +0000)]
wwwhighlight: read_in_full returns undef on errors

The return value of "print" is not undef for Perl IO::Handle.

5 years agosolver: crank up max patches to 9999
Eric Wong [Sun, 27 Jan 2019 03:38:41 +0000 (03:38 +0000)]
solver: crank up max patches to 9999

Might as well, since the only constraint is filesystem space
for temporary files for public-inbox-httpd users.

-httpd can fairly share work across clients with our use of
psgi_qx; and there's a recent patch series in git@vger with 64
patches in sequence.

5 years agoviewvcs: do not show final error message twice
Eric Wong [Sun, 27 Jan 2019 03:32:01 +0000 (03:32 +0000)]
viewvcs: do not show final error message twice

SolverGit::ERR already writes the exception to the debug
log before calling {user_cb}, so there's no need for viewvcs
to append it.

5 years agoqspawn: decode $? for user-friendliness
Eric Wong [Sun, 27 Jan 2019 03:30:30 +0000 (03:30 +0000)]
qspawn: decode $? for user-friendliness

The raw value of $? isn't very useful, generally.

5 years agosolver: reduce "git apply" invocations
Eric Wong [Sun, 27 Jan 2019 00:34:35 +0000 (00:34 +0000)]
solver: reduce "git apply" invocations

"git apply" is capable of applying multiple patches in one
invocation, so give it multiple patches on the command-line
now that we no longer rely on anonymous file handles to hold
patches.

This cuts down a 64-patch series on git@vger from ~1s to ~800ms
with vfork spawn enabled using Inline::C.

5 years agosolver: hold patches in temporary directory
Eric Wong [Sun, 27 Jan 2019 00:21:51 +0000 (00:21 +0000)]
solver: hold patches in temporary directory

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.

5 years agosolver: rewrite to use Qspawn->psgi_qx and pi-httpd.async
Eric Wong [Tue, 22 Jan 2019 02:10:13 +0000 (02:10 +0000)]
solver: rewrite to use Qspawn->psgi_qx and pi-httpd.async

The psgi_qx routine in the now-abandoned "repobrowse" branch
allows us to break down blob-solving at each process execution
point.  It reuses the Qspawn facility for git-http-backend(1),
allowing us to limit parallel subprocesses independently of Perl
worker count.

This is actually a 2-3% slower a fully-synchronous execution;
but it is fair to other clients as it won't monopolize the server
for hundreds of milliseconds (or even seconds) at a time.

5 years agoview: swap CRLF for LF in HTML output
Eric Wong [Sat, 26 Jan 2019 20:05:56 +0000 (20:05 +0000)]
view: swap CRLF for LF in HTML output

It makes no difference to browsers aside from saving a few
bytes; and this means we won't have to worry about extra
'%0D' showing up in links to solver.

5 years agot/qspawn.t: psgi_qx stderr test
Eric Wong [Tue, 22 Jan 2019 07:57:06 +0000 (07:57 +0000)]
t/qspawn.t: psgi_qx stderr test

5 years agoqspawn: implement psgi_qx
Eric Wong [Wed, 18 Jan 2017 07:27:03 +0000 (07:27 +0000)]
qspawn: implement psgi_qx

This new asynchronous API, will allow us to take
advantage of non-blocking I/O from even small commands;
as those may still need to wait for slow operations.

5 years agohttpd/async: stop running command if client disconnects
Eric Wong [Fri, 13 Jan 2017 23:10:25 +0000 (23:10 +0000)]
httpd/async: stop running command if client disconnects

If an HTTP client disconnects while we're piping the output of a
process to them, break the pipe of the process to reclaim
resources as soon as possible.

5 years agoqspawn|httpd/async: improve and fix out-of-date comments
Eric Wong [Wed, 11 Jan 2017 04:12:27 +0000 (04:12 +0000)]
qspawn|httpd/async: improve and fix out-of-date comments

5 years agoqspawn|getlinebody: support streaming filters
Eric Wong [Wed, 11 Jan 2017 04:12:26 +0000 (04:12 +0000)]
qspawn|getlinebody: support streaming filters

This is intended for wrapping "git show" and "git diff"
processes in the future and to prevent it from monopolizing
callers.

This will us to better handle backpressure from gigantic
commits.

5 years agoqspawn: implement psgi_return and use it for githttpbackend
Eric Wong [Sun, 25 Dec 2016 08:53:19 +0000 (08:53 +0000)]
qspawn: implement psgi_return and use it for githttpbackend

Was: ("repobrowse: port patch generation over to qspawn")

We'll be using it for githttpbackend and maybe other things.

5 years agohttpd/async: remove needless sysread wrapper
Eric Wong [Sun, 8 Jan 2017 04:31:30 +0000 (04:31 +0000)]
httpd/async: remove needless sysread wrapper

We don't appear to be using it anywhere

5 years agot/check-www-inbox: trap SIGINT for File::Temp destruction
Eric Wong [Mon, 21 Jan 2019 06:51:23 +0000 (06:51 +0000)]
t/check-www-inbox: trap SIGINT for File::Temp destruction

Otherwise, temporary GDBM files don't get unlinked
when I SIGINT the process.

5 years agohval: split out escape sequences to a separate table
Eric Wong [Mon, 21 Jan 2019 03:30:56 +0000 (03:30 +0000)]
hval: split out escape sequences to a separate table

We'll want to handle those escape sequences independently,
"highlight" already does HTML escaping.

5 years agohighlight: initial wrapper and PSGI service
Eric Wong [Mon, 21 Jan 2019 03:19:20 +0000 (03:19 +0000)]
highlight: initial wrapper and PSGI service

I'll probably expose the PSGI service for cgit;
but it could be useful to others as well.

5 years agot/check-www-inbox: warn on missing Content-Type
Eric Wong [Mon, 21 Jan 2019 03:09:22 +0000 (03:09 +0000)]
t/check-www-inbox: warn on missing Content-Type

Oops, I might've left it out, somewhere.

5 years agoconfig: each_inbox iteration preserves config order
Eric Wong [Sun, 20 Jan 2019 20:56:22 +0000 (20:56 +0000)]
config: each_inbox iteration preserves config order

For cross-inbox Message-ID resolution; having some sort of
stable ordering makes the most sense.  Relying on the
order of the config file seems most natural and allows us
to avoid introducing yet another configuration knob.

5 years agosolver: remove extra "^index $OID..$OID" line
Eric Wong [Sun, 20 Jan 2019 13:48:10 +0000 (13:48 +0000)]
solver: remove extra "^index $OID..$OID" line

It was harmless, besides wasting space and memory.

5 years agosolver: force quoted-printable bodies to LF
Eric Wong [Sun, 20 Jan 2019 13:46:28 +0000 (13:46 +0000)]
solver: force quoted-printable bodies to LF

..if the Email::MIME ->crlf is LF.

Email::MIME::Encodings forces everything to CRLF on
quoted-printable messages for RFC-compliance; and
git-apply --ignore-whitespace seems to miss a context
line which is just "\r\n" (w/o leading space).

5 years agoviewvcs: disable white-space prewrap in blob view
Eric Wong [Sun, 20 Jan 2019 12:18:35 +0000 (12:18 +0000)]
viewvcs: disable white-space prewrap in blob view

We need to keep line-numbers from <a> tags synced to the actual
line numbers in the code when working in smaller viewports.

Maybe I only work on reasonable projects, but excessively
long lines seem to be less of a problem in code than they are
in emails.

5 years agoviewdiff: do not link to 0{7,40} blobs (again)
Eric Wong [Sun, 20 Jan 2019 12:16:47 +0000 (12:16 +0000)]
viewdiff: do not link to 0{7,40} blobs (again)

We must reset diff context when starting a new file;
and we must check for all-zeroes object_ids as the
post-image correctly.

5 years agot/check-www-inbox: use xmlstarlet to validate Atom if available
Eric Wong [Sun, 20 Jan 2019 11:40:22 +0000 (11:40 +0000)]
t/check-www-inbox: use xmlstarlet to validate Atom if available

I almost forgot about this script; but remembering to test
it against real-world data can be useful to hunt for bugs.

5 years agoviewdiff: quote attributes for Atom feed
Eric Wong [Sun, 20 Jan 2019 10:57:13 +0000 (10:57 +0000)]
viewdiff: quote attributes for Atom feed

We still need to use XHTML the Atom feed, and XHTML requires
attributes to be quoted, whereas HTML 5 does not.

5 years agoviewdiff: cleanup state transitions a bit
Eric Wong [Sun, 20 Jan 2019 10:42:07 +0000 (10:42 +0000)]
viewdiff: cleanup state transitions a bit

This makes things less error-prone and allows us to only
highlight the "@@ -\S+ \+\S+ @@" part of the hunk header
line, without highlighting the function context.

This more closely matches the coloring behavior of git-diff(1)

5 years agoviewdiff: support diff-highlighting w/o coderepo
Eric Wong [Sun, 20 Jan 2019 09:42:34 +0000 (09:42 +0000)]
viewdiff: support diff-highlighting w/o coderepo

Having diff highlighting alone is still useful, even
if blob-resolution/recreation is too expensive or
unfeasible.

5 years ago$INBOX/_/text/color/ and sample user-side CSS
Eric Wong [Sun, 20 Jan 2019 09:29:08 +0000 (09:29 +0000)]
$INBOX/_/text/color/ and sample user-side CSS

Since we now support more CSS classes for coloring,
give this feature more visibility.

5 years agowww: admin-configurable CSS via "publicinbox.css"
Eric Wong [Sun, 20 Jan 2019 04:21:07 +0000 (04:21 +0000)]
www: admin-configurable CSS via "publicinbox.css"

Maybe we'll default to a dark theme to promote energy savings...

See contrib/css/README for details

5 years agosolver: restore diagnostics and deal with CRLF
Eric Wong [Sat, 19 Jan 2019 21:57:26 +0000 (21:57 +0000)]
solver: restore diagnostics and deal with CRLF

Apparently Email::MIME returns quoted-printable text
with CRLF.  So use --ignore-whitespace with git-apply(1)
and ensure we don't capture '\r' in pathnames from
those emails.

And restore "$@" dumping when we die while solving.

5 years agoview: enforce trailing slash for /$INBOX/$OID/s/ endpoints
Eric Wong [Sat, 19 Jan 2019 08:54:42 +0000 (08:54 +0000)]
view: enforce trailing slash for /$INBOX/$OID/s/ endpoints

As with our use of the trailing slash in $MESSAGE_ID/T/ and
'$MESSAGE_ID/t/' endpoints, this for 'wget -r --mirror'
compatibility as well as allowing sysadmins to quickly stand up
a static directory with "index.html" in it to reduce load.

5 years agosolver: add a TODO note about making this fully evented
Eric Wong [Sat, 19 Jan 2019 08:27:44 +0000 (08:27 +0000)]
solver: add a TODO note about making this fully evented

Applying a 100+ patch series can be a pain and lead to a wayward
client monopolizing the connection.  On the other hand, we'll
also need to be careful and limit the number of in-flight file
descriptors and parallel git-apply processes when we move to an
evented model, here.

5 years agosolver: note the synchronous nature of index preparation
Eric Wong [Sat, 19 Jan 2019 08:13:11 +0000 (08:13 +0000)]
solver: note the synchronous nature of index preparation

It's not likely to be worth our time to support
a callback-driven model for something which happens
once per patch series.

5 years agosolver: break @todo loop into a callback
Eric Wong [Sat, 19 Jan 2019 06:37:53 +0000 (06:37 +0000)]
solver: break @todo loop into a callback

This will allow each patch search via Xapian to "yield" the
current client in favor of another client in the PSGI web
interface for fairness.

5 years agosolver: simplify control flow for initial loop
Eric Wong [Sat, 19 Jan 2019 05:44:12 +0000 (05:44 +0000)]
solver: simplify control flow for initial loop

We'll be breaking this up into several steps, too; since
searching inboxes for patch blobs can take 10s of milliseconds
for me.

5 years agosolver: switch patch application to use a callback
Eric Wong [Sat, 19 Jan 2019 05:25:30 +0000 (05:25 +0000)]
solver: switch patch application to use a callback

A bit messy at the moment, but we need to break this up
into smaller steps for fairness with other clients, as
applying dozens of patches can take several hundred
milliseconds.

5 years agosolver: break up patch application steps
Eric Wong [Sat, 19 Jan 2019 04:57:08 +0000 (04:57 +0000)]
solver: break up patch application steps

We want more fine-grained scheduling for PSGI use, as
the patch application step can take hundreds of milliseconds
on my modest hardware

5 years agosolver: more verbose blob resolution
Eric Wong [Sat, 19 Jan 2019 04:57:07 +0000 (04:57 +0000)]
solver: more verbose blob resolution

Help users find out where each step of the resolution came from.
Also, we must clean abort the process if we have missing blobs.

And refine the output to avoid unnecessary braces, too.

5 years agogit: support 'ambiguous' result from --batch-check
Eric Wong [Sat, 19 Jan 2019 06:36:04 +0000 (06:36 +0000)]
git: support 'ambiguous' result from --batch-check

David Turner's patch to return "ambiguous" seems like a reasonable
patch for future versions of git:

https://public-inbox.org/git/672a6fb9e480becbfcb5df23ae37193784811b6b.camel@novalis.org/

5 years agoview: enable naming hints for raw blob downloads
Eric Wong [Fri, 18 Jan 2019 12:18:10 +0000 (12:18 +0000)]
view: enable naming hints for raw blob downloads

Meaningful names in URLs are nice, and it can make
life easier for supporting syntax-highlighting

5 years agosolver: operate directly on git index
Eric Wong [Fri, 18 Jan 2019 11:17:58 +0000 (11:17 +0000)]
solver: operate directly on git index

No need to incur extra I/O traffic with a working-tree and
uncompressed files on the filesystem.  git can handle patch
application in memory and we rely on exact blob matching
anyways, so no need for 3way patch application.

5 years agogit: disable abbreviations with cat-file hints
Eric Wong [Fri, 18 Jan 2019 06:09:24 +0000 (06:09 +0000)]
git: disable abbreviations with cat-file hints

Ambiguity is not worth it for internal usage with the
solver.

5 years agoview: wire up diff and vcs viewers with solver
Eric Wong [Thu, 17 Jan 2019 11:51:34 +0000 (11:51 +0000)]
view: wire up diff and vcs viewers with solver

5 years agosolver: various bugfixes and cleanups
Eric Wong [Thu, 17 Jan 2019 11:50:57 +0000 (11:50 +0000)]
solver: various bugfixes and cleanups

Remove the make_path dependency and call mkdir directly.
Capture mode on new files, avoid referencing non-existent
functions and enhance the debug output for users to read.

5 years agogit: check saves error on disambiguation
Eric Wong [Fri, 18 Jan 2019 05:27:51 +0000 (05:27 +0000)]
git: check saves error on disambiguation

This will be useful for disambiguating short OIDs in older
emails when abbreviations were shorter.

Tested against the following script with /path/to/git.git
==> t.perl <==
use strict;
use PublicInbox::Git;
use Data::Dumper;
my $dir = shift or die "Usage: $0 GIT_DIR # (of git.git)";
my $git = PublicInbox::Git->new($dir);
my @res = $git->check('dead');
print Dumper({res => \@res, err=> $git->last_check_err});
@res = $git->check('5335669531d83d7d6c905bcfca9b5f8e182dc4d4');
print Dumper({res => \@res, err=> $git->last_check_err});

5 years agogit: add git_quote
Eric Wong [Fri, 18 Jan 2019 10:21:40 +0000 (10:21 +0000)]
git: add git_quote

It'll be helpful for displaying progress in SolverGit
output.

5 years agogit: support multiple URL endpoints
Eric Wong [Wed, 16 Jan 2019 21:53:07 +0000 (21:53 +0000)]
git: support multiple URL endpoints

For redundancy and centralization resistance.

5 years agosolver: initial Perl implementation
Eric Wong [Tue, 15 Jan 2019 08:22:41 +0000 (08:22 +0000)]
solver: initial Perl implementation

This will lookup git blobs from associated git source code
repositories.  If the blobs can't be found, an attempt to
"solve" them via patch application will be performed.

Eventually, this may become the basis of a type-agnostic
frontend similar to "git show"

5 years agot/perf-msgview: add test to check msg_html performance
Eric Wong [Tue, 15 Jan 2019 02:42:10 +0000 (02:42 +0000)]
t/perf-msgview: add test to check msg_html performance

This will be necessary to ensure we maintain reasonable
performance when we add diff-highlighting support.

5 years agohval: force monospace for <form> elements, too
Eric Wong [Sat, 19 Jan 2019 02:10:09 +0000 (02:10 +0000)]
hval: force monospace for <form> elements, too

Same reasoning as commit 7b7885fc3be2719c068c0a2fc860d53f17a1d933,
because GUI browsers have a tendency to use a different
font-family (and thus different size) as the rest of the page.

5 years agoview: disable bold in topic display
Eric Wong [Fri, 18 Jan 2019 06:19:09 +0000 (06:19 +0000)]
view: disable bold in topic display

It seems pointless due to the indentation, and interacts
badly with some CSS colouring.

5 years agot/git.t: do not pass "-b" to git-repack(1)
Eric Wong [Fri, 18 Jan 2019 21:43:29 +0000 (21:43 +0000)]
t/git.t: do not pass "-b" to git-repack(1)

Allows t/git.t to run on older versions of git without
"-b" and avoids incurring extra I/O traffic for bitmaps.

5 years agogit: git_unquote handles double-quote and backslash
Eric Wong [Fri, 18 Jan 2019 12:50:59 +0000 (12:50 +0000)]
git: git_unquote handles double-quote and backslash

We need to work with 0x22 (double-quote) and 0x5c (backslash);
even if they're oddball characters in filenames which wouldn't
be used by projects I'd want to work on.

5 years agot/git.t: avoid passing read-only value to git_unquote
Eric Wong [Fri, 18 Jan 2019 19:40:07 +0000 (19:40 +0000)]
t/git.t: avoid passing read-only value to git_unquote

Older versions of Perl (tested 5.14.2 on Debian wheezy(*),
reported by Konstantin on Perl 5.16.3) considered the result of
concatenating two string literals to be a constant value.

(*) not that other stuff works on wheezy, but t/git.t should.

Reported-by: Konstantin Ryabitsev <konstantin@linuxfoundation.org>
5 years agonntp: header responses use CRLF consistently
Eric Wong [Wed, 16 Jan 2019 04:51:28 +0000 (04:51 +0000)]
nntp: header responses use CRLF consistently

Alpine is apparently stricter than other clients I've tried
w.r.t. using CRLF for headers.  So do the same thing we do for
bodies to ensure we only emit CRLFs and no bare LFs.

Reported-by: Wang Kang <i@scateu.me>
  https://public-inbox.org/meta/alpine.DEB.2.21.99.1901161043430.29788@la.scateu.me/

5 years agoconfig: inbox name checking matches git.git more closely
Eric Wong [Wed, 9 Jan 2019 11:43:26 +0000 (11:43 +0000)]
config: inbox name checking matches git.git more closely

Actually, it turns out git.git/remote.c::valid_remote_nick
rules alone are insufficient.  More checking is performed as
part of the refname in the git.git/refs.c::check_refname_component

I also considered rejecting URL-unfriendly inbox names entirely,
but realized some users may intentionally configure names not
handled by our WWW endpoint for archives they don't want
accessible over HTTP.

5 years agogit_unquote: perform modifications in-place
Eric Wong [Tue, 15 Jan 2019 02:42:09 +0000 (02:42 +0000)]
git_unquote: perform modifications in-place

This function doesn't have a lot of callers at the moment so
none of them are affected by this change.  But the plan is to
use this in our WWW code for things, so do it now before we
call it in more places.

Results from a Thinkpad X200 with a Core2Duo P8600 @ 2.4GHz:

Benchmark: timing 10 iterations of cp, ip...
        cp: 12.868 wallclock secs (12.86 usr +  0.00 sys = 12.86 CPU) @  0.78/s (n=10)
        ip: 10.9137 wallclock secs (10.91 usr +  0.00 sys = 10.91 CPU) @  0.92/s (n=10)

Note: I mainly care about unquoted performance because
that's the common case for the target audience of public-inbox.

Script used to get benchmark results against the Linux source tree:
==> bench_unquote.perl <==
use strict;
use warnings;
use Benchmark ':hireswallclock';
my $nr = 50;

my %GIT_ESC = (
a => "\a",
b => "\b",
f => "\f",
n => "\n",
r => "\r",
t => "\t",
v => "\013",
);

sub git_unquote_ip ($) {
return $_[0] unless ($_[0] =~ /\A"(.*)"\z/);
$_[0] = $1;
$_[0] =~ s/\\([abfnrtv])/$GIT_ESC{$1}/g;
$_[0] =~ s/\\([0-7]{1,3})/chr(oct($1))/ge;
$_[0];
}

sub git_unquote_cp ($) {
my ($s) = @_;
return $s unless ($s =~ /\A"(.*)"\z/);
$s = $1;
$s =~ s/\\([abfnrtv])/$GIT_ESC{$1}/g;
$s =~ s/\\([0-7]{1,3})/chr(oct($1))/ge;
$s;
}

chomp(my @files = `git -C ~/linux ls-tree --name-only -r v4.19.13`);
timethese(10, {
cp => sub { for (0..$nr) { git_unquote_cp($_) for @files } },
ip => sub { for (0..$nr) { git_unquote_ip($_) for @files } },
});

5 years agosearchidx: move git_unquote to PublicInbox::Git
Eric Wong [Tue, 15 Jan 2019 02:42:08 +0000 (02:42 +0000)]
searchidx: move git_unquote to PublicInbox::Git

We'll be using it outside of searchidx...

5 years agoindex: allow working on unconfigured inboxes, again
Eric Wong [Tue, 15 Jan 2019 20:06:25 +0000 (20:06 +0000)]
index: allow working on unconfigured inboxes, again

5 years agoHACKING: update Debian version information
Eric Wong [Fri, 11 Jan 2019 20:43:33 +0000 (20:43 +0000)]
HACKING: update Debian version information

It's been a few years since this was updated...

5 years agoMerge commit 'mem'
Eric Wong [Thu, 10 Jan 2019 21:41:55 +0000 (21:41 +0000)]
Merge commit 'mem'

* commit 'mem':
  view: more culling for search threads
  over: cull unneeded fields for get_thread
  searchmsg: remove unused fields for PSGI in Xapian results
  searchview: drop unused {seen} hashref
  searchmsg: remove Xapian::Document field
  searchmsg: get rid of termlist scanning for mid
  httpd: remove psgix.harakiri reference

5 years agot/v2writable.t: force more consistent "git log" output
Eric Wong [Thu, 10 Jan 2019 03:26:15 +0000 (03:26 +0000)]
t/v2writable.t: force more consistent "git log" output

This should probably use lower-level git plumbing, but until
then, consistently add a bunch of --no-* options to "git log"
to get more consistent output.

Noticed-by: Johannes Berg
  https://public-inbox.org/meta/1538164205.14416.76.camel@sipsolutions.net/

5 years agocheck git version requirements
Eric Wong [Thu, 10 Jan 2019 04:53:10 +0000 (04:53 +0000)]
check git version requirements

This allows v1 tests to continue working on git 1.8.0 for
now.  This allows git 2.1.4 packaged with Debian 8 ("jessie")
to run old tests, at least.

I suppose it's safe to drop Debian 7 ("wheezy") due to our
dependency on git 1.8.0 for "merge-base --is-ancestor".

Writing V2 repositories requires git 2.6 for "get-mark"
support, so mask out tests for older gits.

5 years agoINSTALL: Net::Server is not needed for systemd use
Eric Wong [Thu, 10 Jan 2019 03:42:16 +0000 (03:42 +0000)]
INSTALL: Net::Server is not needed for systemd use

Also, move Socket6 down since it's usually pulled in as
a dependency of Net::Server or SpamAssassin; and we can
fail gracefully without it.

5 years agodaemon: make Socket6 optional, note about Net::Socket::IP
Eric Wong [Thu, 10 Jan 2019 04:02:59 +0000 (04:02 +0000)]
daemon: make Socket6 optional, note about Net::Socket::IP

It looks like Net::Socket::IP comes with Perl 5.20 and
later; so we won't have to hassle users with another
package to install.

5 years agodoc: various overview-level module comments
Eric Wong [Mon, 7 Jan 2019 09:09:51 +0000 (09:09 +0000)]
doc: various overview-level module comments

Hopefully this helps people familiarize themselves with
the source code.

5 years agoINSTALL: fix Date::Parse dependency for Debian
Eric Wong [Wed, 9 Jan 2019 11:44:07 +0000 (11:44 +0000)]
INSTALL: fix Date::Parse dependency for Debian

So yes, both "libdatetime-perl" and "libtimedate-perl" exist
in Debian.  We want the latter for the Date::Parse module.

(And the former pulls in THIRTY-SEVEN dependencies on a fresh
 sid chroot, ohg yrsgcnq vf abg bar bs gurz).

5 years agoview: more culling for search threads
Eric Wong [Tue, 8 Jan 2019 11:19:57 +0000 (11:19 +0000)]
view: more culling for search threads

{mapping} overhead is now down to ~1.3M at the end of
a giant thread from hell.

5 years agoover: cull unneeded fields for get_thread
Eric Wong [Tue, 8 Jan 2019 11:13:33 +0000 (11:13 +0000)]
over: cull unneeded fields for get_thread

On a certain ugly /$INBOX/$MESSAGE_ID/T/ endpoint with 1000
messages in the thread, this cuts memory usage from 2.5M to 1.9M
(which still isn't great, but it's a start).

5 years agosearchmsg: remove unused fields for PSGI in Xapian results
Eric Wong [Tue, 8 Jan 2019 11:13:31 +0000 (11:13 +0000)]
searchmsg: remove unused fields for PSGI in Xapian results

These fields are only necessary in NNTP and not even stored in
Xapian; so keeping them around for the PSGI web UI search
results wastes nearly 80K when loading large result sets.

5 years agosearchview: drop unused {seen} hashref
Eric Wong [Tue, 8 Jan 2019 11:13:30 +0000 (11:13 +0000)]
searchview: drop unused {seen} hashref

Unused since commit 5f09452bb7e6cf49fb6eb7e6cf166a7c3cdc5433
("view: cull redundant phrases in subjects")

5 years agosearchmsg: remove Xapian::Document field
Eric Wong [Tue, 8 Jan 2019 11:13:29 +0000 (11:13 +0000)]
searchmsg: remove Xapian::Document field

We don't need to be carrying this around with the many SearchMsg
objects we have.  This saves about 20K from a large SearchView
"&x=t" response.

5 years agosearchmsg: get rid of termlist scanning for mid
Eric Wong [Tue, 8 Jan 2019 11:13:27 +0000 (11:13 +0000)]
searchmsg: get rid of termlist scanning for mid

It doesn't seem to be used anywhere

5 years agohttpd: remove psgix.harakiri reference
Eric Wong [Tue, 8 Jan 2019 11:13:26 +0000 (11:13 +0000)]
httpd: remove psgix.harakiri reference

We don't need to set "psgix." extension fields for things
we don't support.  This saves 138 bytes per-client in $env
as measured by Devel::Size::total_size

5 years agoview: fix wrong date for non-Xapian/SQLite v1 users
Eric Wong [Tue, 8 Jan 2019 10:30:42 +0000 (10:30 +0000)]
view: fix wrong date for non-Xapian/SQLite v1 users

We need to parse the MIME object in order to get the
datestamp for those sites.

Fixes: 7d02b9e64455 ("view: stop storing all MIME objects on large threads")
5 years agonntp: fix uninitialized variable in event_read
Eric Wong [Mon, 7 Jan 2019 11:53:10 +0000 (11:53 +0000)]
nntp: fix uninitialized variable in event_read

do_write must return 0 or 1.

5 years agoview: stop storing all MIME objects on large threads
Eric Wong [Tue, 8 Jan 2019 00:41:12 +0000 (00:41 +0000)]
view: stop storing all MIME objects on large threads

While we try to discard the $smsg (SearchMsg) objects quickly,
they remain referenced via $node (SearchThread::Msg) objects,
which are stored forever in $ctx->{mapping} to cull redundant
words out of subjects in the thread skeleton.

This significantly cuts memory bloat with large search results
with '&x=t'.  Now, the search results overhead of
SearchThread::Msg and linked objects are stable at around 350K
instead of ~7M per response in a rough test (there's more
savings to be had in the same areas).

Several hundred kilobytes is still huge and a large per-client
cost; but it's far better than MEGABYTES per-client.

5 years agot/mda_filter_rubylang.t: set PI_EMERGENCY for -mda
Eric Wong [Mon, 7 Jan 2019 05:22:41 +0000 (05:22 +0000)]
t/mda_filter_rubylang.t: set PI_EMERGENCY for -mda

Tests should not write to the default ~/.public-inbox/emergency

5 years agoshrink low-bandwidth pipes under Linux
Eric Wong [Sat, 5 Jan 2019 21:52:57 +0000 (21:52 +0000)]
shrink low-bandwidth pipes under Linux

I've hit /proc/sys/fs/pipe-user-pages-* limits on some systems.
So stop hogging resources on pipes which don't benefit from
giant sizes.

Some of these can use eventfd in the future to further reduce
resource use.

5 years agoindex: quiet down git-log error messages on new inboxes
Eric Wong [Sat, 5 Jan 2019 11:00:52 +0000 (11:00 +0000)]
index: quiet down git-log error messages on new inboxes

The new t/*filter_rubylang.t tests call -index immediately
after -init, which causes confusing messages to show up to
the end user.

Check the validity of the ref before calling "git-log".

5 years agofilter/rubylang: fix SQLite DB lifetime problems
Eric Wong [Sat, 5 Jan 2019 10:41:15 +0000 (10:41 +0000)]
filter/rubylang: fix SQLite DB lifetime problems

Clearly the AltId stuff was never tested for v2.  Ensure
this tricky filter (which reuses Msgmap to avoid introducing
new serial numbers) doesn't trigger deadlocks SQLite due
to opening a DB for writing multiple times.

I went through several iterations of this change before
going with this one, which is the least intrusive I could
fine.

5 years agoinboxwritable: drop unused variable
Eric Wong [Sat, 5 Jan 2019 09:22:07 +0000 (09:22 +0000)]
inboxwritable: drop unused variable

5 years agowatchmaildir: normalize Maildir pathnames consistently
Eric Wong [Sat, 5 Jan 2019 02:33:05 +0000 (02:33 +0000)]
watchmaildir: normalize Maildir pathnames consistently

Remove redundant slashes while we're at it.

5 years agowatchmaildir: get rid of unused spamdir field
Eric Wong [Sat, 5 Jan 2019 02:05:42 +0000 (02:05 +0000)]
watchmaildir: get rid of unused spamdir field

Unused since commit 6c2caa791bd5fbf5c4edb1a4a2c1807e527348a7
("watchmaildir: support v2 repositories")

5 years agowatchmaildir: support multiple inboxes in the same Maildir
Eric Wong [Sat, 5 Jan 2019 00:35:42 +0000 (00:35 +0000)]
watchmaildir: support multiple inboxes in the same Maildir

Not sure what I was smoking when I originally wrote this code.

cf. https://public-inbox.org/meta/874li887mp.fsf@vuxu.org/

5 years agot/cgi.t: remove more redundant tests
Eric Wong [Fri, 4 Jan 2019 11:53:02 +0000 (11:53 +0000)]
t/cgi.t: remove more redundant tests

Most of these test cases are in t/plack.t, already; and that
runs much faster.  Just ensure the slashy corner case and search
stuff works.  While we're at it, avoid using the
public-inbox-index command and just use the internal API to
index.

5 years agot/cgi.t: move expected failure tests to t/plack.t
Eric Wong [Fri, 4 Jan 2019 11:32:00 +0000 (11:32 +0000)]
t/cgi.t: move expected failure tests to t/plack.t

No point in implementing these slowly with the CGI wrapper
when PSGI is sufficient for testing.

5 years agot/cgi.t: move dumb HTTP git clone/fetch tests to plack.t
Eric Wong [Fri, 4 Jan 2019 09:14:48 +0000 (09:14 +0000)]
t/cgi.t: move dumb HTTP git clone/fetch tests to plack.t

No need to test this via CGI .cgi is a wrapper around
PSGI and PSGI tests are way faster.

5 years agot/cgi.t: remove atom.xml test
Eric Wong [Fri, 4 Jan 2019 09:02:51 +0000 (09:02 +0000)]
t/cgi.t: remove atom.xml test

It is redundant with what is in t/plack.t

5 years agot/cgi.t: remove redundant redirect check
Eric Wong [Fri, 4 Jan 2019 08:55:04 +0000 (08:55 +0000)]
t/cgi.t: remove redundant redirect check

t/plack.t already has the same test.

5 years agot/cgi.t: eliminate some cruft and unnecessary tests
Eric Wong [Fri, 4 Jan 2019 08:51:20 +0000 (08:51 +0000)]
t/cgi.t: eliminate some cruft and unnecessary tests

More of this test will be, we use PSGI nowadays; and
most of these tests can be ported over to use PSGI and
not fork+exec as much.

5 years agov2writable: disable parallelism on indexlevel=basic
Eric Wong [Tue, 1 Jan 2019 11:50:25 +0000 (11:50 +0000)]
v2writable: disable parallelism on indexlevel=basic

There is no need for parallelism if we're not using Xapian.

5 years agoconfig: relax name inbox name restrictions
Eric Wong [Tue, 1 Jan 2019 10:18:47 +0000 (10:18 +0000)]
config: relax name inbox name restrictions

Since "publicinbox" sections are analogous to git remotes, we
may use the same rules for naming git remotes to reduce
cognitive overhead.

Most notably, this allows '.' in the middle of inbox names,
(e.g. "foo.bar") as it's common for email addresses, too.

5 years agouse PublicInbox::Config::each_inbox where appropriate
Eric Wong [Tue, 1 Jan 2019 10:18:46 +0000 (10:18 +0000)]
use PublicInbox::Config::each_inbox where appropriate

No need to reach into PublicInbox::Config internals and iterate
through the hashref by hand

5 years agoupdate and add documentation for repository formats
Eric Wong [Wed, 2 Jan 2019 08:23:13 +0000 (08:23 +0000)]
update and add documentation for repository formats

Remove confusing documentation around ssoma now that we
have NNTP and downloadable mbox support.

Only lightly-checked for grammar and speling, and not yet
formatting.  Edits, corrections and addendums expected :>

5 years agot/feed.t: remove ssoma use
Eric Wong [Mon, 31 Dec 2018 22:00:22 +0000 (22:00 +0000)]
t/feed.t: remove ssoma use

No need to waste cycles with this anymore.