File size: 4,330 Bytes
3dcad1f |
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 |
;;; guile-emacs.scm --- Guile Emacs interface
;; Copyright (C) 2001, 2010 Keisuke Nishida <[email protected]>
;;;; This library is free software; you can redistribute it and/or
;;;; modify it under the terms of the GNU Lesser General Public
;;;; License as published by the Free Software Foundation; either
;;;; version 3 of the License, or (at your option) any later version.
;;;;
;;;; This library 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
;;;; Lesser General Public License for more details.
;;;;
;;;; You should have received a copy of the GNU Lesser General Public
;;;; License along with this library; if not, write to the Free
;;;; Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
;;;; 02111-1307 USA
;;; Code:
(use-modules (ice-9 regex))
(use-modules (ice-9 channel))
(use-modules (ice-9 session))
(use-modules (ice-9 documentation))
;;;
;;; Emacs Lisp channel
;;;
(define (emacs-lisp-channel)
(define (native-type? x)
(or (integer? x) (symbol? x) (string? x) (pair? x) (vector? x)))
(define (emacs-lisp-print ch val)
(cond
((unspecified? val))
((eq? val #t) (channel-print-value ch 't))
((or (eq? val #f) (null? val)) (channel-print-value ch 'nil))
((native-type? val) (channel-print-value ch val))
(else (channel-print-token ch val))))
(channel-open (make-object-channel emacs-lisp-print)))
;;;
;;; Scheme channel
;;;
(define (emacs-scheme-channel)
(define (print ch val) (channel-print-value ch (object->string val)))
(channel-open (make-object-channel print)))
;;;
;;; for guile-import and guile-import-module
;;;
(define (guile-emacs-export-procedure name proc docs)
(define (procedure-args proc)
(let ((source (procedure-source proc)))
(if source
;; formals -> emacs args
(let loop ((formals (cadr source)))
(cond
((null? formals) '())
((symbol? formals) `(&rest ,formals))
(else (cons (car formals) (loop (cdr formals))))))
;; arity -> emacs args
(let* ((arity (procedure-minimum-arity proc))
(nreqs (car arity))
(nopts (cadr arity))
(restp (caddr arity)))
(define (nsyms n)
(if (= n 0) '() (cons (gensym "a") (nsyms (1- n)))))
(append! (nsyms nreqs)
(if (> nopts 0) (cons '&optional (nsyms nopts)) '())
(if restp (cons '&rest (nsyms 1)) '()))))))
(define (procedure-call name args)
(let ((restp (memq '&rest args))
(args (delq '&rest (delq '&optional args))))
(if restp
`('apply ',name ,@args)
`(',name ,@args))))
(let ((args (procedure-args proc))
(docs (and docs (object-documentation proc))))
`(defun ,name ,args
,@(if docs (list docs) '())
(guile-lisp-flat-eval ,@(procedure-call (procedure-name proc) args)))))
(define (guile-emacs-export proc-name func-name docs)
(let ((proc (module-ref (current-module) proc-name)))
(guile-emacs-export-procedure func-name proc docs)))
(define (guile-emacs-export-procedures module-name docs)
(define (module-public-procedures name)
(hash-fold (lambda (s v d)
(let ((val (variable-ref v)))
(if (procedure? val) (acons s val d) d)))
'() (module-obarray (resolve-interface name))))
`(progn ,@(map (lambda (n+p)
(guile-emacs-export-procedure (car n+p) (cdr n+p) docs))
(module-public-procedures module-name))))
;;;
;;; for guile-scheme-complete-symbol
;;;
(define (guile-emacs-complete-alist str)
(sort! (apropos-fold (lambda (module name val data)
(cons (list (symbol->string name)
(cond ((procedure? val) " <p>")
((macro? val) " <m>")
(else "")))
data))
'() (string-append "^" (regexp-quote str))
apropos-fold-all)
(lambda (p1 p2) (string<? (car p1) (car p2)))))
;;;
;;; for guile-scheme-apropos
;;;
(define (guile-emacs-apropos regexp)
(with-output-to-string (lambda () (apropos regexp))))
;;;
;;; for guile-scheme-describe
;;;
(define (guile-emacs-describe sym)
(object-documentation (eval sym (current-module))))
;;;
;;; Guile 1.4 compatibility
;;;
(define object->string
(if (defined? 'object->string)
object->string
(lambda (x) (format #f "~S" x))))
;;; guile-emacs.scm ends here
|