unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Re: master ea93326: Add `union' and `intersection' to rx (bug#37849)
       [not found] ` <20191210213843.EB6A520A23@vcs0.savannah.gnu.org>
@ 2019-12-10 21:52   ` Stefan Monnier
  2019-12-11 11:17     ` Mattias Engdegård
  0 siblings, 1 reply; 14+ messages in thread
From: Stefan Monnier @ 2019-12-10 21:52 UTC (permalink / raw)
  To: emacs-devel; +Cc: Mattias Engdegård

>     Document `union' and `intersection'.

Why not (re)use `or` instead of `union`?  IOW make it an optimization?
(we can't similarly (re)use `and` for `intersection` so I'm OK with
`intersection`).


        Stefan


> ---
>  doc/lispref/searching.texi       |  14 +-
>  etc/NEWS                         |   7 +-
>  lisp/emacs-lisp/rx.el            | 309 +++++++++++++++++++++++++++------------
>  test/lisp/emacs-lisp/rx-tests.el |  57 ++++++++
>  4 files changed, 289 insertions(+), 98 deletions(-)
>
> diff --git a/doc/lispref/searching.texi b/doc/lispref/searching.texi
> index 0cb3001..5bf3c5b 100644
> --- a/doc/lispref/searching.texi
> +++ b/doc/lispref/searching.texi
> @@ -1214,11 +1214,21 @@ Corresponding string regexp: @samp{[@dots{}]}
>  @item @code{(not @var{charspec})}
>  @cindex @code{not} in rx
>  Match a character not included in @var{charspec}.  @var{charspec} can
> -be an @code{any}, @code{not}, @code{syntax} or @code{category} form, or a
> -character class.@*
> +be an @code{any}, @code{not}, @code{union}, @code{intersection},
> +@code{syntax} or @code{category} form, or a character class.@*
>  Corresponding string regexp: @samp{[^@dots{}]}, @samp{\S@var{code}},
>  @samp{\C@var{code}}
>  
> +@item @code{(union @var{charset}@dots{})}
> +@itemx @code{(intersection @var{charset}@dots{})}
> +@cindex @code{union} in rx
> +@cindex @code{intersection} in rx
> +Match a character that matches the union or intersection,
> +respectively, of the @var{charset}s.  Each @var{charset} can be an
> +@code{any} form without character classes, or a @code{union},
> +@code{intersection} or @code{not} form whose arguments are also
> +@var{charset}s.
> +
>  @item @code{not-newline}, @code{nonl}
>  @cindex @code{not-newline} in rx
>  @cindex @code{nonl} in rx
> diff --git a/etc/NEWS b/etc/NEWS
> index 923890d..69b51b7 100644
> --- a/etc/NEWS
> +++ b/etc/NEWS
> @@ -2110,9 +2110,14 @@ at run time, instead of a constant string.
>  These macros add new forms to the rx notation.
>  
>  +++
> -*** 'anychar' is now an alias for 'anything'
> +*** 'anychar' is now an alias for 'anything'.
>  Both match any single character; 'anychar' is more descriptive.
>  
> ++++
> +*** New 'union' and 'intersection' forms for character sets.
> +These permit composing character-matching expressions from simpler
> +parts.
> +
>  ** Frames
>  
>  +++
> diff --git a/lisp/emacs-lisp/rx.el b/lisp/emacs-lisp/rx.el
> index a92c613..d4b21c3 100644
> --- a/lisp/emacs-lisp/rx.el
> +++ b/lisp/emacs-lisp/rx.el
> @@ -246,6 +246,14 @@ Return (REGEXP . PRECEDENCE)."
>      (setq list (cdr list)))
>    (null list))
>  
> +(defun rx--foldl (f x l)
> +  "(F (F (F X L0) L1) L2) ...
> +Left-fold the list L, starting with X, by the binary function F."
> +  (while l
> +    (setq x (funcall f x (car l)))
> +    (setq l (cdr l)))
> +  x)
> +
>  (defun rx--translate-or (body)
>    "Translate an or-pattern of zero or more rx items.
>  Return (REGEXP . PRECEDENCE)."
> @@ -343,22 +351,11 @@ INTERVALS is a list of (START . END) with START ≤ END, sorted by START."
>          (setq tail d)))
>      intervals))
>  
> -;; FIXME: Consider expanding definitions inside (any ...) and (not ...),
> -;; and perhaps allow (any ...) inside (any ...).
> -;; It would be benefit composability (build a character alternative by pieces)
> -;; and be handy for obtaining the complement of a defined set of
> -;; characters.  (See, for example, python.el:421, `not-simple-operator'.)
> -;; (Expansion in other non-rx positions is probably not a good idea:
> -;; syntax, category, backref, and the integer parameters of group-n,
> -;; =, >=, **, repeat)
> -;; Similar effect could be attained by ensuring that
> -;; (or (any X) (any Y)) -> (any X Y), and find a way to compose negative
> -;; sets.  `and' is taken, but we could add
> -;; (intersection (not (any X)) (not (any Y))) -> (not (any X Y)).
> -
> -(defun rx--translate-any (negated body)
> -  "Translate an (any ...) construct.  Return (REGEXP . PRECEDENCE).
> -If NEGATED, negate the sense."
> +(defun rx--parse-any (body)
> +  "Parse arguments of an (any ...) construct.
> +Return (INTERVALS . CLASSES), where INTERVALS is a sorted list of
> +disjoint intervals (each a cons of chars), and CLASSES
> +a list of named character classes in the order they occur in BODY."
>    (let ((classes nil)
>          (strings nil)
>          (conses nil))
> @@ -380,81 +377,109 @@ If NEGATED, negate the sense."
>                           (or (memq class classes)
>                               (progn (push class classes) t))))))
>              (t (error "Invalid rx `any' argument: %s" arg))))
> -    (let ((items
> -           ;; Translate strings and conses into nonoverlapping intervals,
> -           ;; and add classes as symbols at the end.
> -           (append
> -            (rx--condense-intervals
> -             (sort (append conses
> -                           (mapcan #'rx--string-to-intervals strings))
> -                   #'car-less-than-car))
> -            (reverse classes))))
> -
> -      ;; Move lone ] and range ]-x to the start.
> -      (let ((rbrac-l (assq ?\] items)))
> -        (when rbrac-l
> -          (setq items (cons rbrac-l (delq rbrac-l items)))))
> -
> -      ;; Split x-] and move the lone ] to the start.
> -      (let ((rbrac-r (rassq ?\] items)))
> -        (when (and rbrac-r (not (eq (car rbrac-r) ?\])))
> -          (setcdr rbrac-r ?\\)
> -          (setq items (cons '(?\] . ?\]) items))))
> -
> -      ;; Split ,-- (which would end up as ,- otherwise).
> -      (let ((dash-r (rassq ?- items)))
> -        (when (eq (car dash-r) ?,)
> -          (setcdr dash-r ?,)
> -          (setq items (nconc items '((?- . ?-))))))
> -
> -      ;; Remove - (lone or at start of interval)
> -      (let ((dash-l (assq ?- items)))
> -        (when dash-l
> -          (if (eq (cdr dash-l) ?-)
> -              (setq items (delq dash-l items))   ; Remove lone -
> -            (setcar dash-l ?.))                  ; Reduce --x to .-x
> -          (setq items (nconc items '((?- . ?-))))))
> -
> -      ;; Deal with leading ^ and range ^-x.
> -      (when (and (consp (car items))
> -                 (eq (caar items) ?^)
> -                 (cdr items))
> -        ;; Move ^ and ^-x to second place.
> -        (setq items (cons (cadr items)
> -                          (cons (car items) (cddr items)))))
> +    (cons (rx--condense-intervals
> +           (sort (append conses
> +                         (mapcan #'rx--string-to-intervals strings))
> +                 #'car-less-than-car))
> +          (reverse classes))))
> +
> +(defun rx--generate-alt (negated intervals classes)
> +  "Generate a character alternative.  Return (REGEXP . PRECEDENCE).
> +If NEGATED is non-nil, negate the result; INTERVALS is a sorted
> +list of disjoint intervals and CLASSES a list of named character
> +classes."
> +  (let ((items (append intervals classes)))
> +    ;; Move lone ] and range ]-x to the start.
> +    (let ((rbrac-l (assq ?\] items)))
> +      (when rbrac-l
> +        (setq items (cons rbrac-l (delq rbrac-l items)))))
> +
> +    ;; Split x-] and move the lone ] to the start.
> +    (let ((rbrac-r (rassq ?\] items)))
> +      (when (and rbrac-r (not (eq (car rbrac-r) ?\])))
> +        (setcdr rbrac-r ?\\)
> +        (setq items (cons '(?\] . ?\]) items))))
> +
> +    ;; Split ,-- (which would end up as ,- otherwise).
> +    (let ((dash-r (rassq ?- items)))
> +      (when (eq (car dash-r) ?,)
> +        (setcdr dash-r ?,)
> +        (setq items (nconc items '((?- . ?-))))))
> +
> +    ;; Remove - (lone or at start of interval)
> +    (let ((dash-l (assq ?- items)))
> +      (when dash-l
> +        (if (eq (cdr dash-l) ?-)
> +            (setq items (delq dash-l items))   ; Remove lone -
> +          (setcar dash-l ?.))                  ; Reduce --x to .-x
> +        (setq items (nconc items '((?- . ?-))))))
> +
> +    ;; Deal with leading ^ and range ^-x.
> +    (when (and (consp (car items))
> +               (eq (caar items) ?^)
> +               (cdr items))
> +      ;; Move ^ and ^-x to second place.
> +      (setq items (cons (cadr items)
> +                        (cons (car items) (cddr items)))))
>  
> -      (cond
> -       ;; Empty set: if negated, any char, otherwise match-nothing.
> -       ((null items)
> -        (if negated
> -            (rx--translate-symbol 'anything)
> -          (rx--empty)))
> -       ;; Single non-negated character.
> -       ((and (null (cdr items))
> -             (consp (car items))
> -             (eq (caar items) (cdar items))
> -             (not negated))
> -        (cons (list (regexp-quote (char-to-string (caar items))))
> -              t))
> -       ;; At least one character or class, possibly negated.
> -       (t
> -        (cons
> -         (list
> -          (concat
> -           "["
> -           (and negated "^")
> -           (mapconcat (lambda (item)
> -                        (cond ((symbolp item)
> -                               (format "[:%s:]" item))
> -                              ((eq (car item) (cdr item))
> -                               (char-to-string (car item)))
> -                              ((eq (1+ (car item)) (cdr item))
> -                               (string (car item) (cdr item)))
> -                              (t
> -                               (string (car item) ?- (cdr item)))))
> -                      items nil)
> -           "]"))
> -         t))))))
> +    (cond
> +     ;; Empty set: if negated, any char, otherwise match-nothing.
> +     ((null items)
> +      (if negated
> +          (rx--translate-symbol 'anything)
> +        (rx--empty)))
> +     ;; Single non-negated character.
> +     ((and (null (cdr items))
> +           (consp (car items))
> +           (eq (caar items) (cdar items))
> +           (not negated))
> +      (cons (list (regexp-quote (char-to-string (caar items))))
> +            t))
> +     ;; At least one character or class, possibly negated.
> +     (t
> +      (cons
> +       (list
> +        (concat
> +         "["
> +         (and negated "^")
> +         (mapconcat (lambda (item)
> +                      (cond ((symbolp item)
> +                             (format "[:%s:]" item))
> +                            ((eq (car item) (cdr item))
> +                             (char-to-string (car item)))
> +                            ((eq (1+ (car item)) (cdr item))
> +                             (string (car item) (cdr item)))
> +                            (t
> +                             (string (car item) ?- (cdr item)))))
> +                    items nil)
> +         "]"))
> +       t)))))
> +
> +(defun rx--translate-any (negated body)
> +  "Translate an (any ...) construct.  Return (REGEXP . PRECEDENCE).
> +If NEGATED, negate the sense."
> +  (let ((parsed (rx--parse-any body)))
> +    (rx--generate-alt negated (car parsed) (cdr parsed))))
> +
> +(defun rx--intervals-to-alt (negated intervals)
> +  "Generate a character alternative from an interval set.
> +Return (REGEXP . PRECEDENCE).
> +INTERVALS is a sorted list of disjoint intervals.
> +If NEGATED, negate the sense."
> +  ;; Detect whether the interval set is better described in
> +  ;; complemented form.  This is not just a matter of aesthetics: any
> +  ;; range from ASCII to raw bytes will automatically exclude the
> +  ;; entire non-ASCII Unicode range by the regexp engine.
> +  (if (rx--every (lambda (iv) (not (<= (car iv) #x3ffeff (cdr iv))))
> +                 intervals)
> +      (rx--generate-alt negated intervals nil)
> +    (rx--generate-alt
> +     (not negated) (rx--complement-intervals intervals) nil)))
> +
> +;; FIXME: Consider turning `not' into a variadic operator, following SRE:
> +;; (not A B) = (not (union A B)) = (intersection (not A) (not B)), and
> +;; (not) = anychar.
> +;; Maybe allow singleton characters as arguments.
>  
>  (defun rx--translate-not (negated body)
>    "Translate a (not ...) construct.  Return (REGEXP . PRECEDENCE).
> @@ -472,10 +497,14 @@ If NEGATED, negate the sense (thus making it positive)."
>               ('category
>                (rx--translate-category (not negated) (cdr arg)))
>               ('not
> -              (rx--translate-not      (not negated) (cdr arg))))))
> +              (rx--translate-not      (not negated) (cdr arg)))
> +             ('union
> +              (rx--translate-union    (not negated) (cdr arg)))
> +             ('intersection
> +              (rx--translate-intersection (not negated) (cdr arg))))))
>       ((let ((class (cdr (assq arg rx--char-classes))))
>          (and class
> -             (rx--translate-any (not negated) (list class)))))
> +             (rx--generate-alt (not negated) nil (list class)))))
>       ((eq arg 'word-boundary)
>        (rx--translate-symbol
>         (if negated 'word-boundary 'not-word-boundary)))
> @@ -484,6 +513,91 @@ If NEGATED, negate the sense (thus making it positive)."
>               (rx--translate-not negated (list expanded)))))
>       (t (error "Illegal argument to rx `not': %S" arg)))))
>  
> +(defun rx--complement-intervals (intervals)
> +  "Complement of the interval list INTERVALS."
> +  (let ((compl nil)
> +        (c 0))
> +    (dolist (iv intervals)
> +      (when (< c (car iv))
> +        (push (cons c (1- (car iv))) compl))
> +      (setq c (1+ (cdr iv))))
> +    (when (< c (max-char))
> +      (push (cons c (max-char)) compl))
> +    (nreverse compl)))
> +
> +(defun rx--intersect-intervals (ivs-a ivs-b)
> +  "Intersection of the interval lists IVS-A and IVS-B."
> +  (let ((isect nil))
> +    (while (and ivs-a ivs-b)
> +      (let ((a (car ivs-a))
> +            (b (car ivs-b)))
> +        (cond
> +         ((< (cdr a) (car b)) (setq ivs-a (cdr ivs-a)))
> +         ((> (car a) (cdr b)) (setq ivs-b (cdr ivs-b)))
> +         (t
> +          (push (cons (max (car a) (car b))
> +                      (min (cdr a) (cdr b)))
> +                isect)
> +          (setq ivs-a (cdr ivs-a))
> +          (setq ivs-b (cdr ivs-b))
> +          (cond ((< (cdr a) (cdr b))
> +                 (push (cons (1+ (cdr a)) (cdr b))
> +                       ivs-b))
> +                ((> (cdr a) (cdr b))
> +                 (push (cons (1+ (cdr b)) (cdr a))
> +                       ivs-a)))))))
> +    (nreverse isect)))
> +
> +(defun rx--union-intervals (ivs-a ivs-b)
> +  "Union of the interval lists IVS-A and IVS-B."
> +  (rx--complement-intervals
> +   (rx--intersect-intervals
> +    (rx--complement-intervals ivs-a)
> +    (rx--complement-intervals ivs-b))))
> +
> +(defun rx--charset-intervals (charset)
> +  "Return a sorted list of non-adjacent disjoint intervals from CHARSET.
> +CHARSET is any expression allowed in a character set expression:
> +either `any' (no classes permitted), or `not', `union' or `intersection'
> +forms whose arguments are charsets."
> +  (pcase charset
> +    (`(,(or 'any 'in 'char) . ,body)
> +     (let ((parsed (rx--parse-any body)))
> +       (when (cdr parsed)
> +         (error
> +          "Character class not permitted in set operations: %S"
> +          (cadr parsed)))
> +       (car parsed)))
> +    (`(not ,x) (rx--complement-intervals (rx--charset-intervals x)))
> +    (`(union . ,xs) (rx--charset-union xs))
> +    (`(intersection . ,xs) (rx--charset-intersection xs))
> +    (_ (let ((expanded (rx--expand-def charset)))
> +         (if expanded
> +             (rx--charset-intervals expanded)
> +           (error "Bad character set: %S" charset))))))
> +
> +(defun rx--charset-union (charsets)
> +  "Union of CHARSETS, as a set of intervals."
> +  (rx--foldl #'rx--union-intervals nil
> +             (mapcar #'rx--charset-intervals charsets)))
> +
> +(defconst rx--charset-all (list (cons 0 (max-char))))
> +
> +(defun rx--charset-intersection (charsets)
> +  "Intersection of CHARSETS, as a set of intervals."
> +  (rx--foldl #'rx--intersect-intervals rx--charset-all
> +             (mapcar #'rx--charset-intervals charsets)))
> +
> +(defun rx--translate-union (negated body)
> +  "Translate a (union ...) construct.  Return (REGEXP . PRECEDENCE).
> +If NEGATED, negate the sense."
> +  (rx--intervals-to-alt negated (rx--charset-union body)))
> +
> +(defun rx--translate-intersection (negated body)
> +  "Translate an (intersection ...) construct.  Return (REGEXP . PRECEDENCE).
> +If NEGATED, negate the sense."
> +  (rx--intervals-to-alt negated (rx--charset-intersection body)))
> +
>  (defun rx--atomic-regexp (item)
>    "ITEM is (REGEXP . PRECEDENCE); return a regexp of precedence t."
>    (if (eq (cdr item) t)
> @@ -862,6 +976,8 @@ can expand to any number of values."
>        ((or 'any 'in 'char)      (rx--translate-any nil body))
>        ('not-char                (rx--translate-any t body))
>        ('not                     (rx--translate-not nil body))
> +      ('union                   (rx--translate-union nil body))
> +      ('intersection            (rx--translate-intersection nil body))
>  
>        ('repeat                  (rx--translate-repeat body))
>        ('=                       (rx--translate-= body))
> @@ -920,7 +1036,7 @@ can expand to any number of values."
>          (t (error "Unknown rx form `%s'" op)))))))
>  
>  (defconst rx--builtin-forms
> -  '(seq sequence : and or | any in char not-char not
> +  '(seq sequence : and or | any in char not-char not union intersection
>      repeat = >= **
>      zero-or-more 0+ *
>      one-or-more 1+ +
> @@ -1033,8 +1149,11 @@ CHAR           Match a literal character.
>                  character, a string, a range as string \"A-Z\" or cons
>                  (?A . ?Z), or a character class (see below).  Alias: in, char.
>  (not CHARSPEC)  Match one character not matched by CHARSPEC.  CHARSPEC
> -                can be (any ...), (syntax ...), (category ...),
> -                or a character class.
> +                can be (any ...), (union ...), (intersection ...),
> +                (syntax ...), (category ...), or a character class.
> +(union CHARSET...)        Union of CHARSETs.
> +(intersection CHARSET...) Intersection of CHARSETs.
> +                CHARSET is (any...), (not...), (union...) or (intersection...).
>  not-newline     Match any character except a newline.  Alias: nonl.
>  anychar         Match any character.  Alias: anything.
>  unmatchable     Never match anything at all.
> diff --git a/test/lisp/emacs-lisp/rx-tests.el b/test/lisp/emacs-lisp/rx-tests.el
> index 317dae2..0cd2c95 100644
> --- a/test/lisp/emacs-lisp/rx-tests.el
> +++ b/test/lisp/emacs-lisp/rx-tests.el
> @@ -274,6 +274,63 @@
>    (should (equal (rx (not (not ascii)) (not (not (not (any "a-z")))))
>                   "[[:ascii:]][^a-z]")))
>  
> +(ert-deftest rx-union ()
> +  (should (equal (rx (union))
> +                 "\\`a\\`"))
> +  (should (equal (rx (union (any "ba")))
> +                 "[ab]"))
> +  (should (equal (rx (union (any "a-f") (any "c-k" ?y) (any ?r "x-z")))
> +                 "[a-krx-z]"))
> +  (should (equal (rx (union (not (any "a-m")) (not (any "f-p"))))
> +                 "[^f-m]"))
> +  (should (equal (rx (union (any "e-m") (not (any "a-z"))))
> +                 "[^a-dn-z]"))
> +  (should (equal (rx (union (not (any "g-r")) (not (any "t"))))
> +                 "[^z-a]"))
> +  (should (equal (rx (not (union (not (any "g-r")) (not (any "t")))))
> +                 "\\`a\\`"))
> +  (should (equal (rx (union (union (any "a-f") (any "u-z"))
> +                            (any "g-r")))
> +                 "[a-ru-z]"))
> +  (should (equal (rx (union (intersection (any "c-z") (any "a-g"))
> +                            (not (any "a-k"))))
> +                 "[^abh-k]")))
> +
> +(ert-deftest rx-def-in-union ()
> +  (rx-let ((a (any "badc"))
> +           (b (union a (any "def"))))
> +    (should (equal(rx (union b (any "q")))
> +                  "[a-fq]"))))
> +
> +(ert-deftest rx-intersection ()
> +  (should (equal (rx (intersection))
> +                 "[^z-a]"))
> +  (should (equal (rx (intersection (any "ba")))
> +                 "[ab]"))
> +  (should (equal (rx (intersection (any "a-j" "u-z") (any "c-k" ?y)
> +                                   (any "a-i" "x-z")))
> +                 "[c-iy]"))
> +  (should (equal (rx (intersection (not (any "a-m")) (not (any "f-p"))))
> +                 "[^a-p]"))
> +  (should (equal (rx (intersection (any "a-z") (not (any "g-q"))))
> +                 "[a-fr-z]"))
> +  (should (equal (rx (intersection (any "a-d") (any "e")))
> +                 "\\`a\\`"))
> +  (should (equal (rx (not (intersection (any "a-d") (any "e"))))
> +                 "[^z-a]"))
> +  (should (equal (rx (intersection (any "d-u")
> +                                   (intersection (any "e-z") (any "a-m"))))
> +                 "[e-m]"))
> +  (should (equal (rx (intersection (union (any "a-f") (any "f-t"))
> +                                   (any "e-w")))
> +                 "[e-t]")))
> +
> +(ert-deftest rx-def-in-intersection ()
> +  (rx-let ((a (any "a-g"))
> +           (b (intersection a (any "d-j"))))
> +    (should (equal(rx (intersection b (any "e-k")))
> +                  "[e-g]"))))
> +
>  (ert-deftest rx-group ()
>    (should (equal (rx (group nonl) (submatch "x")
>                       (group-n 3 "y") (submatch-n 13 "z") (backref 1))




^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: master ea93326: Add `union' and `intersection' to rx (bug#37849)
  2019-12-10 21:52   ` master ea93326: Add `union' and `intersection' to rx (bug#37849) Stefan Monnier
@ 2019-12-11 11:17     ` Mattias Engdegård
  2019-12-11 15:10       ` Stefan Monnier
  0 siblings, 1 reply; 14+ messages in thread
From: Mattias Engdegård @ 2019-12-11 11:17 UTC (permalink / raw)
  To: Stefan Monnier; +Cc: emacs-devel

10 dec. 2019 kl. 22.52 skrev Stefan Monnier <monnier@iro.umontreal.ca>:

> Why not (re)use `or` instead of `union`?  IOW make it an optimization?

It probably could, but having to explain the restrictions to the user felt a bit messy, so I went with a neatly closed collection of set operations (union, intersection and complement). Still, some concessions had to be made: operations on character classes are limited, and 'not' allows some types of arguments that cannot be used in set operations at all.

For 'or' to work as argument to 'not' and 'intersection', its arguments would have to be restricted in similar ways. I'll see what can be done.




^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: master ea93326: Add `union' and `intersection' to rx (bug#37849)
  2019-12-11 11:17     ` Mattias Engdegård
@ 2019-12-11 15:10       ` Stefan Monnier
  2019-12-12 22:48         ` Mattias Engdegård
  0 siblings, 1 reply; 14+ messages in thread
From: Stefan Monnier @ 2019-12-11 15:10 UTC (permalink / raw)
  To: Mattias Engdegård; +Cc: emacs-devel

>> Why not (re)use `or` instead of `union`?  IOW make it an optimization?
> It probably could, but having to explain the restrictions to the user felt
> a bit messy, so I went with a neatly closed collection of set operations
> (union, intersection and complement).

But as a user now I wonder what's the difference between `or` and
`union` and also why there has to be a difference.


        Stefan




^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: master ea93326: Add `union' and `intersection' to rx (bug#37849)
  2019-12-11 15:10       ` Stefan Monnier
@ 2019-12-12 22:48         ` Mattias Engdegård
  2019-12-13 13:55           ` Stefan Monnier
  0 siblings, 1 reply; 14+ messages in thread
From: Mattias Engdegård @ 2019-12-12 22:48 UTC (permalink / raw)
  To: Stefan Monnier; +Cc: Emacs developers

11 dec. 2019 kl. 16.10 skrev Stefan Monnier <monnier@iro.umontreal.ca>:

> But as a user now I wonder what's the difference between `or` and
> `union` and also why there has to be a difference.

You've convinced me -- plain 'or' is better. I've pushed a patch.

As a pleasing side-effect, some existing rx expressions are now more optimised:
(or (any "a-z") (any "0-9")) now becomes "[0-9a-z]" instead of "[a-z]\\|[0-9]".

The no-class argument restriction is still there, but could perhaps be lifted (partially) later on.




^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: master ea93326: Add `union' and `intersection' to rx (bug#37849)
  2019-12-12 22:48         ` Mattias Engdegård
@ 2019-12-13 13:55           ` Stefan Monnier
  2019-12-13 17:03             ` Mattias Engdegård
  0 siblings, 1 reply; 14+ messages in thread
From: Stefan Monnier @ 2019-12-13 13:55 UTC (permalink / raw)
  To: Mattias Engdegård; +Cc: Emacs developers

>> But as a user now I wonder what's the difference between `or` and
>> `union` and also why there has to be a difference.
> You've convinced me -- plain 'or' is better. I've pushed a patch.
> As a pleasing side-effect, some existing rx expressions are now more optimised:
> (or (any "a-z") (any "0-9")) now becomes "[0-9a-z]" instead of "[a-z]\\|[0-9]".

BTW, if you like the fact that the old system made it clear&sure that
the result is optimized, then I think it should be introduced as
a syntax like

    (any (union "a-z" (intersection "0-9" "6-a")))


-- Stefan




^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: master ea93326: Add `union' and `intersection' to rx (bug#37849)
  2019-12-13 13:55           ` Stefan Monnier
@ 2019-12-13 17:03             ` Mattias Engdegård
  2019-12-13 17:13               ` Stefan Monnier
  0 siblings, 1 reply; 14+ messages in thread
From: Mattias Engdegård @ 2019-12-13 17:03 UTC (permalink / raw)
  To: Stefan Monnier; +Cc: Emacs developers

13 dec. 2019 kl. 14.55 skrev Stefan Monnier <monnier@iro.umontreal.ca>:

> BTW, if you like the fact that the old system made it clear&sure that
> the result is optimized, then I think it should be introduced as
> a syntax like
> 
>    (any (union "a-z" (intersection "0-9" "6-a")))


An interesting suggestion, but exactly how would that model work? Consider:

 (rx-define ident-chars (any "a-z0-9"))
 (rx-define op-chars (any "+*/" ?-)

To form the union of the two, 'any' needs to be allowed inside 'union':

 (any (union ident-chars op-chars))

Then 'any' and 'union' are effectively synonyms. I'm not sure this is better than just using 'or' for union.

---

Speaking of 'or', we still haven't figured out what to do about regexp-opt in rx. Currently, the answer is something like
(eval (regexp-opt STRINGS)), which isn't ideal.




^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: master ea93326: Add `union' and `intersection' to rx (bug#37849)
  2019-12-13 17:03             ` Mattias Engdegård
@ 2019-12-13 17:13               ` Stefan Monnier
  2019-12-13 17:43                 ` Mattias Engdegård
  0 siblings, 1 reply; 14+ messages in thread
From: Stefan Monnier @ 2019-12-13 17:13 UTC (permalink / raw)
  To: Mattias Engdegård; +Cc: Emacs developers

> An interesting suggestion, but exactly how would that model work? Consider:
>
>  (rx-define ident-chars (any "a-z0-9"))
>  (rx-define op-chars (any "+*/" ?-)
>
> To form the union of the two, 'any' needs to be allowed inside 'union':
>
>  (any (union ident-chars op-chars))

Indeed to avoid this, we'd have to do something like

    (rx-define-charset ident-chars "a-z0-9")
    (rx-define-charset op-chars (union "+*/" ?-))

and then

     ... (any (union ident-chars op-chars)) ...

Is it worth the trouble?

> Speaking of 'or', we still haven't figured out what to do about regexp-opt
> in rx. Currently, the answer is something like
> (eval (regexp-opt STRINGS)), which isn't ideal.

We could try and automatically determine inside `or` when regexp-opt can
be used.  That doesn't sound like much fun, tho.


        Stefan




^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: master ea93326: Add `union' and `intersection' to rx (bug#37849)
  2019-12-13 17:13               ` Stefan Monnier
@ 2019-12-13 17:43                 ` Mattias Engdegård
  2019-12-13 23:03                   ` Stefan Monnier
  0 siblings, 1 reply; 14+ messages in thread
From: Mattias Engdegård @ 2019-12-13 17:43 UTC (permalink / raw)
  To: Stefan Monnier; +Cc: Emacs developers

13 dec. 2019 kl. 18.13 skrev Stefan Monnier <monnier@iro.umontreal.ca>:

>    (rx-define-charset ident-chars "a-z0-9")
>    (rx-define-charset op-chars (union "+*/" ?-))
> 
> and then
> 
>     ... (any (union ident-chars op-chars)) ...
> 
> Is it worth the trouble?

Not if a special set of definition constructs are required, no.

> We could try and automatically determine inside `or` when regexp-opt can
> be used.  That doesn't sound like much fun, tho.

That is done now, to some extent. Some history, for those not keeping up:

(or STRING1 STRING2 ...) did use regexp-opt for some time, but it had the unfortunate effect that the match order wasn't preserved, which made the outcome unpredictable. For example, if the target string is "abc", then (or "a" "ab") would match "ab", but (or "a" "ab" digit) would match "a".

The code was then changed to only use regexp-opt when it doesn't affect observed behaviour, which is what we have today.

However, typically the longest match is desired, not the first. The user can order his strings carefully before putting them inside an 'or', but that (1) doesn't compose well, (2) is error-prone, (3) useless manual work that is done by regexp-opt anyway.

Something like (longest-or STRING...) has been proposed, but was not well received. A solution is still sought (preferably one that doesn't involve rewriting the regexp engine).




^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: master ea93326: Add `union' and `intersection' to rx (bug#37849)
  2019-12-13 17:43                 ` Mattias Engdegård
@ 2019-12-13 23:03                   ` Stefan Monnier
  2019-12-15 11:08                     ` Mattias Engdegård
  0 siblings, 1 reply; 14+ messages in thread
From: Stefan Monnier @ 2019-12-13 23:03 UTC (permalink / raw)
  To: Mattias Engdegård; +Cc: Emacs developers

> Something like (longest-or STRING...) has been proposed, but was not well
> received. A solution is still sought (preferably one that doesn't involve
> rewriting the regexp engine).

There's posix-string-match and friends,


        Stefan




^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: master ea93326: Add `union' and `intersection' to rx (bug#37849)
  2019-12-13 23:03                   ` Stefan Monnier
@ 2019-12-15 11:08                     ` Mattias Engdegård
  2019-12-15 14:53                       ` Stefan Monnier
  0 siblings, 1 reply; 14+ messages in thread
From: Mattias Engdegård @ 2019-12-15 11:08 UTC (permalink / raw)
  To: Stefan Monnier; +Cc: Emacs developers

14 dec. 2019 kl. 00.03 skrev Stefan Monnier <monnier@iro.umontreal.ca>:

>> Something like (longest-or STRING...) has been proposed, but was not well
>> received. A solution is still sought (preferably one that doesn't involve
>> rewriting the regexp engine).
> 
> There's posix-string-match and friends,

A bit overkill just for matching a set of constant strings, don't you think?




^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: master ea93326: Add `union' and `intersection' to rx (bug#37849)
  2019-12-15 11:08                     ` Mattias Engdegård
@ 2019-12-15 14:53                       ` Stefan Monnier
  2019-12-15 19:23                         ` Mattias Engdegård
  0 siblings, 1 reply; 14+ messages in thread
From: Stefan Monnier @ 2019-12-15 14:53 UTC (permalink / raw)
  To: Mattias Engdegård; +Cc: Emacs developers

>>> Something like (longest-or STRING...) has been proposed, but was not well
>>> received. A solution is still sought (preferably one that doesn't involve
>>> rewriting the regexp engine).
>> There's posix-string-match and friends,
> A bit overkill just for matching a set of constant strings, don't you think?

I think there's a lot of implicit assumptions here.
Yes, there are cases where you may want the "longest match" rule and
where `posix-string-match` can be too costly, but the ones I can think
of seem to be fairly contrived.


        Stefan




^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: master ea93326: Add `union' and `intersection' to rx (bug#37849)
  2019-12-15 14:53                       ` Stefan Monnier
@ 2019-12-15 19:23                         ` Mattias Engdegård
  2019-12-15 20:04                           ` Stefan Monnier
  0 siblings, 1 reply; 14+ messages in thread
From: Mattias Engdegård @ 2019-12-15 19:23 UTC (permalink / raw)
  To: Stefan Monnier; +Cc: Emacs developers

15 dec. 2019 kl. 15.53 skrev Stefan Monnier <monnier@iro.umontreal.ca>:

>> A bit overkill just for matching a set of constant strings, don't you think?
> 
> I think there's a lot of implicit assumptions here.
> Yes, there are cases where you may want the "longest match" rule and
> where `posix-string-match` can be too costly, but the ones I can think
> of seem to be fairly contrived.

Perhaps I should have underlined that it is only literal strings that is of immediate concern, since that is what regexp-opt is used for. It is not a contrived situation to have a set of strings -- keywords, for instance -- not necessarily anchored by something else at the end. Unless it is known that no string is a prefix of another, the longest match is naturally desired.




^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: master ea93326: Add `union' and `intersection' to rx (bug#37849)
  2019-12-15 19:23                         ` Mattias Engdegård
@ 2019-12-15 20:04                           ` Stefan Monnier
  2019-12-15 20:42                             ` Stefan Monnier
  0 siblings, 1 reply; 14+ messages in thread
From: Stefan Monnier @ 2019-12-15 20:04 UTC (permalink / raw)
  To: Mattias Engdegård; +Cc: Emacs developers

>>> A bit overkill just for matching a set of constant strings, don't you think?
>> I think there's a lot of implicit assumptions here.
>> Yes, there are cases where you may want the "longest match" rule and
>> where `posix-string-match` can be too costly, but the ones I can think
>> of seem to be fairly contrived.
> Perhaps I should have underlined that it is only literal strings that is of
> immediate concern, since that is what regexp-opt is used for. It is not
> a contrived situation to have a set of strings -- keywords, for instance --
> not necessarily anchored by something else at the end.

We need more elements for a realistic scenario. E.g. when the regexp
match fails, `posix-string-match` has the same cost as `string-match`,
so not only you need the end of the regexp not to be anchored to something else
at the end, but you also need all of the below:

- the match should be frequent enough for performance to matter
- the match should almost always succeed
- it needs to matter exactly where the match end
- one of the matched words needs to be a prefix of another
- you can "extract the next word" and look it up in a hash-table instead
  of performing a regexp match

FWIW, I think we can fix this by using a non-backtracking regexp
matcher, but I don't see it as a strong motivation for such a change
(there are good motivations for that, but this one is a pretty weak one
in my book).


        Stefan




^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: master ea93326: Add `union' and `intersection' to rx (bug#37849)
  2019-12-15 20:04                           ` Stefan Monnier
@ 2019-12-15 20:42                             ` Stefan Monnier
  0 siblings, 0 replies; 14+ messages in thread
From: Stefan Monnier @ 2019-12-15 20:42 UTC (permalink / raw)
  To: Mattias Engdegård; +Cc: Emacs developers

> - you can "extract the next word" and look it up in a hash-table instead
          ^^
          't
Duh!


        Stefan




^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2019-12-15 20:42 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20191210213842.5388.30110@vcs0.savannah.gnu.org>
     [not found] ` <20191210213843.EB6A520A23@vcs0.savannah.gnu.org>
2019-12-10 21:52   ` master ea93326: Add `union' and `intersection' to rx (bug#37849) Stefan Monnier
2019-12-11 11:17     ` Mattias Engdegård
2019-12-11 15:10       ` Stefan Monnier
2019-12-12 22:48         ` Mattias Engdegård
2019-12-13 13:55           ` Stefan Monnier
2019-12-13 17:03             ` Mattias Engdegård
2019-12-13 17:13               ` Stefan Monnier
2019-12-13 17:43                 ` Mattias Engdegård
2019-12-13 23:03                   ` Stefan Monnier
2019-12-15 11:08                     ` Mattias Engdegård
2019-12-15 14:53                       ` Stefan Monnier
2019-12-15 19:23                         ` Mattias Engdegård
2019-12-15 20:04                           ` Stefan Monnier
2019-12-15 20:42                             ` Stefan Monnier

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

	https://git.savannah.gnu.org/cgit/emacs.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).