]> Sergey Matveev's repositories - public-inbox.git/blob - lib/PublicInbox/LeiSucks.pm
lei sucks: sub-command to aid bug reporting
[public-inbox.git] / lib / PublicInbox / LeiSucks.pm
1 # Copyright (C) 2021 all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
3
4 # Undocumented hidden command somebody might discover if they're
5 # frustrated and need to report a bug.  There's no manpage and
6 # it won't show up in tab completions or help.
7 package PublicInbox::LeiSucks;
8 use strict;
9 use v5.10.1;
10 use Digest::SHA ();
11 use Config;
12 use POSIX ();
13 use PublicInbox::Config;
14 use PublicInbox::Search;
15
16 sub lei_sucks {
17         my ($lei, @argv) = @_;
18         $lei->start_pager if -t $lei->{1};
19         my ($os, undef, $rel, undef, $mac)= POSIX::uname();
20         if ($mac eq 'x86_64' && $Config{ptrsize} == 4) {
21                 $mac = $Config{cppsymbols} =~ /\b__ILP32__=1\b/ ? 'x32' : 'i386'
22         }
23         eval { require PublicInbox };
24         my $pi_ver = eval('$PublicInbox::VERSION') // '(???)';
25         my $daemon = $lei->{oneshot} ? 'oneshot' : 'daemon';
26         my @out = ("lei $pi_ver mode=$daemon\n",
27                 "perl $Config{version} / $os $rel / $mac ".
28                 "ptrsize=$Config{ptrsize}\n");
29         chomp(my $gv = `git --version` || "git missing");
30         $gv =~ s/ version / /;
31         my $json = ref(PublicInbox::Config->json);
32         $json .= ' ' . eval('$'.$json.'::VERSION') if $json;
33         $json ||= '(no JSON)';
34         push @out, "$gv / $json\n";
35         if (eval { require PublicInbox::Over }) {
36                 push @out, 'SQLite '.
37                         (eval('$DBD::SQLite::sqlite_version') // '(undef)') .
38                         ', DBI '.(eval('$DBI::VERSION') // '(undef)') .
39                         ', DBD::SQLite '.
40                         (eval('$DBD::SQLite::VERSION') // '(undef)')."\n";
41         } else {
42                 push @out, "Unable to load DBI / DBD::SQLite: $@\n";
43         }
44         if (PublicInbox::Search::load_xapian()) {
45                 push @out, 'Xapian '.
46                         join('.', map {
47                                 $PublicInbox::Search::Xap->can($_)->();
48                         } qw(major_version minor_version revision)) .
49                         ", bindings: $PublicInbox::Search::Xap";
50                 my $xs_ver = eval '$'."$PublicInbox::Search::Xap".'::VERSION';
51                 push @out, $xs_ver ? " $xs_ver\n" : " SWIG\n";
52         } else {
53                 push @out, "Xapian not available: $@\n";
54         }
55         my $dig = Digest::SHA->new(1);
56         push @out, "public-inbox blob OIDs of loaded features:\n";
57         for my $m (grep(m{^PublicInbox/}, sort keys %INC)) {
58                 my $f = $INC{$m};
59                 $dig->add('blob '.(-s $f)."\0");
60                 $dig->addfile($f);
61                 push @out, '  '.$dig->hexdigest.' '.$m."\n";
62         }
63         push @out, <<'EOM';
64 Let us know how it sucks!  Please include the above and any other
65 relevant information when sending plain-text mail to us at:
66 meta@public-inbox.org -- archives: https://public-inbox.org/meta/
67 EOM
68         $lei->out(@out);
69 }
70
71 1;