org-macro.el 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393
  1. ;;; org-macro.el --- Macro Replacement Code for Org -*- lexical-binding: t; -*-
  2. ;; Copyright (C) 2013-2018 Free Software Foundation, Inc.
  3. ;; Author: Nicolas Goaziou <n.goaziou@gmail.com>
  4. ;; Keywords: outlines, hypermedia, calendar, wp
  5. ;; This file is part of GNU Emacs.
  6. ;; GNU Emacs is free software: you can redistribute it and/or modify
  7. ;; it under the terms of the GNU General Public License as published by
  8. ;; the Free Software Foundation, either version 3 of the License, or
  9. ;; (at your option) any later version.
  10. ;; GNU Emacs is distributed in the hope that it will be useful,
  11. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. ;; GNU General Public License for more details.
  14. ;; You should have received a copy of the GNU General Public License
  15. ;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
  16. ;;; Commentary:
  17. ;; Macros are expanded with `org-macro-replace-all', which relies
  18. ;; internally on `org-macro-expand'.
  19. ;; Default templates for expansion are stored in the buffer-local
  20. ;; variable `org-macro-templates'. This variable is updated by
  21. ;; `org-macro-initialize-templates', which recursively calls
  22. ;; `org-macro--collect-macros' in order to read setup files.
  23. ;; Argument in macros are separated with commas. Proper escaping rules
  24. ;; are implemented in `org-macro-escape-arguments' and arguments can
  25. ;; be extracted from a string with `org-macro-extract-arguments'.
  26. ;; Along with macros defined through #+MACRO: keyword, default
  27. ;; templates include the following hard-coded macros:
  28. ;; {{{time(format-string)}}},
  29. ;; {{{property(node-property)}}},
  30. ;; {{{input-file}}},
  31. ;; {{{modification-time(format-string)}}},
  32. ;; {{{n(counter,action}}}.
  33. ;; Upon exporting, "ox.el" will also provide {{{author}}}, {{{date}}},
  34. ;; {{{email}}} and {{{title}}} macros.
  35. ;;; Code:
  36. (require 'cl-lib)
  37. (require 'org-macs)
  38. (require 'org-compat)
  39. (declare-function org-element-at-point "org-element" ())
  40. (declare-function org-element-context "org-element" (&optional element))
  41. (declare-function org-element-copy "org-element" (datum))
  42. (declare-function org-element-macro-parser "org-element" ())
  43. (declare-function org-element-parse-secondary-string "org-element" (string restriction &optional parent))
  44. (declare-function org-element-property "org-element" (property element))
  45. (declare-function org-element-restriction "org-element" (element))
  46. (declare-function org-element-type "org-element" (element))
  47. (declare-function org-file-contents "org" (file &optional noerror nocache))
  48. (declare-function org-file-url-p "org" (file))
  49. (declare-function org-in-commented-heading-p "org" (&optional no-inheritance))
  50. (declare-function org-mode "org" ())
  51. (declare-function vc-backend "vc-hooks" (f))
  52. (declare-function vc-call "vc-hooks" (fun file &rest args) t)
  53. (declare-function vc-exec-after "vc-dispatcher" (code))
  54. ;;; Variables
  55. (defvar-local org-macro-templates nil
  56. "Alist containing all macro templates in current buffer.
  57. Associations are in the shape of (NAME . TEMPLATE) where NAME
  58. stands for macro's name and template for its replacement value,
  59. both as strings. This is an internal variable. Do not set it
  60. directly, use instead:
  61. #+MACRO: name template")
  62. ;;; Functions
  63. (defun org-macro--collect-macros ()
  64. "Collect macro definitions in current buffer and setup files.
  65. Return an alist containing all macro templates found."
  66. (letrec ((collect-macros
  67. (lambda (files templates)
  68. ;; Return an alist of macro templates. FILES is a list
  69. ;; of setup files names read so far, used to avoid
  70. ;; circular dependencies. TEMPLATES is the alist
  71. ;; collected so far.
  72. (let ((case-fold-search t))
  73. (org-with-wide-buffer
  74. (goto-char (point-min))
  75. (while (re-search-forward
  76. "^[ \t]*#\\+\\(MACRO\\|SETUPFILE\\):" nil t)
  77. (let ((element (org-element-at-point)))
  78. (when (eq (org-element-type element) 'keyword)
  79. (let ((val (org-element-property :value element)))
  80. (if (equal (org-element-property :key element) "MACRO")
  81. ;; Install macro in TEMPLATES.
  82. (when (string-match
  83. "^\\(.*?\\)\\(?:\\s-+\\(.*\\)\\)?\\s-*$" val)
  84. (let* ((name (match-string 1 val))
  85. (template (or (match-string 2 val) ""))
  86. (old-cell (assoc name templates)))
  87. (if old-cell (setcdr old-cell template)
  88. (push (cons name template) templates))))
  89. ;; Enter setup file.
  90. (let* ((uri (org-unbracket-string "\"" "\"" (org-trim val)))
  91. (uri-is-url (org-file-url-p uri))
  92. (uri (if uri-is-url
  93. uri
  94. (expand-file-name uri))))
  95. ;; Avoid circular dependencies.
  96. (unless (member uri files)
  97. (with-temp-buffer
  98. (unless uri-is-url
  99. (setq default-directory
  100. (file-name-directory uri)))
  101. (org-mode)
  102. (insert (org-file-contents uri 'noerror))
  103. (setq templates
  104. (funcall collect-macros (cons uri files)
  105. templates)))))))))))
  106. templates))))
  107. (funcall collect-macros nil nil)))
  108. (defun org-macro-initialize-templates ()
  109. "Collect macro templates defined in current buffer.
  110. Templates are stored in buffer-local variable
  111. `org-macro-templates'. In addition to buffer-defined macros, the
  112. function installs the following ones: \"property\",
  113. \"time\". and, if the buffer is associated to a file,
  114. \"input-file\" and \"modification-time\"."
  115. (org-macro--counter-initialize) ;for "n" macro
  116. (setq org-macro-templates
  117. (nconc
  118. ;; Install user-defined macros.
  119. (org-macro--collect-macros)
  120. ;; Install file-specific macros.
  121. (let ((visited-file (buffer-file-name (buffer-base-buffer))))
  122. (and visited-file
  123. (file-exists-p visited-file)
  124. (list
  125. `("input-file" . ,(file-name-nondirectory visited-file))
  126. `("modification-time" .
  127. ,(format "(eval
  128. \(format-time-string $1
  129. (or (and (org-string-nw-p $2)
  130. (org-macro--vc-modified-time %s))
  131. '%s)))"
  132. (prin1-to-string visited-file)
  133. (prin1-to-string
  134. (nth 5 (file-attributes visited-file))))))))
  135. ;; Install built-in macros.
  136. (list
  137. '("n" . "(eval (org-macro--counter-increment $1 $2))")
  138. `("author" . ,(org-macro--find-keyword-value "AUTHOR"))
  139. `("email" . ,(org-macro--find-keyword-value "EMAIL"))
  140. '("keyword" . "(eval (org-macro--find-keyword-value $1))")
  141. '("results" . "$1")
  142. '("time" . "(eval (format-time-string $1))")
  143. `("title" . ,(org-macro--find-keyword-value "TITLE"))
  144. '("property" . "(eval
  145. (save-excursion
  146. (let ((l $2))
  147. (when (org-string-nw-p l)
  148. (condition-case _
  149. (let ((org-link-search-must-match-exact-headline t))
  150. (org-link-search l nil t))
  151. (error
  152. (error \"Macro property failed: cannot find location %s\" l)))))
  153. (org-entry-get nil $1 'selective)))")
  154. `("date" .
  155. ,(let* ((value (org-macro--find-keyword-value "DATE"))
  156. (date (org-element-parse-secondary-string
  157. value (org-element-restriction 'keyword))))
  158. (if (and (consp date)
  159. (not (cdr date))
  160. (eq 'timestamp (org-element-type (car date))))
  161. (format "(eval (if (org-string-nw-p $1) %s %S))"
  162. (format "(org-timestamp-format '%S $1)"
  163. (org-element-copy (car date)))
  164. value)
  165. value)))))))
  166. (defun org-macro-expand (macro templates)
  167. "Return expanded MACRO, as a string.
  168. MACRO is an object, obtained, for example, with
  169. `org-element-context'. TEMPLATES is an alist of templates used
  170. for expansion. See `org-macro-templates' for a buffer-local
  171. default value. Return nil if no template was found."
  172. (let ((template
  173. ;; Macro names are case-insensitive.
  174. (cdr (assoc-string (org-element-property :key macro) templates t))))
  175. (when template
  176. (let* ((eval? (string-match-p "\\`(eval\\>" template))
  177. (value
  178. (replace-regexp-in-string
  179. "\\$[0-9]+"
  180. (lambda (m)
  181. (let ((arg (or (nth (1- (string-to-number (substring m 1)))
  182. (org-element-property :args macro))
  183. ;; No argument: remove place-holder.
  184. "")))
  185. ;; `eval' implies arguments are strings.
  186. (if eval? (format "%S" arg) arg)))
  187. template nil 'literal)))
  188. (when eval?
  189. (setq value (eval (condition-case nil (read value)
  190. (error (debug))))))
  191. ;; Force return value to be a string.
  192. (format "%s" (or value ""))))))
  193. (defun org-macro-replace-all (templates &optional keywords)
  194. "Replace all macros in current buffer by their expansion.
  195. TEMPLATES is an alist of templates used for expansion. See
  196. `org-macro-templates' for a buffer-local default value.
  197. Optional argument KEYWORDS, when non-nil is a list of keywords,
  198. as strings, where macro expansion is allowed.
  199. Return an error if a macro in the buffer cannot be associated to
  200. a definition in TEMPLATES."
  201. (org-with-wide-buffer
  202. (goto-char (point-min))
  203. (let ((properties-regexp (format "\\`EXPORT_%s\\+?\\'"
  204. (regexp-opt keywords)))
  205. record)
  206. (while (re-search-forward "{{{[-A-Za-z0-9_]" nil t)
  207. (unless (save-match-data (org-in-commented-heading-p))
  208. (let* ((datum (save-match-data (org-element-context)))
  209. (type (org-element-type datum))
  210. (macro
  211. (cond
  212. ((eq type 'macro) datum)
  213. ;; In parsed keywords and associated node
  214. ;; properties, force macro recognition.
  215. ((or (and (eq type 'keyword)
  216. (member (org-element-property :key datum) keywords))
  217. (and (eq type 'node-property)
  218. (string-match-p properties-regexp
  219. (org-element-property :key datum))))
  220. (save-excursion
  221. (goto-char (match-beginning 0))
  222. (org-element-macro-parser))))))
  223. (when macro
  224. (let* ((value (org-macro-expand macro templates))
  225. (begin (org-element-property :begin macro))
  226. (signature (list begin
  227. macro
  228. (org-element-property :args macro))))
  229. ;; Avoid circular dependencies by checking if the same
  230. ;; macro with the same arguments is expanded at the
  231. ;; same position twice.
  232. (cond ((member signature record)
  233. (error "Circular macro expansion: %s"
  234. (org-element-property :key macro)))
  235. (value
  236. (push signature record)
  237. (delete-region
  238. begin
  239. ;; Preserve white spaces after the macro.
  240. (progn (goto-char (org-element-property :end macro))
  241. (skip-chars-backward " \t")
  242. (point)))
  243. ;; Leave point before replacement in case of
  244. ;; recursive expansions.
  245. (save-excursion (insert value)))
  246. (t
  247. (error "Undefined Org macro: %s; aborting"
  248. (org-element-property :key macro))))))))))))
  249. (defun org-macro-escape-arguments (&rest args)
  250. "Build macro's arguments string from ARGS.
  251. ARGS are strings. Return value is a string with arguments
  252. properly escaped and separated with commas. This is the opposite
  253. of `org-macro-extract-arguments'."
  254. (let ((s ""))
  255. (dolist (arg (reverse args) (substring s 1))
  256. (setq s
  257. (concat
  258. ","
  259. (replace-regexp-in-string
  260. "\\(\\\\*\\),"
  261. (lambda (m)
  262. (concat (make-string (1+ (* 2 (length (match-string 1 m)))) ?\\)
  263. ","))
  264. ;; If a non-terminal argument ends on backslashes, make
  265. ;; sure to also escape them as they will be followed by
  266. ;; a comma.
  267. (concat arg (and (not (equal s ""))
  268. (string-match "\\\\+\\'" arg)
  269. (match-string 0 arg)))
  270. nil t)
  271. s)))))
  272. (defun org-macro-extract-arguments (s)
  273. "Extract macro arguments from string S.
  274. S is a string containing comma separated values properly escaped.
  275. Return a list of arguments, as strings. This is the opposite of
  276. `org-macro-escape-arguments'."
  277. ;; Do not use `org-split-string' since empty strings are
  278. ;; meaningful here.
  279. (split-string
  280. (replace-regexp-in-string
  281. "\\(\\\\*\\),"
  282. (lambda (str)
  283. (let ((len (length (match-string 1 str))))
  284. (concat (make-string (/ len 2) ?\\)
  285. (if (zerop (mod len 2)) "\000" ","))))
  286. s nil t)
  287. "\000"))
  288. ;;; Helper functions and variables for internal macros
  289. (defun org-macro--find-keyword-value (name)
  290. "Find value for keyword NAME in current buffer.
  291. KEYWORD is a string. Return value associated to the keywords
  292. named after NAME, as a string, or nil."
  293. (org-with-point-at 1
  294. (let ((regexp (format "^[ \t]*#\\+%s:" (regexp-quote name)))
  295. (case-fold-search t)
  296. (result nil))
  297. (while (re-search-forward regexp nil t)
  298. (let ((element (org-element-at-point)))
  299. (when (eq 'keyword (org-element-type element))
  300. (setq result (concat result
  301. " "
  302. (org-element-property :value element))))))
  303. (and result (org-trim result)))))
  304. (defun org-macro--vc-modified-time (file)
  305. (save-window-excursion
  306. (when (vc-backend file)
  307. (let ((buf (get-buffer-create " *org-vc*"))
  308. (case-fold-search t)
  309. date)
  310. (unwind-protect
  311. (progn
  312. (vc-call print-log file buf nil nil 1)
  313. (with-current-buffer buf
  314. (vc-exec-after
  315. (lambda ()
  316. (goto-char (point-min))
  317. (when (re-search-forward "Date:?[ \t]*" nil t)
  318. (let ((time (parse-time-string
  319. (buffer-substring
  320. (point) (line-end-position)))))
  321. (when (cl-some #'identity time)
  322. (setq date (apply #'encode-time time))))))))
  323. (let ((proc (get-buffer-process buf)))
  324. (while (and proc (accept-process-output proc .5 nil t)))))
  325. (kill-buffer buf))
  326. date))))
  327. (defvar org-macro--counter-table nil
  328. "Hash table containing counter value per name.")
  329. (defun org-macro--counter-initialize ()
  330. "Initialize `org-macro--counter-table'."
  331. (setq org-macro--counter-table (make-hash-table :test #'equal)))
  332. (defun org-macro--counter-increment (name &optional action)
  333. "Increment counter NAME.
  334. NAME is a string identifying the counter.
  335. When non-nil, optional argument ACTION is a string.
  336. If the string is \"-\", keep the NAME counter at its current
  337. value, i.e. do not increment.
  338. If the string represents an integer, set the counter to this number.
  339. Any other non-empty string resets the counter to 1."
  340. (let ((name-trimmed (org-trim name))
  341. (action-trimmed (when (org-string-nw-p action)
  342. (org-trim action))))
  343. (puthash name-trimmed
  344. (cond ((not (org-string-nw-p action-trimmed))
  345. (1+ (gethash name-trimmed org-macro--counter-table 0)))
  346. ((string= "-" action-trimmed)
  347. (gethash name-trimmed org-macro--counter-table 1))
  348. ((string-match-p "\\`[0-9]+\\'" action-trimmed)
  349. (string-to-number action-trimmed))
  350. (t 1))
  351. org-macro--counter-table)))
  352. (provide 'org-macro)
  353. ;;; org-macro.el ends here