]> gitweb.factorcode.org Git - factor.git/blob - misc/fuel/fuel-markup.el
Merge branch 'master' of git://factorcode.org/git/factor
[factor.git] / misc / fuel / fuel-markup.el
1 ;;; fuel-markup.el -- printing factor help markup
2
3 ;; Copyright (C) 2009 Jose Antonio Ortega Ruiz
4 ;; See http://factorcode.org/license.txt for BSD license.
5
6 ;; Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
7 ;; Keywords: languages, fuel, factor
8 ;; Start date: Thu Jan 01, 2009 21:43
9
10 ;;; Comentary:
11
12 ;; Utilities for printing Factor's help markup.
13
14 ;;; Code:
15
16 (require 'fuel-eval)
17 (require 'fuel-font-lock)
18 (require 'fuel-base)
19 (require 'fuel-table)
20
21 (require 'button)
22
23 \f
24 ;;; Customization:
25
26 (fuel-font-lock--defface fuel-font-lock-markup-title
27   'bold fuel-help "article titles in help buffers")
28
29 (fuel-font-lock--defface fuel-font-lock-markup-heading
30   'bold fuel-help "headlines in help buffers")
31
32 (fuel-font-lock--defface fuel-font-lock-markup-link
33   'link fuel-help "links to topics in help buffers")
34
35 (fuel-font-lock--defface fuel-font-lock-markup-emphasis
36   'italic fuel-help "emphasized words in help buffers")
37
38 (fuel-font-lock--defface fuel-font-lock-markup-strong
39   'link fuel-help "bold words in help buffers")
40
41 \f
42 ;;; Links:
43
44 (make-variable-buffer-local
45  (defvar fuel-markup--follow-link-function 'fuel-markup--echo-link))
46
47 (define-button-type 'fuel-markup--button
48   'action 'fuel-markup--follow-link
49   'face 'fuel-font-lock-markup-link
50   'follow-link t)
51
52 (defun fuel-markup--follow-link (button)
53   (when fuel-markup--follow-link-function
54     (funcall fuel-markup--follow-link-function
55              (button-get button 'markup-link)
56              (button-get button 'markup-label)
57              (button-get button 'markup-link-type))))
58
59 (defun fuel-markup--echo-link (link label type)
60   (message "Link %s pointing to %s named %s" label type link))
61
62 (defun fuel-markup--insert-button (label link type)
63   (let ((label (format "%s" label))
64         (link (if (listp link) link (format "%s" link))))
65     (insert-text-button label
66                         :type 'fuel-markup--button
67                         'markup-link link
68                         'markup-label label
69                         'markup-link-type type
70                         'help-echo (format "%s (%s)" label type))))
71
72 (defun fuel-markup--article-title (name)
73   (let ((name (if (listp name) (cons :seq name) name)))
74     (fuel-eval--retort-result
75      (fuel-eval--send/wait `(:fuel* ((,name fuel-get-article-title)) "fuel")))))
76
77 (defun fuel-markup--link-at-point ()
78   (let ((button (condition-case nil (forward-button 0) (error nil))))
79     (when button
80       (list (button-get button 'markup-link)
81             (button-get button 'markup-label)
82             (button-get button 'markup-link-type)))))
83
84 \f
85 ;;; Markup printers:
86
87 (defconst fuel-markup--printers
88   '(($all-tags . fuel-markup--all-tags)
89     ($all-authors . fuel-markup--all-authors)
90     ($author . fuel-markup--author)
91     ($authors . fuel-markup--authors)
92     ($class-description . fuel-markup--class-description)
93     ($code . fuel-markup--code)
94     ($command . fuel-markup--command)
95     ($command-map . fuel-markup--null)
96     ($contract . fuel-markup--contract)
97     ($curious . fuel-markup--curious)
98     ($definition . fuel-markup--definition)
99     ($describe-vocab . fuel-markup--describe-vocab)
100     ($description . fuel-markup--description)
101     ($doc-path . fuel-markup--doc-path)
102     ($emphasis . fuel-markup--emphasis)
103     ($error-description . fuel-markup--error-description)
104     ($errors . fuel-markup--errors)
105     ($example . fuel-markup--example)
106     ($examples . fuel-markup--examples)
107     ($heading . fuel-markup--heading)
108     ($index . fuel-markup--index)
109     ($instance . fuel-markup--instance)
110     ($io-error . fuel-markup--io-error)
111     ($link . fuel-markup--link)
112     ($links . fuel-markup--links)
113     ($list . fuel-markup--list)
114     ($low-level-note . fuel-markup--low-level-note)
115     ($markup-example . fuel-markup--markup-example)
116     ($maybe . fuel-markup--maybe)
117     ($methods . fuel-markup--methods)
118     ($nl . fuel-markup--newline)
119     ($notes . fuel-markup--notes)
120     ($operation . fuel-markup--link)
121     ($parsing-note . fuel-markup--parsing-note)
122     ($predicate . fuel-markup--predicate)
123     ($prettyprinting-note . fuel-markup--prettyprinting-note)
124     ($quotation . fuel-markup--quotation)
125     ($references . fuel-markup--references)
126     ($related . fuel-markup--related)
127     ($see . fuel-markup--see)
128     ($see-also . fuel-markup--see-also)
129     ($shuffle . fuel-markup--shuffle)
130     ($side-effects . fuel-markup--side-effects)
131     ($slot . fuel-markup--snippet)
132     ($snippet . fuel-markup--snippet)
133     ($strong . fuel-markup--strong)
134     ($subheading . fuel-markup--subheading)
135     ($subsection . fuel-markup--subsection)
136     ($synopsis . fuel-markup--synopsis)
137     ($syntax . fuel-markup--syntax)
138     ($table . fuel-markup--table)
139     ($tag . fuel-markup--tag)
140     ($tags . fuel-markup--tags)
141     ($unchecked-example . fuel-markup--example)
142     ($value . fuel-markup--value)
143     ($values . fuel-markup--values)
144     ($values-x/y . fuel-markup--values-x/y)
145     ($var-description . fuel-markup--var-description)
146     ($vocab-link . fuel-markup--vocab-link)
147     ($vocab-links . fuel-markup--vocab-links)
148     ($vocab-subsection . fuel-markup--vocab-subsection)
149     ($vocabulary . fuel-markup--vocabulary)
150     ($warning . fuel-markup--warning)
151     (article . fuel-markup--article)
152     (describe-words . fuel-markup--describe-words)
153     (vocab-list . fuel-markup--vocab-list)))
154
155 (make-variable-buffer-local
156  (defvar fuel-markup--maybe-nl nil))
157
158 (defun fuel-markup--print (e)
159   (cond ((null e) (insert "f"))
160         ((stringp e) (fuel-markup--insert-string e))
161         ((and (listp e) (symbolp (car e))
162               (assoc (car e) fuel-markup--printers))
163          (funcall (cdr (assoc (car e) fuel-markup--printers)) e))
164         ((and (symbolp e)
165               (assoc e fuel-markup--printers))
166          (funcall (cdr (assoc e fuel-markup--printers)) e))
167         ((listp e) (mapc 'fuel-markup--print e))
168         ((symbolp e) (fuel-markup--print (list '$link e)))
169         (t (insert (format "\n%S\n" e)))))
170
171 (defun fuel-markup--print-str (e)
172   (with-temp-buffer
173     (fuel-markup--print e)
174     (buffer-string)))
175
176 (defun fuel-markup--maybe-nl ()
177   (setq fuel-markup--maybe-nl (point)))
178
179 (defun fuel-markup--insert-newline (&optional justification nosqueeze)
180   (fill-region (save-excursion (beginning-of-line) (point))
181                (point)
182                (or justification 'left)
183                nosqueeze)
184   (newline))
185
186 (defsubst fuel-markup--insert-nl-if-nb (&optional no-fill)
187   (unless (eq (save-excursion (beginning-of-line) (point)) (point))
188     (if no-fill (newline) (fuel-markup--insert-newline))))
189
190 (defsubst fuel-markup--put-face (txt face)
191   (put-text-property 0 (length txt) 'font-lock-face face txt)
192   txt)
193
194 (defun fuel-markup--insert-heading (txt &optional no-nl)
195   (fuel-markup--insert-nl-if-nb)
196   (delete-blank-lines)
197   (unless (bobp) (newline))
198   (fuel-markup--put-face txt 'fuel-font-lock-markup-heading)
199   (fuel-markup--insert-string txt)
200   (unless no-nl (newline)))
201
202 (defun fuel-markup--insert-string (str)
203   (when fuel-markup--maybe-nl
204     (newline 2)
205     (setq fuel-markup--maybe-nl nil))
206   (insert str))
207
208 (defun fuel-markup--article (e)
209   (setq fuel-markup--maybe-nl nil)
210   (insert (fuel-markup--put-face (cadr e) 'fuel-font-lock-markup-title))
211   (newline 2)
212   (fuel-markup--print (car (cddr e))))
213
214 (defun fuel-markup--heading (e)
215   (fuel-markup--insert-heading (cadr e)))
216
217 (defun fuel-markup--subheading (e)
218   (fuel-markup--insert-heading (cadr e)))
219
220 (defun fuel-markup--subsection (e)
221   (fuel-markup--insert-nl-if-nb)
222   (insert "  - ")
223   (fuel-markup--link (cons '$link (cdr e)))
224   (fuel-markup--maybe-nl))
225
226 (defun fuel-markup--vocab-subsection (e)
227   (fuel-markup--insert-nl-if-nb)
228   (insert "  - ")
229   (fuel-markup--vocab-link (cons '$vocab-link (cdr e)))
230   (fuel-markup--maybe-nl))
231
232 (defun fuel-markup--newline (e)
233   (fuel-markup--insert-newline)
234   (newline))
235
236 (defun fuel-markup--doc-path (e)
237   (fuel-markup--insert-heading "Related topics")
238   (insert "  ")
239   (dolist (art (cdr e))
240     (fuel-markup--insert-button (car art) (cadr art) 'article)
241     (insert ", "))
242   (delete-backward-char 2)
243   (fuel-markup--insert-newline 'left))
244
245 (defun fuel-markup--emphasis (e)
246   (when (stringp (cadr e))
247     (fuel-markup--put-face (cadr e) 'fuel-font-lock-markup-emphasis)
248     (insert (cadr e))))
249
250 (defun fuel-markup--strong (e)
251   (when (stringp (cadr e))
252     (fuel-markup--put-face (cadr e) 'fuel-font-lock-markup-strong)
253     (insert (cadr e))))
254
255 (defun fuel-markup--snippet (e)
256   (insert (mapconcat '(lambda (s)
257                         (if (stringp s)
258                             (fuel-font-lock--factor-str s)
259                           (fuel-markup--print-str s)))
260                      (cdr e)
261                      " ")))
262
263 (defun fuel-markup--code (e)
264   (fuel-markup--insert-nl-if-nb)
265   (newline)
266   (dolist (snip (cdr e))
267     (if (stringp snip)
268         (insert (fuel-font-lock--factor-str snip))
269       (fuel-markup--print snip))
270     (newline))
271   (newline))
272
273 (defun fuel-markup--command (e)
274   (fuel-markup--snippet (list '$snippet (nth 3 e))))
275
276 (defun fuel-markup--syntax (e)
277   (fuel-markup--insert-heading "Syntax")
278   (fuel-markup--print (cons '$code (cdr e)))
279   (newline))
280
281 (defun fuel-markup--example (e)
282   (fuel-markup--insert-newline)
283   (dolist (s (cdr e))
284     (fuel-markup--snippet (list '$snippet s))
285     (newline))
286   (newline))
287
288 (defun fuel-markup--markup-example (e)
289   (fuel-markup--insert-newline)
290   (fuel-markup--snippet (cons '$snippet (cdr e))))
291
292 (defun fuel-markup--link (e)
293   (let* ((link (or (nth 1 e) 'f))
294          (type (or (nth 3 e) (if (symbolp link) 'word 'article)))
295          (label (or (nth 2 e)
296                     (and (eq type 'article)
297                          (fuel-markup--article-title link))
298                     link)))
299     (fuel-markup--insert-button label link type)))
300
301 (defun fuel-markup--links (e)
302   (dolist (link (cdr e))
303     (fuel-markup--link (list '$link link))
304     (insert ", "))
305   (delete-backward-char 2))
306
307 (defun fuel-markup--index-quotation (q)
308   (cond ((null q) null)
309         ((listp q) (vconcat (mapcar 'fuel-markup--index-quotation q)))
310         (t q)))
311
312 (defun fuel-markup--index (e)
313   (let* ((q (fuel-markup--index-quotation (cadr e)))
314          (cmd `(:fuel* ((,q fuel-index)) "fuel"
315                        ("builtins" "help" "help.topics" "classes"
316                         "classes.builtin" "classes.tuple"
317                         "classes.singleton" "classes.union"
318                         "classes.intersection" "classes.predicate")))
319          (subs (fuel-eval--retort-result (fuel-eval--send/wait cmd 200))))
320     (when subs
321       (let ((start (point))
322             (sort-fold-case nil))
323         (fuel-markup--print subs)
324         (sort-lines nil start (point))))))
325
326 (defun fuel-markup--vocab-link (e)
327   (fuel-markup--insert-button (cadr e) (or (car (cddr e)) (cadr e)) 'vocab))
328
329 (defun fuel-markup--vocab-links (e)
330   (dolist (link (cdr e))
331     (insert " ")
332     (fuel-markup--vocab-link (list '$vocab-link link))
333     (insert " ")))
334
335 (defun fuel-markup--vocab-list (e)
336   (let ((rows (mapcar '(lambda (elem)
337                          (list (car elem)
338                                (list '$vocab-link (cadr elem))
339                                (caddr elem)))
340                       (cdr e))))
341     (fuel-markup--table (cons '$table rows))))
342
343 (defun fuel-markup--describe-vocab (e)
344   (fuel-markup--insert-nl-if-nb)
345   (let* ((cmd `(:fuel* ((,(cadr e) fuel-vocab-help)) "fuel" t))
346          (res (fuel-eval--retort-result (fuel-eval--send/wait cmd))))
347     (when res (fuel-markup--print res))))
348
349 (defun fuel-markup--vocabulary (e)
350   (fuel-markup--insert-heading "Vocabulary: " t)
351   (fuel-markup--vocab-link (cons '$vocab-link (cdr e)))
352   (newline))
353
354 (defun fuel-markup--parse-classes ()
355   (let ((elems))
356     (while (looking-at ".+ classes$")
357       (let ((heading `($heading ,(match-string-no-properties 0)))
358             (rows))
359         (forward-line)
360         (when (looking-at "Class *.+$")
361           (push (split-string (match-string-no-properties 0) nil t) rows)
362           (forward-line))
363         (while (not (looking-at "$"))
364           (let* ((objs (split-string (thing-at-point 'line) nil t))
365                  (class (list '$link (car objs) (car objs) 'word))
366                  (super (and (cadr objs)
367                              (list (list '$link (cadr objs) (cadr objs) 'word))))
368                  (slots (when (cddr objs)
369                           (list (mapcar '(lambda (s) (list s " ")) (cddr objs))))))
370             (push `(,class ,@super ,@slots) rows))
371           (forward-line))
372         (push `(,heading ($table ,@(reverse rows))) elems))
373       (forward-line))
374     (reverse elems)))
375
376 (defun fuel-markup--parse-words ()
377   (let ((elems))
378     (while (looking-at ".+ words\\|Primitives$")
379       (let ((heading `($heading ,(match-string-no-properties 0)))
380             (rows))
381         (forward-line)
382         (when (looking-at "Word *\\(Stack effect\\|Syntax\\)$")
383           (push (list "Word" (match-string-no-properties 1)) rows)
384           (forward-line))
385         (while (looking-at "\\(.+?\\)\\( +\\(.+\\)\\)?$")
386           (let ((word `($link ,(match-string-no-properties 1)
387                               ,(match-string-no-properties 1)
388                               word))
389                 (se (and (match-string-no-properties 3)
390                          `(($snippet ,(match-string-no-properties 3))))))
391             (push `(,word ,@se) rows))
392           (forward-line))
393         (push `(,heading ($table ,@(reverse rows))) elems))
394       (forward-line))
395     (reverse elems)))
396
397 (defun fuel-markup--parse-words-desc (desc)
398   (with-temp-buffer
399     (insert desc)
400     (goto-char (point-min))
401     (when (re-search-forward "^Words$" nil t)
402       (forward-line 2)
403       (let ((elems '(($heading "Words"))))
404         (push (fuel-markup--parse-classes) elems)
405         (push (fuel-markup--parse-words) elems)
406         (reverse elems)))))
407
408 (defun fuel-markup--describe-words (e)
409   (when (cadr e)
410     (fuel-markup--print (fuel-markup--parse-words-desc (cadr e)))))
411
412 (defun fuel-markup--tag (e)
413   (fuel-markup--link (list '$link (cadr e) (cadr e) 'tag)))
414
415 (defun fuel-markup--tags (e)
416   (when (cdr e)
417     (fuel-markup--insert-heading "Tags: " t)
418     (dolist (tag (cdr e))
419       (fuel-markup--tag (list '$tag tag))
420       (insert ", "))
421     (delete-backward-char 2)
422     (fuel-markup--insert-newline)))
423
424 (defun fuel-markup--all-tags (e)
425   (let* ((cmd `(:fuel* (all-tags :get) "fuel" t))
426          (tags (fuel-eval--retort-result (fuel-eval--send/wait cmd))))
427     (fuel-markup--list
428      (cons '$list (mapcar (lambda (tag) (list '$link tag tag 'tag)) tags)))))
429
430 (defun fuel-markup--author (e)
431   (fuel-markup--link (list '$link (cadr e) (cadr e) 'author)))
432
433 (defun fuel-markup--authors (e)
434   (when (cdr e)
435     (fuel-markup--insert-heading "Authors: " t)
436     (dolist (a (cdr e))
437       (fuel-markup--author (list '$author a))
438       (insert ", "))
439     (delete-backward-char 2)
440     (fuel-markup--insert-newline)))
441
442 (defun fuel-markup--all-authors (e)
443   (let* ((cmd `(:fuel* (all-authors :get) "fuel" t))
444          (authors (fuel-eval--retort-result (fuel-eval--send/wait cmd))))
445     (fuel-markup--list
446      (cons '$list (mapcar (lambda (a) (list '$link a a 'author)) authors)))))
447
448 (defun fuel-markup--list (e)
449   (fuel-markup--insert-nl-if-nb)
450   (dolist (elt (cdr e))
451     (insert " - ")
452     (fuel-markup--print elt)
453     (fuel-markup--insert-newline)))
454
455 (defun fuel-markup--table (e)
456   (fuel-markup--insert-newline)
457   (delete-blank-lines)
458   (newline)
459   (fuel-table--insert
460    (mapcar '(lambda (row) (mapcar 'fuel-markup--print-str row)) (cdr e)))
461   (newline))
462
463 (defun fuel-markup--instance (e)
464   (insert " an instance of ")
465   (fuel-markup--print (cadr e)))
466
467 (defun fuel-markup--maybe (e)
468   (fuel-markup--instance (cons '$instance (cdr e)))
469   (insert " or f "))
470
471 (defun fuel-markup--values (e)
472   (fuel-markup--insert-heading "Inputs and outputs")
473   (dolist (val (cdr e))
474     (insert " " (car val) " - ")
475     (fuel-markup--print (cdr val))
476     (newline)))
477
478 (defun fuel-markup--predicate (e)
479   (fuel-markup--values '($values ("object" object) ("?" "a boolean")))
480   (let ((word (make-symbol (substring (format "%s" (cadr e)) 0 -1))))
481   (fuel-markup--description
482    `($description "Tests if the object is an instance of the "
483                   ($link ,word) " class."))))
484
485 (defun fuel-markup--side-effects (e)
486   (fuel-markup--insert-heading "Side effects")
487   (insert "Modifies ")
488   (fuel-markup--print (cdr e))
489   (fuel-markup--insert-newline))
490
491 (defun fuel-markup--definition (e)
492   (fuel-markup--insert-heading "Definition")
493   (fuel-markup--code (cons '$code (cdr e))))
494
495 (defun fuel-markup--methods (e)
496   (fuel-markup--insert-heading "Methods")
497   (fuel-markup--code (cons '$code (cdr e))))
498
499 (defun fuel-markup--value (e)
500   (fuel-markup--insert-heading "Variable value")
501   (insert "Current value in global namespace: ")
502   (fuel-markup--snippet (cons '$snippet (cdr e)))
503   (newline))
504
505 (defun fuel-markup--values-x/y (e)
506   (fuel-markup--values '($values ("x" "number") ("y" "number"))))
507
508 (defun fuel-markup--curious (e)
509   (fuel-markup--insert-heading "For the curious...")
510   (fuel-markup--print (cdr e)))
511
512 (defun fuel-markup--references (e)
513   (fuel-markup--insert-heading "References")
514   (dolist (ref (cdr e))
515     (if (listp ref)
516         (fuel-markup--print ref)
517       (fuel-markup--subsection (list '$subsection ref)))))
518
519 (defun fuel-markup--see-also (e)
520   (fuel-markup--insert-heading "See also")
521   (fuel-markup--links (cons '$links (cdr e))))
522
523 (defun fuel-markup--related (e)
524   (fuel-markup--insert-heading "See also")
525   (fuel-markup--links (cons '$links (cadr e))))
526
527 (defun fuel-markup--shuffle (e)
528   (insert "\nShuffle word. Re-arranges the stack "
529           "according to the stack effect pattern.")
530   (fuel-markup--insert-newline))
531
532 (defun fuel-markup--low-level-note (e)
533   (fuel-markup--print '($notes "Calling this word directly is not necessary "
534                                "in most cases. "
535                                "Higher-level words call it automatically.")))
536
537 (defun fuel-markup--parsing-note (e)
538   (fuel-markup--insert-nl-if-nb)
539   (insert "This word should only be called from parsing words.")
540   (fuel-markup--insert-newline))
541
542 (defun fuel-markup--io-error (e)
543   (fuel-markup--errors '($errors "Throws an error if the I/O operation fails.")))
544
545 (defun fuel-markup--prettyprinting-note (e)
546   (fuel-markup--print '($notes ("This word should only be called within the "
547                                 ($link with-pprint) " combinator."))))
548
549 (defun fuel-markup--elem-with-heading (elem heading)
550   (fuel-markup--insert-heading heading)
551   (fuel-markup--print (cdr elem))
552   (fuel-markup--insert-newline))
553
554 (defun fuel-markup--quotation (e)
555   (insert "a ")
556   (fuel-markup--link (list '$link 'quotation 'quotation 'word))
557   (insert " with stack effect ")
558   (fuel-markup--snippet (list '$snippet (nth 1 e))))
559
560 (defun fuel-markup--warning (e)
561   (fuel-markup--elem-with-heading e "Warning"))
562
563 (defun fuel-markup--description (e)
564   (fuel-markup--elem-with-heading e "Word description"))
565
566 (defun fuel-markup--class-description (e)
567   (fuel-markup--elem-with-heading e "Class description"))
568
569 (defun fuel-markup--error-description (e)
570   (fuel-markup--elem-with-heading e "Error description"))
571
572 (defun fuel-markup--var-description (e)
573   (fuel-markup--elem-with-heading e "Variable description"))
574
575 (defun fuel-markup--contract (e)
576   (fuel-markup--elem-with-heading e "Generic word contract"))
577
578 (defun fuel-markup--errors (e)
579   (fuel-markup--elem-with-heading e "Errors"))
580
581 (defun fuel-markup--examples (e)
582   (fuel-markup--elem-with-heading e "Examples"))
583
584 (defun fuel-markup--notes (e)
585   (fuel-markup--elem-with-heading e "Notes"))
586
587 (defun fuel-markup--word-info (e s)
588   (let* ((word (nth 1 e))
589          (cmd (and word `(:fuel* ((:quote ,(format "%s" word)) ,s) "fuel")))
590          (ret (and cmd (fuel-eval--send/wait cmd)))
591          (res (and (not (fuel-eval--retort-error ret))
592                    (fuel-eval--retort-output ret))))
593     (if res
594         (fuel-markup--code (list '$code res))
595       (fuel-markup--snippet (list '$snippet " " word)))))
596
597 (defun fuel-markup--see (e)
598   (fuel-markup--word-info e 'see))
599
600 (defun fuel-markup--synopsis (e)
601   (fuel-markup--word-info e 'synopsis))
602
603 (defun fuel-markup--null (e))
604
605 \f
606 (provide 'fuel-markup)
607 ;;; fuel-markup.el ends here