* New function safe-copy-tree.
@ 2023-03-06 21:14 Alan Mackenzie
2023-03-07 12:12 ` Eli Zaretskii
2023-03-07 13:37 ` Mattias Engdegård
0 siblings, 2 replies; 4+ messages in thread
From: Alan Mackenzie @ 2023-03-06 21:14 UTC (permalink / raw)
To: emacs-devel
Hello, Emacs.
In order to fix bug #61962, I'm intending to introduce a new function
safe-copy-tree in subr.el. It is like copy-tree, except it works with
circular lists as well as normal ones.
My current implementation looks like this:
diff --git a/lisp/subr.el b/lisp/subr.el
index 8ff3b868fab..2066be581d1 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -845,6 +845,59 @@ copy-tree
(aset tree i (copy-tree (aref tree i) vecp)))
tree)
tree)))
+
+(defvar safe-copy-tree--seen nil
+ "A hash table for conses/vectors/records already seen by safe-copy-tree-1.
+It's key is a cons or vector/record seen by the algorithm, and its value is
+the corresponding cons/vector/record in the copy.")
+
+(defun safe-copy-tree--1 (tree &optional vecp)
+ "Make a copy of TREE, taking circular structure into account.
+If TREE is a cons cell, this recursively copies both its car and its cdr.
+Contrast to `copy-sequence', which copies only along the cdrs. With second
+argument VECP, this copies vectors and records as well as conses."
+ (cond
+ ((gethash tree safe-copy-tree--seen))
+ ((consp tree)
+ (let* ((result (cons (car tree) (cdr tree)))
+ (newcons result)
+ hash)
+ (while (and (not hash) (consp tree))
+ (if (setq hash (gethash tree safe-copy-tree--seen))
+ (setq newcons hash)
+ (puthash tree newcons safe-copy-tree--seen))
+ (setq tree newcons)
+ (unless hash
+ (if (or (consp (car tree))
+ (and vecp (or (vectorp (car tree)) (recordp (car tree)))))
+ (let ((newcar (safe-copy-tree--1 (car tree) vecp)))
+ (setcar tree newcar)))
+ (setq newcons (if (consp (cdr tree))
+ (cons (cadr tree) (cddr tree))
+ (cdr tree)))
+ (setcdr tree newcons)
+ (setq tree (cdr tree))))
+ (nconc result
+ (if (and vecp (or (vectorp tree) (recordp tree)))
+ (safe-copy-tree--1 tree vecp) tree))))
+ ((and vecp (or (vectorp tree) (recordp tree)))
+ (let* ((newvec (copy-sequence tree))
+ (i (length newvec)))
+ (puthash tree newvec safe-copy-tree--seen)
+ (setq tree newvec)
+ (while (>= (setq i (1- i)) 0)
+ (aset tree i (safe-copy-tree--1 (aref tree i) vecp)))
+ tree))
+ (t tree)))
+
+(defun safe-copy-tree (tree &optional vecp)
+ "Make a copy of TREE, taking circular structure into account.
+If TREE is a cons cell, this recursively copies both its car and its cdr.
+Contrast to `copy-sequence', which copies only along the cdrs. With second
+argument VECP, this copies vectors and records as well as conses."
+ (setq safe-copy-tree--seen (make-hash-table :test #'eq))
+ (safe-copy-tree--1 tree vecp))
+
\f
;;;; Various list-search functions.
Comments and criticism would be welcome.
--
Alan Mackenzie (Nuremberg, Germany).
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: New function safe-copy-tree.
2023-03-06 21:14 New function safe-copy-tree Alan Mackenzie
@ 2023-03-07 12:12 ` Eli Zaretskii
2023-03-07 13:37 ` Mattias Engdegård
1 sibling, 0 replies; 4+ messages in thread
From: Eli Zaretskii @ 2023-03-07 12:12 UTC (permalink / raw)
To: Alan Mackenzie; +Cc: emacs-devel
> Date: Mon, 6 Mar 2023 21:14:13 +0000
> From: Alan Mackenzie <acm@muc.de>
>
> In order to fix bug #61962, I'm intending to introduce a new function
> safe-copy-tree in subr.el. It is like copy-tree, except it works with
> circular lists as well as normal ones.
>
> My current implementation looks like this:
This is for master, right?
> +(defvar safe-copy-tree--seen nil
> + "A hash table for conses/vectors/records already seen by safe-copy-tree-1.
> +It's key is a cons or vector/record seen by the algorithm, and its value is
^^^^
"Its"
> +(defun safe-copy-tree (tree &optional vecp)
> + "Make a copy of TREE, taking circular structure into account.
> +If TREE is a cons cell, this recursively copies both its car and its cdr.
> +Contrast to `copy-sequence', which copies only along the cdrs. With second
> +argument VECP, this copies vectors and records as well as conses."
> + (setq safe-copy-tree--seen (make-hash-table :test #'eq))
> + (safe-copy-tree--1 tree vecp))
Where is this hash table deleted?
And shouldn't this be inside unwind-protect, so that you could be sure
the hash table is always reset to nil when the processing is done?
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: New function safe-copy-tree.
2023-03-06 21:14 New function safe-copy-tree Alan Mackenzie
2023-03-07 12:12 ` Eli Zaretskii
@ 2023-03-07 13:37 ` Mattias Engdegård
2023-03-07 15:52 ` Alan Mackenzie
1 sibling, 1 reply; 4+ messages in thread
From: Mattias Engdegård @ 2023-03-07 13:37 UTC (permalink / raw)
To: Alan Mackenzie; +Cc: emacs-devel
6 mars 2023 kl. 22.14 skrev Alan Mackenzie <acm@muc.de>:
> In order to fix bug #61962, I'm intending to introduce a new function
> safe-copy-tree in subr.el. It is like copy-tree, except it works with
> circular lists as well as normal ones.
Seems more than a little heavy-handed to me, and the implementation isn't without problems. I'll take a closer look at your patch a bit later on but right now I'm short of time. Please attach the patch to bug#61962 meanwhile and let's continue the discussion there.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: New function safe-copy-tree.
2023-03-07 13:37 ` Mattias Engdegård
@ 2023-03-07 15:52 ` Alan Mackenzie
0 siblings, 0 replies; 4+ messages in thread
From: Alan Mackenzie @ 2023-03-07 15:52 UTC (permalink / raw)
To: Mattias Engdegård; +Cc: emacs-devel
Hello, Mattias.
On Tue, Mar 07, 2023 at 14:37:09 +0100, Mattias Engdegård wrote:
> 6 mars 2023 kl. 22.14 skrev Alan Mackenzie <acm@muc.de>:
> > In order to fix bug #61962, I'm intending to introduce a new function
> > safe-copy-tree in subr.el. It is like copy-tree, except it works with
> > circular lists as well as normal ones.
> Seems more than a little heavy-handed to me, and the implementation
> isn't without problems.
Yes. Help making it more elegant would be appreciated.
> I'll take a closer look at your patch a bit later on but right now I'm
> short of time. Please attach the patch to bug#61962 meanwhile and let's
> continue the discussion there.
OK, but safe-copy-tree isn't really part of bug #61962, it's more a
general function which the bug fix happened to need, but wasn't there.
--
Alan Mackenzie (Nuremberg, Germany).
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-03-07 15:52 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-06 21:14 New function safe-copy-tree Alan Mackenzie
2023-03-07 12:12 ` Eli Zaretskii
2023-03-07 13:37 ` Mattias Engdegård
2023-03-07 15:52 ` Alan Mackenzie
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).