2015-10-26 00:56:00 +00:00
|
|
|
|
;;; org-macro.el --- Macro Replacement Code for Org -*- lexical-binding: t; -*-
|
2013-02-16 13:03:59 +00:00
|
|
|
|
|
2018-01-07 05:27:54 +00:00
|
|
|
|
;; Copyright (C) 2013-2018 Free Software Foundation, Inc.
|
2013-02-16 13:03:59 +00:00
|
|
|
|
|
|
|
|
|
;; Author: Nicolas Goaziou <n.goaziou@gmail.com>
|
|
|
|
|
;; Keywords: outlines, hypermedia, calendar, wp
|
|
|
|
|
|
Backport changes from Emacs revs 115081 and 115082
2013-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
Address some byte-compiler warnings.
* ob-abc.el (org-babel-expand-body:abc): Use dolist.
(org-babel-execute:abc): Fix regexp quoting.
* ob-calc.el (org--var-syms): Rename from `var-syms'.
* ob-lilypond.el (ly-compile-lilyfile): Remove redundant let-binding.
* ob-table.el (sbe): Move debug declaration.
* org-clock.el (org--msg-extra): Rename from `msg-extra'.
* org.el (org-version): Avoid var name starting with _.
(org-inhibit-startup, org-called-with-limited-levels)
(org-link-search-inhibit-query, org-time-was-given)
(org-end-time-was-given, org-def, org-defdecode, org-with-time):
* org-colview.el (org-agenda-overriding-columns-format):
* org-agenda.el (org-agenda-multi, org-depend-tag-blocked)
(org-agenda-show-log-scoped):
* ob-python.el (py-which-bufname, python-shell-buffer-name):
* ob-haskell.el (org-export-copy-to-kill-ring):
* ob-exp.el (org-link-search-inhibit-query):
* ob-R.el (ess-eval-visibly-p):
* ob-core.el (org-src-window-setup): Declare before use.
(org-babel-expand-noweb-references): Remove unused `blocks-in-buffer'.
* ox-odt.el (org-odt-hfy-face-to-css):
* org-src.el (org-src-associate-babel-session, org-src-get-lang-mode):
* org-bibtex.el (org-bibtex-get, org-bibtex-ask, org-bibtex)
(org-bibtex-check):
* ob-tangle.el (org-babel-tangle, org-babel-spec-to-string)
(org-babel-tangle-single-block, org-babel-tangle-comment-links):
* ob-table.el (sbe):
* ob-sqlite.el (org-babel-sqlite-expand-vars):
* ob-sql.el (org-babel-sql-expand-vars):
* ob-shen.el (org-babel-execute:shen):
* ob-sh.el (org-babel-execute:sh, org-babel-sh-evaluate):
* ob-scala.el (org-babel-scala-evaluate):
* ob-ruby.el (org-babel-ruby-table-or-string)
(org-babel-ruby-evaluate):
* ob-python.el (org-babel-python-table-or-string)
(org-babel-python-evaluate-external-process)
(org-babel-python-evaluate-session):
* ob-picolisp.el (org-babel-execute:picolisp):
* ob-perl.el (org-babel-perl-evaluate):
* ob-maxima.el (org-babel-execute:maxima):
* ob-lisp.el (org-babel-execute:lisp):
* ob-java.el (org-babel-execute:java):
* ob-io.el (org-babel-io-evaluate):
* ob-haskell.el (org-babel-execute:haskell):
* ob-fortran.el (org-babel-execute:fortran):
* ob-exp.el (org-babel-exp-code):
* ob-emacs-lisp.el (org-babel-execute:emacs-lisp):
* ob-ditaa.el (org-babel-execute:ditaa):
* ob-core.el (org-babel-execute-src-block, org-babel-sha1-hash)
(org-babel-parse-header-arguments, org-babel-reassemble-table)
(org-babel-goto-src-block-head, org-babel-mark-block)
(org-babel-expand-noweb-references, org-babel-script-escape)
(org-babel-process-file-name):
* ob-clojure.el (org-babel-execute:clojure):
* ob-calc.el (org-babel-execute:calc):
* ob-awk.el (org-babel-execute:awk):
* ob-abc.el (org-babel-execute:abc):
* ob-R.el (org-babel-expand-body:R):
* ob-C.el (org-babel-C-execute): Avoid deprecated ((lambda) ...).
2013-11-12 Glenn Morris <rgm@gnu.org>
* ox-html.el (org-html-scripts): Add 2013 to copyright years.
(org-html-infojs-template): Copyright holder to FSF.
2013-11-12 19:57:31 +00:00
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
2013-02-23 08:56:24 +00:00
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
2013-02-16 13:03:59 +00:00
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
;; (at your option) any later version.
|
|
|
|
|
|
2013-02-23 08:56:24 +00:00
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
2013-02-16 13:03:59 +00:00
|
|
|
|
;; 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.
|
|
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2017-09-13 22:52:52 +00:00
|
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
2013-02-16 13:03:59 +00:00
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
|
|
;; Macros are expanded with `org-macro-replace-all', which relies
|
|
|
|
|
;; internally on `org-macro-expand'.
|
|
|
|
|
|
|
|
|
|
;; Default templates for expansion are stored in the buffer-local
|
|
|
|
|
;; variable `org-macro-templates'. This variable is updated by
|
|
|
|
|
;; `org-macro-initialize-templates', which recursively calls
|
|
|
|
|
;; `org-macro--collect-macros' in order to read setup files.
|
|
|
|
|
|
2015-01-20 23:25:47 +00:00
|
|
|
|
;; Argument in macros are separated with commas. Proper escaping rules
|
|
|
|
|
;; are implemented in `org-macro-escape-arguments' and arguments can
|
|
|
|
|
;; be extracted from a string with `org-macro-extract-arguments'.
|
|
|
|
|
|
2013-02-16 13:03:59 +00:00
|
|
|
|
;; Along with macros defined through #+MACRO: keyword, default
|
|
|
|
|
;; templates include the following hard-coded macros:
|
2017-05-08 10:38:38 +00:00
|
|
|
|
;; {{{time(format-string)}}},
|
|
|
|
|
;; {{{property(node-property)}}},
|
|
|
|
|
;; {{{input-file}}},
|
|
|
|
|
;; {{{modification-time(format-string)}}},
|
2017-06-18 02:12:20 +00:00
|
|
|
|
;; {{{n(counter,action}}}.
|
2013-02-16 13:03:59 +00:00
|
|
|
|
|
|
|
|
|
;; Upon exporting, "ox.el" will also provide {{{author}}}, {{{date}}},
|
|
|
|
|
;; {{{email}}} and {{{title}}} macros.
|
|
|
|
|
|
|
|
|
|
;;; Code:
|
2016-05-26 14:16:31 +00:00
|
|
|
|
(require 'cl-lib)
|
2013-06-01 09:21:48 +00:00
|
|
|
|
(require 'org-macs)
|
2015-05-30 12:28:35 +00:00
|
|
|
|
(require 'org-compat)
|
2013-02-16 13:03:59 +00:00
|
|
|
|
|
2013-11-24 23:24:54 +00:00
|
|
|
|
(declare-function org-element-at-point "org-element" ())
|
2013-02-16 13:03:59 +00:00
|
|
|
|
(declare-function org-element-context "org-element" (&optional element))
|
2017-11-22 22:35:50 +00:00
|
|
|
|
(declare-function org-element-copy "org-element" (datum))
|
2017-06-05 15:05:58 +00:00
|
|
|
|
(declare-function org-element-macro-parser "org-element" ())
|
2017-11-22 22:35:50 +00:00
|
|
|
|
(declare-function org-element-parse-secondary-string "org-element" (string restriction &optional parent))
|
2013-02-16 13:03:59 +00:00
|
|
|
|
(declare-function org-element-property "org-element" (property element))
|
2017-11-22 22:35:50 +00:00
|
|
|
|
(declare-function org-element-restriction "org-element" (element))
|
2013-02-16 13:03:59 +00:00
|
|
|
|
(declare-function org-element-type "org-element" (element))
|
2017-06-13 15:41:14 +00:00
|
|
|
|
(declare-function org-file-contents "org" (file &optional noerror nocache))
|
|
|
|
|
(declare-function org-file-url-p "org" (file))
|
2017-06-09 19:22:53 +00:00
|
|
|
|
(declare-function org-in-commented-heading-p "org" (&optional no-inheritance))
|
2015-05-30 12:28:35 +00:00
|
|
|
|
(declare-function org-mode "org" ())
|
2016-05-18 09:23:46 +00:00
|
|
|
|
(declare-function vc-backend "vc-hooks" (f))
|
2016-05-19 02:01:59 +00:00
|
|
|
|
(declare-function vc-call "vc-hooks" (fun file &rest args) t)
|
2016-05-18 09:23:46 +00:00
|
|
|
|
(declare-function vc-exec-after "vc-dispatcher" (code))
|
2013-02-16 13:03:59 +00:00
|
|
|
|
|
|
|
|
|
;;; Variables
|
|
|
|
|
|
2015-11-05 16:47:38 +00:00
|
|
|
|
(defvar-local org-macro-templates nil
|
2013-02-16 13:03:59 +00:00
|
|
|
|
"Alist containing all macro templates in current buffer.
|
|
|
|
|
Associations are in the shape of (NAME . TEMPLATE) where NAME
|
|
|
|
|
stands for macro's name and template for its replacement value,
|
|
|
|
|
both as strings. This is an internal variable. Do not set it
|
|
|
|
|
directly, use instead:
|
|
|
|
|
|
|
|
|
|
#+MACRO: name template")
|
|
|
|
|
|
|
|
|
|
;;; Functions
|
|
|
|
|
|
2013-04-01 13:44:15 +00:00
|
|
|
|
(defun org-macro--collect-macros ()
|
2013-02-16 13:03:59 +00:00
|
|
|
|
"Collect macro definitions in current buffer and setup files.
|
2013-04-01 13:44:15 +00:00
|
|
|
|
Return an alist containing all macro templates found."
|
2015-10-26 00:56:00 +00:00
|
|
|
|
(letrec ((collect-macros
|
|
|
|
|
(lambda (files templates)
|
|
|
|
|
;; Return an alist of macro templates. FILES is a list
|
|
|
|
|
;; of setup files names read so far, used to avoid
|
|
|
|
|
;; circular dependencies. TEMPLATES is the alist
|
|
|
|
|
;; collected so far.
|
|
|
|
|
(let ((case-fold-search t))
|
|
|
|
|
(org-with-wide-buffer
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (re-search-forward
|
|
|
|
|
"^[ \t]*#\\+\\(MACRO\\|SETUPFILE\\):" nil t)
|
|
|
|
|
(let ((element (org-element-at-point)))
|
|
|
|
|
(when (eq (org-element-type element) 'keyword)
|
|
|
|
|
(let ((val (org-element-property :value element)))
|
|
|
|
|
(if (equal (org-element-property :key element) "MACRO")
|
|
|
|
|
;; Install macro in TEMPLATES.
|
|
|
|
|
(when (string-match
|
|
|
|
|
"^\\(.*?\\)\\(?:\\s-+\\(.*\\)\\)?\\s-*$" val)
|
|
|
|
|
(let* ((name (match-string 1 val))
|
|
|
|
|
(template (or (match-string 2 val) ""))
|
|
|
|
|
(old-cell (assoc name templates)))
|
|
|
|
|
(if old-cell (setcdr old-cell template)
|
|
|
|
|
(push (cons name template) templates))))
|
|
|
|
|
;; Enter setup file.
|
2017-06-13 15:41:14 +00:00
|
|
|
|
(let* ((uri (org-unbracket-string "\"" "\"" (org-trim val)))
|
|
|
|
|
(uri-is-url (org-file-url-p uri))
|
|
|
|
|
(uri (if uri-is-url
|
|
|
|
|
uri
|
|
|
|
|
(expand-file-name uri))))
|
|
|
|
|
;; Avoid circular dependencies.
|
|
|
|
|
(unless (member uri files)
|
2015-10-26 00:56:00 +00:00
|
|
|
|
(with-temp-buffer
|
2017-06-13 15:41:14 +00:00
|
|
|
|
(unless uri-is-url
|
|
|
|
|
(setq default-directory
|
|
|
|
|
(file-name-directory uri)))
|
2015-10-26 00:56:00 +00:00
|
|
|
|
(org-mode)
|
2017-06-13 15:41:14 +00:00
|
|
|
|
(insert (org-file-contents uri 'noerror))
|
2015-10-26 00:56:00 +00:00
|
|
|
|
(setq templates
|
2017-06-13 15:41:14 +00:00
|
|
|
|
(funcall collect-macros (cons uri files)
|
2015-10-26 00:56:00 +00:00
|
|
|
|
templates)))))))))))
|
|
|
|
|
templates))))
|
2013-04-01 13:44:15 +00:00
|
|
|
|
(funcall collect-macros nil nil)))
|
2013-02-16 13:03:59 +00:00
|
|
|
|
|
|
|
|
|
(defun org-macro-initialize-templates ()
|
|
|
|
|
"Collect macro templates defined in current buffer.
|
|
|
|
|
Templates are stored in buffer-local variable
|
|
|
|
|
`org-macro-templates'. In addition to buffer-defined macros, the
|
|
|
|
|
function installs the following ones: \"property\",
|
|
|
|
|
\"time\". and, if the buffer is associated to a file,
|
|
|
|
|
\"input-file\" and \"modification-time\"."
|
2018-03-23 22:40:56 +00:00
|
|
|
|
(org-macro--counter-initialize) ;for "n" macro
|
|
|
|
|
(setq org-macro-templates
|
|
|
|
|
(nconc
|
|
|
|
|
;; Install user-defined macros.
|
|
|
|
|
(org-macro--collect-macros)
|
|
|
|
|
;; Install file-specific macros.
|
|
|
|
|
(let ((visited-file (buffer-file-name (buffer-base-buffer))))
|
|
|
|
|
(and visited-file
|
|
|
|
|
(file-exists-p visited-file)
|
|
|
|
|
(list
|
|
|
|
|
`("input-file" . ,(file-name-nondirectory visited-file))
|
|
|
|
|
`("modification-time" .
|
|
|
|
|
,(format "(eval
|
2017-12-16 15:07:09 +00:00
|
|
|
|
\(format-time-string $1
|
|
|
|
|
(or (and (org-string-nw-p $2)
|
2017-11-21 21:25:17 +00:00
|
|
|
|
(org-macro--vc-modified-time %s))
|
|
|
|
|
'%s)))"
|
2018-03-23 22:40:56 +00:00
|
|
|
|
(prin1-to-string visited-file)
|
|
|
|
|
(prin1-to-string
|
|
|
|
|
(nth 5 (file-attributes visited-file))))))))
|
|
|
|
|
;; Install built-in macros.
|
|
|
|
|
(list
|
|
|
|
|
'("n" . "(eval (org-macro--counter-increment $1 $2))")
|
|
|
|
|
`("author" . ,(org-macro--find-keyword-value "AUTHOR"))
|
|
|
|
|
`("email" . ,(org-macro--find-keyword-value "EMAIL"))
|
|
|
|
|
'("keyword" . "(eval (org-macro--find-keyword-value $1))")
|
|
|
|
|
'("results" . "$1")
|
|
|
|
|
'("time" . "(eval (format-time-string $1))")
|
|
|
|
|
`("title" . ,(org-macro--find-keyword-value "TITLE"))
|
|
|
|
|
'("property" . "(eval
|
|
|
|
|
(save-excursion
|
|
|
|
|
(let ((l $2))
|
|
|
|
|
(when (org-string-nw-p l)
|
|
|
|
|
(condition-case _
|
|
|
|
|
(let ((org-link-search-must-match-exact-headline t))
|
|
|
|
|
(org-link-search l nil t))
|
|
|
|
|
(error
|
|
|
|
|
(error \"Macro property failed: cannot find location %s\" l)))))
|
|
|
|
|
(org-entry-get nil $1 'selective)))")
|
|
|
|
|
`("date" .
|
|
|
|
|
,(let* ((value (org-macro--find-keyword-value "DATE"))
|
|
|
|
|
(date (org-element-parse-secondary-string
|
|
|
|
|
value (org-element-restriction 'keyword))))
|
|
|
|
|
(if (and (consp date)
|
|
|
|
|
(not (cdr date))
|
|
|
|
|
(eq 'timestamp (org-element-type (car date))))
|
|
|
|
|
(format "(eval (if (org-string-nw-p $1) %s %S))"
|
|
|
|
|
(format "(org-timestamp-format '%S $1)"
|
|
|
|
|
(org-element-copy (car date)))
|
|
|
|
|
value)
|
|
|
|
|
value)))))))
|
2013-02-16 13:03:59 +00:00
|
|
|
|
|
|
|
|
|
(defun org-macro-expand (macro templates)
|
|
|
|
|
"Return expanded MACRO, as a string.
|
|
|
|
|
MACRO is an object, obtained, for example, with
|
|
|
|
|
`org-element-context'. TEMPLATES is an alist of templates used
|
|
|
|
|
for expansion. See `org-macro-templates' for a buffer-local
|
|
|
|
|
default value. Return nil if no template was found."
|
|
|
|
|
(let ((template
|
|
|
|
|
;; Macro names are case-insensitive.
|
|
|
|
|
(cdr (assoc-string (org-element-property :key macro) templates t))))
|
|
|
|
|
(when template
|
2017-12-16 15:07:09 +00:00
|
|
|
|
(let* ((eval? (string-match-p "\\`(eval\\>" template))
|
|
|
|
|
(value
|
|
|
|
|
(replace-regexp-in-string
|
|
|
|
|
"\\$[0-9]+"
|
|
|
|
|
(lambda (m)
|
|
|
|
|
(let ((arg (or (nth (1- (string-to-number (substring m 1)))
|
|
|
|
|
(org-element-property :args macro))
|
|
|
|
|
;; No argument: remove place-holder.
|
|
|
|
|
"")))
|
|
|
|
|
;; `eval' implies arguments are strings.
|
|
|
|
|
(if eval? (format "%S" arg) arg)))
|
|
|
|
|
template nil 'literal)))
|
|
|
|
|
(when eval?
|
|
|
|
|
(setq value (eval (condition-case nil (read value)
|
|
|
|
|
(error (debug))))))
|
|
|
|
|
;; Force return value to be a string.
|
2013-02-16 13:03:59 +00:00
|
|
|
|
(format "%s" (or value ""))))))
|
|
|
|
|
|
2017-11-21 21:25:17 +00:00
|
|
|
|
(defun org-macro-replace-all (templates &optional keywords)
|
2013-02-16 13:03:59 +00:00
|
|
|
|
"Replace all macros in current buffer by their expansion.
|
2014-09-28 03:50:23 +00:00
|
|
|
|
|
2013-02-16 13:03:59 +00:00
|
|
|
|
TEMPLATES is an alist of templates used for expansion. See
|
2014-09-28 03:50:23 +00:00
|
|
|
|
`org-macro-templates' for a buffer-local default value.
|
|
|
|
|
|
2015-05-10 08:05:46 +00:00
|
|
|
|
Optional argument KEYWORDS, when non-nil is a list of keywords,
|
2017-11-21 21:25:17 +00:00
|
|
|
|
as strings, where macro expansion is allowed.
|
|
|
|
|
|
|
|
|
|
Return an error if a macro in the buffer cannot be associated to
|
|
|
|
|
a definition in TEMPLATES."
|
2017-08-21 19:21:30 +00:00
|
|
|
|
(org-with-wide-buffer
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(let ((properties-regexp (format "\\`EXPORT_%s\\+?\\'"
|
|
|
|
|
(regexp-opt keywords)))
|
|
|
|
|
record)
|
|
|
|
|
(while (re-search-forward "{{{[-A-Za-z0-9_]" nil t)
|
|
|
|
|
(unless (save-match-data (org-in-commented-heading-p))
|
|
|
|
|
(let* ((datum (save-match-data (org-element-context)))
|
|
|
|
|
(type (org-element-type datum))
|
|
|
|
|
(macro
|
|
|
|
|
(cond
|
|
|
|
|
((eq type 'macro) datum)
|
|
|
|
|
;; In parsed keywords and associated node
|
|
|
|
|
;; properties, force macro recognition.
|
|
|
|
|
((or (and (eq type 'keyword)
|
|
|
|
|
(member (org-element-property :key datum) keywords))
|
|
|
|
|
(and (eq type 'node-property)
|
|
|
|
|
(string-match-p properties-regexp
|
|
|
|
|
(org-element-property :key datum))))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (match-beginning 0))
|
|
|
|
|
(org-element-macro-parser))))))
|
|
|
|
|
(when macro
|
|
|
|
|
(let* ((value (org-macro-expand macro templates))
|
|
|
|
|
(begin (org-element-property :begin macro))
|
|
|
|
|
(signature (list begin
|
|
|
|
|
macro
|
|
|
|
|
(org-element-property :args macro))))
|
|
|
|
|
;; Avoid circular dependencies by checking if the same
|
|
|
|
|
;; macro with the same arguments is expanded at the
|
|
|
|
|
;; same position twice.
|
|
|
|
|
(cond ((member signature record)
|
|
|
|
|
(error "Circular macro expansion: %s"
|
|
|
|
|
(org-element-property :key macro)))
|
|
|
|
|
(value
|
|
|
|
|
(push signature record)
|
|
|
|
|
(delete-region
|
|
|
|
|
begin
|
|
|
|
|
;; Preserve white spaces after the macro.
|
|
|
|
|
(progn (goto-char (org-element-property :end macro))
|
|
|
|
|
(skip-chars-backward " \t")
|
|
|
|
|
(point)))
|
|
|
|
|
;; Leave point before replacement in case of
|
|
|
|
|
;; recursive expansions.
|
|
|
|
|
(save-excursion (insert value)))
|
2017-11-21 21:25:17 +00:00
|
|
|
|
(t
|
2017-08-21 19:21:30 +00:00
|
|
|
|
(error "Undefined Org macro: %s; aborting"
|
|
|
|
|
(org-element-property :key macro))))))))))))
|
2013-02-16 13:03:59 +00:00
|
|
|
|
|
2015-01-20 23:25:47 +00:00
|
|
|
|
(defun org-macro-escape-arguments (&rest args)
|
|
|
|
|
"Build macro's arguments string from ARGS.
|
|
|
|
|
ARGS are strings. Return value is a string with arguments
|
|
|
|
|
properly escaped and separated with commas. This is the opposite
|
|
|
|
|
of `org-macro-extract-arguments'."
|
|
|
|
|
(let ((s ""))
|
|
|
|
|
(dolist (arg (reverse args) (substring s 1))
|
|
|
|
|
(setq s
|
|
|
|
|
(concat
|
|
|
|
|
","
|
|
|
|
|
(replace-regexp-in-string
|
|
|
|
|
"\\(\\\\*\\),"
|
|
|
|
|
(lambda (m)
|
|
|
|
|
(concat (make-string (1+ (* 2 (length (match-string 1 m)))) ?\\)
|
|
|
|
|
","))
|
|
|
|
|
;; If a non-terminal argument ends on backslashes, make
|
|
|
|
|
;; sure to also escape them as they will be followed by
|
|
|
|
|
;; a comma.
|
|
|
|
|
(concat arg (and (not (equal s ""))
|
|
|
|
|
(string-match "\\\\+\\'" arg)
|
|
|
|
|
(match-string 0 arg)))
|
|
|
|
|
nil t)
|
|
|
|
|
s)))))
|
|
|
|
|
|
|
|
|
|
(defun org-macro-extract-arguments (s)
|
|
|
|
|
"Extract macro arguments from string S.
|
|
|
|
|
S is a string containing comma separated values properly escaped.
|
|
|
|
|
Return a list of arguments, as strings. This is the opposite of
|
|
|
|
|
`org-macro-escape-arguments'."
|
|
|
|
|
;; Do not use `org-split-string' since empty strings are
|
|
|
|
|
;; meaningful here.
|
|
|
|
|
(split-string
|
|
|
|
|
(replace-regexp-in-string
|
|
|
|
|
"\\(\\\\*\\),"
|
|
|
|
|
(lambda (str)
|
|
|
|
|
(let ((len (length (match-string 1 str))))
|
|
|
|
|
(concat (make-string (/ len 2) ?\\)
|
|
|
|
|
(if (zerop (mod len 2)) "\000" ","))))
|
|
|
|
|
s nil t)
|
|
|
|
|
"\000"))
|
|
|
|
|
|
2017-05-08 10:38:38 +00:00
|
|
|
|
|
|
|
|
|
;;; Helper functions and variables for internal macros
|
|
|
|
|
|
2017-11-21 21:25:17 +00:00
|
|
|
|
(defun org-macro--find-keyword-value (name)
|
|
|
|
|
"Find value for keyword NAME in current buffer.
|
|
|
|
|
KEYWORD is a string. Return value associated to the keywords
|
|
|
|
|
named after NAME, as a string, or nil."
|
|
|
|
|
(org-with-point-at 1
|
|
|
|
|
(let ((regexp (format "^[ \t]*#\\+%s:" (regexp-quote name)))
|
|
|
|
|
(case-fold-search t)
|
|
|
|
|
(result nil))
|
|
|
|
|
(while (re-search-forward regexp nil t)
|
|
|
|
|
(let ((element (org-element-at-point)))
|
|
|
|
|
(when (eq 'keyword (org-element-type element))
|
|
|
|
|
(setq result (concat result
|
|
|
|
|
" "
|
|
|
|
|
(org-element-property :value element))))))
|
|
|
|
|
(and result (org-trim result)))))
|
|
|
|
|
|
2016-05-18 09:23:46 +00:00
|
|
|
|
(defun org-macro--vc-modified-time (file)
|
|
|
|
|
(save-window-excursion
|
|
|
|
|
(when (vc-backend file)
|
|
|
|
|
(let ((buf (get-buffer-create " *org-vc*"))
|
|
|
|
|
(case-fold-search t)
|
|
|
|
|
date)
|
|
|
|
|
(unwind-protect
|
|
|
|
|
(progn
|
|
|
|
|
(vc-call print-log file buf nil nil 1)
|
|
|
|
|
(with-current-buffer buf
|
|
|
|
|
(vc-exec-after
|
|
|
|
|
(lambda ()
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(when (re-search-forward "Date:?[ \t]*" nil t)
|
|
|
|
|
(let ((time (parse-time-string
|
|
|
|
|
(buffer-substring
|
|
|
|
|
(point) (line-end-position)))))
|
|
|
|
|
(when (cl-some #'identity time)
|
|
|
|
|
(setq date (apply #'encode-time time))))))))
|
|
|
|
|
(let ((proc (get-buffer-process buf)))
|
|
|
|
|
(while (and proc (accept-process-output proc .5 nil t)))))
|
|
|
|
|
(kill-buffer buf))
|
|
|
|
|
date))))
|
|
|
|
|
|
2017-05-08 10:38:38 +00:00
|
|
|
|
(defvar org-macro--counter-table nil
|
|
|
|
|
"Hash table containing counter value per name.")
|
|
|
|
|
|
|
|
|
|
(defun org-macro--counter-initialize ()
|
|
|
|
|
"Initialize `org-macro--counter-table'."
|
|
|
|
|
(setq org-macro--counter-table (make-hash-table :test #'equal)))
|
|
|
|
|
|
2017-06-18 02:12:20 +00:00
|
|
|
|
(defun org-macro--counter-increment (name &optional action)
|
2017-05-08 10:38:38 +00:00
|
|
|
|
"Increment counter NAME.
|
2017-06-18 02:12:20 +00:00
|
|
|
|
NAME is a string identifying the counter.
|
|
|
|
|
|
|
|
|
|
When non-nil, optional argument ACTION is a string.
|
|
|
|
|
|
|
|
|
|
If the string is \"-\", keep the NAME counter at its current
|
|
|
|
|
value, i.e. do not increment.
|
|
|
|
|
|
|
|
|
|
If the string represents an integer, set the counter to this number.
|
|
|
|
|
|
|
|
|
|
Any other non-empty string resets the counter to 1."
|
|
|
|
|
(let ((name-trimmed (org-trim name))
|
|
|
|
|
(action-trimmed (when (org-string-nw-p action)
|
|
|
|
|
(org-trim action))))
|
|
|
|
|
(puthash name-trimmed
|
|
|
|
|
(cond ((not (org-string-nw-p action-trimmed))
|
|
|
|
|
(1+ (gethash name-trimmed org-macro--counter-table 0)))
|
|
|
|
|
((string= "-" action-trimmed)
|
|
|
|
|
(gethash name-trimmed org-macro--counter-table 1))
|
|
|
|
|
((string-match-p "\\`[0-9]+\\'" action-trimmed)
|
|
|
|
|
(string-to-number action-trimmed))
|
|
|
|
|
(t 1))
|
|
|
|
|
org-macro--counter-table)))
|
2017-05-08 10:38:38 +00:00
|
|
|
|
|
2013-02-16 13:03:59 +00:00
|
|
|
|
|
|
|
|
|
(provide 'org-macro)
|
|
|
|
|
;;; org-macro.el ends here
|