2010-11-15 03:46:55 +00:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;;;
|
|
|
|
;;; ghc-info.el
|
|
|
|
;;;
|
|
|
|
|
|
|
|
;; Author: Kazu Yamamoto <Kazu@Mew.org>
|
|
|
|
;; Created: Nov 15, 2010
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
(require 'ghc-func)
|
|
|
|
|
2010-11-15 05:46:59 +00:00
|
|
|
(defun ghc-show-info (&optional ask)
|
|
|
|
(interactive "P")
|
|
|
|
(if (not (ghc-which ghc-module-command))
|
|
|
|
(message "%s not found" ghc-module-command)
|
2010-11-17 08:07:33 +00:00
|
|
|
(let ((modname (ghc-find-module-name)))
|
|
|
|
(if (not modname)
|
|
|
|
(message "module should be specified")
|
|
|
|
(ghc-show-info0 ask modname)))))
|
|
|
|
|
|
|
|
(defun ghc-show-info0 (ask modname)
|
2012-01-23 06:12:24 +00:00
|
|
|
(let* ((expr0 (ghc-things-at-point))
|
2010-11-17 08:07:33 +00:00
|
|
|
(expr (if ask (ghc-read-expression expr0) expr0))
|
|
|
|
(cdir default-directory)
|
|
|
|
(file (buffer-name))
|
|
|
|
(buf (get-buffer-create ghc-error-buffer-name)))
|
|
|
|
(with-current-buffer buf
|
|
|
|
(erase-buffer)
|
|
|
|
(insert
|
|
|
|
(with-temp-buffer
|
|
|
|
(cd cdir)
|
2011-11-15 11:40:25 +00:00
|
|
|
(apply 'call-process ghc-module-command nil t nil
|
|
|
|
`(,@(ghc-make-ghc-options) "info" ,file ,modname ,expr))
|
2010-11-17 08:07:33 +00:00
|
|
|
(buffer-substring (point-min) (1- (point-max))))))
|
|
|
|
(display-buffer buf)))
|
2010-11-15 05:46:59 +00:00
|
|
|
|
2012-02-13 03:06:59 +00:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;;;
|
2012-02-13 04:23:04 +00:00
|
|
|
;;; type
|
2012-02-13 03:06:59 +00:00
|
|
|
;;;
|
|
|
|
|
2012-02-13 04:23:04 +00:00
|
|
|
(defvar ghc-type-overlay nil)
|
2012-02-13 03:06:59 +00:00
|
|
|
|
2012-02-13 04:23:04 +00:00
|
|
|
(make-variable-buffer-local 'ghc-type-overlay)
|
2012-02-13 03:06:59 +00:00
|
|
|
|
2012-02-13 04:23:04 +00:00
|
|
|
(defun ghc-type-set-ix (n)
|
|
|
|
(overlay-put ghc-type-overlay 'ix n))
|
2012-02-13 03:06:59 +00:00
|
|
|
|
2012-02-13 04:23:04 +00:00
|
|
|
(defun ghc-type-get-ix ()
|
|
|
|
(overlay-get ghc-type-overlay 'ix))
|
2012-02-13 03:06:59 +00:00
|
|
|
|
2012-02-13 04:23:04 +00:00
|
|
|
(defun ghc-type-set-point (pos)
|
|
|
|
(overlay-put ghc-type-overlay 'pos pos))
|
2012-02-13 03:06:59 +00:00
|
|
|
|
2012-02-13 04:23:04 +00:00
|
|
|
(defun ghc-type-get-point ()
|
|
|
|
(overlay-get ghc-type-overlay 'pos))
|
2012-02-13 03:06:59 +00:00
|
|
|
|
2012-02-13 04:23:04 +00:00
|
|
|
(defun ghc-type-set-types (types)
|
|
|
|
(overlay-put ghc-type-overlay 'types types))
|
2012-02-13 03:06:59 +00:00
|
|
|
|
2012-02-13 04:23:04 +00:00
|
|
|
(defun ghc-type-get-types ()
|
|
|
|
(overlay-get ghc-type-overlay 'types))
|
2012-02-13 03:06:59 +00:00
|
|
|
|
2012-02-13 04:38:06 +00:00
|
|
|
(ghc-defstruct tinfo beg-line beg-column end-line end-column info)
|
|
|
|
|
2012-02-13 04:23:04 +00:00
|
|
|
(defun ghc-type-init ()
|
|
|
|
(setq ghc-type-overlay (make-overlay 0 0))
|
|
|
|
(overlay-put ghc-type-overlay 'face 'region)
|
|
|
|
(ghc-type-set-ix 0)
|
|
|
|
(ghc-type-set-point 0)
|
2012-02-13 03:06:59 +00:00
|
|
|
(setq after-change-functions
|
2012-02-13 04:38:06 +00:00
|
|
|
(cons 'ghc-type-deleve-overlay after-change-functions)))
|
2012-02-13 03:06:59 +00:00
|
|
|
|
2012-02-13 04:38:06 +00:00
|
|
|
(defun ghc-type-deleve-overlay (beg end len)
|
2012-02-13 04:23:04 +00:00
|
|
|
(when (overlayp ghc-type-overlay)
|
|
|
|
(delete-overlay ghc-type-overlay)))
|
2012-02-13 03:06:59 +00:00
|
|
|
|
2012-02-13 04:23:04 +00:00
|
|
|
(defun ghc-show-type ()
|
2012-02-13 03:06:59 +00:00
|
|
|
(interactive)
|
2012-02-12 16:01:58 +00:00
|
|
|
(if (not (ghc-which ghc-module-command))
|
|
|
|
(message "%s not found" ghc-module-command)
|
|
|
|
(let ((modname (ghc-find-module-name)))
|
|
|
|
(if (not modname)
|
|
|
|
(message "module should be specified")
|
2012-02-13 04:23:04 +00:00
|
|
|
(ghc-show-type0 modname)))))
|
2012-02-13 03:06:59 +00:00
|
|
|
|
2012-02-13 04:23:04 +00:00
|
|
|
(defun ghc-show-type0 (modname)
|
2012-02-13 03:06:59 +00:00
|
|
|
(let* ((buf (current-buffer))
|
2012-02-13 04:48:41 +00:00
|
|
|
(tinfos (ghc-type-get-tinfos modname)))
|
|
|
|
(if (null tinfos)
|
|
|
|
(message "Cannot guess type")
|
|
|
|
(let* ((tinfo (nth (ghc-type-get-ix) tinfos))
|
|
|
|
(type (ghc-tinfo-get-info tinfo))
|
|
|
|
(beg-line (ghc-tinfo-get-beg-line tinfo))
|
|
|
|
(beg-column (ghc-tinfo-get-beg-column tinfo))
|
|
|
|
(end-line (ghc-tinfo-get-end-line tinfo))
|
|
|
|
(end-column (ghc-tinfo-get-end-column tinfo))
|
|
|
|
(left (ghc-get-pos buf beg-line beg-column))
|
|
|
|
(right (ghc-get-pos buf end-line end-column)))
|
|
|
|
(move-overlay ghc-type-overlay (- left 1) (- right 1) buf)
|
|
|
|
(message type)))))
|
2012-02-13 04:38:06 +00:00
|
|
|
|
|
|
|
(defun ghc-type-get-tinfos (modname)
|
2012-02-13 04:23:04 +00:00
|
|
|
(if (= (ghc-type-get-point) (point))
|
|
|
|
(ghc-type-set-ix
|
|
|
|
(mod (1+ (ghc-type-get-ix)) (length (ghc-type-get-types))))
|
2012-02-13 04:38:06 +00:00
|
|
|
(ghc-type-set-types (ghc-type-obtain-tinfos modname))
|
2012-02-13 04:23:04 +00:00
|
|
|
(ghc-type-set-point (point))
|
|
|
|
(ghc-type-set-ix 0))
|
|
|
|
(ghc-type-get-types))
|
2012-02-13 03:06:59 +00:00
|
|
|
|
2012-02-13 04:38:06 +00:00
|
|
|
(defun ghc-type-obtain-tinfos (modname)
|
2012-02-13 03:06:59 +00:00
|
|
|
(let* ((ln (int-to-string (line-number-at-pos)))
|
|
|
|
(cn (int-to-string (current-column)))
|
2012-02-12 16:01:58 +00:00
|
|
|
(cdir default-directory)
|
|
|
|
(file (buffer-name)))
|
2012-02-13 03:06:59 +00:00
|
|
|
(ghc-read-lisp
|
|
|
|
(lambda ()
|
|
|
|
(cd cdir)
|
|
|
|
(apply 'call-process ghc-module-command nil t nil
|
2012-02-13 04:23:04 +00:00
|
|
|
`(,@(ghc-make-ghc-options) "type" ,file ,modname ,ln ,cn))))))
|
2012-02-13 03:06:59 +00:00
|
|
|
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;;;
|
|
|
|
;;; Misc
|
|
|
|
;;;
|
2012-02-12 16:01:58 +00:00
|
|
|
|
|
|
|
(defun ghc-get-pos (buf line col)
|
|
|
|
(save-excursion
|
|
|
|
(set-buffer buf)
|
|
|
|
(goto-line line)
|
|
|
|
(forward-char col)
|
|
|
|
(point)))
|
|
|
|
|
2010-11-15 05:46:59 +00:00
|
|
|
(defun ghc-read-expression (default)
|
2012-01-06 02:12:28 +00:00
|
|
|
(if default
|
|
|
|
(let ((prompt (format "Expression (%s): " default)))
|
|
|
|
(read-string prompt default nil))
|
|
|
|
(read-string "Expression: ")))
|
2010-11-15 05:46:59 +00:00
|
|
|
|
2010-11-17 08:07:33 +00:00
|
|
|
(defun ghc-find-module-name ()
|
|
|
|
(save-excursion
|
|
|
|
(goto-char (point-min))
|
|
|
|
(if (re-search-forward "^module[ ]+\\([^ ]+\\)" nil t)
|
|
|
|
(match-string-no-properties 1))))
|
|
|
|
|
2010-11-15 03:46:55 +00:00
|
|
|
(provide 'ghc-info)
|