user/dev discussion of public-inbox itself
 help / color / mirror / code / Atom feed
Search results ordered by [date|relevance]  view[summary|nested|Atom feed]
thread overview below | download mbox.gz: |
* [PATCH 1/5] import: take advantage of some Perl 5.10.x features
  2022-08-20  8:01  5% [PATCH 0/5] various minor annoyance fixups Eric Wong
@ 2022-08-20  8:01  7% ` Eric Wong
  0 siblings, 0 replies; 2+ results
From: Eric Wong @ 2022-08-20  8:01 UTC (permalink / raw)
  To: meta

We can save a few lines of code this way and reduce the
verbosity of some lines we keep.
---
 lib/PublicInbox/Import.pm | 23 ++++++++++-------------
 1 file changed, 10 insertions(+), 13 deletions(-)

diff --git a/lib/PublicInbox/Import.pm b/lib/PublicInbox/Import.pm
index 60ce7b66..aef49033 100644
--- a/lib/PublicInbox/Import.pm
+++ b/lib/PublicInbox/Import.pm
@@ -1,4 +1,4 @@
-# Copyright (C) 2016-2021 all contributors <meta@public-inbox.org>
+# Copyright (C) all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 #
 # git fast-import-based ssoma-mda MDA replacement
@@ -103,7 +103,7 @@ sub _check_path ($$$$) {
 	return if $tip eq '';
 	print $w "ls $tip $path\n" or wfail;
 	local $/ = "\n";
-	defined(my $info = <$r>) or die "EOF from fast-import: $!";
+	my $info = <$r> // die "EOF from fast-import: $!";
 	$info =~ /\Amissing / ? undef : $info;
 }
 
@@ -111,22 +111,21 @@ sub _cat_blob ($$$) {
 	my ($r, $w, $oid) = @_;
 	print $w "cat-blob $oid\n" or wfail;
 	local $/ = "\n";
-	my $info = <$r>;
-	defined $info or die "EOF from fast-import / cat-blob: $!";
+	my $info = <$r> // die "EOF from fast-import / cat-blob: $!";
 	$info =~ /\A[a-f0-9]{40,} blob ([0-9]+)\n\z/ or return;
 	my $left = $1;
 	my $offset = 0;
 	my $buf = '';
 	my $n;
 	while ($left > 0) {
-		$n = read($r, $buf, $left, $offset);
-		defined($n) or die "read cat-blob failed: $!";
+		$n = read($r, $buf, $left, $offset) //
+			die "read cat-blob failed: $!";
 		$n == 0 and die 'fast-export (cat-blob) died';
 		$left -= $n;
 		$offset += $n;
 	}
-	$n = read($r, my $lf, 1);
-	defined($n) or die "read final byte of cat-blob failed: $!";
+	$n = read($r, my $lf, 1) //
+		die "read final byte of cat-blob failed: $!";
 	die "bad read on final byte: <$lf>" if $lf ne "\n";
 
 	# fixup some bugginess in old versions:
@@ -148,10 +147,8 @@ sub check_remove_v1 {
 	my $oid = $1;
 	my $msg = _cat_blob($r, $w, $oid) or die "BUG: cat-blob $1 failed";
 	my $cur = PublicInbox::Eml->new($msg);
-	my $cur_s = $cur->header('Subject');
-	$cur_s = '' unless defined $cur_s;
-	my $cur_m = $mime->header('Subject');
-	$cur_m = '' unless defined $cur_m;
+	my $cur_s = $cur->header('Subject') // '';
+	my $cur_m = $mime->header('Subject') // '';
 	if ($cur_s ne $cur_m || norm_body($cur) ne norm_body($mime)) {
 		return ('MISMATCH', $cur);
 	}
@@ -219,7 +216,7 @@ sub get_mark {
 	die "not active\n" unless $self->{in};
 	my ($r, $w) = $self->gfi_start;
 	print $w "get-mark $mark\n" or wfail;
-	defined(my $oid = <$r>) or die "get-mark failed, need git 2.6.0+\n";
+	my $oid = <$r> // die "get-mark failed, need git 2.6.0+\n";
 	chomp($oid);
 	$oid;
 }

^ permalink raw reply related	[relevance 7%]

* [PATCH 0/5] various minor annoyance fixups
@ 2022-08-20  8:01  5% Eric Wong
  2022-08-20  8:01  7% ` [PATCH 1/5] import: take advantage of some Perl 5.10.x features Eric Wong
  0 siblings, 1 reply; 2+ results
From: Eric Wong @ 2022-08-20  8:01 UTC (permalink / raw)
  To: meta

Some things I noticed while reading the code, some things
I noticed while looking at WWW in w3m.  There were more cleanups
related to {base_url} and redundancies in WWW that I could
probably get rid of, but some had unintended side-effects :x
or required more refactoring/cleanups.

Eric Wong (5):
  import: take advantage of some Perl 5.10.x features
  imap: remove some intermediate arrays
  view: do not show pagination footer for small inboxes
  www: use absolute URLs for coderepo URLs
  www: mbox* drop unneeded {base_url} memoizations

 lib/PublicInbox/ExtSearch.pm |  4 +++-
 lib/PublicInbox/IMAP.pm      |  4 ++--
 lib/PublicInbox/Import.pm    | 23 ++++++++++-------------
 lib/PublicInbox/Inbox.pm     |  2 ++
 lib/PublicInbox/Mbox.pm      |  3 +--
 lib/PublicInbox/MboxGz.pm    |  3 +--
 lib/PublicInbox/View.pm      |  9 +++------
 lib/PublicInbox/WwwStream.pm | 16 ++++++++--------
 lib/PublicInbox/WwwText.pm   | 12 ++----------
 9 files changed, 32 insertions(+), 44 deletions(-)

^ permalink raw reply	[relevance 5%]

Results 1-2 of 2 | reverse | options above
-- pct% links below jump to the message on this page, permalinks otherwise --
2022-08-20  8:01  5% [PATCH 0/5] various minor annoyance fixups Eric Wong
2022-08-20  8:01  7% ` [PATCH 1/5] import: take advantage of some Perl 5.10.x features Eric Wong

Code repositories for project(s) associated with this public inbox

	https://80x24.org/public-inbox.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).