2014-06-17 16:15:36 +00:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;;;
|
|
|
|
;;; ghc-rewrite.el
|
|
|
|
;;;
|
|
|
|
|
|
|
|
;; Author: Alejandro Serrano <trupill@gmail.com>
|
|
|
|
;; Created: Jun 17, 2014
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
(require 'ghc-func)
|
|
|
|
(require 'ghc-process)
|
2014-08-12 21:01:37 +00:00
|
|
|
(require 'button)
|
2014-08-14 15:49:49 +00:00
|
|
|
;(require 'dropdown-list)
|
2014-06-17 16:15:36 +00:00
|
|
|
|
2014-08-06 11:50:50 +00:00
|
|
|
(defvar ghc-auto-info nil)
|
|
|
|
(defvar ghc-auto-buffer nil)
|
|
|
|
|
2014-07-20 08:45:01 +00:00
|
|
|
;; Common code for case splitting and refinement
|
|
|
|
|
|
|
|
(defun ghc-perform-rewriting (info)
|
2014-07-20 11:40:08 +00:00
|
|
|
"Replace code with new string obtained from ghc-mod"
|
2014-07-20 08:45:01 +00:00
|
|
|
(let* ((current-line (line-number-at-pos))
|
|
|
|
(begin-line (ghc-sinfo-get-beg-line info))
|
|
|
|
(begin-line-diff (+ 1 (- begin-line current-line)))
|
|
|
|
(begin-line-pos (line-beginning-position begin-line-diff))
|
|
|
|
(begin-pos (- (+ begin-line-pos (ghc-sinfo-get-beg-column info)) 1))
|
|
|
|
(end-line (ghc-sinfo-get-end-line info))
|
|
|
|
(end-line-diff (+ 1 (- end-line current-line)))
|
|
|
|
(end-line-pos (line-beginning-position end-line-diff))
|
|
|
|
(end-pos (- (+ end-line-pos (ghc-sinfo-get-end-column info)) 1)) )
|
|
|
|
(delete-region begin-pos end-pos)
|
|
|
|
(insert (ghc-sinfo-get-info info)) )
|
|
|
|
)
|
|
|
|
|
2014-06-17 16:15:36 +00:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;;;
|
|
|
|
;;; Case splitting
|
|
|
|
;;;
|
|
|
|
|
|
|
|
(ghc-defstruct sinfo beg-line beg-column end-line end-column info)
|
|
|
|
|
|
|
|
(defun ghc-case-split ()
|
2014-07-20 11:40:08 +00:00
|
|
|
"Split the variable at point into its possible constructors"
|
2014-06-17 16:15:36 +00:00
|
|
|
(interactive)
|
2014-08-12 20:44:11 +00:00
|
|
|
(when (null (ghc-try-case-split))
|
|
|
|
(message "Cannot split into cases")))
|
|
|
|
|
|
|
|
(defun ghc-try-case-split ()
|
2014-06-17 16:15:36 +00:00
|
|
|
(let ((info (ghc-obtain-case-split)))
|
|
|
|
(if (null info)
|
2014-08-12 20:44:11 +00:00
|
|
|
'()
|
2014-07-20 08:45:01 +00:00
|
|
|
(ghc-perform-rewriting info)) ))
|
2014-06-17 16:15:36 +00:00
|
|
|
|
|
|
|
(defun ghc-obtain-case-split ()
|
|
|
|
(let* ((ln (int-to-string (line-number-at-pos)))
|
|
|
|
(cn (int-to-string (1+ (current-column))))
|
|
|
|
(file (buffer-file-name))
|
|
|
|
(cmd (format "split %s %s %s\n" file ln cn)))
|
|
|
|
(ghc-sync-process cmd)))
|
|
|
|
|
2014-06-22 09:10:23 +00:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2014-07-20 08:45:01 +00:00
|
|
|
;;;
|
|
|
|
;;; Refinement
|
|
|
|
;;;
|
|
|
|
|
|
|
|
(defun ghc-refine ()
|
2014-07-20 11:40:08 +00:00
|
|
|
"Refine a hole using a user-specified function"
|
2014-07-20 08:45:01 +00:00
|
|
|
(interactive)
|
2014-08-12 20:44:11 +00:00
|
|
|
(when (null (ghc-try-refine))
|
|
|
|
(message "Cannot refine")))
|
|
|
|
|
|
|
|
(defun ghc-try-refine ()
|
2014-07-20 08:45:01 +00:00
|
|
|
(let ((info (ghc-obtain-refine (read-string "Refine with: "))))
|
|
|
|
(if (null info)
|
2014-08-12 20:44:11 +00:00
|
|
|
'()
|
|
|
|
(ghc-perform-rewriting info)) ))
|
2014-07-20 08:45:01 +00:00
|
|
|
|
|
|
|
(defun ghc-obtain-refine (expr)
|
|
|
|
(let* ((ln (int-to-string (line-number-at-pos)))
|
|
|
|
(cn (int-to-string (1+ (current-column))))
|
|
|
|
(file (buffer-file-name))
|
|
|
|
(cmd (format "refine %s %s %s %s\n" file ln cn expr)))
|
|
|
|
(ghc-sync-process cmd)))
|
|
|
|
|
2014-08-02 07:52:36 +00:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;;;
|
|
|
|
;;; Auto
|
|
|
|
;;;
|
|
|
|
|
2014-08-02 08:27:40 +00:00
|
|
|
(defun ghc-perform-rewriting-auto (info msg)
|
2014-08-02 07:52:36 +00:00
|
|
|
"Replace code with new string obtained from ghc-mod from auto mode"
|
|
|
|
(let* ((current-line (line-number-at-pos))
|
|
|
|
(begin-line (ghc-sinfo-get-beg-line info))
|
|
|
|
(begin-line-diff (+ 1 (- begin-line current-line)))
|
|
|
|
(begin-line-pos (line-beginning-position begin-line-diff))
|
|
|
|
(begin-pos (- (+ begin-line-pos (ghc-sinfo-get-beg-column info)) 1))
|
|
|
|
(end-line (ghc-sinfo-get-end-line info))
|
|
|
|
(end-line-diff (+ 1 (- end-line current-line)))
|
|
|
|
(end-line-pos (line-beginning-position end-line-diff))
|
|
|
|
(end-pos (- (+ end-line-pos (ghc-sinfo-get-end-column info)) 1)) )
|
|
|
|
(delete-region begin-pos end-pos)
|
2014-08-02 08:27:40 +00:00
|
|
|
(insert msg)))
|
|
|
|
|
2014-08-14 15:49:49 +00:00
|
|
|
;; Option 1: using button
|
2014-08-12 21:01:37 +00:00
|
|
|
|
2014-08-14 15:49:49 +00:00
|
|
|
(defun ghc-auto-completion-window ()
|
|
|
|
(get-buffer-window ghc-error-buffer-name 0))
|
2014-08-12 21:01:37 +00:00
|
|
|
|
2014-08-14 15:49:49 +00:00
|
|
|
(defun auto-button (button)
|
|
|
|
(let ((text (buffer-substring (button-start button) (button-end button))))
|
|
|
|
(with-current-buffer ghc-auto-buffer
|
|
|
|
(ghc-perform-rewriting-auto ghc-auto-info text))
|
|
|
|
(quit-restore-window)))
|
|
|
|
|
|
|
|
(define-button-type 'auto-button
|
|
|
|
'follow-link t
|
|
|
|
'help-echo "mouse-2, RET: Insert this completion"
|
|
|
|
'action #'auto-button)
|
2014-08-02 08:27:40 +00:00
|
|
|
|
|
|
|
(defun ghc-show-auto-messages (info)
|
2014-08-14 15:49:49 +00:00
|
|
|
(let ((buf (current-buffer)))
|
|
|
|
(setq ghc-auto-info info)
|
|
|
|
(setq ghc-auto-buffer buf)
|
|
|
|
(ghc-display nil
|
|
|
|
(lambda ()
|
|
|
|
(insert "Possible completions:\n")
|
2014-09-16 03:22:18 +00:00
|
|
|
(mapc
|
|
|
|
(lambda (x)
|
2014-08-14 15:49:49 +00:00
|
|
|
(let* (; (ins1 (insert "- "))
|
|
|
|
(pos-begin (point))
|
|
|
|
(ins (insert x))
|
|
|
|
(pos-end (point))
|
|
|
|
(ins3 (insert "\n")))
|
|
|
|
(make-button pos-begin pos-end :type 'auto-button)))
|
|
|
|
(ghc-sinfo-get-info info))))
|
|
|
|
(select-window (ghc-auto-completion-window))))
|
|
|
|
|
|
|
|
;; Option 2: using dropdown-list
|
|
|
|
|
|
|
|
;; (defun ghc-show-auto-messages (info)
|
|
|
|
;; (let* ((completions (ghc-sinfo-get-info info))
|
|
|
|
;; (selected (dropdown-list completions)))
|
|
|
|
;; (when selected
|
|
|
|
;; (ghc-perform-rewriting-auto info (nth selected completions)))))
|
|
|
|
|
|
|
|
;; Option 3: using minibuffer
|
|
|
|
|
|
|
|
;; (defvar ghc-auto-completion-buffer-name "*Djinn Completions*")
|
|
|
|
|
|
|
|
;; (defun ghc-auto-completion-window ()
|
|
|
|
;; (get-buffer-window ghc-auto-completion-buffer-name 0))
|
|
|
|
|
|
|
|
;; (defun ghc-show-auto-messages (info)
|
|
|
|
;; (let* ((completions (ghc-sinfo-get-info info))
|
|
|
|
;; (buf (generate-new-buffer "djinn-completion-temp")))
|
|
|
|
;; (with-current-buffer
|
|
|
|
;; (progn
|
|
|
|
;; (with-output-to-temp-buffer ghc-auto-completion-buffer-name
|
|
|
|
;; (display-completion-list completions))
|
|
|
|
;; (select-window (ghc-auto-completion-window))
|
|
|
|
;; (buffer-string)))))
|
2014-08-02 07:52:36 +00:00
|
|
|
|
|
|
|
(defun ghc-auto ()
|
|
|
|
"Try to automatically fill the contents of a hole"
|
|
|
|
(interactive)
|
|
|
|
(let ((info (ghc-obtain-auto)))
|
|
|
|
(if (null info)
|
|
|
|
(message "No automatic completions found")
|
|
|
|
(if (= (length (ghc-sinfo-get-info info)) 1)
|
2014-08-06 11:50:50 +00:00
|
|
|
(ghc-perform-rewriting-auto info (car (ghc-sinfo-get-info info)))
|
2014-08-02 08:27:40 +00:00
|
|
|
(ghc-show-auto-messages info)))))
|
2014-08-02 07:52:36 +00:00
|
|
|
|
|
|
|
(defun ghc-obtain-auto ()
|
|
|
|
(let* ((ln (int-to-string (line-number-at-pos)))
|
|
|
|
(cn (int-to-string (1+ (current-column))))
|
|
|
|
(file (buffer-file-name))
|
|
|
|
(cmd (format "auto %s %s %s\n" file ln cn)))
|
|
|
|
(ghc-sync-process cmd)))
|
|
|
|
|
2014-07-20 08:45:01 +00:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2014-06-22 09:10:23 +00:00
|
|
|
;;;
|
|
|
|
;;; Initial code from signature
|
|
|
|
;;;
|
|
|
|
|
2014-07-02 15:04:28 +00:00
|
|
|
(ghc-defstruct icsinfo sort pos fns)
|
|
|
|
|
2014-06-22 09:10:23 +00:00
|
|
|
(defun ghc-initial-code-from-signature ()
|
2014-08-12 20:44:11 +00:00
|
|
|
"Refine a hole using a user-specified function"
|
|
|
|
(interactive)
|
|
|
|
(when (null (ghc-try-initial-code-from-signature))
|
|
|
|
(message "Cannot obtain initial code")))
|
|
|
|
|
|
|
|
(defun ghc-try-initial-code-from-signature ()
|
2014-07-20 11:40:08 +00:00
|
|
|
"Include initial code from a function signature or instance declaration"
|
2014-06-22 09:10:23 +00:00
|
|
|
(interactive)
|
|
|
|
(let ((info (ghc-obtain-initial-code-from-signature)))
|
|
|
|
(if (null info)
|
2014-08-12 20:44:11 +00:00
|
|
|
'()
|
2014-06-22 09:10:23 +00:00
|
|
|
(let* ((ln-current (line-number-at-pos))
|
2014-07-02 15:04:28 +00:00
|
|
|
(sort (ghc-icsinfo-get-sort info))
|
|
|
|
(pos (ghc-icsinfo-get-pos info))
|
2014-06-22 09:10:23 +00:00
|
|
|
(ln-end (ghc-sinfo-get-end-line pos))
|
|
|
|
(ln-diff (+ 1 (- ln-end ln-current)))
|
2014-07-02 15:04:28 +00:00
|
|
|
(fns-to-insert (ghc-icsinfo-get-fns info)))
|
2014-06-22 09:10:23 +00:00
|
|
|
(goto-char (line-end-position ln-diff))
|
|
|
|
(dolist (fn-to-insert fns-to-insert)
|
2014-06-22 16:03:34 +00:00
|
|
|
(if (equal sort "function")
|
|
|
|
(newline)
|
|
|
|
(newline-and-indent))
|
2014-06-22 09:10:23 +00:00
|
|
|
(insert fn-to-insert))))))
|
|
|
|
|
|
|
|
(defun ghc-obtain-initial-code-from-signature ()
|
|
|
|
(let* ((ln (int-to-string (line-number-at-pos)))
|
|
|
|
(cn (int-to-string (1+ (current-column))))
|
|
|
|
(file (buffer-file-name))
|
|
|
|
(cmd (format "sig %s %s %s\n" file ln cn)))
|
|
|
|
(ghc-sync-process cmd)))
|
|
|
|
|
2014-06-17 16:15:36 +00:00
|
|
|
(provide 'ghc-rewrite)
|