* New lisp library -- cell.el
@ 2020-02-28 6:21 Zhu Zihao
2020-02-28 8:51 ` Zhu Zihao
2020-02-28 15:43 ` New " Stefan Monnier
0 siblings, 2 replies; 9+ messages in thread
From: Zhu Zihao @ 2020-02-28 6:21 UTC (permalink / raw)
To: emacs-devel
[-- Attachment #1.1: Type: text/plain, Size: 1355 bytes --]
In last month I sent an email to request for some comments on weak reference facilities in Emacs. Now I create a new lisp library -- cell.el, which implemented weak reference in Elisp using weak hash table and some more util.
There are 3 kinds of cell in cell.el
- Option :: Giving "existence" information for a value, Like Maybe type in Haskell or Optional type in Java.
- Box :: Like a single element vector, create a mutable storage.
- Weak :: Weak reference I mentioned above.
IMO, these can help user to build Elisp application in more convenient way.
For a simple example.
(plist-get '(:key nil) :key) ; => nil
(plist-get '(:key nil) :val) ;=> nil
By using Option Cell, we can differentiate these two status.
(defun clear-plist-get (plist key)
(pcase (plist-member plist key)
(`(,_k ,v)
(cell-option-some v))
(_
(cell-option-none))))
(let ((plist '(:key nil)))
(plist-get plist :key) ;=> nil
(plist-get plist :val) ;=> nil
(clear-plist-get plist :key) ;=> Some(nil)
(clear-plist-get plist :val) ;=> None
)
I don't want to break the behaviour of plist-get, just a example to show the power of Option Cell. And there are detailed description in ;;; Commentary section.
Would you consider this to be included in Emacs core, or publish it on GNU ELPA?
[-- Attachment #1.2: Type: text/html, Size: 2152 bytes --]
[-- Attachment #2: cell.el --]
[-- Type: application/octet-stream, Size: 7322 bytes --]
;;; cell.el --- Value with extra information -*- lexical-binding: t -*-
;; Copyright (C) 2020 Zhu Zihao
;; Author: Zhu Zihao <all_but_last@163.com>
;; URL: https://github.com/cireu/emacs-cell
;; Version: 0.0.1
;; Package-Requires: ((emacs "24.3"))
;; Keywords: lisp
;; This file is NOT part of GNU Emacs.
;; This file is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 3, or (at your option)
;; any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; For a full copy of the GNU General Public License
;; see <https://www.gnu.org/licenses/>.
;;; Commentary:
;; * Introduction
;; This library provides a set of "Cell" for Elisp programming. A "Cell" is a
;; container of single Lisp value, with extra information attached on it.
;; Currently there are 3 kinds of "Cell" in ~cell.el~
;; ** Option
;; A Option Cell add the "existence" information for a lisp value.
;; A Option Cell may in 2 variant, ~Some~ variant means there's a value and
;; ~None~ variant means there's no value.
;; Option Cell is useful when writing funtion to query a collection. You can use
;; ~None~ variant to present "Not found". When using ~nil~ to present "Not
;; fonud" in tranditional Lisp programming style. The caller of your query
;; function may have mistaken on "Found and get a ~nil~ value" and "Not found".
;; #+begin_src emacs-lisp
;; (defun clear-plist-get (plist key)
;; (pcase (plist-member plist key)
;; (`(,_k ,v)
;; (cell-option-some v))
;; (_
;; (cell-option-none))))
;; (let ((plist '(:key nil)))
;; (plist-get plist :key) ;=> nil
;; (plist-get plist :val) ;=> nil
;; (clear-plist-get plist :key) ;=> Some(nil)
;; (clear-plist-get plist :val) ;=> None
;; )
;; #+end_src
;; ~cell.el~ also provides some facility to operates on a Option Cell.
;; #+begin_src emacs-lisp
;; (let ((some (cell-option-some 1))
;; (none (cell-option-none)))
;; (cell-option-map some #'1+) ;=> Some(2)
;; (cell-option-map none #'1+) ;=> None
;; (cell-option-if-let (inner some)
;; (message "Some(%d)" inner)
;; (error "Unreachable!")))
;; #+end_src
;; ** Box
;; A Box Cell is like a single-element vector, normally used as minimal mutable
;; storage.
;; #+begin_src emacs-lisp
;; (let* ((box (cell-box-make "Emacs"))
;; (lst (list box))
;; (vec (vector box)))
;; (cl-assert (eq (cell-box-inner (nth 0 lst))
;; (cell-box-inner (aref vec 0))))
;; (setf (cell-box-inner (nth 0 lst)) "emacs")
;; (cl-assert (eq (cell-box-inner (nth 0 lst))
;; (cell-box-inner (aref vec 0)))))
;; #+end_src
;; ** Weak
;; A Weak Cell is like weak pointer in other languages. The reference in Weak
;; Cell will not be considered in GC. This can help you manage struct with
;; cyclic reference.
;; When design a RAII style API in Emacs Lisp, Weak Cell can help you
;; differentiate "first class" reference and "second class" reference. And
;; make sure finalizer can be run as expected.
;; #+begin_src emacs-lisp
;; (let ((weakptr (cell-weak-make (list 1 2 3 4))))
;; (cl-assert (equal (cell-weak-get weakptr)
;; (cell-option-some (list 1 2 3 4))))
;; (garbage-collect)
;; ;; value inside weakptr was GCed because nothing other than a weak cell
;; ;; held its reference. So `cell-weak-get' will return a None.
;; (cl-assert (equal (cell-weak-get weakptr)
;; (cell-option-none))))
;; #+end_src
;; * Contributions
;; Please report an issue or PR if you encounter any problem when using the library.
;;; Code:
;;; Option
(eval-when-compile (require 'cl-lib))
(cl-defstruct (cell-option
(:constructor nil)
(:constructor cell-option--internal-make (-val))
(:copier nil))
(-val nil :read-only t))
;; Constructor
(defsubst cell-option-some (value)
"Create an option in Some variant with VALUE."
(cell-option--internal-make value))
(defconst cell-option--none-singleton
(let ((sym (make-symbol "rstream--none")))
(cell-option--internal-make sym)))
(defsubst cell-option-none ()
"Create an option in None variant."
cell-option--none-singleton)
(defun cell-option-from-non-nil (value)
"Create Some(VALUE) if VALUE if non-nil, otherwise create a None."
(if value
(cell-option-some value)
(cell-option-none)))
;; Predicator
(defun cell-option-none-p (option)
"Return non-nil if OPTION in None variant."
(if (cl-typep option 'cell-option)
(eq option (cell-option-none))
(signal 'wrong-type-argument
(list 'cell-option option 'option))))
(defsubst cell-option-some-p (option)
"Return non-nil if OPTION in Some variant."
(not (cell-option-none-p option)))
;; Operator
(cl-defmacro cell-option-if-let ((var val) then &rest else)
"Bind the inner of VAL to VAR and yield THEN if VAL is a Some, or yield ELSE."
(declare (indent 2) (debug ((symbolp form) form body)))
(macroexp-let2 nil val val
`(if (cell-option-some-p ,val)
(let ((,var (cell-option--val ,val)))
,then)
,@else)))
(cl-defmacro cell-option-when-let ((var val) &rest forms)
"Bind the inner of VAL to VAR and yield FORMS if VAL is a Some."
(declare (indent 1) (debug ((symbolp form) body)))
`(cell-option-if-let (,var ,val)
,(macroexp-progn forms)))
(defun cell-option-map (option func)
"Transform the inner of OPTION using FUNC."
(cell-option-if-let (inner option)
(cell-option-some (funcall func inner))
option))
(defalias 'cell-option-inner-unchecked 'cell-option--val
"Return the inner value of OPTION directly, skip status checking.
It's your guarantee to ensure the OPTION is a Some to get meaningful result.
\n(fn OPTION)")
;;; Box
(cl-defstruct (cell-box
(:constructor nil)
(:constructor cell-box--make (-inner))
(:copier nil))
-inner)
(defalias 'cell-box-make 'cell-box--make
"Create a single mutable unit with INITIAL-VALUE.")
(defalias 'cell-box-inner 'cell-box--inner
"Return the inner value of BOX.
\n(fn BOX)")
;;; Weak
(cl-defstruct (cell-weak
(:constructor nil)
(:constructor cell-weak--internal-make)
(:copier nil))
(-inner-table (make-hash-table :test #'eq :weakness 'value) :read-only t))
(defun cell-weak-make (inner)
"Create a cell takes a weak reference of INNER."
(let* ((cell (cell-weak--internal-make))
(internal-ht (cell-weak--inner-table cell)))
(puthash t inner internal-ht)
cell))
(defun cell-weak-get (cell)
"Return Some(inner) if reference in CELL still alive, otherwise return None."
(let* ((gensym (make-symbol "not-found"))
(val (gethash t (cell-weak--inner-table cell) gensym))
(found (not (eq gensym val))))
(if found
(cell-option-some val)
(cell-option-none))))
(provide 'cell)
;; Local Variables:
;; coding: utf-8
;; End:
;;; cell.el ends here
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re:New lisp library -- cell.el
2020-02-28 6:21 New lisp library -- cell.el Zhu Zihao
@ 2020-02-28 8:51 ` Zhu Zihao
2020-02-28 15:43 ` New " Stefan Monnier
1 sibling, 0 replies; 9+ messages in thread
From: Zhu Zihao @ 2020-02-28 8:51 UTC (permalink / raw)
To: emacs-devel
[-- Attachment #1: Type: text/plain, Size: 1544 bytes --]
I can't send my file for unknown reason. So I post it to Github
https://github.com/cireu/emacs-cell
At 2020-02-28 14:21:11, "Zhu Zihao" <all_but_last@163.com> wrote:
In last month I sent an email to request for some comments on weak reference facilities in Emacs. Now I create a new lisp library -- cell.el, which implemented weak reference in Elisp using weak hash table and some more util.
There are 3 kinds of cell in cell.el
- Option :: Giving "existence" information for a value, Like Maybe type in Haskell or Optional type in Java.
- Box :: Like a single element vector, create a mutable storage.
- Weak :: Weak reference I mentioned above.
IMO, these can help user to build Elisp application in more convenient way.
For a simple example.
(plist-get '(:key nil) :key) ; => nil
(plist-get '(:key nil) :val) ;=> nil
By using Option Cell, we can differentiate these two status.
(defun clear-plist-get (plist key)
(pcase (plist-member plist key)
(`(,_k ,v)
(cell-option-some v))
(_
(cell-option-none))))
(let ((plist '(:key nil)))
(plist-get plist :key) ;=> nil
(plist-get plist :val) ;=> nil
(clear-plist-get plist :key) ;=> Some(nil)
(clear-plist-get plist :val) ;=> None
)
I don't want to break the behaviour of plist-get, just a example to show the power of Option Cell. And there are detailed description in ;;; Commentary section.
Would you consider this to be included in Emacs core, or publish it on GNU ELPA?
[-- Attachment #2: Type: text/html, Size: 2803 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: New lisp library -- cell.el
2020-02-28 6:21 New lisp library -- cell.el Zhu Zihao
2020-02-28 8:51 ` Zhu Zihao
@ 2020-02-28 15:43 ` Stefan Monnier
2020-02-28 16:51 ` Zhu Zihao
1 sibling, 1 reply; 9+ messages in thread
From: Stefan Monnier @ 2020-02-28 15:43 UTC (permalink / raw)
To: Zhu Zihao; +Cc: emacs-devel
Some comments on the code:
> (defsubst cell-option-none ()
> "Create an option in None variant."
> cell-option--none-singleton)
Why not use nil for "none"? That would simplify your code and most
likely would make for much more natural/idiomatic code in the clients of
your library.
[ Traditionally in Lisp when you need something like a "option` (aka
`Maybe`) type, you use `(cons X nil)` for `some X` and `nil` for `none`. ]
> (cl-defstruct (cell-box
> (:constructor nil)
> (:constructor cell-box--make (-inner))
> (:copier nil))
> -inner)
Rather than put the additional "-" in the slot name, you can use
`(:conc-name call-box-)`.
> (defalias 'cell-box-make 'cell-box--make
> "Create a single mutable unit with INITIAL-VALUE.")
>
> (defalias 'cell-box-inner 'cell-box--inner
> "Return the inner value of BOX.
> \n(fn BOX)")
Why bother with those indirections?
> (defun cell-weak-get (cell)
> "Return Some(inner) if reference in CELL still alive, otherwise return None."
> (let* ((gensym (make-symbol "not-found"))
> (val (gethash t (cell-weak--inner-table cell) gensym))
> (found (not (eq gensym val))))
> (if found
> (cell-option-some val)
> (cell-option-none))))
That makes every call to `cell-weak-get` allocate a new symbol only to
throw it away. I'd recommend you define a top-level constant
(defconst cell--not-found (make-symbol "not-found"))
instead. There are other solutions to this problem that might be even
better, tho. E.g. you could compute `found` as (< 0 (hash-table-count ...).
Better yet, disallow weak cells containing `nil` (since `nil` can't be
GC'd anyway it doesn't make much sense to put it inside a weak-reference)
and you don't need this at all:
(defun cell-weak-make (inner)
"Create a cell takes a weak reference of INNER."
(if (null inner)
nil ;; We could also signal an error, but returning nil
;; allow us to treat nil as its own weak-reference,
(let* ((cell (cell-weak--internal-make))
(internal-ht (cell-weak--inner-table cell)))
(puthash t inner internal-ht)
cell)))
(defun cell-weak-get (cell)
"Return inner if reference in CELL still alive, otherwise return nil."
(when cell ;; If nil, it's a weak ref to nil.
;; The stored content is never nil, so it only returns nil if
;; the content was GC'd.
(gethash t (cell-weak--inner-table cell))))
-- Stefan
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: New lisp library -- cell.el
2020-02-28 15:43 ` New " Stefan Monnier
@ 2020-02-28 16:51 ` Zhu Zihao
2020-02-29 3:30 ` Stefan Monnier
0 siblings, 1 reply; 9+ messages in thread
From: Zhu Zihao @ 2020-02-28 16:51 UTC (permalink / raw)
To: Stefan Monnier; +Cc: Zhu Zihao, emacs-devel
> Why not use nil for "none"? That would simplify your code and most
> likely would make for much more natural/idiomatic code in the clients of
> your library.
> [ Traditionally in Lisp when you need something like a "option` (aka
> `Maybe`) type, you use `(cons X nil)` for `some X` and `nil` for `none`. ]
I tend to keep None variant a singleton of cell-option. nil is over-overloaded
in Lisp programming. For example, if we want to store a nullable value in the
slot of cl-struct and we use nil as none. It's hard to differentiate "Slot is
unintialized" and "Slot is initialized with None".
> Why bother with those indirections?
Docstring generated by `cl-defstruct` may not suitable for us. An alias to make
a meaningful doc.
Or should we use (put 'cell-box-inner 'function-documentation ".....")?
> That makes every call to `cell-weak-get` allocate a new symbol only to
> throw it away. I'd recommend you define a top-level constant
Or use '(nil)? map.el use this. But IMO your solution (return nil for GCed weak ref) is better.
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: New lisp library -- cell.el
2020-02-28 16:51 ` Zhu Zihao
@ 2020-02-29 3:30 ` Stefan Monnier
2020-02-29 6:48 ` Zhu Zihao
0 siblings, 1 reply; 9+ messages in thread
From: Stefan Monnier @ 2020-02-29 3:30 UTC (permalink / raw)
To: Zhu Zihao; +Cc: emacs-devel
> I tend to keep None variant a singleton of cell-option. nil is over-overloaded
> in Lisp programming. For example, if we want to store a nullable value in the
> slot of cl-struct and we use nil as none. It's hard to differentiate "Slot is
> unintialized" and "Slot is initialized with None".
The problem here is the concept of uninitialized. Always arrange your
constructors to initialize all fields and the problem disappears.
>> Why bother with those indirections?
> Docstring generated by `cl-defstruct` may not suitable for us. An alias to make
> a meaningful doc.
Ah, that makes sense. You might like to put a short comment to explain it.
> Or should we use (put 'cell-box-inner 'function-documentation ".....")?
I think that would be worse.
Stefan
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: New lisp library -- cell.el
2020-02-29 3:30 ` Stefan Monnier
@ 2020-02-29 6:48 ` Zhu Zihao
2020-02-29 14:09 ` Stefan Monnier
0 siblings, 1 reply; 9+ messages in thread
From: Zhu Zihao @ 2020-02-29 6:48 UTC (permalink / raw)
To: Stefan Monnier; +Cc: Zhu Zihao, emacs-devel
I push some commits to take the refactor. Check newest at
https://github.com/cireu/emacs-cell/blob/master/cell.el
Changelog:
1. Remove cell-option. Add cell-some, which can be united with nil to present a
nullable value.
2. Unify the name of constructor of cells
- cell-some(new)
- cell-box-make -> cell-box,
- cell-weak-make -> cell-weak
Internal constructors names:
- cell-some--make(new)
- cell-box--make(unchanged)
- cell-weak--internal-make -> cell-weak--make
3. Remove destructuring macro cell-option-if-let and cell-option-when-let, add
pcase pattern cell-some. It's better to extend pcase than a new macro.
4. Remove cell-option related utils.
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: New lisp library -- cell.el
2020-02-29 6:48 ` Zhu Zihao
@ 2020-02-29 14:09 ` Stefan Monnier
2020-03-01 7:43 ` Zhu Zihao
0 siblings, 1 reply; 9+ messages in thread
From: Stefan Monnier @ 2020-02-29 14:09 UTC (permalink / raw)
To: Zhu Zihao; +Cc: emacs-devel
> add pcase pattern cell-some. It's better to extend pcase than a new macro.
Indeed, I'd forgotten to suggest it ;-)
Stefan
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: New lisp library -- cell.el
2020-02-29 14:09 ` Stefan Monnier
@ 2020-03-01 7:43 ` Zhu Zihao
2020-03-05 15:52 ` Stefan Monnier
0 siblings, 1 reply; 9+ messages in thread
From: Zhu Zihao @ 2020-03-01 7:43 UTC (permalink / raw)
To: Stefan Monnier; +Cc: Zhu Zihao, emacs-devel
Do you consider it worthwhile/necessary to add this to Emacs source tree?
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: New lisp library -- cell.el
2020-03-01 7:43 ` Zhu Zihao
@ 2020-03-05 15:52 ` Stefan Monnier
0 siblings, 0 replies; 9+ messages in thread
From: Stefan Monnier @ 2020-03-05 15:52 UTC (permalink / raw)
To: Zhu Zihao; +Cc: emacs-devel
> Do you consider it worthwhile/necessary to add this to Emacs source tree?
Until there's more evidence of need/uses of it, I don't see a good
justification to add it to Emacs's source tree. But we can add it to
GNU ELPA. WDYT?
Stefan
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2020-03-05 15:52 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-02-28 6:21 New lisp library -- cell.el Zhu Zihao
2020-02-28 8:51 ` Zhu Zihao
2020-02-28 15:43 ` New " Stefan Monnier
2020-02-28 16:51 ` Zhu Zihao
2020-02-29 3:30 ` Stefan Monnier
2020-02-29 6:48 ` Zhu Zihao
2020-02-29 14:09 ` Stefan Monnier
2020-03-01 7:43 ` Zhu Zihao
2020-03-05 15:52 ` 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).