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 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
|
;;; racket-util.el -*- lexical-binding: t -*-
;; Copyright (c) 2013-2020 by Greg Hendershott.
;; Portions Copyright (C) 1985-1986, 1999-2013 Free Software Foundation, Inc.
;; Author: Greg Hendershott
;; URL: https://github.com/greghendershott/racket-mode
;; License:
;; This 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 2, or (at your option)
;; any later version. This 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. See
;; http://www.gnu.org/licenses/ for details.
(require 'racket-custom)
(defun racket--easy-keymap-define (spec)
"Make a sparse keymap with the bindings in SPEC.
SPEC is
(list (list KEY-OR-KEYS DEF) ...)
KEY-OR-KEYS is either a string given to `kbd', or, for the case
where multiple keys bind to the same command, a list of such
strings.
DEF is the same as DEF for `define-key'."
(let ((m (make-sparse-keymap)))
(mapc (lambda (x)
(let ((keys (if (listp (car x))
(car x)
(list (car x))))
(def (cadr x)))
(mapc (lambda (key)
(define-key m (kbd key) def))
keys)))
spec)
m))
(defun racket--buffer-file-name (&optional no-adjust)
"Like `buffer-file-name' but always a non-propertized string.
Unless NO-ADJUST is not nil, applies the name to the function
variable `racket-path-from-emacs-to-racket-function'."
(let ((v (and (buffer-file-name)
(substring-no-properties (buffer-file-name)))))
(if no-adjust
v
(funcall racket-path-from-emacs-to-racket-function
v))))
(defun racket--get-buffer-recreate (bufname)
"Like `get-buffer-create' but re-creates the buffer if it already exists."
(let* ((buf (get-buffer bufname))
(_ (when buf (kill-buffer buf)))))
(get-buffer-create bufname))
(defun racket--save-if-changed ()
(unless (eq major-mode 'racket-mode)
(user-error "Current buffer is not a racket-mode buffer"))
(when (or (buffer-modified-p)
(and (buffer-file-name)
(not (file-exists-p (buffer-file-name)))))
(save-buffer)))
(add-hook 'racket--repl-before-run-hook #'racket--save-if-changed)
(defun racket--mode-edits-racket-p ()
"Return non-nil if the current major mode is one that edits Racket code.
This is intended to be used with commands that customize their
behavior based on whether they are editing Racket, such as
Paredit bindings, without each of those commands needing to have
a list of all modes in which Racket is edited."
(memq major-mode '(racket-mode racket-repl-mode)))
(defun racket--take-while (xs pred)
(pcase xs
(`() `())
(`(,x . ,xs) (if (funcall pred x)
(cons x (racket--take-while xs pred))
`()))))
(defconst racket--el-source-dir
(file-name-directory (or load-file-name (racket--buffer-file-name)))
"Path to dir of our Emacs Lisp source files.
When installed as a package, this can be found from the variable
`load-file-name'. When developing interactively, get it from the
.el buffer file name.")
(defconst racket--rkt-source-dir
(expand-file-name "./racket/" racket--el-source-dir)
"Path to dir of our Racket source files. ")
;;; trace
(defvar racket--trace-enable nil)
(defun racket--trace (p &optional s retval)
(when racket--trace-enable
(let ((b (get-buffer-create "*Racket Trace*"))
(deactivate-mark deactivate-mark))
(save-excursion
(save-restriction
(with-current-buffer b
(insert p ": " (if (stringp s) s (format "%S" s)) "\n"))))))
retval)
(defun racket--toggle-trace (arg)
(interactive "P")
(setq racket--trace-enable (or arg (not racket--trace-enable)))
(if racket--trace-enable
(message "Racket trace on")
(message "Racket trace off"))
(let ((b (get-buffer-create "*Racket Trace*")))
(pop-to-buffer b t t)
(setq truncate-lines t)))
(defun racket--restoring-current-buffer (proc)
"Return a procedure restoring `current-buffer' during the dynamic extent of PROC."
(let ((buf (current-buffer)))
(lambda (&rest args)
(with-current-buffer buf
(apply proc args)))))
;;; string trim
;; "inline" the one thing we used from `s' so we can drop the dep.
;; TO-DO: Rewrite racket--trim more simply; I just don't want to
;; detour now.
(defun racket--trim-left (s)
"Remove whitespace at the beginning of S."
(save-match-data
(if (string-match "\\`[ \t\n\r]+" s)
(replace-match "" t t s)
s)))
(defun racket--trim-right (s)
"Remove whitespace at the end of S."
(save-match-data
(if (string-match "[ \t\n\r]+\\'" s)
(replace-match "" t t s)
s)))
(defun racket--trim (s)
"Remove whitespace at the beginning and end of S."
(racket--trim-left (racket--trim-right s)))
(defun racket--non-empty-string-p (v)
(and (stringp v)
(not (string-match-p "\\`[ \t\n\r]*\\'" v)))) ;`string-blank-p'
(defun racket--symbol-at-point-or-prompt (force-prompt-p
prompt
&optional
completions
allow-blank-p)
"If symbol at point return it, else prompt user.
When FORCE-PROMPT-P always prompt. The prompt uses
`read-from-minibuffer' when COMPLETIONS is nil, else
`ido-completing-read'.
Returns `stringp' not `symbolp' to simplify using the result in a
sexpr that can be passed to Racket backend. Likewise the string
is trimmed and text properties are stripped.
Unless ALLOW-BLANK-P, a blank string after trimming returns nil
as if the user had C-g to quit."
(let ((sap (thing-at-point 'symbol t)))
(if (or force-prompt-p
(not sap))
(let* ((s (if completions
(ido-completing-read prompt completions nil nil sap)
(read-from-minibuffer prompt sap)))
(s (if s
(racket--trim (substring-no-properties s))
s)))
(if (or (not s)
(and (not allow-blank-p) (equal "" s)))
nil
s))
sap)))
(defconst racket--config-dir (file-name-as-directory
(locate-user-emacs-file "racket-mode")))
(defun racket-project-root (file)
"Given an absolute pathname for FILE, return its project root directory.
The \"project\" is determined by trying, in order:
- `projectile-project-root'
- `vc-root-dir'
- `project-current'
- `file-name-directory'"
(let ((dir (file-name-directory file)))
(or (and (fboundp 'projectile-project-root)
(projectile-project-root dir))
(and (fboundp 'vc-root-dir)
(vc-root-dir))
(and (fboundp 'project-current)
(cdr (project-current nil dir)))
dir)))
(provide 'racket-util)
;; racket-util.el ends here
|