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
|
;; emacs.scm -- procedures for emacs interaction
;; Copyright (C) 2009 Jose Antonio Ortega Ruiz
;; Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
;; Start date: Sun Feb 08, 2009 18:39
;; 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:
;; Re-exports of procedures used by Emacs.
;;; Code:
(define-module (geiser emacs)
#:export (ge:eval
ge:compile
ge:compile-file
ge:load-file)
#:re-export (ge:arguments
ge:completions
ge:symbol-location
ge:symbol-documentation
ge:all-modules
ge:module-children
ge:module-location)
#:use-module (srfi srfi-1)
#:use-module ((geiser introspection) :renamer (symbol-prefix-proc 'ge:)))
(define (write-result result output)
(write (list (cons 'result result) (cons 'output output)))
(newline))
(define (write-error key . args)
(write (list (cons 'error (apply parse-error (cons key args)))))
(newline))
(define (parse-error key . args)
(let* ((len (length args))
(subr (and (> len 0) (first args)))
(msg (and (> len 1) (second args)))
(margs (and (> len 2) (third args)))
(rest (and (> len 3) (fourth args))))
(list (cons 'key key)
(cons 'subr (or subr '()))
(cons 'msg (if msg (apply format (cons #f (cons msg margs))) '()))
(cons 'rest (or rest '())))))
(define (ge:eval form module-name)
"Evals @var{form} in the module designated by @var{module-name}.
If @var{module-name} is @var{#f} or resolution fails, the current module is used instead.
The result is a list of the form ((RESULT . <form-value>) (OUTPUT . <string>))
if no evaluation error happens, or ((ERROR (KEY . <error-key>) <error-arg>...))
in case of errors. Each error arg is a cons (NAME . VALUE), where NAME includes
SUBR, MSG and REST."
(let ((module (or (and (list? module-name)
(resolve-module module-name))
(current-module))))
(catch #t
(lambda ()
(let ((result #f))
(let ((output
(with-output-to-string
(lambda ()
(set! result (eval form module))))))
(write-result result output))))
write-error)))
(define (ge:compile form module-name)
"Compiles @var{form} in the module designated by @var{module-name}.
If @var{module-name} is @var{#f} or resolution fails, the current module is used instead.
The result is a list of the form ((RESULT . <form-value>) (OUTPUT . <string>))
if no evaluation error happens, or ((ERROR (KEY . <error-key>) <error-arg>...))
in case of errors. Each error arg is a cons (NAME . VALUE), where NAME includes
SUBR, MSG and REST."
(let ((module (or (and (list? module-name)
(resolve-module module-name))
(current-module))))
(catch #t
(lambda ()
(let ((result #f))
(let ((output
(with-output-to-string
(lambda ()
(save-module-excursion
(lambda ()
(set-current-module module)
(set! result (compile form))))))))
(write-result result output))))
write-error)))
(define (ge:compile-file path)
"Compile and load file, given its full @var{path}."
(and (compile-file path)
(load-compiled (compiled-file-name path))))
(define (ge:load-file path)
"Load file, given its full @var{path}."
(compile-and-load path))
;;; emacs.scm ends here
|