about summary refs log tree commit homepage
path: root/lib/PublicInbox/Smsg.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2020-09-24 10:13:39 +0000
committerEric Wong <e@80x24.org>2020-09-24 21:18:44 +0000
commit2255a4ad2fa2384c1f4cec6dd267383396cbc945 (patch)
treee5d00c41abb08184d0b44584822a1e8160d82ac0 /lib/PublicInbox/Smsg.pm
parent8d7216a0c278272d7d3525f4bb0ec1fa74486698 (diff)
downloadpublic-inbox-2255a4ad2fa2384c1f4cec6dd267383396cbc945.tar.gz
This switch is still undocumented, but we can reduce the scope
of our Xapian docdata dependency by moving its only caller to
SearchIdx.  This reduces the amount of code loaded by read-only
code paths.
Diffstat (limited to 'lib/PublicInbox/Smsg.pm')
-rw-r--r--lib/PublicInbox/Smsg.pm18
1 files changed, 0 insertions, 18 deletions
diff --git a/lib/PublicInbox/Smsg.pm b/lib/PublicInbox/Smsg.pm
index 171e0a00..14086538 100644
--- a/lib/PublicInbox/Smsg.pm
+++ b/lib/PublicInbox/Smsg.pm
@@ -15,13 +15,6 @@ our @EXPORT_OK = qw(subject_normalized);
 use PublicInbox::MID qw(mids);
 use PublicInbox::Address;
 use PublicInbox::MsgTime qw(msg_timestamp msg_datestamp);
-use Time::Local qw(timegm);
-
-sub get_val ($$) {
-        my ($doc, $col) = @_;
-        # sortable_unserialise is defined by PublicInbox::Search::load_xapian()
-        sortable_unserialise($doc->get_value($col));
-}
 
 sub to_doc_data {
         my ($self) = @_;
@@ -61,17 +54,6 @@ sub load_from_data ($$) {
         ) = split(/\n/, $_[1]);
 }
 
-sub load_expand {
-        my ($self, $doc) = @_;
-        my $data = $doc->get_data or return;
-        $self->{ts} = get_val($doc, PublicInbox::Search::TS());
-        my $dt = get_val($doc, PublicInbox::Search::DT());
-        my ($yyyy, $mon, $dd, $hh, $mm, $ss) = unpack('A4A2A2A2A2A2', $dt);
-        $self->{ds} = timegm($ss, $mm, $hh, $dd, $mon - 1, $yyyy);
-        load_from_data($self, $data);
-        $self;
-}
-
 sub psgi_cull ($) {
         my ($self) = @_;