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 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424
|
;; Emacs integration.
;; Use M-p to compile using mymake. If a parent directory (or the current directory)
;; contains a file named 'buildconfig', that directory is used as a current directory
;; when executing mymake. If 'buildconfig' was found, its contents (except any commented
;; lines, using #) are used as a parameter to mymake.
;; If the 'buildconfig'-file is not found, emacs starts mymake in the buffer's directory,
;; using the current buffer name as a last-resort input. This is to make it super-simple
;; to start compiling using mymake; create a .cpp-file, write some code and hit M-p.
;; If you are annoyed by this, set 'mymake-no-default-input' to 't'.
;; To force a recompile, you can prefix any mymake-command with C-u.
;; Release: C-c C-r. This will run mymake with 'release' as parameter.
;; Clean: C-c C-m.
;; Custom command: C-c q
;;
;; Buildconfig syntax:
;; Lines starting with # are comments
;; Lines starting with : are directives to this emacs mode
;; All other lines are concatenated to form a command-line when running mymake.
;;
;; Directives are as follows:
;; :template yes - add a template to cpp/h-files:
;; :template-file yes - use files <ext>.template instead of generating the template directly.
;; Looks for the file in the same directory as the new file. The strings
;; $header$ and $file$ are replaced with the name of the corresponding
;; header file, and $file$ is replaced with the name of the file itself
;; (without extension). Cursor will be placed at the location of $$ if it
;; exists.
;; :header-ext h - set the extension to use for header files in template generation.
;; :pch foo.h - include the precompiled header in cpp-files in templates
;; :namespace yes - add "namespace <x> { }" to files, where <x> is the subdirectory the
;; current file is in with regards to the buildconfig file.
;; :namespace-map <a> <b> - map subdirectories (case insensitive) to namespace names. If <b> is
;; missing or equal to -, then the namespace is omitted.
;; :template-headers - regex matching headers to apply template to.
;; :template-sources - regex matching source files to apply template to.
;; :executable - override the default 'mymake-command' with another executable.
;; Allows using the buildconfig file to run other build systems and/or tools.
;; Configuration.
(defvar mymake-command "mm" "Command-line used to run mymake.")
(defvar mymake-config "buildconfig" "Config file to look for when compiling.")
(defvar mymake-compile-frame nil "Use a new frame when compiling.")
(defvar mymake-compilation-w 100 "Compilation window width")
(defvar mymake-compilation-h 83 "Compilation window height")
(defvar mymake-compilation-adjust-x 10 "Compilation window adjustment")
(defvar mymake-compilation-adjust-y 0 "Compilation window adjustment")
(defvar mymake-compilation-font-height 'nil "Compilation window font height")
(defvar mymake-no-default-input nil "Do not try to compile the current buffer if no buildconfig file is found.")
(defvar mymake-default-headers "\\(\\.h\\|\\.hh\\|\\.hpp\\)$" "Default regex for matching header files.")
(defvar mymake-default-sources "\\(\\.cpp\\|\\.cc\\|\\.cxx\\)$" "Default regex for matching source files.")
;; Keybindings
(global-set-key (kbd "M-p") 'mymake-compile)
(global-set-key (kbd "C-c C-m") 'mymake-clean)
(global-set-key (kbd "C-c C-k") 'mymake-kill)
(global-set-key (kbd "C-c C-r") 'mymake-release)
(global-set-key (kbd "C-c q") 'mymake-command)
;; Customize how next-error behaves.
(defun mymake-next-error ()
(interactive)
(let ((switch-to-buffer-obey-display-actions t)
(display-buffer-overriding-action '(mymake-display-error-code . ())))
(next-error)))
(defun mymake-display-error-code (buffer alist)
;; If the current window is displaying the buffer, don't do anything.
;; If we were to call display-buffer-reuse-window here, and multiple
;; windows display the same buffer, we might switch buffers inadvertedly.
(if (eq buffer (window-buffer (selected-window)))
(selected-window)
;; Check if there is some other window that already displays the buffer.
(let ((window (display-buffer-reuse-window buffer alist)))
;; If not: use the current window.
(unless window
(setq window (display-buffer-same-window buffer '())))
window)))
(when (< emacs-major-version 27)
;; The option "display-buffer-overriding-action" does not exist before emacs
;; 27.1. So we fix this using a custom advice.
(setq switch-to-buffer-obey-display-actions nil)
(defun mymake-advice-switch-to-buffer (fn &rest args)
(if switch-to-buffer-obey-display-actions
(select-window (display-buffer (car args)))
(apply fn args)))
(advice-add 'switch-to-buffer :around #'mymake-advice-switch-to-buffer))
;; Error navigation.
(global-set-key (kbd "M-n") 'mymake-next-error)
;; Convenient delete/rename of files.
(global-set-key (kbd "C-c C-f C-r") 'mymake-rename-file)
(global-set-key (kbd "C-c C-f C-d") 'mymake-delete-file)
;; Bindable functions
(defun mymake-compile (force)
"Compile using buildconfig (if it exists). Command line overridable by passing extra parameter."
(interactive "P")
(mymake-run :force force))
(defun mymake-kill ()
"Kill current compilation process."
(interactive)
(kill-compilation))
(defun mymake-clean ()
"Clean project."
(interactive)
(mymake-run :prepend "-c"))
(defun mymake-release (force)
"Compile in release mode."
(interactive "P")
(mymake-run :force force :replace "release"))
(defun mymake-release-64 (force)
"Compile in release mode for x64."
(interactive "P")
(mymake-run :force force :replace "release 64"))
(defvar mymake-last-command "" "Last command used in the function 'mymake-command'.")
(defun mymake-command (command)
"Run custom mymake command."
(interactive
(list (read-string "Command to mymake: " mymake-last-command)))
(setq mymake-last-command command)
(mymake-run :replace command))
(defun mymake-delete-file ()
"Delete the file of the current buffer and deletes the buffer."
(interactive)
(if (yes-or-no-p (concat "Really delete " buffer-file-name "? "))
(progn
(if (file-exists-p buffer-file-name)
(delete-file buffer-file-name))
(kill-buffer))))
(defun mymake-rename-file ()
"Renames the file of the current buffer."
(interactive)
(let ((name (read-file-name "New name: ")))
(rename-file buffer-file-name name)
(set-visited-file-name name t t)))
;; Implementations.
;; Get parent directory or nil if none.
(defun parent-directory (dir)
(let ((r (file-name-directory (directory-file-name dir))))
(cond ((eq nil r) 'nil)
((< (length r) (length dir)) r)
(t 'nil))))
;; Find a directory containing a buildconfig file. Returns nil if none found.
(defun mymake-find-config (dir)
(let ((file (concat (file-name-as-directory dir) "buildconfig")))
(if (file-exists-p file)
(file-name-as-directory dir)
(let ((parent (parent-directory dir)))
(if (eq nil parent)
'nil
(mymake-find-config parent))))))
(defun mymake-file-to-lines (file)
(with-temp-buffer
(insert-file-contents file)
(split-string (buffer-string) "\n")))
(defun mymake-remove-comments (lines)
"Removes any lines starting with #, : or empty lines"
(cl-remove-if (lambda (x)
(or
(= (length x) 0)
(= (string-to-char x) ?:)
(= (string-to-char x) ?#)))
lines))
(defun mymake-list-to-str (lines)
(cond ((stringp lines) lines)
((consp lines) (cl-reduce (lambda (a b) (concat a " " b)) lines))
(t "")))
(defun mymake-option (line)
"Extract a single option from a line, if it is a valid option."
(cond ((string= line "") 'nil)
((not (= (string-to-char line) ?:)) 'nil)
(t
(let ((parts (split-string (substring line 1))))
(if (> (length parts) 1)
(cons (intern (car parts))
(mymake-list-to-str (cdr parts)))
'nil)))))
(defun mymake-assoc (value options &optional default)
"Find a configuration option."
(let ((r (assoc value options)))
(if (null r)
default
(cdr r))))
(defun mymake-options (lines)
"Find options (starting with : )"
(if (null lines)
'()
(let ((opt (mymake-option (car lines))))
(if (eq nil opt)
(mymake-options (cdr lines))
(cons opt (mymake-options (cdr lines)))))))
(defun mymake-load-config-file (file)
"Returns an alist with the configuration"
(let* ((file-lines (mymake-file-to-lines file))
(cmdline (mymake-list-to-str (mymake-remove-comments file-lines)))
(options (mymake-options file-lines)))
(cons
(cons 'cmdline cmdline)
options)))
(defun mymake-load-config ()
"Returns an alist with configuration + current directory as 'dir'"
(let* ((buffer-dir (if (eq nil (buffer-file-name))
default-directory
(parent-directory (buffer-file-name))))
(dir (mymake-find-config buffer-dir)))
(if (eq nil dir)
;; No config file, we probably want to add the buffer file name as well.
(list
(cons 'dir buffer-dir)
(cons 'cmdline
(if (or mymake-no-default-input (eq nil (buffer-file-name)))
""
(concat "--default-input " (file-name-nondirectory (buffer-file-name))))))
(cons
(cons 'dir dir)
(mymake-load-config-file (concat dir "buildconfig"))))))
(defun mymake-args-str (prepend replace config)
(let ((replace-str (mymake-list-to-str replace))
(prepend-str (mymake-list-to-str prepend)))
(if (string= replace-str "")
(mymake-list-to-str (mymake-remove-comments (list prepend-str config)))
replace-str)))
(cl-defun mymake-run (&optional &key force &key prepend &key replace)
(let* ((config (mymake-load-config))
(wd (mymake-assoc 'dir config))
(default-directory wd)
(args (mymake-args-str prepend replace (mymake-assoc 'cmdline config)))
(executable (mymake-assoc 'executable config mymake-command)))
(compile (concat
executable " "
(if (eq nil force)
args
(concat "-f " args))) t)))
;; Add template if desired.
(add-hook 'find-file-hooks 'mymake-maybe-add-template)
(defun mymake-maybe-add-template ()
"Check to see if we want to add templates to a newly-created file."
(if (file-exists-p buffer-file-name)
'nil
(mymake-add-template)))
(defun mymake-add-template ()
"Add a template to the current (presumably empty) file."
(let ((config (mymake-load-config))
(inserted 'nil))
(cond
;; Only try to do something if templates are enables.
((not (string= (mymake-assoc 'template config "no") "yes")) 'nil)
;; Try to load a template file if enabled. Written as condition to fall back on default template mechanism.
((and (string= (mymake-assoc 'template-file config "no") "yes")
(mymake-insert-template-file config))
'nil)
;; Source file?
((string-match (mymake-assoc 'template-source config mymake-default-sources) buffer-file-name)
(mymake-add-source-template config))
;; Header file?
((string-match (mymake-assoc 'template-header config mymake-default-headers) buffer-file-name)
(mymake-add-header-template config))
;; Nothing to do.
(t 'nil))))
(defun mymake-insert-template-file (config)
(let* ((dir (file-name-directory (buffer-file-name)))
(ext (file-name-extension (buffer-file-name)))
(basename (file-name-nondirectory (buffer-file-name)))
(template-name (concat dir ext ".template")))
(when (file-exists-p template-name)
(insert-file-contents template-name)
;; Replace things:
(goto-char (point-min))
(while (re-search-forward "\\$header\\$" nil t)
;; Would be nice to find the header extension, rather than assuming it.
(replace-match (concat (file-name-sans-extension basename) "." (mymake-assoc 'header-ext config "h"))))
(goto-char (point-min))
(while (re-search-forward "\\$file\\$" nil t)
(replace-match (file-name-sans-extension basename)))
;; Find $$ and put the cursor there.
(goto-char (point-min))
(when (re-search-forward "\\$\\$" nil t)
(replace-match "")
(indent-for-tab-command))
t)))
(defun mymake-add-source-template (config)
(let ((pch (mymake-assoc 'pch config 'nil)))
;; Syntax highlighting works _way_ better when one string is inserted instead of in different parts...
(if (not (eq nil pch))
(insert (concat "#include \"" pch "\"\n"))))
(let* ((header (mymake-assoc 'header-ext config "h"))
(fn (concat (file-name-base buffer-file-name) "." header)))
(insert (concat "#include \"" fn "\"\n")))
(insert "\n")
(mymake-insert-namespace config))
(defun mymake-add-header-template (config)
(insert "#pragma once\n\n")
(mymake-insert-namespace config))
(defun mymake-insert-namespace (config)
(if (string= (mymake-assoc 'namespace config "no") "yes")
(let ((name (mymake-target-name config)))
(if name
(progn
(insert "namespace " (downcase name) " {\n\n")
(let ((pos (point)))
(insert "\n\n}\n")
(goto-char pos)
(indent-for-tab-command)))))))
(defun mymake-target-name (config)
(let ((subdir-name (mymake-subdir-name config)))
;; Look at any namespace-map elements.
(when subdir-name
(mymake-replace-namespace subdir-name config))))
(defun mymake-subdir-name (config)
(let* ((wd (downcase (mymake-assoc 'dir config)))
(left (downcase (substring buffer-file-name 0 (length wd))))
(right (downcase (substring buffer-file-name (length wd)))))
(if (string= left wd)
(let ((parts (split-string right "/")))
(if (> (length parts) 1)
(car parts)
'nil))
'nil)))
(defun mymake-replace-namespace (subdir config)
(cond ((null config) subdir)
((eq (car (car config)) 'namespace-map)
(let ((item (split-string (cdr (car config)) " ")))
(message "item: %S %S" item (string= (downcase (car item)) subdir))
(if (and (> (length item) 0) (string= (downcase (car item)) subdir))
(cond ((< (length item) 2) 'nil) ;; no second element, no namespace
((string= (car (cdr item)) "-") 'nil) ;; dash is also no namespace
(t (car (cdr item)))) ;; otherwise, use the second part
(mymake-replace-namespace subdir (cdr config)))))
(t (mymake-replace-namespace subdir (cdr config)))))
;; Compilation buffer management.
(setq mymake-compilation-window 'nil)
(setq mymake-compilation-frame 'nil)
(defun mymake-fix-pos (pos)
(if (consp pos)
(car (cdr pos))
pos))
(defun mymake-create-compilation-frame ()
(let* ((current-params (frame-parameters))
(old-frame (selected-frame))
(left-pos (mymake-fix-pos (cdr (assoc 'left current-params))))
(top-pos (mymake-fix-pos (cdr (assoc 'top current-params))))
(height (cdr (assoc 'height current-params)))
(created (make-frame (list (cons 'width mymake-compilation-w)
(cons 'height mymake-compilation-h)))))
(if (numberp mymake-compilation-font-height)
(set-face-attribute 'default created :height mymake-compilation-font-height))
(setq mymake-compilation-frame created)
(setq mymake-compilation-window (frame-selected-window created))
(let ((created-w (frame-pixel-width created)))
(set-frame-position created
(max 0 (- left-pos created-w mymake-compilation-adjust-x))
(max 0 (+ top-pos mymake-compilation-adjust-y))))
(select-frame-set-input-focus old-frame)))
(defun mymake-compilation-window (buffer alist)
(if (not mymake-compile-frame)
'nil
(progn
(if (eq mymake-compilation-frame 'nil)
(mymake-create-compilation-frame)
(if (not (frame-live-p mymake-compilation-frame))
(mymake-create-compilation-frame)))
(window--display-buffer buffer mymake-compilation-window 'frame alist)
mymake-compilation-window)))
(add-to-list 'display-buffer-alist
'("\\*compilation\\*" .
((display-buffer-reuse-window
mymake-compilation-window
display-buffer-use-some-window
display-buffer-pop-up-window)
. ((reusable-frames . t)
(inhibit-switch-frame . t)
(inhibit-same-window . t)))))
|