summaryrefslogtreecommitdiff
path: root/elisp/geiser-syntax.el
blob: 2025f3d2123143c5e63754cdf40f12a70d39106e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
;; geiser-syntax.el -- guile-specific scheme syntax

;; Copyright (C) 2009 Jose Antonio Ortega Ruiz

;; Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
;; Start date: Sun Feb 08, 2009 15:03

;; This file is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 3 of the License, or
;; (at your option) any later version.

;; This file is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;; GNU General Public License for more details.

;; You should have received a copy of the GNU General Public License
;; along with this program.  If not, see <http://www.gnu.org/licenses/>.

;;; Comentary:

;; Utilities for parsing Guile-specific Scheme syntax.

;;; Code:

(require 'geiser-base)

(require 'scheme)


;;; Modules:

(defconst geiser-syntax--module-definition-re
  "(define-module +\\(([^)]+)\\)")

(defun geiser-syntax--buffer-module (&optional buffer)
  (let ((buffer (or buffer (current-buffer))))
    (with-current-buffer buffer
      (save-excursion
        (goto-char (point-min))
        (when (re-search-forward geiser-syntax--module-definition-re nil t)
          (car (read-from-string (match-string-no-properties 1))))))))

;;; Indentation:

(defun geiser-syntax--setup-scheme-indent ()
  (let ((defuns '(catch)))
    (mapc (lambda (d) (put d 'scheme-indent-function 'defun)) defuns)))

(geiser-syntax--setup-scheme-indent)


;;; Code parsing:

(geiser-popup--define syntax " *geiser syntax analyst*" scheme-mode)

(defun geiser-syntax--complete-partial-sexp (buffer begin end)
  (set-buffer buffer)
  (let ((inhibit-read-only t))
    (copy-to-buffer (geiser-syntax--buffer) begin end))
  (geiser-syntax--with-buffer
    (goto-char (point-max))
    (skip-syntax-backward "-")
    (let ((pps (parse-partial-sexp (point-min) (point))))
      (cond ((nth 8 pps) ;; inside a comment or string
             (delete-region (nth 8 pps) (point-max)))
            ((nth 5 pps) (delete-char -1))) ;; after a quote
      (let ((depth (nth 0 pps)))
        (unless (zerop depth) (insert (make-string depth ?\)))))
      (geiser-syntax--prepare-scheme-for-elisp-reader)
      (read (current-buffer)))))

(defsubst geiser-syntax--get-partial-sexp ()
  (save-excursion
    (let* ((begin (point))
           (end (progn (beginning-of-defun) (point))))
      (geiser-syntax--complete-partial-sexp (current-buffer) begin end))))

(defun geiser-syntax--collect-local-symbols (sexp acc)
  (cond ((or (null sexp) (not (listp sexp))) acc)
        ((listp (car sexp))
         (geiser-syntax--collect-local-symbols
          (cdr sexp)
          (geiser-syntax--collect-local-symbols (car sexp) acc)))
        ((memq (car sexp) '(define define*))
         (let* ((name (cadr sexp))
                (name (if (symbolp name) name (car name)))
                (acc (if (symbolp name) (cons name acc) acc)))
           (geiser-syntax--collect-local-symbols (cddr sexp) acc)))
        ((memq (car sexp) '(let let* letrec))
         (let* ((n (if (listp (nth 1 sexp)) 1 2))
                (syms (mapcar 'car (nth n sexp)))
                (rest (if (= 1 n) (cddr sexp) (cdr (cddr sexp)))))
           (geiser-syntax--collect-local-symbols rest (append syms acc))))
        (t (geiser-syntax--collect-local-symbols (cdr sexp) acc))))

(defsubst geiser-syntax--local-bindings ()
  (ignore-errors
    (mapcar 'symbol-name
            (geiser-syntax--collect-local-symbols (geiser-syntax--get-partial-sexp) '()))))

(defsubst geiser-syntax--end-of-thing ()
  (let ((sc (or (syntax-class (syntax-after (point))) 0)))
    (when (= sc 7) (forward-char))
    (cond ((nth 3 (syntax-ppss))
           (skip-syntax-forward "^\"")
           (forward-char))
          ((and (= sc 5) (eq ?\( (char-before))) (forward-char))
          ((not (or (= sc 0) (= sc 12))) ;; comment, whitespace
           (ignore-errors (forward-sexp))))
    (point)))

(defun geiser-syntax--enclosing-form-data ()
  (save-excursion
    (let* ((p (geiser-syntax--end-of-thing))
           (current (cons (symbol-at-point) 0))
           (data))
      (ignore-errors
        (while (not (bobp))
          (backward-up-list)
          (save-excursion
            (forward-char)
            (let ((proc (symbol-at-point))
                  (arg-no 0))
              (when proc
                (while (< (point) p)
                  (forward-sexp)
                  (when (< (point) p) (setq arg-no (1+ arg-no))))
                (push (cons proc arg-no) data))))))
      (reverse (if (car current) (push current data) data)))))

(defun geiser-syntax--prepare-scheme-for-elisp-reader ()
  (goto-char (point-min))
  (while (re-search-forward "#\<\\([^>]*?\\)\>" nil t)
    (let ((from (match-beginning 1))
          (to (match-end 1)))
      (goto-char from)
      (while (re-search-forward "\\([() ;'`]\\)" to t)
        (replace-match "\\\\\\1"))
      (goto-char to)))
  (goto-char (point-min))
  (while (re-search-forward "#(" nil t) (replace-match "(vector "))
  (goto-char (point-min))
  (while (re-search-forward "#" nil t) (replace-match "\\\\#"))
  (goto-char (point-min))
  (skip-syntax-forward "^("))


;;; Fontify strings as Scheme code:

(defun geiser-syntax--font-lock-buffer ()
  (let ((name " *geiser font lock*"))
    (or (get-buffer name)
        (let ((buffer (get-buffer-create name)))
          (set-buffer buffer)
          (scheme-mode)
          buffer))))

(defun geiser-syntax--scheme-str (str)
  (save-current-buffer
    (set-buffer (geiser-syntax--font-lock-buffer))
    (erase-buffer)
    (insert str)
    (let ((font-lock-verbose nil)) (font-lock-fontify-buffer))
    (buffer-string)))


(provide 'geiser-syntax)
;;; geiser-syntax.el ends here