Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: [PATCH] PCRE/NUL: pass NUL in for text, handle NUL out
- X-seq: zsh-workers 41341
- From: Phil Pennock <zsh-workers+phil.pennock@xxxxxxxxxxxx>
- To: Peter Stephenson <p.stephenson@xxxxxxxxxxx>
- Subject: Re: [PATCH] PCRE/NUL: pass NUL in for text, handle NUL out
- Date: Wed, 21 Jun 2017 18:48:53 -0400
- Cc: zsh-workers@xxxxxxx
- Dkim-signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=spodhuis.org; s=d201705; h=In-Reply-To:Content-Type:MIME-Version:References :Message-ID:Subject:Cc:To:From:Date:Sender:Reply-To:Content-Transfer-Encoding :Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=2sINT9xYmgseP6WDDUqGtPs2AcGU88iI5aswT4DOrcE=; b=ziB7fSBEmmx1CnVZTrXhMG/4Zu hXKFg6yGdbx2Q6f+nST9FFKf+DycAmZiP+koqPv+trrrL2fw4y292BkReto7qAESxlfk89NnvmhT2 Xoxha++k+34gO1pSEob7elOSRFVjP0/GNqbHFMctklj8M/AppYLIMdcUpK/6xpXiH+rV2+MTS6by8 GFsU9xYknrVIujNJ8K21BjqcdLQ/;
- In-reply-to: <20170621095939.1b5fa49d@pwslap01u.europe.root.pri>
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
- Openpgp: url=https://www.security.spodhuis.org/PGP/keys/0x4D1E900E14C1CC04.asc
- References: <CGME20170615204203epcas5p4b0a2bcbcfe0843d979c653df6b8352db@epcas5p4.samsung.com> <20170615204050.GA27003@breadbox.private.spodhuis.org> <20170621095939.1b5fa49d@pwslap01u.europe.root.pri>
On 2017-06-21 at 09:59 +0100, Peter Stephenson wrote:
> On Thu, 15 Jun 2017 16:40:50 -0400
> Phil Pennock <zsh-workers+phil.pennock@xxxxxxxxxxxx> wrote:
> > +# Embedded NULs allowed in plaintext, but not in RE (although \0 as two-chars allowed)
> > + [[ $'a\0bc\0d' =~ '^(a\0.)(.+)$' ]]
> > + print "${#MATCH}; ${#match[1]}; ${#match[2]}"
> > +>6; 3; 3
>
> Not sure what's going on here but there needs to be a status /
> description line.
How strange, that test passed when I tried it out locally but I would
have expected a failure. You're right, sorry about that.
Status/description line:
0:ensure ASCII NUL passes in and out of matched plaintext
I didn't see a point in trying to figure out text-matches of exact
NUL-containing strings in the test-suite, when we could just match the
length of the strings. There is logic for passing the full string in
now, and for fixing the length of $MATCH, and separately for the lengths
of the items in $match; testing both that $match works twice (ie, ovec
iteration is not busted) and that `.+` swallows the NUL, not just
explicit \0 matching. It seemed a concise way to test all the changes
and detect regression.
> Was there are a response to Stephane's further suggestion?
The <<replace NUL with "\0">> suggestion was withdrawn within the same
paragraph, I agree that the behaviour I implemented is the best choice.
;) As for changing \Q...\E support, that's an entirely different issue,
it's a feature request where this patch is a bug-fix.
My response is "sounds great, feature patches welcome; any issues with
this bug-fix?"
-Phil
Messages sorted by:
Reverse Date,
Date,
Thread,
Author