gecko-dev/js2/semantics/CalculusMarkup.lisp

2033 строки
96 KiB
Common Lisp
Исходник Обычный вид История

1999-11-03 06:58:07 +03:00
;;; The contents of this file are subject to the Mozilla Public
;;; License Version 1.1 (the "License"); you may not use this file
;;; except in compliance with the License. You may obtain a copy of
;;; the License at http://www.mozilla.org/MPL/
;;;
;;; Software distributed under the License is distributed on an "AS
;;; IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
;;; implied. See the License for the specific language governing
;;; rights and limitations under the License.
;;;
;;; The Original Code is the Language Design and Prototyping Environment.
;;;
;;; The Initial Developer of the Original Code is Netscape Communications
;;; Corporation. Portions created by Netscape Communications Corporation are
;;; Copyright (C) 1999-2002 Netscape Communications Corporation. All
1999-11-03 06:58:07 +03:00
;;; Rights Reserved.
;;;
;;; Contributor(s): Waldemar Horwat <waldemar@acm.org>
;;;
;;; Alternatively, the contents of this file may be used under the terms of
;;; either the GNU General Public License Version 2 or later (the "GPL"), or
;;; the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
;;; in which case the provisions of the GPL or the LGPL are applicable instead
;;; of those above. If you wish to allow use of your version of this file only
;;; under the terms of either the GPL or the LGPL, and not to allow others to
;;; use your version of this file under the terms of the MPL, indicate your
;;; decision by deleting the provisions above and replace them with the notice
;;; and other provisions required by the GPL or the LGPL. If you do not delete
;;; the provisions above, a recipient may use your version of this file under
;;; the terms of any one of the MPL, the GPL or the LGPL.
1999-01-30 04:19:00 +03:00
;;;
;;; ECMAScript semantic calculus markup emitters
;;;
1999-11-03 06:58:07 +03:00
;;; Waldemar Horwat (waldemar@acm.org)
1999-01-30 04:19:00 +03:00
;;;
(defvar *hide-$-nonterminals* t) ; Should rules and actions expanding nonterminals starting with $ be invisible?
(defvar *depict-trivial-functions-as-expressions* nil)
1999-06-04 00:49:13 +04:00
(defvar *styled-text-world*)
(defvar *compact-infix* nil) ; If true, spaces are eliminated around infix primitives
1999-06-04 00:49:13 +04:00
(defun hidden-nonterminal? (general-nonterminal)
(and *hide-$-nonterminals*
(eql (first-symbol-char (general-grammar-symbol-symbol general-nonterminal)) #\$)))
; Return true if this action call should be replaced by a plain reference to the action's nonterminal.
(defun default-action? (action-name)
(equal (symbol-name action-name) "$DEFAULT-ACTION"))
1999-01-30 04:19:00 +03:00
;;; ------------------------------------------------------------------------------------------------------
;;; SEMANTIC DEPICTION UTILITIES
(defparameter *semantic-keywords*
'(not and or xor mod new
some every satisfies
such that
tag tuple record
proc
2001-04-12 08:31:46 +04:00
begin end nothing
if then elsif else
2002-01-17 04:28:30 +03:00
while for each do
2001-04-12 08:31:46 +04:00
return
throw try catch
case of))
1999-01-30 04:19:00 +03:00
; Emit markup for one of the semantic keywords, as specified by keyword-symbol.
2001-04-12 08:31:46 +04:00
; space can be either nil, :before, or :after to indicate space placement.
(defun depict-semantic-keyword (markup-stream keyword-symbol space)
(assert-true (and (member keyword-symbol *semantic-keywords*)
(member space '(nil :before :after))))
(when (eq space :before)
(depict-space markup-stream))
1999-01-30 04:19:00 +03:00
(depict-char-style (markup-stream :semantic-keyword)
2001-04-12 08:31:46 +04:00
(depict markup-stream (string-downcase (symbol-name keyword-symbol))))
(when (eq space :after)
(depict-space markup-stream)))
1999-01-30 04:19:00 +03:00
; If test is true, depict an opening parenthesis, evaluate body, and depict a closing
; parentheses. Otherwise, just evaluate body.
; Return the result value of body.
(defmacro depict-optional-parentheses ((markup-stream test) &body body)
(let ((temp (gensym "PAREN")))
`(let ((,temp ,test))
(when ,temp
(depict ,markup-stream "("))
(prog1
(progn ,@body)
(when ,temp
(depict ,markup-stream ")"))))))
;;; ------------------------------------------------------------------------------------------------------
;;; DEPICT-ENV
; A depict-env holds state that helps in depicting a grammar or lexer.
(defstruct (depict-env (:constructor make-depict-env (visible-semantics heading-offset)))
(visible-semantics t :type bool :read-only t) ;Nil if semantics are not to be depicted
(heading-offset 0 :type integer :read-only t) ;Offset to be added to each heading level when depicting it
1999-01-30 04:19:00 +03:00
(grammar-info nil :type (or null grammar-info)) ;The current grammar-info or nil if none
(seen-nonterminals nil :type (or null hash-table)) ;Hash table (nonterminal -> t) of nonterminals already depicted
1999-02-06 06:20:35 +03:00
(seen-grammar-arguments nil :type (or null hash-table)) ;Hash table (grammar-argument -> t) of grammar-arguments already depicted
1999-01-30 04:19:00 +03:00
(mode nil :type (member nil :syntax :semantics)) ;Current heading (:syntax or :semantics) or nil if none
(pending-actions-reverse nil :type list)) ;Reverse-order list of (action-name . closure) of actions pending for a %print-actions
1999-01-30 04:19:00 +03:00
(defun checked-depict-env-grammar-info (depict-env)
(or (depict-env-grammar-info depict-env)
(error "Grammar needed")))
; Set the mode to the given mode without emitting any headings.
; Return true if the contents should be visible, nil if not.
(defun quiet-depict-mode (depict-env mode)
(unless (member mode '(nil :syntax :semantics))
(error "Bad mode: ~S" mode))
(setf (depict-env-mode depict-env) mode)
(or (depict-env-visible-semantics depict-env)
(not (eq mode :semantics))))
1999-01-30 04:19:00 +03:00
; Set the mode to the given mode, emitting a heading if necessary.
; Return true if the contents should be visible, nil if not.
1999-01-30 04:19:00 +03:00
(defun depict-mode (markup-stream depict-env mode)
(unless (eq mode (depict-env-mode depict-env))
(when (depict-env-visible-semantics depict-env)
1999-01-30 04:19:00 +03:00
(ecase mode
2001-04-12 08:31:46 +04:00
(:syntax (depict-paragraph (markup-stream :grammar-header)
1999-01-30 04:19:00 +03:00
(depict markup-stream "Syntax")))
2001-04-12 08:31:46 +04:00
(:semantics (depict-paragraph (markup-stream :grammar-header)
1999-01-30 04:19:00 +03:00
(depict markup-stream "Semantics")))
((nil)))))
(quiet-depict-mode depict-env mode))
1999-01-30 04:19:00 +03:00
; Set the mode to :semantics, always emitting a heading with the given group-name string.
; Return true if the contents should be visible, nil if not.
(defun depict-semantic-group (markup-stream depict-env group-name)
(cond
((depict-env-visible-semantics depict-env)
(depict-paragraph (markup-stream :grammar-header)
(depict markup-stream group-name))
(setf (depict-env-mode depict-env) :semantics)
t)
(t nil)))
1999-01-30 04:19:00 +03:00
; Emit markup paragraphs for a command.
(defun depict-command (markup-stream world depict-env command)
(handler-bind ((error #'(lambda (condition)
(declare (ignore condition))
(format *error-output* "~&While depicting: ~:W~%" command))))
(let ((depictor (and (consp command)
(identifier? (first command))
(get (world-intern world (first command)) :depict-command))))
(if depictor
(apply depictor markup-stream world depict-env (rest command))
(error "Bad command: ~S" command)))))
2000-09-09 06:14:35 +04:00
; Emit markup paragraphs for a list of commands.
(defun depict-commands (markup-stream world depict-env commands)
(dolist (command commands)
(depict-command markup-stream world depict-env command)))
1999-01-30 04:19:00 +03:00
; Emit markup paragraphs for the world's commands.
(defun depict-world-commands (markup-stream world &key (visible-semantics t) (heading-offset 0))
(let ((depict-env (make-depict-env visible-semantics heading-offset)))
2000-09-09 06:14:35 +04:00
(depict-commands markup-stream world depict-env (world-commands-source world))
1999-01-30 04:19:00 +03:00
(depict-clear-grammar markup-stream world depict-env)))
2001-04-12 08:31:46 +04:00
;;; ------------------------------------------------------------------------------------------------------
;;; DEPICTING TAGS
(defparameter *tag-name-special-cases*
'((:+zero32 "PlusZero32" ("+zero" (:subscript "f32")))
(:-zero32 "MinusZero32" (:minus "zero" (:subscript "f32")))
(:+infinity32 "PlusInfinity32" ("+" :infinity (:subscript "f32")))
(:-infinity32 "MinusInfinity32" (:minus :infinity (:subscript "f32")))
(:nan32 "NaN" ("NaN32" (:subscript "f32")))
(:+zero64 "PlusZero64" ("+zero" (:subscript "f64")))
(:-zero64 "MinusZero64" (:minus "zero" (:subscript "f64")))
(:+infinity64 "PlusInfinity64" ("+" :infinity (:subscript "f64")))
(:-infinity64 "MinusInfinity64" (:minus :infinity (:subscript "f64")))
(:nan64 "NaN" ("NaN64" (:subscript "f64")))
2001-04-12 08:31:46 +04:00
(:+infinity "PlusInfinity" ("+" :infinity))
(:-infinity "MinusInfinity" (:minus :infinity))))
2001-04-12 08:31:46 +04:00
; Return two values:
; A string to use as the tag's link name;
; A depict item or list of items forming the tag's name.
(defun tag-link-name-and-name (tag)
(let ((special-case (assoc (tag-keyword tag) *tag-name-special-cases*)))
(if special-case
(values (second special-case) (third special-case))
(let ((name (symbol-lower-mixed-case-name (tag-name tag))))
(values name name)))))
; Emit markup for a tag.
; link should be one of:
; :reference if this is a reference or external reference of this tag;
; :definition if this is a definition of this tag;
; nil if this use of the tag should not be cross-referenced.
(defun depict-tag-name (markup-stream tag link)
(assert-true (tag-keyword tag))
2001-04-12 08:31:46 +04:00
(when (eq link :reference)
(setq link (tag-link tag)))
(multiple-value-bind (link-name name) (tag-link-name-and-name tag)
2001-10-19 04:50:40 +04:00
(depict-link (markup-stream link "T-" link-name nil)
2001-04-12 08:31:46 +04:00
(depict-char-style (markup-stream :tag-name)
(depict-item-or-group-list markup-stream name)))))
2001-04-12 08:31:46 +04:00
; Emit markup for a tuple or record type's label, which must be a symbol.
2001-04-12 08:31:46 +04:00
; link should be one of:
; :reference if this is a reference or external reference to this label;
; nil if this use of the label should not be cross-referenced.
(defun depict-label-name (markup-stream world type label link)
(unless (type-has-field world type label)
(error "Type ~A doesn't have label ~A" type label))
(let ((type-name (type-name type)))
(cond
((null type-name) (setq link nil))
((and (eq link :reference) (not (symbol-type-user-defined type-name)))
(setq link :external)))
2001-10-19 04:50:40 +04:00
(depict-link (markup-stream link "D-" (symbol-upper-mixed-case-name type-name) nil)
(depict-char-style (markup-stream :field-name)
(depict markup-stream (symbol-lower-mixed-case-name label))))))
2001-04-12 08:31:46 +04:00
1999-01-30 04:19:00 +03:00
;;; ------------------------------------------------------------------------------------------------------
;;; DEPICTING TYPES
;;; The level argument indicates what kinds of component types may be represented without being placed
;;; in parentheses.
(defparameter *type-level* (make-partial-order))
2001-04-12 08:31:46 +04:00
(def-partial-order-element *type-level* %%primary%%) ;id, tuple, (type)
(def-partial-order-element *type-level* %%suffix%% %%primary%%) ;type[], type{}
(def-partial-order-element *type-level* %%function%% %%suffix%%) ;type x type -> type
(def-partial-order-element *type-level* %%type%% %%function%%) ;type U type, type - type
1999-01-30 04:19:00 +03:00
; Emit markup for the name of a type, which must be a symbol.
; link should be one of:
; :reference if this is a reference of this type name;
; :external if this is an external reference of this type name;
; :definition if this is a definition of this type name;
; nil if this use of the type name should not be cross-referenced.
(defun depict-type-name (markup-stream type-name link)
(let ((name (symbol-upper-mixed-case-name type-name)))
2001-10-19 04:50:40 +04:00
(depict-link (markup-stream link "D-" name nil)
(depict-char-style (markup-stream :domain-name)
(depict markup-stream name)))))
1999-01-30 04:19:00 +03:00
; If level < threshold, depict an opening parenthesis, evaluate body, and depict a closing
; parentheses. Otherwise, just evaluate body.
; Return the result value of body.
(defmacro depict-type-parentheses ((markup-stream level threshold) &body body)
`(depict-optional-parentheses (,markup-stream (partial-order-< ,level ,threshold))
1999-01-30 04:19:00 +03:00
,@body))
; Emit markup for the given type expression. level is non-nil if this is a recursive
; call to depict-type-expr; in this case level indicates the binding level imposed by the
; enclosing type expression.
1999-01-30 04:19:00 +03:00
(defun depict-type-expr (markup-stream world type-expr &optional level)
(cond
((identifier? type-expr)
(let ((type-name (world-intern world type-expr)))
(depict-type-name markup-stream type-expr (if (symbol-type-user-defined type-name) :reference :external))))
2001-04-12 08:31:46 +04:00
((consp type-expr)
(let ((depictor (get (world-intern world (first type-expr)) :depict-type-constructor)))
(apply depictor markup-stream world (or level %%type%%) (rest type-expr))))
2001-04-12 08:31:46 +04:00
(t (error "Bad type expression: ~S" type-expr))))
1999-01-30 04:19:00 +03:00
; (integer-range <low-limit> <high-limit>)
; "{<low-limit> ... <high-limit>}"
(defun depict-integer-range (markup-stream world level low-limit-expr high-limit-expr)
(declare (ignore level))
(let ((low-limit-annotated-expr (nth-value 2 (scan-value world *null-type-env* low-limit-expr)))
(high-limit-annotated-expr (nth-value 2 (scan-value world *null-type-env* high-limit-expr))))
(depict-logical-block (markup-stream 0)
(depict markup-stream "{")
(depict-expression markup-stream world low-limit-annotated-expr %term%)
(depict-space markup-stream)
(depict markup-stream "...")
(depict-break markup-stream 1)
(depict-expression markup-stream world high-limit-annotated-expr %term%)
(depict markup-stream "}"))))
1999-01-30 04:19:00 +03:00
; (-> (<arg-type1> ... <arg-typen>) <result-type>)
; "<arg-type1> x ... x <arg-typen> -> <result-type>"
1999-01-30 04:19:00 +03:00
(defun depict--> (markup-stream world level arg-type-exprs result-type-expr)
(depict-type-parentheses (markup-stream level %%function%%)
1999-01-30 04:19:00 +03:00
(depict-list markup-stream
#'(lambda (markup-stream arg-type-expr)
(depict-type-expr markup-stream world arg-type-expr %%suffix%%))
1999-01-30 04:19:00 +03:00
arg-type-exprs
:separator '(" " :cartesian-product-10 " ")
:empty "()")
(depict markup-stream " " :function-arrow-10 " ")
2001-04-12 08:31:46 +04:00
(if (eq result-type-expr 'void)
(depict markup-stream "()")
(depict-type-expr markup-stream world result-type-expr %%suffix%%))))
1999-01-30 04:19:00 +03:00
; (vector <element-type>)
; "<element-type>[]"
1999-01-30 04:19:00 +03:00
(defun depict-vector (markup-stream world level element-type-expr)
(depict-type-parentheses (markup-stream level %%suffix%%)
(depict-type-expr markup-stream world element-type-expr %%suffix%%)
1999-01-30 04:19:00 +03:00
(depict markup-stream "[]")))
; (range-set <element-type>)
2001-04-12 08:31:46 +04:00
; "<element-type>{}"
(defun depict-set (markup-stream world level element-type-expr)
(depict-type-parentheses (markup-stream level %%suffix%%)
(depict-type-expr markup-stream world element-type-expr %%suffix%%)
2001-04-12 08:31:46 +04:00
(depict markup-stream "{}")))
1999-01-30 04:19:00 +03:00
2001-04-12 08:31:46 +04:00
; (tag <tag> ... <tag>)
; "{<tag> *, ..., <tag> *}"
(defun depict-tag-type (markup-stream world level &rest tag-names)
(declare (ignore level))
1999-01-30 04:19:00 +03:00
(depict-list
markup-stream
2001-04-12 08:31:46 +04:00
#'(lambda (markup-stream tag-name)
(depict-tag-name markup-stream (scan-tag world tag-name) :reference))
2001-04-12 08:31:46 +04:00
tag-names
:indent 1
:prefix "{"
1999-01-30 04:19:00 +03:00
:suffix "}"
2001-04-12 08:31:46 +04:00
:separator ","
:break 1))
1999-01-30 04:19:00 +03:00
2001-04-12 08:31:46 +04:00
; (union <type1> ... <typen>)
; "<type1> U ... U <typen>"
; "{}" if no types are given
(defun depict-union (markup-stream world level &rest type-exprs)
(cond
((endp type-exprs) (depict markup-stream "{}"))
((endp (cdr type-exprs)) (depict-type-expr markup-stream world (first type-exprs) level))
(t (depict-type-parentheses (markup-stream level %%type%%)
(depict-list markup-stream
#'(lambda (markup-stream type-expr)
(depict-type-expr markup-stream world type-expr %%function%%))
type-exprs
:indent 0
:separator '(" " :union-10)
:break 1)))))
1999-01-30 04:19:00 +03:00
; (type-diff <type1> <type2>)
; "<type1> - <type2>"
(defun depict-type-diff (markup-stream world level type-expr1 type-expr2)
(depict-type-parentheses (markup-stream level %%type%%)
(depict-logical-block (markup-stream 0)
(depict-type-expr markup-stream world type-expr1 %%function%%)
(depict-space markup-stream)
(depict markup-stream :minus)
(depict-break markup-stream 1)
(depict-type-expr markup-stream world type-expr2 %%function%%))))
2001-10-17 07:57:51 +04:00
; (writable-cell <element-type>)
; "<element-type>"
(defun depict-writable-cell (markup-stream world level element-type-expr)
(depict-type-expr markup-stream world element-type-expr level))
1999-01-30 04:19:00 +03:00
;;; ------------------------------------------------------------------------------------------------------
;;; DEPICTING EXPRESSIONS
;;; The level argument indicates what kinds of subexpressions may be represented without being placed
;;; in parentheses (or on a separate line for the case of function and if/then/else).
1999-01-30 04:19:00 +03:00
; If primitive-level is not a superset of threshold, depict an opening parenthesis,
; evaluate body, and depict a closing parentheses. Otherwise, just evaluate body.
; Return the result value of body.
(defmacro depict-expr-parentheses ((markup-stream primitive-level threshold) &body body)
`(depict-optional-parentheses (,markup-stream (partial-order-< ,primitive-level ,threshold))
1999-01-30 04:19:00 +03:00
,@body))
; Emit markup for the name of a global variable, which must be a symbol.
; link should be one of:
; :reference if this is a reference of this global variable;
; :external if this is an external reference of this global variable;
; :definition if this is a definition of this global variable;
; nil if this use of the global variable should not be cross-referenced.
(defun depict-global-variable (markup-stream global-name link)
(let ((name (symbol-lower-mixed-case-name global-name)))
(depict-link (markup-stream link "V-" name nil)
(depict-char-style (markup-stream :global-variable)
(depict markup-stream name)))))
1999-01-30 04:19:00 +03:00
; Emit markup for the name of a local variable, which must be a symbol.
(defun depict-local-variable (markup-stream name)
2001-09-25 07:51:24 +04:00
(depict-char-style (markup-stream :variable)
1999-01-30 04:19:00 +03:00
(depict markup-stream (symbol-lower-mixed-case-name name))))
; Emit markup for the name of an action, which must be a symbol.
(defun depict-action-name (markup-stream action-name)
(depict-char-style (markup-stream :action-name)
(depict markup-stream (symbol-upper-mixed-case-name action-name))))
; Emit markup for the float32 or float64 value.
(defun depict-float (markup-stream x exponent-char suffix)
(if (keywordp x)
(depict-tag-name markup-stream x :reference)
(with-standard-io-syntax
(multiple-value-bind (sign s e) (float-to-string-components x exponent-char t)
(when e
(depict markup-stream "("))
(when sign
(depict markup-stream :minus))
(depict markup-stream s)
(when e
(depict markup-stream :cartesian-product-10 "10")
(depict-char-style (markup-stream :superscript)
(depict-integer markup-stream e))
(depict markup-stream ")")))
(depict-char-style (markup-stream :subscript)
(depict-char-style (markup-stream :tag-name)
(depict markup-stream suffix))))))
1999-01-30 04:19:00 +03:00
; Emit markup for the value constant.
(defun depict-constant (markup-stream constant)
(cond
((integerp constant)
(depict-integer markup-stream constant))
((and (typep constant 'double-float) (not (zerop constant)))
(depict-float markup-stream constant #\E "f64"))
((and (typep constant 'short-float) (not (zerop constant)))
(depict-float markup-stream constant #\S "f32"))
1999-01-30 04:19:00 +03:00
((characterp constant)
2001-04-12 08:31:46 +04:00
(depict markup-stream :left-single-quote)
(depict-char-style (markup-stream :character-literal)
1999-01-30 04:19:00 +03:00
(depict-character markup-stream constant nil))
2001-04-12 08:31:46 +04:00
(depict markup-stream :right-single-quote))
1999-01-30 04:19:00 +03:00
((stringp constant)
(depict-string markup-stream constant))
(t (error "Bad constant ~S" constant))))
; Emit markup for the primitive when it is not called in a function call.
(defun depict-primitive (markup-stream primitive)
2001-04-12 08:31:46 +04:00
(unless (eq (primitive-appearance primitive) :global)
1999-01-30 04:19:00 +03:00
(error "Can't depict primitive ~S outside a call" primitive))
(let ((markup (primitive-markup1 primitive))
(external-name (primitive-markup2 primitive)))
(if external-name
(depict-link (markup-stream :external "V-" external-name nil)
(depict-item-or-group-list markup-stream markup))
(depict-item-or-group-list markup-stream markup))))
1999-01-30 04:19:00 +03:00
; Emit markup for the parameters to a function call.
(defun depict-call-parameters (markup-stream world annotated-parameters)
(depict-list markup-stream
#'(lambda (markup-stream parameter)
2001-04-12 08:31:46 +04:00
(depict-expression markup-stream world parameter %expr%))
1999-01-30 04:19:00 +03:00
annotated-parameters
:indent 4
:prefix "("
:suffix ")"
:separator ","
:break 1
:empty nil))
; Emit markup for the function or primitive call. level indicates the binding level imposed
; by the enclosing expression.
(defun depict-call (markup-stream world level annotated-function-expr &rest annotated-arg-exprs)
(if (eq (first annotated-function-expr) 'expr-annotation:primitive)
(let ((primitive (symbol-primitive (second annotated-function-expr))))
(depict-expr-parentheses (markup-stream level (primitive-level primitive))
(ecase (primitive-appearance primitive)
(:global
(depict-primitive markup-stream primitive)
(depict-call-parameters markup-stream world annotated-arg-exprs))
(:infix
(assert-true (= (length annotated-arg-exprs) 2))
(depict-logical-block (markup-stream 0)
2001-04-12 08:31:46 +04:00
(depict-expression markup-stream world (first annotated-arg-exprs) (primitive-level1 primitive))
(let ((spaces (and (primitive-markup2 primitive) (not *compact-infix*))))
1999-01-30 04:19:00 +03:00
(when spaces
(depict-space markup-stream))
(depict-item-or-group-list markup-stream (primitive-markup1 primitive))
(when spaces
(depict-break markup-stream 1)))
2001-04-12 08:31:46 +04:00
(depict-expression markup-stream world (second annotated-arg-exprs) (primitive-level2 primitive))))
1999-01-30 04:19:00 +03:00
(:unary
(assert-true (= (length annotated-arg-exprs) 1))
(depict-item-or-group-list markup-stream (primitive-markup1 primitive))
2001-04-12 08:31:46 +04:00
(depict-expression markup-stream world (first annotated-arg-exprs) (primitive-level1 primitive))
1999-01-30 04:19:00 +03:00
(depict-item-or-group-list markup-stream (primitive-markup2 primitive)))
(:phantom
(assert-true (= (length annotated-arg-exprs) 1))
2001-04-12 08:31:46 +04:00
(depict-expression markup-stream world (first annotated-arg-exprs) level)))))
(depict-expr-parentheses (markup-stream level %suffix%)
2001-04-12 08:31:46 +04:00
(depict-expression markup-stream world annotated-function-expr %suffix%)
1999-01-30 04:19:00 +03:00
(depict-call-parameters markup-stream world annotated-arg-exprs))))
; Emit markup for the reference to the action on the given general grammar symbol.
(defun depict-action-reference (markup-stream action-name general-grammar-symbol &optional index)
(let ((action-default (default-action? action-name)))
(unless action-default
(depict-action-name markup-stream action-name)
(depict markup-stream :action-begin))
(depict-general-grammar-symbol markup-stream general-grammar-symbol :reference index)
(unless action-default
(depict markup-stream :action-end))))
1999-01-30 04:19:00 +03:00
2001-04-12 08:31:46 +04:00
; Emit markup for the given annotated value expression. level indicates the binding level imposed
1999-01-30 04:19:00 +03:00
; by the enclosing expression.
2001-04-12 08:31:46 +04:00
(defun depict-expression (markup-stream world annotated-expr level)
1999-01-30 04:19:00 +03:00
(let ((annotation (first annotated-expr))
(args (rest annotated-expr)))
(ecase annotation
(expr-annotation:constant (depict-constant markup-stream (first args)))
(expr-annotation:primitive (depict-primitive markup-stream (symbol-primitive (first args))))
2001-04-12 08:31:46 +04:00
(expr-annotation:tag (depict-tag-name markup-stream (first args) :reference))
1999-01-30 04:19:00 +03:00
(expr-annotation:local (depict-local-variable markup-stream (first args)))
(expr-annotation:global (depict-global-variable markup-stream (first args) :reference))
1999-01-30 04:19:00 +03:00
(expr-annotation:call (apply #'depict-call markup-stream world level args))
(expr-annotation:action (apply #'depict-action-reference markup-stream args))
(expr-annotation:special-form
2001-04-12 08:31:46 +04:00
(apply (get (first args) :depict-special-form) markup-stream world level (rest args))))))
1999-01-30 04:19:00 +03:00
;;; ------------------------------------------------------------------------------------------------------
;;; DEPICTING SPECIAL FORMS
2001-04-12 08:31:46 +04:00
; (todo)
(defun depict-todo (markup-stream world level)
(declare (ignore world level))
2001-04-12 08:31:46 +04:00
(depict markup-stream "????"))
; (bottom)
(defun depict-bottom-expr (markup-stream world level)
(declare (ignore world level))
(warn "Depicting a bottom expression")
(depict markup-stream :bottom-10))
; (hex <integer> [<length>])
(defun depict-hex (markup-stream world level n length)
(if (minusp n)
(progn
(depict markup-stream "-")
(depict-hex markup-stream world level (- n) length))
(depict markup-stream (format nil "0x~V,'0X" length n))))
2001-04-12 08:31:46 +04:00
; (expt <base> <exponent>)
(defun depict-expt (markup-stream world level base-annotated-expr exponent-annotated-expr)
(depict-expr-parentheses (markup-stream level %prefix%)
(depict-expression markup-stream world base-annotated-expr %primary%)
(depict-char-style (markup-stream :superscript)
(let ((*compact-infix* t))
(depict-expression markup-stream world exponent-annotated-expr %term%)))))
2001-04-12 08:31:46 +04:00
; (= <expr1> <expr2> [<type>])
; (/= <expr1> <expr2> [<type>])
; (< <expr1> <expr2> [<type>])
; (> <expr1> <expr2> [<type>])
; (<= <expr1> <expr2> [<type>])
; (>= <expr1> <expr2> [<type>])
(defun depict-comparison (markup-stream world level order annotated-expr1 annotated-expr2)
(depict-expr-parentheses (markup-stream level %relational%)
(depict-logical-block (markup-stream 0)
(depict-expression markup-stream world annotated-expr1 %term%)
(depict-space markup-stream)
(depict markup-stream order)
(depict-break markup-stream 1)
(depict-expression markup-stream world annotated-expr2 %term%))))
1999-01-30 04:19:00 +03:00
2001-04-12 08:31:46 +04:00
; (cascade <type> <expr1> <order1> <expr2> <order2> ... <ordern-1> <exprn>)
(defun depict-cascade (markup-stream world level annotated-expr1 &rest orders-and-exprs)
(depict-expr-parentheses (markup-stream level %relational%)
(depict-logical-block (markup-stream 0)
(depict-expression markup-stream world annotated-expr1 %term%)
(do ()
((endp orders-and-exprs))
(depict-space markup-stream)
(depict markup-stream (pop orders-and-exprs))
(depict-break markup-stream 1)
(depict-expression markup-stream world (pop orders-and-exprs) %term%)))))
; (and <expr> ... <expr>)
; (or <expr> ... <expr>)
; (xor <expr> ... <expr>)
(defun depict-and-or-xor (markup-stream world level op annotated-expr &rest annotated-exprs)
(if annotated-exprs
(depict-expr-parentheses (markup-stream level %logical%)
(depict-logical-block (markup-stream 0)
(depict-expression markup-stream world annotated-expr %relational%)
2001-04-12 08:31:46 +04:00
(dolist (annotated-expr annotated-exprs)
(depict-semantic-keyword markup-stream op :before)
(depict-break markup-stream 1)
(depict-expression markup-stream world annotated-expr %relational%))))
2001-04-12 08:31:46 +04:00
(depict-expression markup-stream world annotated-expr level)))
1999-01-30 04:19:00 +03:00
2001-11-27 05:38:39 +03:00
; (lambda ((<var1> <type1> [:var | :unused]) ... (<varn> <typen> [:var | :unused])) <result-type> . <statements>)
(defun depict-lambda (markup-stream world level arg-binding-exprs result-type-expr &rest body-annotated-stmts)
(declare (ignore markup-stream world level arg-binding-exprs result-type-expr body-annotated-stmts))
(error "Depiction of raw lambdas not supported"))
#|
2001-04-12 08:31:46 +04:00
(defun depict-lambda (markup-stream world level arg-binding-exprs result-type-expr &rest body-annotated-stmts)
(depict-expr-parentheses (markup-stream level %expr%)
(depict-logical-block (markup-stream 0)
(depict-semantic-keyword markup-stream 'proc nil)
2001-04-12 08:31:46 +04:00
(depict-function-signature markup-stream world arg-binding-exprs result-type-expr t)
(depict-function-body markup-stream world nil :statement body-annotated-stmts))))
|#
2001-04-12 08:31:46 +04:00
; (if <condition-expr> <true-expr> <false-expr>)
(defun depict-if-expr (markup-stream world level condition-annotated-expr true-annotated-expr false-annotated-expr)
(depict-expr-parentheses (markup-stream level %expr%)
(depict-expression markup-stream world condition-annotated-expr %logical%)
(depict markup-stream " ?")
(depict-logical-block (markup-stream 4)
2001-04-12 08:31:46 +04:00
(depict-break markup-stream 1)
(depict-expression markup-stream world true-annotated-expr %logical%)
(depict markup-stream " :")
2001-04-12 08:31:46 +04:00
(depict-break markup-stream 1)
(depict-expression markup-stream world false-annotated-expr %logical%))))
1999-01-30 04:19:00 +03:00
;;; Vectors
; (vector <element-expr> <element-expr> ... <element-expr>)
; (vector-of <element-type> <element-expr> ... <element-expr>)
2001-04-12 08:31:46 +04:00
(defun depict-vector-expr (markup-stream world level &rest element-annotated-exprs)
1999-01-30 04:19:00 +03:00
(declare (ignore level))
2001-04-12 08:31:46 +04:00
(if element-annotated-exprs
(depict-list markup-stream
#'(lambda (markup-stream element-annotated-expr)
(depict-expression markup-stream world element-annotated-expr %expr%))
element-annotated-exprs
:indent 1
:prefix :vector-begin
:suffix :vector-end
:separator ","
:break 1)
(depict markup-stream :empty-vector)))
1999-01-30 04:19:00 +03:00
(defun depict-special-function (markup-stream world name-str &rest arg-annotated-exprs)
(depict-link (markup-stream :external "V-" name-str nil)
(depict-char-style (markup-stream :global-variable)
(depict markup-stream name-str)))
1999-01-30 04:19:00 +03:00
(depict-call-parameters markup-stream world arg-annotated-exprs))
; (repeat <element-type> <element-expr> <count-expr>)
(defun depict-repeat (markup-stream world level element-annotated-expr count-annotated-expr)
(declare (ignore level))
(depict-special-function markup-stream world "repeat" element-annotated-expr count-annotated-expr))
#|
(defun depict-subscript-type-expr (markup-stream world type-expr)
(depict-char-style (markup-stream 'sub)
(depict-type-expr markup-stream world type-expr)))
|#
1999-01-30 04:19:00 +03:00
; (nth <vector-expr> <n-expr>)
(defun depict-nth (markup-stream world level vector-annotated-expr n-annotated-expr)
(depict-expr-parentheses (markup-stream level %suffix%)
2001-04-12 08:31:46 +04:00
(depict-expression markup-stream world vector-annotated-expr %suffix%)
1999-01-30 04:19:00 +03:00
(depict markup-stream "[")
2001-04-12 08:31:46 +04:00
(depict-expression markup-stream world n-annotated-expr %expr%)
1999-01-30 04:19:00 +03:00
(depict markup-stream "]")))
; (subseq <vector-expr> <low-expr> [<high-expr>])
(defun depict-subseq (markup-stream world level vector-annotated-expr low-annotated-expr high-annotated-expr)
(depict-expr-parentheses (markup-stream level %suffix%)
2001-04-12 08:31:46 +04:00
(depict-expression markup-stream world vector-annotated-expr %suffix%)
(depict-logical-block (markup-stream 4)
(depict markup-stream "[")
2001-04-12 08:31:46 +04:00
(depict-expression markup-stream world low-annotated-expr %term%)
(depict markup-stream " ...")
(when high-annotated-expr
(depict-break markup-stream 1)
2001-04-12 08:31:46 +04:00
(depict-expression markup-stream world high-annotated-expr %term%))
(depict markup-stream "]"))))
2001-12-20 04:07:22 +03:00
; (cons <value-expr> <vector-expr>)
(defun depict-cons (markup-stream world level value-annotated-expr vector-annotated-expr)
(depict-expr-parentheses (markup-stream level %term%)
(depict-logical-block (markup-stream 0)
(depict markup-stream :vector-begin)
(depict-expression markup-stream world value-annotated-expr %expr%)
(depict markup-stream :vector-end " " :vector-append)
(depict-break markup-stream 1)
(depict-expression markup-stream world vector-annotated-expr %term%))))
; (append <vector-expr> <vector-expr> ... <vector-expr>)
(defun depict-append (markup-stream world level vector1-annotated-expr &rest vector-annotated-exprs)
2001-04-12 08:31:46 +04:00
(depict-expr-parentheses (markup-stream level %term%)
(depict-logical-block (markup-stream 0)
(depict-expression markup-stream world vector1-annotated-expr %term%)
(dolist (vector-annotated-expr vector-annotated-exprs)
(depict markup-stream " " :vector-append)
(depict-break markup-stream 1)
(depict-expression markup-stream world vector-annotated-expr %term%)))))
2001-04-12 08:31:46 +04:00
; (set-nth <vector-expr> <n-expr> <value-expr>)
(defun depict-set-nth (markup-stream world level vector-annotated-expr n-annotated-expr value-annotated-expr)
(depict-expr-parentheses (markup-stream level %suffix%)
2001-04-12 08:31:46 +04:00
(depict-expression markup-stream world vector-annotated-expr %suffix%)
(depict-logical-block (markup-stream 4)
(depict markup-stream "[")
2001-04-12 08:31:46 +04:00
(depict-expression markup-stream world n-annotated-expr %term%)
(depict markup-stream " \\")
(depict-break markup-stream 1)
2001-04-12 08:31:46 +04:00
(depict-expression markup-stream world value-annotated-expr %term%)
(depict markup-stream "]"))))
;;; Sets
; (list-set <element-expr> ... <element-expr>)
; (list-set-of <element-type> <element-expr> ... <element-expr>)
(defun depict-list-set-expr (markup-stream world level &rest element-annotated-exprs)
(declare (ignore level))
(depict-list markup-stream
#'(lambda (markup-stream element-annotated-expr)
(depict-expression markup-stream world element-annotated-expr %expr%))
element-annotated-exprs
:indent 1
:prefix "{"
:suffix "}"
:separator ","
:break 1
:empty nil))
; (range-set-of-ranges <element-type> <low-expr> <high-expr> ... <low-expr> <high-expr>)
(defun depict-range-set-of-ranges (markup-stream world level &rest element-annotated-exprs)
(declare (ignore level))
(labels
((combine-exprs (element-annotated-exprs)
(if (endp element-annotated-exprs)
nil
(acons (first element-annotated-exprs) (second element-annotated-exprs)
(combine-exprs (cddr element-annotated-exprs))))))
(depict-list markup-stream
#'(lambda (markup-stream element-annotated-expr-range)
(let ((element-annotated-expr1 (car element-annotated-expr-range))
(element-annotated-expr2 (cdr element-annotated-expr-range)))
2001-04-12 08:31:46 +04:00
(depict-expression markup-stream world element-annotated-expr1 %term%)
(when element-annotated-expr2
(depict markup-stream " ...")
(depict-break markup-stream 1)
2001-04-12 08:31:46 +04:00
(depict-expression markup-stream world element-annotated-expr2 %term%))))
(combine-exprs element-annotated-exprs)
:indent 1
:prefix "{"
:suffix "}"
:separator ","
:break 1
2001-04-12 08:31:46 +04:00
:empty nil)))
1999-01-30 04:19:00 +03:00
; (set* <set-expr> <set-expr>)
(defun depict-set* (markup-stream world level set1-annotated-expr set2-annotated-expr)
(depict-expr-parentheses (markup-stream level %factor%)
(depict-logical-block (markup-stream 0)
(depict-expression markup-stream world set1-annotated-expr %factor%)
(depict markup-stream " " :intersection-10)
(depict-break markup-stream 1)
(depict-expression markup-stream world set2-annotated-expr %factor%))))
; (set+ <set-expr> <set-expr>)
(defun depict-set+ (markup-stream world level set1-annotated-expr set2-annotated-expr)
(depict-expr-parentheses (markup-stream level %term%)
(depict-logical-block (markup-stream 0)
(depict-expression markup-stream world set1-annotated-expr %term%)
(depict markup-stream " " :union-10)
(depict-break markup-stream 1)
(depict-expression markup-stream world set2-annotated-expr %term%))))
; (set- <set-expr> <set-expr>)
(defun depict-set- (markup-stream world level set1-annotated-expr set2-annotated-expr)
(depict-expr-parentheses (markup-stream level %term%)
(depict-logical-block (markup-stream 0)
(depict-expression markup-stream world set1-annotated-expr %term%)
(depict markup-stream " " :minus)
(depict-break markup-stream 1)
(depict-expression markup-stream world set2-annotated-expr %factor%))))
; (set-in <elt-expr> <set-expr>)
; (set-not-in <elt-expr> <set-expr>)
(defun depict-set-in (markup-stream world level op elt-annotated-expr set-annotated-expr)
(depict-expr-parentheses (markup-stream level %relational%)
(depict-logical-block (markup-stream 0)
(depict-expression markup-stream world elt-annotated-expr %term%)
(depict markup-stream " " op)
(depict-break markup-stream 1)
(depict-expression markup-stream world set-annotated-expr %term%))))
; (elt-of <elt-expr>)
(defun depict-elt-of (markup-stream world level set-annotated-expr)
(depict-expr-parentheses (markup-stream level %expr%)
(depict markup-stream "any element of ")
(depict-expression markup-stream world set-annotated-expr %prefix%)))
2002-06-12 04:23:45 +04:00
; (unique-elt-of <elt-expr> [<var> <condition-expr>])
(defun depict-unique-elt-of (markup-stream world level set-annotated-expr &optional var condition-annotated-expr)
(depict-expr-parentheses (markup-stream level %expr%)
2002-06-12 04:23:45 +04:00
(cond
(var
(depict markup-stream "the one element ")
(depict-local-variable markup-stream var)
(depict markup-stream " " :member-10 " ")
(depict-expression markup-stream world set-annotated-expr %term%)
(depict markup-stream " that satisfies ")
(depict-expression markup-stream world condition-annotated-expr %logical%))
(t
(depict markup-stream "the one element of ")
(depict-expression markup-stream world set-annotated-expr %prefix%)))))
;;; Vectors or Sets
(defun depict-empty-set-or-vector (markup-stream kind)
(ecase kind
((:string :vector) (depict markup-stream :empty-vector))
((:list-set :range-set) (depict markup-stream "{}"))))
; (empty <vector-or-set-expr>)
(defun depict-empty (markup-stream world level kind vector-annotated-expr)
(depict-expr-parentheses (markup-stream level %relational%)
(depict-expression markup-stream world vector-annotated-expr %term%)
(depict markup-stream " = ")
(depict-empty-set-or-vector markup-stream kind)))
; (nonempty <vector-or-set-expr>)
(defun depict-nonempty (markup-stream world level kind vector-annotated-expr)
(depict-expr-parentheses (markup-stream level %relational%)
(depict-expression markup-stream world vector-annotated-expr %term%)
(depict markup-stream " " :not-equal " ")
(depict-empty-set-or-vector markup-stream kind)))
; (length <vector-or-set-expr>)
(defun depict-length (markup-stream world level vector-annotated-expr)
(declare (ignore level))
(depict markup-stream "|")
(depict-expression markup-stream world vector-annotated-expr %expr%)
(depict markup-stream "|"))
; (some <vector-or-set-expr> <var> <condition-expr>)
; (every <vector-or-set-expr> <var> <condition-expr>)
(defun depict-some (markup-stream world level keyword collection-annotated-expr var condition-annotated-expr)
(depict-expr-parentheses (markup-stream level %expr%)
(depict-logical-block (markup-stream 2)
(depict-semantic-keyword markup-stream keyword :after)
(depict-local-variable markup-stream var)
(depict markup-stream " " :member-10 " ")
(depict-expression markup-stream world collection-annotated-expr %term%)
(depict-semantic-keyword markup-stream 'satisfies :before)
(depict-break markup-stream 1)
(depict-expression markup-stream world condition-annotated-expr %logical%))))
; (map <vector-or-set-expr> <var> <value-expr> [<condition-expr>])
(defun depict-map (markup-stream world level collection-kind collection-annotated-expr var value-annotated-expr &optional condition-annotated-expr)
(declare (ignore level))
(multiple-value-bind (open bar close)
(ecase collection-kind
((:string :vector) (values :vector-begin :vector-construct :vector-end))
((:list-set :range-set) (values "{" "|" "}")))
(depict-logical-block (markup-stream 2)
(depict markup-stream open)
(depict-expression markup-stream world value-annotated-expr %expr%)
(depict markup-stream " " bar)
(depict-break markup-stream 1)
(depict markup-stream :for-all-10)
(depict-local-variable markup-stream var)
(depict markup-stream " " :member-10 " ")
(depict-expression markup-stream world collection-annotated-expr %term%)
(when condition-annotated-expr
(depict-semantic-keyword markup-stream 'such :before)
(depict-semantic-keyword markup-stream 'that :before)
(depict-break markup-stream 1)
(depict-expression markup-stream world condition-annotated-expr %logical%))
(depict markup-stream close))))
;;; Tuples and Records
2001-04-12 08:31:46 +04:00
; (new <type> <field-expr1> ... <field-exprn>)
2002-04-24 04:30:02 +04:00
; A <field-expr> may be :uninit to indicate an uninitialized field, which must have kind :opt-const or :opt-var.
(defun depict-new (markup-stream world level type type-name &rest annotated-exprs)
(let* ((tag (type-tag type))
(mutable (tag-mutable tag)))
2001-04-12 08:31:46 +04:00
(flet
((depict-tag-and-args (markup-stream)
(let ((fields (tag-fields tag)))
(assert-true (= (length fields) (length annotated-exprs)))
(depict-type-name markup-stream type-name (if (symbol-type-user-defined (world-intern world type-name)) :reference :external))
2001-04-12 08:31:46 +04:00
(if (tag-keyword tag)
(assert-true (null annotated-exprs))
2002-04-24 04:30:02 +04:00
(let ((fields-and-parameters (mapcan #'(lambda (field parameter)
(and (not (eq parameter :uninit))
(list (cons field parameter))))
fields annotated-exprs)))
(depict-list markup-stream
#'(lambda (markup-stream field-and-parameter)
(depict-logical-block (markup-stream 4)
(depict-label-name markup-stream world type (field-label (car field-and-parameter)) nil)
(depict markup-stream ":")
(depict-break markup-stream 1)
2002-04-24 04:30:02 +04:00
(depict-expression markup-stream world (cdr field-and-parameter) %expr%)))
fields-and-parameters
:indent 4
:prefix (if mutable :record-begin :tuple-begin)
:suffix (if mutable :record-end :tuple-end)
:separator ","
:break 1
:empty nil))))))
2001-04-12 08:31:46 +04:00
(if mutable
(depict-expr-parentheses (markup-stream level %prefix%)
(depict-logical-block (markup-stream 4)
(depict-semantic-keyword markup-stream 'new :after)
(depict-tag-and-args markup-stream)))
(depict-tag-and-args markup-stream)))))
1999-01-30 04:19:00 +03:00
2001-04-12 08:31:46 +04:00
; (& <label> <record-expr>)
2002-04-24 04:30:02 +04:00
; (&opt <label> <record-expr>)
(defun depict-& (markup-stream world level record-type label annotated-expr)
(depict-expr-parentheses (markup-stream level %suffix%)
2001-04-12 08:31:46 +04:00
(depict-expression markup-stream world annotated-expr %suffix%)
1999-01-30 04:19:00 +03:00
(depict markup-stream ".")
(depict-label-name markup-stream world record-type label :reference)))
1999-01-30 04:19:00 +03:00
; (set-field <expr> <label> <field-expr> ... <label> <field-expr>)
(defun depict-set-field (markup-stream world level record-type record-annotated-expr &rest annotated-fields)
(let* ((type-name (type-name record-type))
(tag (type-tag record-type))
(mutable (tag-mutable tag)))
(unless type-name
(error "set-field on anonymous type"))
(flet
((depict-tag-and-args (markup-stream)
(depict-type-name markup-stream type-name :reference)
(depict-list markup-stream
#'(lambda (markup-stream parameter)
(depict-logical-block (markup-stream 4)
(if parameter
(let ((label (first parameter))
(field-annotated-expr (second parameter)))
(depict-label-name markup-stream world record-type label nil)
(depict markup-stream ":")
(depict-break markup-stream 1)
(depict-expression markup-stream world field-annotated-expr %expr%))
(progn
(depict markup-stream "other fields from")
(depict-break markup-stream 1)
(depict-expression markup-stream world record-annotated-expr %expr%)))))
(append annotated-fields '(nil))
:indent 4
:prefix (if mutable :record-begin :tuple-begin)
:suffix (if mutable :record-end :tuple-end)
:separator ","
:break 1)))
(if mutable
(depict-expr-parentheses (markup-stream level %prefix%)
(depict-logical-block (markup-stream 4)
(depict-semantic-keyword markup-stream 'new :after)
(depict-tag-and-args markup-stream)))
(depict-tag-and-args markup-stream)))))
2001-04-12 08:31:46 +04:00
;;; Unions
(defun depict-in-or-not-in (markup-stream world level value-annotated-expr type type-expr op single-op)
(depict-expr-parentheses (markup-stream level %relational%)
(depict-expression markup-stream world value-annotated-expr %term%)
1999-01-30 04:19:00 +03:00
(depict-space markup-stream)
2001-04-12 08:31:46 +04:00
(if (and (eq (type-kind type) :tag) (tag-keyword (type-tag type)))
(progn
(depict markup-stream single-op)
(depict-space markup-stream)
(depict-tag-name markup-stream (type-tag type) :reference))
(progn
(depict markup-stream op)
(depict-space markup-stream)
(depict-type-expr markup-stream world type-expr)))))
; (in <type> <expr>)
(defun depict-in (markup-stream world level value-annotated-expr type type-expr)
(depict-in-or-not-in markup-stream world level value-annotated-expr type type-expr :member-10 "="))
1999-01-30 04:19:00 +03:00
2001-04-12 08:31:46 +04:00
; (not-in <type> <expr>)
(defun depict-not-in (markup-stream world level value-annotated-expr type type-expr)
(depict-in-or-not-in markup-stream world level value-annotated-expr type type-expr :not-member-10 :not-equal))
1999-01-30 04:19:00 +03:00
2002-04-24 04:30:02 +04:00
; (assert-in <expr> <type>)
; (assert-not-in <expr> <type>)
(defun depict-assert-in (markup-stream world level value-annotated-expr type type-expr)
(declare (ignore type type-expr))
(depict-expression markup-stream world value-annotated-expr level))
2001-10-17 07:57:51 +04:00
;;; Writable Cells
; (writable-cell-of <element-type>)
(defun depict-writable-cell-of (markup-stream world level)
(declare (ignore markup-stream world level))
(error "No notation to creation of a writable cell"))
2001-04-12 08:31:46 +04:00
;;; ------------------------------------------------------------------------------------------------------
;;; DEPICTING STATEMENTS
(defmacro depict-statement-block (markup-stream &body body)
`(depict-division-block (,markup-stream :statement '(:statement) '(:level))
,@body))
2001-04-12 08:31:46 +04:00
(defmacro depict-statement-block-using ((markup-stream paragraph-style) &body body)
`(depict-division-block (,markup-stream ,paragraph-style (list :statement ,paragraph-style) '(:level))
,@body))
; Emit markup for the annotated statement. The markup stream should be collecting divisions.
; If semicolon is true, depict a semicolon after the statement.
(defun depict-statement (markup-stream world semicolon last-paragraph-style annotated-stmt)
(apply (get (first annotated-stmt) :depict-statement) markup-stream world semicolon last-paragraph-style (rest annotated-stmt)))
; If semicolon is true, depict a semicolon.
(defun depict-semicolon (markup-stream semicolon)
(when semicolon
(depict markup-stream ";")))
; Emit markup for the block of annotated statements indented by one level. The markup stream
; should be collecting divisions.
; If semicolon is true, depict a semicolon after the statements.
(defun depict-statements (markup-stream world semicolon last-paragraph-style annotated-stmts)
(depict-division-style (markup-stream :level)
(if annotated-stmts
(mapl #'(lambda (annotated-stmts)
(depict-statement markup-stream
world
(or (rest annotated-stmts) semicolon)
(if (rest annotated-stmts) :statement last-paragraph-style)
(first annotated-stmts)))
annotated-stmts)
(depict-paragraph (markup-stream :statement)
(depict-semantic-keyword markup-stream 'nothing nil)
(depict-semicolon markup-stream semicolon)))))
1999-01-30 04:19:00 +03:00
; (// . <styled-text>)
2001-11-30 05:22:37 +03:00
; (/* . <styled-text>)
(defun depict-// (markup-stream world semicolon last-paragraph-style &rest text)
(declare (ignore world semicolon))
(depict-division-style (markup-stream :wrap)
(depict-text-paragraph markup-stream last-paragraph-style text)))
2001-11-30 05:22:37 +03:00
; (*/)
; These should have been filtered out by scan-/*, so any that remain are errors.
(defun depict-*/ (markup-stream world semicolon last-paragraph-style)
(declare (ignore markup-stream world semicolon last-paragraph-style))
(error "Unmatched */"))
; (bottom)
(defun depict-bottom (markup-stream world semicolon last-paragraph-style &rest text)
(declare (ignore world semicolon))
(depict-division-style (markup-stream :wrap)
(depict-text-paragraph markup-stream last-paragraph-style (or text (list :bottom-10)))))
(defvar *assertion-depictor*)
; (assert <condition-expr> . <styled-text>)
; <styled-text> can contain the entry (:assertion) to depict <condition-expr>.
(defun depict-assert (markup-stream world semicolon last-paragraph-style condition-annotated-expr &rest text)
(declare (ignore semicolon))
(let ((*assertion-depictor* #'(lambda (markup-stream) (depict-expression markup-stream world condition-annotated-expr %expr%))))
(depict-division-style (markup-stream :wrap)
(depict-text-paragraph markup-stream last-paragraph-style text))))
; (:assertion)
(defun depict-assertion (markup-stream)
(depict-char-style (markup-stream :nowrap)
(funcall *assertion-depictor* markup-stream)))
(setf (styled-text-depictor :assertion) #'depict-assertion)
2001-04-12 08:31:46 +04:00
; (exec <expr>)
(defun depict-exec (markup-stream world semicolon last-paragraph-style annotated-expr)
(depict-paragraph (markup-stream last-paragraph-style)
(depict-expression markup-stream world annotated-expr %expr%)
(depict-semicolon markup-stream semicolon)))
1999-01-30 04:19:00 +03:00
2001-04-12 08:31:46 +04:00
; (const <name> <type> <value>)
; (var <name> <type> <value>)
(defun depict-var (markup-stream world semicolon last-paragraph-style name type-expr &optional value-annotated-expr)
(depict-paragraph (markup-stream last-paragraph-style)
(depict-local-variable markup-stream name)
(depict markup-stream ": ")
(depict-type-expr markup-stream world type-expr)
(when value-annotated-expr
(depict markup-stream " " :assign-10)
(depict-logical-block (markup-stream 6)
(depict-break markup-stream 1)
(depict-expression markup-stream world value-annotated-expr %expr%)))
(depict-semicolon markup-stream semicolon)))
1999-01-30 04:19:00 +03:00
2001-11-27 05:38:39 +03:00
; (function (<name> (<var1> <type1> [:var | :unused]) ... (<varn> <typen> [:var | :unused])) <result-type> . <statements>)
(defun depict-function (markup-stream world semicolon last-paragraph-style name-and-arg-binding-exprs result-type-expr &rest body-annotated-stmts)
(depict-statement-block-using (markup-stream last-paragraph-style)
(depict-paragraph (markup-stream :statement)
(depict-semantic-keyword markup-stream 'proc :after)
(depict-local-variable markup-stream (first name-and-arg-binding-exprs))
(depict-function-signature markup-stream world (rest name-and-arg-binding-exprs) result-type-expr t))
(depict-function-body markup-stream world semicolon last-paragraph-style body-annotated-stmts)))
1999-01-30 04:19:00 +03:00
2001-04-12 08:31:46 +04:00
; (<- <name> <value>)
2001-10-17 07:57:51 +04:00
(defun depict-<- (markup-stream world semicolon last-paragraph-style name value-annotated-expr global)
(depict-paragraph (markup-stream last-paragraph-style)
2001-10-17 07:57:51 +04:00
(if global
(depict-global-variable markup-stream name :reference)
(depict-local-variable markup-stream name))
(depict markup-stream " " :assign-10)
(depict-logical-block (markup-stream 6)
(depict-break markup-stream 1)
(depict-expression markup-stream world value-annotated-expr %expr%)
(depict-semicolon markup-stream semicolon))))
1999-01-30 04:19:00 +03:00
2001-10-27 06:40:41 +04:00
; (&= <label> <record-expr> <value-expr>)
2002-04-24 04:30:02 +04:00
; (&const= <label> <record-expr> <value-expr>)
(defun depict-&= (markup-stream world semicolon last-paragraph-style record-type label record-annotated-expr value-annotated-expr)
(depict-paragraph (markup-stream last-paragraph-style)
(depict-& markup-stream world %unary% record-type label record-annotated-expr)
(depict markup-stream " " :assign-10)
(depict-logical-block (markup-stream 6)
(depict-break markup-stream 1)
(depict-expression markup-stream world value-annotated-expr %expr%)
(depict-semicolon markup-stream semicolon))))
1999-01-30 04:19:00 +03:00
2001-10-17 07:57:51 +04:00
; (action<- <action> <value>)
(defun depict-action<- (markup-stream world semicolon last-paragraph-style action-annotated-expr value-annotated-expr)
(depict-paragraph (markup-stream last-paragraph-style)
(depict-expression markup-stream world action-annotated-expr %expr%)
(depict markup-stream " " :assign-10)
(depict-logical-block (markup-stream 6)
(depict-break markup-stream 1)
(depict-expression markup-stream world value-annotated-expr %expr%)
(depict-semicolon markup-stream semicolon))))
2001-04-12 08:31:46 +04:00
; (return [<value-expr>])
(defun depict-return (markup-stream world semicolon last-paragraph-style value-annotated-expr)
(depict-paragraph (markup-stream last-paragraph-style)
(depict-logical-block (markup-stream 4)
(depict-semantic-keyword markup-stream 'return nil)
(when value-annotated-expr
(depict-space markup-stream)
(depict-expression markup-stream world value-annotated-expr %expr%))
(depict-semicolon markup-stream semicolon))))
2001-04-12 08:31:46 +04:00
; (cond (<condition-expr> . <statements>) ... (<condition-expr> . <statements>) [(nil . <statements>)])
(defun depict-cond (markup-stream world semicolon last-paragraph-style &rest annotated-cases)
2001-04-12 08:31:46 +04:00
(assert-true (and annotated-cases (caar annotated-cases)))
(depict-statement-block-using (markup-stream last-paragraph-style)
2001-04-12 08:31:46 +04:00
(do ((annotated-cases annotated-cases (rest annotated-cases))
(else nil t))
((endp annotated-cases))
(let ((annotated-case (first annotated-cases)))
(depict-statement-block markup-stream
(depict-paragraph (markup-stream :statement)
(let ((condition-annotated-expr (first annotated-case)))
(if condition-annotated-expr
(progn
(depict-semantic-keyword markup-stream (if else 'elsif 'if) :after)
(depict-logical-block (markup-stream 4)
(depict-expression markup-stream world condition-annotated-expr %expr%))
(depict-semantic-keyword markup-stream 'then :before))
(depict-semantic-keyword markup-stream 'else nil))))
(depict-statements markup-stream world nil :statement (rest annotated-case)))))
(depict-paragraph (markup-stream last-paragraph-style)
(depict-semantic-keyword markup-stream 'end :after)
(depict-semantic-keyword markup-stream 'if nil)
(depict-semicolon markup-stream semicolon))))
2001-04-12 08:31:46 +04:00
; (while <condition-expr> . <statements>)
(defun depict-while (markup-stream world semicolon last-paragraph-style condition-annotated-expr &rest loop-annotated-stmts)
(depict-statement-block-using (markup-stream last-paragraph-style)
(depict-statement-block markup-stream
(depict-paragraph (markup-stream :statement)
(depict-semantic-keyword markup-stream 'while :after)
(depict-logical-block (markup-stream 4)
(depict-expression markup-stream world condition-annotated-expr %expr%))
(depict-semantic-keyword markup-stream 'do :before))
(depict-statements markup-stream world nil :statement loop-annotated-stmts))
(depict-paragraph (markup-stream last-paragraph-style)
(depict-semantic-keyword markup-stream 'end :after)
(depict-semantic-keyword markup-stream 'while nil)
(depict-semicolon markup-stream semicolon))))
2001-04-12 08:31:46 +04:00
2002-01-17 04:28:30 +03:00
; (for-each <vector-or-set-expr> <var> . <statements>)
(defun depict-for-each (markup-stream world semicolon last-paragraph-style collection-annotated-expr var &rest loop-annotated-stmts)
(depict-statement-block-using (markup-stream last-paragraph-style)
(depict-statement-block markup-stream
(depict-paragraph (markup-stream :statement)
(depict-semantic-keyword markup-stream 'for :after)
(depict-semantic-keyword markup-stream 'each :after)
(depict-logical-block (markup-stream 4)
(depict-local-variable markup-stream var)
(depict markup-stream " " :member-10 " ")
(depict-expression markup-stream world collection-annotated-expr %term%))
(depict-semantic-keyword markup-stream 'do :before))
(depict-statements markup-stream world nil :statement loop-annotated-stmts))
(depict-paragraph (markup-stream last-paragraph-style)
(depict-semantic-keyword markup-stream 'end :after)
(depict-semantic-keyword markup-stream 'for :after)
(depict-semantic-keyword markup-stream 'each nil)
(depict-semicolon markup-stream semicolon))))
2001-04-12 08:31:46 +04:00
; (throw <value-expr>)
(defun depict-throw (markup-stream world semicolon last-paragraph-style value-annotated-expr)
(depict-paragraph (markup-stream last-paragraph-style)
(depict-logical-block (markup-stream 4)
(depict-semantic-keyword markup-stream 'throw :after)
(depict-expression markup-stream world value-annotated-expr %expr%)
(depict-semicolon markup-stream semicolon))))
2001-04-12 08:31:46 +04:00
; (catch <body-statements> (<var> [:unused]) . <handler-statements>)
(defun depict-catch (markup-stream world semicolon last-paragraph-style body-annotated-stmts arg-binding-expr &rest handler-annotated-stmts)
(depict-statement-block markup-stream
(depict-paragraph (markup-stream :statement)
(depict-semantic-keyword markup-stream 'try nil))
(depict-statements markup-stream world nil :statement body-annotated-stmts))
(depict-division-break markup-stream)
(depict-statement-block markup-stream
(depict-paragraph (markup-stream :statement)
2001-04-12 08:31:46 +04:00
(depict-semantic-keyword markup-stream 'catch :after)
(depict-logical-block (markup-stream 4)
(depict-local-variable markup-stream (first arg-binding-expr))
(depict markup-stream ": ")
(depict-type-expr markup-stream world *semantic-exception-type-name*))
(depict-semantic-keyword markup-stream 'do :before))
(depict-statements markup-stream world nil :statement handler-annotated-stmts))
(depict-paragraph (markup-stream last-paragraph-style)
2001-04-12 08:31:46 +04:00
(depict-semantic-keyword markup-stream 'end :after)
(depict-semantic-keyword markup-stream 'try nil)
(depict-semicolon markup-stream semicolon)))
2001-04-12 08:31:46 +04:00
; (case <value-expr> (key <type> . <statements>) ... (keyword <type> . <statements>))
; where each key is one of:
; :select No special action
; :narrow Narrow the type of <value-expr>, which must be a variable, to this case's <type>
; :otherwise Catch-all else case; <type> should be either nil or the remaining catch-all type
(defun depict-case (markup-stream world semicolon last-paragraph-style value-annotated-expr &rest annotated-cases)
(depict-paragraph (markup-stream :statement)
2001-04-12 08:31:46 +04:00
(depict-semantic-keyword markup-stream 'case :after)
(depict-logical-block (markup-stream 8)
(depict-expression markup-stream world value-annotated-expr %expr%))
(depict-semantic-keyword markup-stream 'of :before))
(depict-division-break markup-stream)
(depict-division-style (markup-stream :level)
(mapl #'(lambda (annotated-cases)
(let ((annotated-case (car annotated-cases)))
(depict-statement-block markup-stream
(depict-paragraph (markup-stream :statement)
(depict-logical-block (markup-stream 4)
(ecase (first annotated-case)
((:select :narrow) (depict-type-expr markup-stream world (second annotated-case)))
((:otherwise) (depict-semantic-keyword markup-stream 'else nil)))
(depict-semantic-keyword markup-stream 'do :before)))
(depict-statements markup-stream world (cdr annotated-cases) :statement (cddr annotated-case)))))
annotated-cases))
(depict-paragraph (markup-stream last-paragraph-style)
2001-04-12 08:31:46 +04:00
(depict-semantic-keyword markup-stream 'end :after)
(depict-semantic-keyword markup-stream 'case nil)
(depict-semicolon markup-stream semicolon)))
;;; ------------------------------------------------------------------------------------------------------
;;; DEPICTING FUNCTIONS
(defun depict-function-signature (markup-stream world arg-binding-exprs result-type-expr show-type)
(depict-logical-block (markup-stream 12)
(depict-list markup-stream
#'(lambda (markup-stream arg-binding)
(depict-local-variable markup-stream (first arg-binding))
(depict markup-stream ": ")
(depict-type-expr markup-stream world (second arg-binding)))
arg-binding-exprs
:indent 2
:prefix "("
:suffix ")"
:separator ","
:break 1
:empty nil)
(unless (or (eq result-type-expr 'void) (not show-type))
(depict markup-stream ":")
(depict-break markup-stream 1)
(depict-type-expr markup-stream world result-type-expr))))
; Depict the signature of a lambda annotated expression.
(defun depict-lambda-signature (markup-stream world type-expr lambda-annotated-expr show-type)
(declare (ignore type-expr))
(assert-true (special-form-annotated-expr? world 'lambda lambda-annotated-expr))
(depict-function-signature markup-stream world (third lambda-annotated-expr) (fourth lambda-annotated-expr) show-type))
; Return the list of body annotated statements of a lambda annotated expression.
(defun lambda-body-annotated-stmts (lambda-annotated-expr)
(cddddr lambda-annotated-expr))
; Return true if the function body given by body-annotated-stmts is a single return statement.
(defun function-body-is-expression? (world body-annotated-stmts)
(and *depict-trivial-functions-as-expressions*
body-annotated-stmts
(endp (cdr body-annotated-stmts))
(special-form-annotated-stmt? world 'return (first body-annotated-stmts))
(cdr (first body-annotated-stmts))))
; Depict a function's body as a series of divisions. markup-stream should be accepting divisions.
; If semicolon is true, depict a semicolon.
; Use last-paragraph-style for depicting the last paragraph.
(defun depict-function-body (markup-stream world semicolon last-paragraph-style body-annotated-stmts)
(if (function-body-is-expression? world body-annotated-stmts)
(depict-division-style (markup-stream :level)
(depict-paragraph (markup-stream last-paragraph-style)
(depict markup-stream :identical-10 " ")
(depict-expression markup-stream world (second (first body-annotated-stmts)) %expr%)
(depict-semicolon markup-stream semicolon)))
(progn
(depict-division-break markup-stream)
(when body-annotated-stmts
(depict-statements markup-stream world nil :statement body-annotated-stmts))
(depict-paragraph (markup-stream last-paragraph-style)
(depict-semantic-keyword markup-stream 'end :after)
(depict-semantic-keyword markup-stream 'proc nil)
(depict-semicolon markup-stream semicolon)))))
1999-01-30 04:19:00 +03:00
;;; ------------------------------------------------------------------------------------------------------
;;; DEPICTING COMMANDS
; Bind *styled-text-world* and *styled-text-grammar-parametrization* around the execution of body.
; These variables must be bound for depict-styled-text to be able to depict some constructs.
(defmacro depict-text-environment (world depict-env &body body)
`(bind-text-environment ,world ,depict-env #'(lambda () ,@body)))
(defun bind-text-environment (world depict-env f)
(let ((grammar-info (depict-env-grammar-info depict-env))
(*styled-text-world* world))
(if grammar-info
(let ((*styled-text-grammar-parametrization* (grammar-info-grammar grammar-info)))
(funcall f))
(funcall f))))
(defmacro depict-semantics ((markup-stream depict-env &optional (paragraph-style :algorithm-stmt)) &body body)
`(when (depict-mode ,markup-stream ,depict-env :semantics)
(depict-division-style (,markup-stream :nowrap)
(depict-paragraph (,markup-stream ,paragraph-style)
,@body))))
(defmacro depict-algorithm ((markup-stream depict-env &optional (division-style :algorithm)) &body body)
`(when (depict-mode ,markup-stream ,depict-env :semantics)
(depict-division-style (,markup-stream :nowrap)
(depict-division-style (,markup-stream ,division-style)
,@body))))
1999-01-30 04:19:00 +03:00
2000-09-09 06:14:35 +04:00
; (%highlight <highlight> <command> ... <command>)
; Depict the commands highlighted with the <highlight> division style.
2000-09-09 06:14:35 +04:00
(defun depict-%highlight (markup-stream world depict-env highlight &rest commands)
(when commands
(depict-division-style (markup-stream highlight t)
2000-09-09 06:14:35 +04:00
(depict-commands markup-stream world depict-env commands))))
(defun depict-text-paragraph (markup-stream paragraph-style text)
(depict-paragraph (markup-stream paragraph-style)
(depict-styled-text markup-stream text)))
; (%heading <level> . <styled-text>)
; (%heading (<level <mode>) . <styled-text>)
; <mode> is one of:
; :syntax This is a comment about the syntax
; :semantics This is a comment about the semantics (not displayed when semantics are not displayed)
; nil This is a general comment
(defun depict-%heading (markup-stream world depict-env level-mode &rest text)
(let ((level level-mode)
(mode nil))
(unless (integerp level-mode)
(unless (structured-type? level-mode '(tuple integer symbol))
(error "~S should be either <level> or (<level> <mode>)" level-mode))
(setq level (first level-mode))
(setq mode (second level-mode)))
(let* ((heading-level (+ level (depict-env-heading-offset depict-env)))
(heading-style (svref #(:heading1 :heading2 :heading3 :heading4 :heading5 :heading6) (1- heading-level))))
(when (quiet-depict-mode depict-env mode)
(depict-text-environment world depict-env
(depict-text-paragraph markup-stream heading-style text))))))
; (%text <mode> . <styled-text>)
; <mode> is one of:
; :syntax This is a comment about the syntax
; :semantics This is a comment about the semantics (not displayed when semantics are not displayed)
; :comment This is a comment about the following piece of semantics (not displayed when semantics are not displayed)
; nil This is a general comment
(defun depict-%text (markup-stream world depict-env mode &rest text)
2001-04-12 08:31:46 +04:00
(when (depict-mode markup-stream depict-env (if (eq mode :comment) :semantics mode))
(let ((text2 (scan-expressions-in-comment world *null-type-env* text)))
(depict-text-environment world depict-env
(depict-text-paragraph markup-stream (if (eq mode :comment) :semantic-comment :body-text) text2)))))
1999-01-30 04:19:00 +03:00
; (grammar-argument <argument> <attribute> <attribute> ... <attribute>)
(defun depict-grammar-argument (markup-stream world depict-env argument &rest attributes)
(declare (ignore world))
1999-02-06 06:20:35 +03:00
(let ((seen-grammar-arguments (depict-env-seen-grammar-arguments depict-env))
(abbreviated-argument (symbol-abbreviation argument)))
(unless (gethash abbreviated-argument seen-grammar-arguments)
(when (depict-mode markup-stream depict-env :syntax)
(depict-paragraph (markup-stream :grammar-argument)
(depict-nonterminal-argument markup-stream argument)
(depict markup-stream " " :member-10 " ")
(depict-list markup-stream
#'(lambda (markup-stream attribute)
(depict-nonterminal-attribute markup-stream attribute))
attributes
:prefix "{"
:suffix "}"
:separator ", ")))
1999-02-06 06:20:35 +03:00
(setf (gethash abbreviated-argument seen-grammar-arguments) t))))
1999-01-30 04:19:00 +03:00
; (%rule <general-nonterminal-source>)
(defun depict-%rule (markup-stream world depict-env general-nonterminal-source)
(declare (ignore world))
(let* ((grammar-info (checked-depict-env-grammar-info depict-env))
(grammar (grammar-info-grammar grammar-info))
(general-nonterminal (grammar-parametrization-intern grammar general-nonterminal-source))
(seen-nonterminals (depict-env-seen-nonterminals depict-env)))
(when (grammar-info-charclass grammar-info general-nonterminal)
(error "Shouldn't use %rule on a lexer charclass nonterminal ~S" general-nonterminal))
(labels
((seen-nonterminal? (nonterminal)
(gethash nonterminal seen-nonterminals)))
(unless (or (hidden-nonterminal? general-nonterminal)
(every #'seen-nonterminal? (general-grammar-symbol-instances grammar general-nonterminal)))
(let ((visible (depict-mode markup-stream depict-env :syntax)))
(dolist (general-rule (grammar-general-rules grammar general-nonterminal))
(let ((rule-lhs-nonterminals (general-grammar-symbol-instances grammar (general-rule-lhs general-rule))))
(unless (every #'seen-nonterminal? rule-lhs-nonterminals)
(when (some #'seen-nonterminal? rule-lhs-nonterminals)
(warn "General rule for ~S listed before specific ones; use %rule to disambiguate" general-nonterminal))
(when visible
2000-09-09 06:14:35 +04:00
(depict-general-rule markup-stream general-rule (grammar-highlights grammar)))
(dolist (nonterminal rule-lhs-nonterminals)
(setf (gethash nonterminal seen-nonterminals) t))))))))))
1999-01-30 04:19:00 +03:00
;******** May still have a problem when a specific rule precedes a general one.
; (%charclass <nonterminal>)
(defun depict-%charclass (markup-stream world depict-env nonterminal-source)
1999-01-30 04:19:00 +03:00
(let* ((grammar-info (checked-depict-env-grammar-info depict-env))
(grammar (grammar-info-grammar grammar-info))
(nonterminal (grammar-parametrization-intern grammar nonterminal-source))
1999-01-30 04:19:00 +03:00
(charclass (grammar-info-charclass grammar-info nonterminal)))
(unless charclass
(error "%charclass with a non-charclass ~S" nonterminal))
(if (gethash nonterminal (depict-env-seen-nonterminals depict-env))
(warn "Duplicate charclass ~S" nonterminal)
(progn
(when (depict-mode markup-stream depict-env :syntax)
(depict-charclass markup-stream charclass)
(dolist (action-cons (charclass-actions charclass))
(depict-charclass-action markup-stream world depict-env (car action-cons) (cdr action-cons) nonterminal)))
1999-01-30 04:19:00 +03:00
(setf (gethash nonterminal (depict-env-seen-nonterminals depict-env)) t)))))
; (%print-actions (<string> <action-name> ... <action-name>) ... (<string> <action-name> ... <action-name>))
(defun depict-%print-actions (markup-stream world depict-env &rest action-groups)
1999-01-30 04:19:00 +03:00
(declare (ignore world))
(let ((pending-actions (nreverse (depict-env-pending-actions-reverse depict-env))))
(setf (depict-env-pending-actions-reverse depict-env) nil)
(dolist (action-group action-groups)
(assert-type action-group (cons string (list identifier)))
(let ((group-name (car action-group))
(action-names (cdr action-group)))
(when (some #'(lambda (pending-action) (member (car pending-action) action-names)) pending-actions)
(when (depict-semantic-group markup-stream depict-env group-name)
(setq pending-actions
(mapcan #'(lambda (pending-action)
(if (member (car pending-action) action-names)
(progn
(funcall (cdr pending-action) markup-stream depict-env)
nil)
(list pending-action)))
pending-actions))))))
(dolist (pending-action pending-actions)
(funcall (cdr pending-action) markup-stream depict-env))
(assert-true (null (depict-env-pending-actions-reverse depict-env)))))
1999-01-30 04:19:00 +03:00
; (deftag <name>)
(defun depict-deftag (markup-stream world depict-env name)
(depict-semantics (markup-stream depict-env)
(depict-logical-block (markup-stream 2)
(let ((tag (scan-tag world name)))
(depict-semantic-keyword markup-stream 'tag :after)
(depict-tag-name markup-stream tag :definition))
(depict markup-stream ";"))))
; (deftuple <name> (<name1> <type1>) ... (<namen> <typen>))
2002-04-24 04:30:02 +04:00
; (defrecord <name> (<name1> <type1> [:const | :var | :opt-const | :opt-var]) ... (<namen> <typen> [:const | :var | :opt-const | :opt-var]))
(defun depict-deftuple (markup-stream world depict-env name &rest fields)
(let* ((type (scan-kinded-type world name :tag))
(tag (type-tag type))
(mutable (tag-mutable tag))
(keyword (if mutable 'record 'tuple)))
(depict-algorithm (markup-stream depict-env)
(depict-text-environment world depict-env
(depict-paragraph (markup-stream :statement)
(depict-semantic-keyword markup-stream keyword :after)
(depict-type-name markup-stream name :definition))
2001-11-27 05:38:39 +03:00
(when fields
(depict-division-style (markup-stream :level)
(mapl #'(lambda (fields)
(let ((field (car fields)))
(depict-paragraph (markup-stream :statement)
(depict-logical-block (markup-stream 4)
(depict-label-name markup-stream world type (first field) nil)
2001-11-27 05:38:39 +03:00
(depict markup-stream ": ")
(depict-type-expr markup-stream world (second field) %%type%%)
(when (cdr fields)
(depict markup-stream ","))))))
fields)))
(depict-paragraph (markup-stream :statement-last)
(depict-semantic-keyword markup-stream 'end :after)
(depict-semantic-keyword markup-stream keyword nil)
(depict markup-stream ";"))))))
2001-04-12 08:31:46 +04:00
1999-01-30 04:19:00 +03:00
; (deftype <name> <type>)
(defun depict-deftype (markup-stream world depict-env name type-expr)
(depict-semantics (markup-stream depict-env)
(depict-logical-block (markup-stream 2)
(depict-type-name markup-stream name :definition)
(depict-break markup-stream 1)
2001-04-12 08:31:46 +04:00
(depict-logical-block (markup-stream 4)
(depict markup-stream "= ")
2001-04-12 08:31:46 +04:00
(depict-type-expr markup-stream world type-expr))
(depict markup-stream ";"))))
1999-01-30 04:19:00 +03:00
(defun depict-colon-and-type (markup-stream world type-expr)
(depict-logical-block (markup-stream 4)
(depict markup-stream ":")
(depict-break markup-stream 1)
(depict-type-expr markup-stream world type-expr)))
2001-10-17 07:57:51 +04:00
(defun depict-equals-and-value (markup-stream world value-annotated-expr assignment)
(depict-break markup-stream 1)
(depict-logical-block (markup-stream 4)
2001-10-17 07:57:51 +04:00
(depict markup-stream assignment " ")
(depict-expression markup-stream world value-annotated-expr %expr%)
(depict markup-stream ";")))
(defun depict-begin (markup-stream world value-annotated-expr last-paragraph-style)
(assert-true (eq (car value-annotated-expr) 'expr-annotation:begin))
(depict-division-style (markup-stream :level)
(depict-paragraph (markup-stream :statement)
(depict-semantic-keyword markup-stream 'begin nil))
(let ((annotated-stmts (cdr value-annotated-expr)))
(when annotated-stmts
(depict-statements markup-stream world nil :statement annotated-stmts)))
(depict-paragraph (markup-stream last-paragraph-style)
(depict-semantic-keyword markup-stream 'end nil)
(depict markup-stream ";"))))
2001-04-12 08:31:46 +04:00
; (define <name> <type> <value>)
(defun depict-define (markup-stream world depict-env name type-expr value-expr)
(depict-text-environment world depict-env
(let ((value-annotated-expr (nth-value 2 (scan-value world *null-type-env* value-expr))))
(if (eq (car value-annotated-expr) 'expr-annotation:begin)
(depict-algorithm (markup-stream depict-env)
(depict-paragraph (markup-stream :statement)
(depict-logical-block (markup-stream 0)
(depict-global-variable markup-stream name :definition)
(depict-colon-and-type markup-stream world type-expr)))
(depict-begin markup-stream world value-annotated-expr :statement-last))
(depict-semantics (markup-stream depict-env)
(depict-logical-block (markup-stream 0)
(depict-global-variable markup-stream name :definition)
(depict-colon-and-type markup-stream world type-expr)
(depict-equals-and-value markup-stream world value-annotated-expr "=")))))))
2001-10-17 07:57:51 +04:00
; (defvar <name> <type> <value>)
(defun depict-defvar (markup-stream world depict-env name type-expr value-expr)
(let ((value-annotated-expr (nth-value 2 (scan-value world *null-type-env* value-expr))))
(if (eq (car value-annotated-expr) 'expr-annotation:begin)
(error "defvar shouldn't use begin")
(depict-semantics (markup-stream depict-env)
(depict-text-environment world depict-env
(depict-logical-block (markup-stream 0)
(depict-global-variable markup-stream name :definition)
(depict-colon-and-type markup-stream world type-expr)
(depict-equals-and-value markup-stream world value-annotated-expr :assign-10)))))))
2001-04-12 08:31:46 +04:00
; (defun <name> (-> (<type1> ... <typen>) <result-type>) (lambda ((<arg1> <type1>) ... (<argn> <typen>)) <result-type> . <statements>))
(defun depict-defun (markup-stream world depict-env name type-expr value-expr)
(assert-true (eq (first type-expr) '->))
(let* ((value-annotated-expr (nth-value 2 (scan-value world *null-type-env* value-expr)))
(body-annotated-stmts (lambda-body-annotated-stmts value-annotated-expr)))
(depict-algorithm (markup-stream depict-env)
(depict-text-environment world depict-env
(depict-statement-block-using (markup-stream :statement-last)
(depict-paragraph (markup-stream :statement)
(depict-semantic-keyword markup-stream 'proc :after)
(depict-global-variable markup-stream name :definition)
(depict-lambda-signature markup-stream world type-expr value-annotated-expr t))
(depict-function-body markup-stream world t :statement-last body-annotated-stmts))))))
1999-01-30 04:19:00 +03:00
; (defprimitive <name> <lisp-lambda-expr>)
(defun depict-defprimitive (markup-stream world depict-env name lisp-lambda-expr)
(declare (ignore markup-stream world depict-env name lisp-lambda-expr)))
1999-01-30 04:19:00 +03:00
; (set-grammar <name>)
(defun depict-set-grammar (markup-stream world depict-env name)
(depict-clear-grammar markup-stream world depict-env)
(let ((grammar-info (world-grammar-info world name)))
(unless grammar-info
(error "Unknown grammar ~A" name))
(setf (depict-env-grammar-info depict-env) grammar-info)
1999-02-06 06:20:35 +03:00
(setf (depict-env-seen-nonterminals depict-env) (make-hash-table :test #'eq))
(setf (depict-env-seen-grammar-arguments depict-env) (make-hash-table :test #'eq))))
1999-01-30 04:19:00 +03:00
; (clear-grammar)
(defun depict-clear-grammar (markup-stream world depict-env)
(depict-%print-actions markup-stream world depict-env)
(depict-mode markup-stream depict-env nil)
(let ((grammar-info (depict-env-grammar-info depict-env)))
(when grammar-info
(let ((seen-nonterminals (depict-env-seen-nonterminals depict-env))
(missed-nonterminals nil))
(dolist (nonterminal (grammar-nonterminals-list (grammar-info-grammar grammar-info)))
(unless (or (gethash nonterminal seen-nonterminals)
(eq nonterminal *start-nonterminal*)
(hidden-nonterminal? nonterminal))
1999-01-30 04:19:00 +03:00
(push nonterminal missed-nonterminals)))
(when missed-nonterminals
(warn "Nonterminals not printed: ~S" missed-nonterminals)))
(setf (depict-env-grammar-info depict-env) nil)
1999-02-06 06:20:35 +03:00
(setf (depict-env-seen-nonterminals depict-env) nil)
(setf (depict-env-seen-grammar-arguments depict-env) nil))))
1999-01-30 04:19:00 +03:00
(defmacro depict-delayed-action ((markup-stream world depict-env action-name) &body depictor)
(let ((saved-division-style (gensym "SAVED-DIVISION-STYLE")))
`(let ((,saved-division-style (save-division-style ,markup-stream)))
(push (cons ,action-name
#'(lambda (,markup-stream ,depict-env)
(depict-text-environment ,world ,depict-env
(with-saved-division-style (,markup-stream ,saved-division-style t) ,@depictor))))
(depict-env-pending-actions-reverse ,depict-env)))))
1999-01-30 04:19:00 +03:00
(defun depict-action-name-and-symbol (markup-stream action-name general-grammar-symbol)
1999-01-30 04:19:00 +03:00
(depict-action-name markup-stream action-name)
(depict markup-stream :action-begin)
(depict-general-grammar-symbol markup-stream general-grammar-symbol :reference)
(depict markup-stream :action-end))
(defun depict-declare-action-contents (markup-stream world action-name general-grammar-symbol type-expr)
(depict-action-name-and-symbol markup-stream action-name general-grammar-symbol)
1999-01-30 04:19:00 +03:00
(depict-logical-block (markup-stream 2)
(depict markup-stream ":")
(depict-break markup-stream 1)
1999-01-30 04:19:00 +03:00
(depict-type-expr markup-stream world type-expr)))
; (declare-action <action-name> <general-grammar-symbol> <type> <mode> <parameter-list> <command> ... <command>)
; <mode> is one of:
2001-10-17 07:57:51 +04:00
; :hide Don't depict this action declaration because it's for a hidden production;
2002-10-15 03:17:59 +04:00
; :forward Depict this action declaration; it forwards to calls to the same action in all nonterminals on the rhs;
2001-10-17 07:57:51 +04:00
; :singleton Don't depict this action declaration because it contains a singleton production;
; :action Depict this action declaration; all corresponding actions will be depicted by depict-action;
; :actfun Depict this action declaration; all corresponding actions will be depicted by depict-actfun;
2001-10-17 07:57:51 +04:00
; :writable Depict this action declaration but not actions.
; <parameter-list> contains the names of the action parameters when <mode> is :actfun.
(defun depict-declare-action (markup-stream world depict-env action-name general-grammar-symbol-source type-expr mode parameter-list &rest commands)
1999-01-30 04:19:00 +03:00
(let* ((grammar-info (checked-depict-env-grammar-info depict-env))
(general-grammar-symbol (grammar-parametrization-intern (grammar-info-grammar grammar-info) general-grammar-symbol-source)))
(unless (and (general-nonterminal? general-grammar-symbol) (hidden-nonterminal? general-grammar-symbol))
(ecase mode
(:hide)
2002-10-15 03:17:59 +04:00
(:forward
(depict-delayed-action (markup-stream world depict-env action-name)
(depict-semantics (markup-stream depict-env)
(depict-logical-block (markup-stream 0)
(depict-action-name-and-symbol markup-stream action-name general-grammar-symbol)
(depict-break markup-stream 1)
(unless (and (consp type-expr) (eq (first type-expr) '->))
(error "Destructuring requires ~S to be a -> type" type-expr))
(let ((->-parameters (second type-expr))
(->-result (third type-expr)))
(unless (= (length ->-parameters) (length parameter-list))
(error "Parameter count mistmatch: ~S and ~S" ->-parameters parameter-list))
(let ((bindings (mapcar #'list parameter-list ->-parameters)))
(depict-function-signature markup-stream world bindings ->-result t)))
(depict-string-words markup-stream " propagates the call to ")
(depict-action-name markup-stream action-name)
(depict-string-words markup-stream " to every nonterminal in the expansion of ")
(depict-general-grammar-symbol markup-stream general-grammar-symbol :reference)
(depict markup-stream ".")))))
(:singleton (depict-delayed-action (markup-stream world depict-env action-name)
(depict-algorithm (markup-stream depict-env)
(depict-commands markup-stream world depict-env commands))))
((:action :actfun)
(depict-delayed-action (markup-stream world depict-env action-name)
(depict-algorithm (markup-stream depict-env)
(depict-paragraph (markup-stream :statement)
(if (eq mode :actfun)
(depict-logical-block (markup-stream 0)
(depict-semantic-keyword markup-stream 'proc :after)
(depict-action-name-and-symbol markup-stream action-name general-grammar-symbol)
(depict-break markup-stream 1)
(unless (and (consp type-expr) (eq (first type-expr) '->))
(error "Destructuring requires ~S to be a -> type" type-expr))
(let ((->-parameters (second type-expr))
(->-result (third type-expr)))
(unless (= (length ->-parameters) (length parameter-list))
(error "Parameter count mistmatch: ~S and ~S" ->-parameters parameter-list))
(let ((bindings (mapcar #'list parameter-list ->-parameters)))
(depict-function-signature markup-stream world bindings ->-result t))))
(progn
(depict-declare-action-contents markup-stream world action-name general-grammar-symbol type-expr)
(depict markup-stream ";"))))
(depict-commands markup-stream world depict-env commands)
(when (eq mode :actfun)
(depict-paragraph (markup-stream :statement-last)
(depict-semantic-keyword markup-stream 'end :after)
(depict-semantic-keyword markup-stream 'proc nil)
2001-10-17 07:57:51 +04:00
(depict markup-stream ";"))))))
(:writable
(depict-delayed-action (markup-stream world depict-env action-name)
2001-10-17 07:57:51 +04:00
(depict-semantics (markup-stream depict-env)
(depict-declare-action-contents markup-stream world action-name general-grammar-symbol type-expr)
(depict markup-stream ";"))))))))
1999-01-30 04:19:00 +03:00
; Declare and define the lexer-action on the charclass given by nonterminal.
(defun depict-charclass-action (markup-stream world depict-env action-name lexer-action nonterminal)
(unless (default-action? action-name)
(depict-delayed-action (markup-stream world depict-env action-name)
(depict-semantics (markup-stream depict-env)
(depict-logical-block (markup-stream 4)
(depict-declare-action-contents markup-stream world action-name nonterminal (lexer-action-type-expr lexer-action))
(depict-break markup-stream 1)
(depict-logical-block (markup-stream 3)
(depict markup-stream "= ")
(depict-global-variable markup-stream (lexer-action-function-name lexer-action) :external)
(depict markup-stream "(")
(depict-general-nonterminal markup-stream nonterminal :reference)
2001-04-12 08:31:46 +04:00
(depict markup-stream ")"))
(depict markup-stream ";"))))))
1999-01-30 04:19:00 +03:00
; (action <action-name> <production-name> <type> <mode> <value>)
; <mode> is one of:
; :hide Don't depict this action;
; :singleton Depict this action along with its declaration;
; :first Depict this action, which is the first in the rule
; :middle Depict this action, which is neither the first nor the last in the rule
; :last Depict this action, which is the last in the rule
(defun depict-action (markup-stream world depict-env action-name production-name type-expr mode value-expr)
(depict-general-action markup-stream world depict-env action-name production-name type-expr mode value-expr nil))
; (actfun <action-name> <production-name> (-> (<type1> ... <typen>) <result-type>) <mode>
2001-04-12 08:31:46 +04:00
; (lambda ((<arg1> <type1>) ... (<argn> <typen>)) <result-type> . <statements>))
; <mode> is one of:
; :hide Don't depict this action;
; :singleton Depict this action along with its declaration;
; :first Depict this action, which is the first in the rule
; :middle Depict this action, which is neither the first nor the last in the rule
; :last Depict this action, which is the last in the rule
(defun depict-actfun (markup-stream world depict-env action-name production-name type-expr mode value-expr)
(depict-general-action markup-stream world depict-env action-name production-name type-expr mode value-expr t))
2001-04-12 08:31:46 +04:00
(defun depict-action-signature (markup-stream action-name general-production action-grammar-symbols)
(depict-action-name markup-stream action-name)
(depict markup-stream :action-begin)
(depict-general-production markup-stream general-production :reference action-grammar-symbols)
(depict markup-stream :action-end))
(defun depict-general-action (markup-stream world depict-env action-name production-name type-expr mode value-expr destructured)
(unless (eq mode :hide)
(let* ((grammar-info (checked-depict-env-grammar-info depict-env))
(grammar (grammar-info-grammar grammar-info))
(general-production (grammar-general-production grammar production-name))
(lhs (general-production-lhs general-production)))
(unless (hidden-nonterminal? lhs)
(depict-text-environment world depict-env
(let* ((initial-env (general-production-action-env grammar general-production t))
(type (scan-type world type-expr))
(value-annotated-expr (nth-value 1 (scan-typed-value-or-begin world initial-env value-expr type)))
(action-grammar-symbols (annotated-expr-grammar-symbols value-annotated-expr))
(mode-style (cdr (assert-non-null (assoc mode '((:singleton . nil) (:first . :level-wide) (:middle . :level-wide) (:last . :level)))))))
(depict-division-style (markup-stream mode-style)
(if destructured
(let* ((body-annotated-stmts (lambda-body-annotated-stmts value-annotated-expr))
(semicolon (not (eq mode :last)))
(last-paragraph-style (if semicolon :statement-last :statement)))
(depict-statement-block-using (markup-stream last-paragraph-style)
(if (eq mode :singleton)
(progn
(depict-paragraph (markup-stream :statement)
(depict-logical-block (markup-stream 0)
(depict-semantic-keyword markup-stream 'proc :after)
(depict-action-signature markup-stream action-name general-production action-grammar-symbols)
(depict-break markup-stream 1)
(depict-lambda-signature markup-stream world type-expr value-annotated-expr t)))
(depict-function-body markup-stream world semicolon last-paragraph-style body-annotated-stmts))
(progn
(depict-paragraph (markup-stream :statement)
(depict markup-stream :action-begin)
(depict-general-production markup-stream general-production :reference action-grammar-symbols)
(depict markup-stream :action-end)
(depict-semantic-keyword markup-stream 'do :before))
(depict-statements markup-stream world semicolon last-paragraph-style body-annotated-stmts)))))
(let ((last-paragraph-style (if (member mode '(:singleton :last)) :statement-last :statement)))
(if (eq (car value-annotated-expr) 'expr-annotation:begin)
(progn
(depict-paragraph (markup-stream :statement)
(depict-logical-block (markup-stream 0)
(depict-action-signature markup-stream action-name general-production action-grammar-symbols)
(when (eq mode :singleton)
(depict-colon-and-type markup-stream world type-expr))))
(depict-begin markup-stream world value-annotated-expr last-paragraph-style))
(depict-paragraph (markup-stream last-paragraph-style)
(depict-logical-block (markup-stream 0)
(depict-action-signature markup-stream action-name general-production action-grammar-symbols)
(when (eq mode :singleton)
(depict-colon-and-type markup-stream world type-expr))
(depict-equals-and-value markup-stream world value-annotated-expr "=")))))))))))))
1999-01-30 04:19:00 +03:00
; (terminal-action <action-name> <terminal> <lisp-function>)
(defun depict-terminal-action (markup-stream world depict-env action-name terminal function)
(declare (ignore markup-stream world depict-env action-name terminal function)))
1999-06-04 00:49:13 +04:00
;;; ------------------------------------------------------------------------------------------------------
;;; DEPICTING STYLED TEXT
; Styled text can include the formats below as long as *styled-text-world* is bound around the call
; to depict-styled-text.
; (:annotated-expr <annotated-expr>)
; Don't use :annotated-expr directly; instead, use the following, which is transformed into :annotated-expr:
; (:expr <result-type> <expr>)
(defun depict-styled-text-annotated-expr (markup-stream annotated-expr)
(depict-expression markup-stream *styled-text-world* annotated-expr %expr%))
(setf (styled-text-depictor :annotated-expr) #'depict-styled-text-annotated-expr)
2002-10-29 04:07:49 +03:00
; (:keyword <keyword-symbol>)
(defun depict-keyword (markup-stream keyword-symbol)
(depict-semantic-keyword markup-stream keyword-symbol nil))
(setf (styled-text-depictor :keyword) #'depict-keyword)
1999-06-04 00:49:13 +04:00
; (:type <type-expression>)
(defun depict-styled-text-type (markup-stream type-expression)
(depict-type-expr markup-stream *styled-text-world* type-expression))
(setf (styled-text-depictor :type) #'depict-styled-text-type)
2001-04-12 08:31:46 +04:00
; (:tag <name>)
(defun depict-styled-text-tag (markup-stream tag-name)
(depict-tag-name markup-stream (scan-tag *styled-text-world* tag-name) :reference))
(setf (styled-text-depictor :tag) #'depict-styled-text-tag)
1999-06-04 00:49:13 +04:00
; (:label <type-name> <label>)
(defun depict-styled-text-label (markup-stream type-name label)
(let ((type (scan-type *styled-text-world* type-name)))
(depict-label-name markup-stream *styled-text-world* type label :reference)))
2001-04-12 08:31:46 +04:00
(setf (styled-text-depictor :label) #'depict-styled-text-label)
1999-06-04 00:49:13 +04:00
; (:global <name> [<link>])
(defun depict-styled-text-global-variable (markup-stream name &optional (link :reference))
(let ((interned-name (world-find-symbol *styled-text-world* name)))
(if (and interned-name (symbol-primitive interned-name))
(depict-primitive markup-stream (symbol-primitive interned-name))
2001-04-12 08:31:46 +04:00
(progn
(unless (symbol-type interned-name)
(warn "~A is depicted as a global variable but isn't one" name))
(depict-global-variable markup-stream name link)))))
1999-06-04 00:49:13 +04:00
(setf (styled-text-depictor :global) #'depict-styled-text-global-variable)
; (:global-call <global-name> <local-name> ... <local-name>)
(defun depict-styled-text-global-call (markup-stream global-name &rest local-names)
(depict-styled-text-global-variable markup-stream global-name nil)
(depict markup-stream "(")
(when local-names
(depict-local-variable markup-stream (first local-names))
(dolist (local-name (rest local-names))
(depict markup-stream "," :nbsp)
(depict-local-variable markup-stream local-name)))
(depict markup-stream ")"))
(setf (styled-text-depictor :global-call) #'depict-styled-text-global-call)
1999-06-04 00:49:13 +04:00
; (:local <name>)
(setf (styled-text-depictor :local) #'depict-local-variable)
; (:constant <value>)
; <value> can be either an integer, a float, a character, or a string.
(setf (styled-text-depictor :constant) #'depict-constant)
; (:action <name>)
(setf (styled-text-depictor :action) #'depict-action-name)