2017-12-13 11:27:13 -06:00
|
|
|
(require 'hmac-def)
|
|
|
|
(require 'cl-lib)
|
2017-12-14 13:29:31 -06:00
|
|
|
(require 'json)
|
2017-12-13 11:27:13 -06:00
|
|
|
|
|
|
|
(defconst jupyter-protocol-version "5.3")
|
|
|
|
(defconst jupyter-message-delimiter "<IDS|MSG>")
|
2017-12-14 13:29:31 -06:00
|
|
|
(defconst jupyter--false :json-false)
|
2017-12-13 11:27:13 -06:00
|
|
|
|
|
|
|
;;; Session object
|
|
|
|
|
|
|
|
(cl-defstruct (jupyter-session
|
|
|
|
(:constructor nil)
|
|
|
|
(:constructor
|
|
|
|
jupyter-session
|
2017-12-14 13:28:58 -06:00
|
|
|
(&key (key nil) &aux (id (jupyter--new-uuid)))))
|
2017-12-13 11:27:13 -06:00
|
|
|
(id nil :read-only t)
|
|
|
|
(key nil :read-only t))
|
|
|
|
|
|
|
|
;;; Signing messages
|
|
|
|
|
|
|
|
;; https://tools.ietf.org/html/rfc4868
|
|
|
|
(defun sha256 (object)
|
|
|
|
(secure-hash 'sha256 object nil nil t))
|
|
|
|
(define-hmac-function hmac-sha256 sha256 64 32)
|
|
|
|
|
2017-12-14 13:28:58 -06:00
|
|
|
(defun jupyter--sign-message (session parts)
|
2017-12-13 11:27:13 -06:00
|
|
|
(if (> (length (jupyter-session-key session)) 0)
|
|
|
|
(cl-loop
|
|
|
|
for b across (hmac-sha256 (mapconcat #'identity parts "")
|
|
|
|
(jupyter-session-key session))
|
|
|
|
concat (format "%02x" b))
|
|
|
|
""))
|
|
|
|
|
2017-12-14 13:28:58 -06:00
|
|
|
(defun jupyter--new-uuid ()
|
2017-12-13 11:27:13 -06:00
|
|
|
"Make a version 4 UUID."
|
|
|
|
(let ((rs (cl-make-random-state t)))
|
|
|
|
(format "%04x%04x-%04x-%04x-%04x-%06x%06x"
|
|
|
|
(cl-random 65536 rs)
|
|
|
|
(cl-random 65536 rs)
|
|
|
|
(cl-random 65536 rs)
|
|
|
|
;; https://tools.ietf.org/html/rfc4122
|
|
|
|
(let ((r (cl-random 65536 rs)))
|
|
|
|
(if (= (byteorder) ?l)
|
|
|
|
;; ?l = little-endian
|
|
|
|
(logior (logand r 4095) 16384)
|
|
|
|
;; big-endian
|
|
|
|
(logior (logand r 65295) 64)))
|
|
|
|
(let ((r (cl-random 65536 rs)))
|
|
|
|
(if (= (byteorder) ?l)
|
|
|
|
(logior (logand r 49151) 32768)
|
|
|
|
(logior (logand r 65471) 128)))
|
|
|
|
(cl-random 16777216 rs)
|
|
|
|
(cl-random 16777216 rs))))
|
|
|
|
|
2017-12-14 13:28:58 -06:00
|
|
|
(defun jupyter--split-identities (parts)
|
2017-12-13 11:27:13 -06:00
|
|
|
"Extract the identities from a list of message PARTS."
|
|
|
|
(let ((idents nil))
|
|
|
|
(if (catch 'found-delim
|
|
|
|
(while (car parts)
|
|
|
|
(when (string= (car parts) jupyter-message-delimiter)
|
|
|
|
(setq parts (cdr parts)
|
|
|
|
idents (nreverse idents))
|
|
|
|
(throw 'found-delim t))
|
|
|
|
(setq idents (cons (car parts) idents)
|
|
|
|
parts (cdr parts))))
|
|
|
|
(cons idents parts)
|
|
|
|
(error "Message delimiter not in message list"))))
|
|
|
|
|
2017-12-14 13:28:58 -06:00
|
|
|
(defun jupyter--message-header (session msg-type)
|
2017-12-13 11:27:13 -06:00
|
|
|
(list
|
2017-12-14 13:28:58 -06:00
|
|
|
:msg_id (jupyter--new-uuid)
|
2017-12-13 11:27:13 -06:00
|
|
|
:msg_type msg-type
|
|
|
|
:version jupyter-protocol-version
|
|
|
|
:username user-login-name
|
|
|
|
:session (jupyter-session-id session)
|
|
|
|
:date (format-time-string "%FT%T%z" (current-time))))
|
|
|
|
|
|
|
|
;;; Encode/decoding messages
|
|
|
|
|
2017-12-14 13:28:58 -06:00
|
|
|
(defun jupyter--encode-object (object)
|
2017-12-13 11:27:13 -06:00
|
|
|
;; Encodes nil or "" to \"{}\"
|
|
|
|
(encode-coding-string (json-encode-plist object) 'utf-8))
|
|
|
|
|
2017-12-14 13:28:58 -06:00
|
|
|
(defun jupyter--decode-string (str)
|
2017-12-13 11:27:13 -06:00
|
|
|
(let ((json-object-type 'plist)
|
|
|
|
(json-array-type 'list))
|
|
|
|
(json-read-from-string (decode-coding-string str 'utf-8))))
|
|
|
|
|
2017-12-14 13:28:58 -06:00
|
|
|
(cl-defun jupyter--encode-message (session
|
|
|
|
type
|
|
|
|
&key idents
|
|
|
|
content
|
|
|
|
parent-header
|
|
|
|
metadata
|
|
|
|
buffers)
|
2017-12-13 11:27:13 -06:00
|
|
|
(declare (indent 2))
|
|
|
|
(cl-check-type session jupyter-session)
|
|
|
|
(cl-check-type metadata json-plist)
|
|
|
|
(cl-check-type content json-plist)
|
|
|
|
(cl-check-type buffers list)
|
2017-12-14 13:28:58 -06:00
|
|
|
(let* ((header (jupyter--message-header session type))
|
2017-12-13 11:27:13 -06:00
|
|
|
(msg-id (plist-get header :msg_id))
|
2017-12-14 13:28:58 -06:00
|
|
|
(parts (mapcar #'jupyter--encode-object (list header
|
|
|
|
parent-header
|
|
|
|
metadata
|
|
|
|
content))))
|
2017-12-13 11:27:13 -06:00
|
|
|
(cons msg-id
|
|
|
|
(append
|
|
|
|
(when idents (if (stringp idents) (list idents) idents))
|
|
|
|
(list jupyter-message-delimiter
|
2017-12-14 13:28:58 -06:00
|
|
|
(jupyter--sign-message session parts))
|
2017-12-13 11:27:13 -06:00
|
|
|
parts
|
|
|
|
buffers))))
|
|
|
|
|
2017-12-14 13:28:58 -06:00
|
|
|
(defun jupyter--decode-message (session parts)
|
2017-12-13 11:27:13 -06:00
|
|
|
(when (< (length parts) 5)
|
|
|
|
(error "Malformed message. Minimum length of parts is 5."))
|
|
|
|
(when (jupyter-session-key session)
|
|
|
|
(let ((signature (car parts)))
|
|
|
|
(when (seq-empty-p signature)
|
|
|
|
(error "Unsigned message."))
|
|
|
|
;; TODO: digest_history
|
|
|
|
;; https://github.com/jupyter/jupyter_client/blob/7a0278af7c1652ac32356d6f00ae29d24d78e61c/jupyter_client/session.py#L915
|
2017-12-14 13:28:58 -06:00
|
|
|
(unless (string= (jupyter--sign-message session (seq-subseq parts 1 5))
|
2017-12-13 11:27:13 -06:00
|
|
|
signature)
|
|
|
|
(error "Invalid signature: %s" signature))))
|
|
|
|
(cl-destructuring-bind
|
|
|
|
(header parent-header metadata content &optional buffers)
|
|
|
|
(cdr parts)
|
2017-12-14 13:28:58 -06:00
|
|
|
(let ((header (jupyter--decode-string header)))
|
2017-12-13 11:27:13 -06:00
|
|
|
(list
|
|
|
|
:header header
|
|
|
|
:msg_id (plist-get header :msg_id)
|
|
|
|
:msg_type (plist-get header :msg_type)
|
2017-12-14 13:28:58 -06:00
|
|
|
:parent_header (jupyter--decode-string parent-header)
|
|
|
|
:metadata (jupyter--decode-string metadata)
|
|
|
|
:content (jupyter--decode-string content)
|
2017-12-13 11:27:13 -06:00
|
|
|
:buffers buffers))))
|
|
|
|
|
|
|
|
;;; stdin messages
|
|
|
|
|
2017-12-14 13:29:31 -06:00
|
|
|
(cl-defun jupyter-input-reply (&key value)
|
2017-12-13 11:27:13 -06:00
|
|
|
(cl-check-type value string)
|
|
|
|
(list :value value))
|
|
|
|
|
|
|
|
;;; shell messages
|
|
|
|
|
|
|
|
(cl-defun jupyter-execute-request (&key
|
|
|
|
code
|
|
|
|
(silent nil)
|
|
|
|
(store-history t)
|
|
|
|
(user-expressions nil)
|
|
|
|
(allow-stdin t)
|
|
|
|
(stop-on-error nil))
|
|
|
|
(cl-check-type code string)
|
|
|
|
(cl-check-type user-expressions json-plist)
|
2017-12-14 13:29:31 -06:00
|
|
|
(list :code code :silent (if silent t jupyter--false)
|
|
|
|
:store_history (if store-history t jupyter--false)
|
2017-12-13 11:27:13 -06:00
|
|
|
:user_expressions user-expressions
|
2017-12-14 13:29:31 -06:00
|
|
|
:allow_stdin (if allow-stdin t jupyter--false)
|
|
|
|
:stop_on_error (if stop-on-error t jupyter--false)))
|
2017-12-13 11:27:13 -06:00
|
|
|
|
2017-12-14 13:29:31 -06:00
|
|
|
(cl-defun jupyter-inspect-request (&key code pos detail)
|
2017-12-13 11:27:13 -06:00
|
|
|
(setq detail (or detail 0))
|
|
|
|
(unless (member detail '(0 1))
|
|
|
|
(error "Detail can only be 0 or 1 (%s)" detail))
|
|
|
|
(when (markerp pos)
|
|
|
|
(setq pos (marker-position pos)))
|
|
|
|
(cl-check-type code string)
|
|
|
|
(cl-check-type pos integer)
|
|
|
|
(list :code code :cursor_pos pos :detail_level detail))
|
|
|
|
|
2017-12-14 13:29:31 -06:00
|
|
|
(cl-defun jupyter-complete-request (&key code pos)
|
2017-12-13 11:27:13 -06:00
|
|
|
(when (markerp pos)
|
|
|
|
(setq pos (marker-position pos)))
|
|
|
|
(cl-check-type code string)
|
|
|
|
(cl-check-type pos integer)
|
|
|
|
(list :code code :cursor_pos pos))
|
|
|
|
|
|
|
|
(cl-defun jupyter-history-request (&key
|
|
|
|
output
|
|
|
|
raw
|
|
|
|
hist-access-type
|
|
|
|
session
|
|
|
|
start
|
|
|
|
stop
|
|
|
|
n
|
|
|
|
pattern
|
|
|
|
unique)
|
|
|
|
(unless (member hist-access-type '("range" "tail" "search"))
|
|
|
|
(error "History access type can only be one of (range, tail, search)"))
|
|
|
|
(append
|
2017-12-14 13:29:31 -06:00
|
|
|
(list :output (if output t jupyter--false) :raw (if raw t jupyter--false)
|
2017-12-13 11:27:13 -06:00
|
|
|
:hist_access_type hist-access-type)
|
|
|
|
(cond
|
|
|
|
((equal hist-access-type "range")
|
|
|
|
(cl-check-type session integer)
|
|
|
|
(cl-check-type start integer)
|
|
|
|
(cl-check-type stop integer)
|
|
|
|
(list :session session :start start :stop stop))
|
|
|
|
((equal hist-access-type "tail")
|
|
|
|
(cl-check-type n integer)
|
|
|
|
(list :n n))
|
|
|
|
((equal hist-access-type "search")
|
|
|
|
(cl-check-type pattern string)
|
|
|
|
(cl-check-type n integer)
|
2017-12-14 13:29:31 -06:00
|
|
|
(list :pattern pattern :unique (if unique t jupyter--false) :n n)))))
|
2017-12-13 11:27:13 -06:00
|
|
|
|
2017-12-14 13:29:31 -06:00
|
|
|
(cl-defun jupyter-is-complete-request (&key code)
|
2017-12-13 11:27:13 -06:00
|
|
|
(cl-check-type code string)
|
|
|
|
(list :code code))
|
|
|
|
|
2017-12-14 13:29:31 -06:00
|
|
|
(cl-defun jupyter-comm-info-request (&key target-name)
|
2017-12-13 11:27:13 -06:00
|
|
|
(when target-name
|
|
|
|
(cl-check-type target-name string)
|
|
|
|
(list :target_name target-name)))
|
|
|
|
|
2017-12-14 13:29:31 -06:00
|
|
|
(cl-defun jupyter-shutdown-request (&key restart)
|
|
|
|
(list :restart (if restart t jupyter--false)))
|
2017-12-13 11:27:13 -06:00
|
|
|
|
|
|
|
(provide 'jupyter-messages)
|
|
|
|
|
|
|
|
;; Local Variables:
|
|
|
|
;; byte-compile-warnings: (not free-vars)
|
|
|
|
;; End:
|