From: Eric Wong Date: Tue, 27 Oct 2020 07:54:04 +0000 (+0000) Subject: extsearch: start mocking out X-Git-Tag: v1.7.0~1697 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=2694d5ca09c96f6b51f50d94d92a13ba4abd0c79;p=public-inbox.git extsearch: start mocking out This will provide a similar API to PublicInbox::Inbox for read-only WWW, -imapd, and -nntpd interfaces. --- diff --git a/MANIFEST b/MANIFEST index b6a681e9..60055d2b 100644 --- a/MANIFEST +++ b/MANIFEST @@ -121,6 +121,7 @@ lib/PublicInbox/Emergency.pm lib/PublicInbox/Eml.pm lib/PublicInbox/EmlContentFoo.pm lib/PublicInbox/ExtMsg.pm +lib/PublicInbox/ExtSearch.pm lib/PublicInbox/FakeInotify.pm lib/PublicInbox/Feed.pm lib/PublicInbox/Filter/Base.pm @@ -269,6 +270,7 @@ t/eml.t t/eml_content_disposition.t t/eml_content_type.t t/epoll.t +t/extsearch.t t/fail-bin/spamc t/fake_inotify.t t/feed.t diff --git a/lib/PublicInbox/ExtSearch.pm b/lib/PublicInbox/ExtSearch.pm new file mode 100644 index 00000000..9bbe7857 --- /dev/null +++ b/lib/PublicInbox/ExtSearch.pm @@ -0,0 +1,40 @@ +# Copyright (C) 2020 all contributors +# License: AGPL-3.0+ + +# Read-only external (detached) index for cross inbox search. +# This is a read-only counterpart to PublicInbox::ExtSearchIdx +package PublicInbox::ExtSearch; +use strict; +use v5.10.1; +use PublicInbox::Over; + +# for ->reopen, ->mset, ->mset_to_artnums +use parent qw(PublicInbox::Search); + +sub new { + my (undef, $topdir) = @_; + bless { + topdir => $topdir, + # xpfx => 'ei15' + xpfx => "$topdir/ei".PublicInbox::Search::SCHEMA_VERSION + }, __PACKAGE__; +} + +# overrides PublicInbox::Search::_xdb +sub _xdb { + my ($self) = @_; + $self->_xdb_sharded($self->{xpfx}); +} + +# same as per-inbox ->over, for now... +sub over { + my ($self) = @_; + $self->{over} //= PublicInbox::Over->new("$self->{xpfx}/over.sqlite3"); +} + +sub git { + my ($self) = @_; + $self->{git} //= PublicInbox::Git->new("$self->{topdir}/ALL.git"); +} + +1; diff --git a/lib/PublicInbox/Search.pm b/lib/PublicInbox/Search.pm index 6346d788..5a57657f 100644 --- a/lib/PublicInbox/Search.pm +++ b/lib/PublicInbox/Search.pm @@ -245,9 +245,9 @@ sub mset_to_artnums { sub xdb ($) { my ($self) = @_; - $self->{xdb} ||= do { + $self->{xdb} //= do { load_xapian(); - _xdb($self); + $self->_xdb; }; } diff --git a/t/extsearch.t b/t/extsearch.t new file mode 100644 index 00000000..7687f5f0 --- /dev/null +++ b/t/extsearch.t @@ -0,0 +1,11 @@ +#!perl -w +# Copyright (C) 2020 all contributors +# License: AGPL-3.0+ +use strict; +use Test::More; +use PublicInbox::TestCommon; +require_git(2.6); +require_mods(qw(DBD::SQLite Search::Xapian)); +use_ok 'PublicInbox::ExtSearch'; + +done_testing;