Use inactive timestamps when re-scheduling or re-deadlining
[org-mode/org-tableheadings.git] / lisp / org-element.el
blob29f714e57b3ce954e9bc711c44069273df022bde
1 ;;; org-element.el --- Parser And Applications for Org syntax
3 ;; Copyright (C) 2012-2015 Free Software Foundation, Inc.
5 ;; Author: Nicolas Goaziou <n.goaziou at gmail dot com>
6 ;; Keywords: outlines, hypermedia, calendar, wp
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23 ;;; Commentary:
25 ;; Org syntax can be divided into three categories: "Greater
26 ;; elements", "Elements" and "Objects".
28 ;; Elements are related to the structure of the document. Indeed, all
29 ;; elements are a cover for the document: each position within belongs
30 ;; to at least one element.
32 ;; An element always starts and ends at the beginning of a line. With
33 ;; a few exceptions (`clock', `headline', `inlinetask', `item',
34 ;; `planning', `property-drawer', `node-property', `section' and
35 ;; `table-row' types), it can also accept a fixed set of keywords as
36 ;; attributes. Those are called "affiliated keywords" to distinguish
37 ;; them from other keywords, which are full-fledged elements. Almost
38 ;; all affiliated keywords are referenced in
39 ;; `org-element-affiliated-keywords'; the others are export attributes
40 ;; and start with "ATTR_" prefix.
42 ;; Element containing other elements (and only elements) are called
43 ;; greater elements. Concerned types are: `center-block', `drawer',
44 ;; `dynamic-block', `footnote-definition', `headline', `inlinetask',
45 ;; `item', `plain-list', `property-drawer', `quote-block', `section'
46 ;; and `special-block'.
48 ;; Other element types are: `babel-call', `clock', `comment',
49 ;; `comment-block', `diary-sexp', `example-block', `export-block',
50 ;; `fixed-width', `horizontal-rule', `keyword', `latex-environment',
51 ;; `node-property', `paragraph', `planning', `src-block', `table',
52 ;; `table-row' and `verse-block'. Among them, `paragraph' and
53 ;; `verse-block' types can contain Org objects and plain text.
55 ;; Objects are related to document's contents. Some of them are
56 ;; recursive. Associated types are of the following: `bold', `code',
57 ;; `entity', `export-snippet', `footnote-reference',
58 ;; `inline-babel-call', `inline-src-block', `italic',
59 ;; `latex-fragment', `line-break', `link', `macro', `radio-target',
60 ;; `statistics-cookie', `strike-through', `subscript', `superscript',
61 ;; `table-cell', `target', `timestamp', `underline' and `verbatim'.
63 ;; Some elements also have special properties whose value can hold
64 ;; objects themselves (e.g. an item tag or a headline name). Such
65 ;; values are called "secondary strings". Any object belongs to
66 ;; either an element or a secondary string.
68 ;; Notwithstanding affiliated keywords, each greater element, element
69 ;; and object has a fixed set of properties attached to it. Among
70 ;; them, four are shared by all types: `:begin' and `:end', which
71 ;; refer to the beginning and ending buffer positions of the
72 ;; considered element or object, `:post-blank', which holds the number
73 ;; of blank lines, or white spaces, at its end and `:parent' which
74 ;; refers to the element or object containing it. Greater elements,
75 ;; elements and objects containing objects will also have
76 ;; `:contents-begin' and `:contents-end' properties to delimit
77 ;; contents. Eventually, All elements have a `:post-affiliated'
78 ;; property referring to the buffer position after all affiliated
79 ;; keywords, if any, or to their beginning position otherwise.
81 ;; At the lowest level, a `:parent' property is also attached to any
82 ;; string, as a text property.
84 ;; Lisp-wise, an element or an object can be represented as a list.
85 ;; It follows the pattern (TYPE PROPERTIES CONTENTS), where:
86 ;; TYPE is a symbol describing the Org element or object.
87 ;; PROPERTIES is the property list attached to it. See docstring of
88 ;; appropriate parsing function to get an exhaustive
89 ;; list.
90 ;; CONTENTS is a list of elements, objects or raw strings contained
91 ;; in the current element or object, when applicable.
93 ;; An Org buffer is a nested list of such elements and objects, whose
94 ;; type is `org-data' and properties is nil.
96 ;; The first part of this file defines Org syntax, while the second
97 ;; one provide accessors and setters functions.
99 ;; The next part implements a parser and an interpreter for each
100 ;; element and object type in Org syntax.
102 ;; The following part creates a fully recursive buffer parser. It
103 ;; also provides a tool to map a function to elements or objects
104 ;; matching some criteria in the parse tree. Functions of interest
105 ;; are `org-element-parse-buffer', `org-element-map' and, to a lesser
106 ;; extent, `org-element-parse-secondary-string'.
108 ;; The penultimate part is the cradle of an interpreter for the
109 ;; obtained parse tree: `org-element-interpret-data'.
111 ;; The library ends by furnishing `org-element-at-point' function, and
112 ;; a way to give information about document structure around point
113 ;; with `org-element-context'. A cache mechanism is also provided for
114 ;; these functions.
117 ;;; Code:
119 (eval-when-compile (require 'cl))
120 (require 'org)
121 (require 'avl-tree)
125 ;;; Definitions And Rules
127 ;; Define elements, greater elements and specify recursive objects,
128 ;; along with the affiliated keywords recognized. Also set up
129 ;; restrictions on recursive objects combinations.
131 ;; `org-element-update-syntax' builds proper syntax regexps according
132 ;; to current setup.
134 (defvar org-element-paragraph-separate nil
135 "Regexp to separate paragraphs in an Org buffer.
136 In the case of lines starting with \"#\" and \":\", this regexp
137 is not sufficient to know if point is at a paragraph ending. See
138 `org-element-paragraph-parser' for more information.")
140 (defvar org-element--object-regexp nil
141 "Regexp possibly matching the beginning of an object.
142 This regexp allows false positives. Dedicated parser (e.g.,
143 `org-export-bold-parser') will take care of further filtering.
144 Radio links are not matched by this regexp, as they are treated
145 specially in `org-element--object-lex'.")
147 (defun org-element--set-regexps ()
148 "Build variable syntax regexps."
149 (setq org-element-paragraph-separate
150 (concat "^\\(?:"
151 ;; Headlines, inlinetasks.
152 org-outline-regexp "\\|"
153 ;; Footnote definitions.
154 "\\[\\(?:[0-9]+\\|fn:[-_[:word:]]+\\)\\]" "\\|"
155 ;; Diary sexps.
156 "%%(" "\\|"
157 "[ \t]*\\(?:"
158 ;; Empty lines.
159 "$" "\\|"
160 ;; Tables (any type).
161 "|" "\\|"
162 "\\+\\(?:-+\\+\\)+[ \t]*$" "\\|"
163 ;; Comments, keyword-like or block-like constructs.
164 ;; Blocks and keywords with dual values need to be
165 ;; double-checked.
166 "#\\(?: \\|$\\|\\+\\(?:"
167 "BEGIN_\\S-+" "\\|"
168 "\\S-+\\(?:\\[.*\\]\\)?:[ \t]*\\)\\)"
169 "\\|"
170 ;; Drawers (any type) and fixed-width areas. Drawers
171 ;; need to be double-checked.
172 ":\\(?: \\|$\\|[-_[:word:]]+:[ \t]*$\\)" "\\|"
173 ;; Horizontal rules.
174 "-\\{5,\\}[ \t]*$" "\\|"
175 ;; LaTeX environments.
176 "\\\\begin{\\([A-Za-z0-9*]+\\)}" "\\|"
177 ;; Clock lines.
178 (regexp-quote org-clock-string) "\\|"
179 ;; Lists.
180 (let ((term (case org-plain-list-ordered-item-terminator
181 (?\) ")") (?. "\\.") (otherwise "[.)]")))
182 (alpha (and org-list-allow-alphabetical "\\|[A-Za-z]")))
183 (concat "\\(?:[-+*]\\|\\(?:[0-9]+" alpha "\\)" term "\\)"
184 "\\(?:[ \t]\\|$\\)"))
185 "\\)\\)")
186 org-element--object-regexp
187 (mapconcat #'identity
188 (let ((link-types (regexp-opt org-link-types)))
189 (list
190 ;; Sub/superscript.
191 "\\(?:[_^][-{(*+.,[:alnum:]]\\)"
192 ;; Bold, code, italic, strike-through, underline
193 ;; and verbatim.
194 (concat "[*~=+_/]"
195 (format "[^%s]"
196 (nth 2 org-emphasis-regexp-components)))
197 ;; Plain links.
198 (concat "\\<" link-types ":")
199 ;; Objects starting with "[": regular link,
200 ;; footnote reference, statistics cookie,
201 ;; timestamp (inactive).
202 "\\[\\(?:fn:\\|\\(?:[0-9]\\|\\(?:%\\|/[0-9]*\\)\\]\\)\\|\\[\\)"
203 ;; Objects starting with "@": export snippets.
204 "@@"
205 ;; Objects starting with "{": macro.
206 "{{{"
207 ;; Objects starting with "<" : timestamp
208 ;; (active, diary), target, radio target and
209 ;; angular links.
210 (concat "<\\(?:%%\\|<\\|[0-9]\\|" link-types "\\)")
211 ;; Objects starting with "$": latex fragment.
212 "\\$"
213 ;; Objects starting with "\": line break,
214 ;; entity, latex fragment.
215 "\\\\\\(?:[a-zA-Z[(]\\|\\\\[ \t]*$\\|_ +\\)"
216 ;; Objects starting with raw text: inline Babel
217 ;; source block, inline Babel call.
218 "\\(?:call\\|src\\)_"))
219 "\\|")))
221 (org-element--set-regexps)
223 ;;;###autoload
224 (defun org-element-update-syntax ()
225 "Update parser internals."
226 (interactive)
227 (org-element--set-regexps)
228 (org-element-cache-reset 'all))
230 (defconst org-element-all-elements
231 '(babel-call center-block clock comment comment-block diary-sexp drawer
232 dynamic-block example-block export-block fixed-width
233 footnote-definition headline horizontal-rule inlinetask item
234 keyword latex-environment node-property paragraph plain-list
235 planning property-drawer quote-block section
236 special-block src-block table table-row verse-block)
237 "Complete list of element types.")
239 (defconst org-element-greater-elements
240 '(center-block drawer dynamic-block footnote-definition headline inlinetask
241 item plain-list property-drawer quote-block section
242 special-block table)
243 "List of recursive element types aka Greater Elements.")
245 (defconst org-element-all-objects
246 '(bold code entity export-snippet footnote-reference inline-babel-call
247 inline-src-block italic line-break latex-fragment link macro
248 radio-target statistics-cookie strike-through subscript superscript
249 table-cell target timestamp underline verbatim)
250 "Complete list of object types.")
252 (defconst org-element-recursive-objects
253 '(bold footnote-reference italic link subscript radio-target strike-through
254 superscript table-cell underline)
255 "List of recursive object types.")
257 (defconst org-element-object-containers
258 (append org-element-recursive-objects '(paragraph table-row verse-block))
259 "List of object or element types that can directly contain objects.")
261 (defvar org-element-block-name-alist
262 '(("CENTER" . org-element-center-block-parser)
263 ("COMMENT" . org-element-comment-block-parser)
264 ("EXAMPLE" . org-element-example-block-parser)
265 ("QUOTE" . org-element-quote-block-parser)
266 ("SRC" . org-element-src-block-parser)
267 ("VERSE" . org-element-verse-block-parser))
268 "Alist between block names and the associated parsing function.
269 Names must be uppercase. Any block whose name has no association
270 is parsed with `org-element-special-block-parser'.")
272 (defconst org-element-affiliated-keywords
273 '("CAPTION" "DATA" "HEADER" "HEADERS" "LABEL" "NAME" "PLOT" "RESNAME" "RESULT"
274 "RESULTS" "SOURCE" "SRCNAME" "TBLNAME")
275 "List of affiliated keywords as strings.
276 By default, all keywords setting attributes (e.g., \"ATTR_LATEX\")
277 are affiliated keywords and need not to be in this list.")
279 (defconst org-element-keyword-translation-alist
280 '(("DATA" . "NAME") ("LABEL" . "NAME") ("RESNAME" . "NAME")
281 ("SOURCE" . "NAME") ("SRCNAME" . "NAME") ("TBLNAME" . "NAME")
282 ("RESULT" . "RESULTS") ("HEADERS" . "HEADER"))
283 "Alist of usual translations for keywords.
284 The key is the old name and the value the new one. The property
285 holding their value will be named after the translated name.")
287 (defconst org-element-multiple-keywords '("CAPTION" "HEADER")
288 "List of affiliated keywords that can occur more than once in an element.
290 Their value will be consed into a list of strings, which will be
291 returned as the value of the property.
293 This list is checked after translations have been applied. See
294 `org-element-keyword-translation-alist'.
296 By default, all keywords setting attributes (e.g., \"ATTR_LATEX\")
297 allow multiple occurrences and need not to be in this list.")
299 (defconst org-element-parsed-keywords '("CAPTION")
300 "List of affiliated keywords whose value can be parsed.
302 Their value will be stored as a secondary string: a list of
303 strings and objects.
305 This list is checked after translations have been applied. See
306 `org-element-keyword-translation-alist'.")
308 (defconst org-element--parsed-properties-alist
309 (mapcar (lambda (k) (cons k (intern (concat ":" (downcase k)))))
310 org-element-parsed-keywords)
311 "Alist of parsed keywords and associated properties.
312 This is generated from `org-element-parsed-keywords', which
313 see.")
315 (defconst org-element-dual-keywords '("CAPTION" "RESULTS")
316 "List of affiliated keywords which can have a secondary value.
318 In Org syntax, they can be written with optional square brackets
319 before the colons. For example, RESULTS keyword can be
320 associated to a hash value with the following:
322 #+RESULTS[hash-string]: some-source
324 This list is checked after translations have been applied. See
325 `org-element-keyword-translation-alist'.")
327 (defconst org-element--affiliated-re
328 (format "[ \t]*#\\+\\(?:%s\\):[ \t]*"
329 (concat
330 ;; Dual affiliated keywords.
331 (format "\\(?1:%s\\)\\(?:\\[\\(.*\\)\\]\\)?"
332 (regexp-opt org-element-dual-keywords))
333 "\\|"
334 ;; Regular affiliated keywords.
335 (format "\\(?1:%s\\)"
336 (regexp-opt
337 (org-remove-if
338 (lambda (k) (member k org-element-dual-keywords))
339 org-element-affiliated-keywords)))
340 "\\|"
341 ;; Export attributes.
342 "\\(?1:ATTR_[-_A-Za-z0-9]+\\)"))
343 "Regexp matching any affiliated keyword.
345 Keyword name is put in match group 1. Moreover, if keyword
346 belongs to `org-element-dual-keywords', put the dual value in
347 match group 2.
349 Don't modify it, set `org-element-affiliated-keywords' instead.")
351 (defconst org-element-object-restrictions
352 (let* ((standard-set (remq 'table-cell org-element-all-objects))
353 (standard-set-no-line-break (remq 'line-break standard-set)))
354 `((bold ,@standard-set)
355 (footnote-reference ,@standard-set)
356 (headline ,@standard-set-no-line-break)
357 (inlinetask ,@standard-set-no-line-break)
358 (italic ,@standard-set)
359 (item ,@standard-set-no-line-break)
360 (keyword ,@(remq 'footnote-reference standard-set))
361 ;; Ignore all links excepted plain links in a link description.
362 ;; Also ignore radio-targets and line breaks.
363 (link bold code entity export-snippet inline-babel-call inline-src-block
364 italic latex-fragment macro plain-link statistics-cookie
365 strike-through subscript superscript underline verbatim)
366 (paragraph ,@standard-set)
367 ;; Remove any variable object from radio target as it would
368 ;; prevent it from being properly recognized.
369 (radio-target bold code entity italic latex-fragment strike-through
370 subscript superscript underline superscript)
371 (strike-through ,@standard-set)
372 (subscript ,@standard-set)
373 (superscript ,@standard-set)
374 ;; Ignore inline babel call and inline src block as formulas are
375 ;; possible. Also ignore line breaks and statistics cookies.
376 (table-cell bold code entity export-snippet footnote-reference italic
377 latex-fragment link macro radio-target strike-through
378 subscript superscript target timestamp underline verbatim)
379 (table-row table-cell)
380 (underline ,@standard-set)
381 (verse-block ,@standard-set)))
382 "Alist of objects restrictions.
384 key is an element or object type containing objects and value is
385 a list of types that can be contained within an element or object
386 of such type.
388 For example, in a `radio-target' object, one can only find
389 entities, latex-fragments, subscript, superscript and text
390 markup.
392 This alist also applies to secondary string. For example, an
393 `headline' type element doesn't directly contain objects, but
394 still has an entry since one of its properties (`:title') does.")
396 (defconst org-element-secondary-value-alist
397 '((headline :title)
398 (inlinetask :title)
399 (item :tag))
400 "Alist between element types and locations of secondary values.")
402 (defconst org-element--pair-square-table
403 (let ((table (make-syntax-table)))
404 (modify-syntax-entry ?\[ "(]" table)
405 (modify-syntax-entry ?\] ")[" table)
406 (dolist (char '(?\{ ?\} ?\( ?\) ?\< ?\>) table)
407 (modify-syntax-entry char " " table)))
408 "Table used internally to pair only square brackets.
409 Other brackets are treated as spaces.")
413 ;;; Accessors and Setters
415 ;; Provide four accessors: `org-element-type', `org-element-property'
416 ;; `org-element-contents' and `org-element-restriction'.
418 ;; Setter functions allow to modify elements by side effect. There is
419 ;; `org-element-put-property', `org-element-set-contents'. These
420 ;; low-level functions are useful to build a parse tree.
422 ;; `org-element-adopt-element', `org-element-set-element',
423 ;; `org-element-extract-element' and `org-element-insert-before' are
424 ;; high-level functions useful to modify a parse tree.
426 ;; `org-element-secondary-p' is a predicate used to know if a given
427 ;; object belongs to a secondary string. `org-element-copy' returns
428 ;; an element or object, stripping its parent property in the process.
430 (defsubst org-element-type (element)
431 "Return type of ELEMENT.
433 The function returns the type of the element or object provided.
434 It can also return the following special value:
435 `plain-text' for a string
436 `org-data' for a complete document
437 nil in any other case."
438 (cond
439 ((not (consp element)) (and (stringp element) 'plain-text))
440 ((symbolp (car element)) (car element))))
442 (defsubst org-element-property (property element)
443 "Extract the value from the PROPERTY of an ELEMENT."
444 (if (stringp element) (get-text-property 0 property element)
445 (plist-get (nth 1 element) property)))
447 (defsubst org-element-contents (element)
448 "Extract contents from an ELEMENT."
449 (cond ((not (consp element)) nil)
450 ((symbolp (car element)) (nthcdr 2 element))
451 (t element)))
453 (defsubst org-element-restriction (element)
454 "Return restriction associated to ELEMENT.
455 ELEMENT can be an element, an object or a symbol representing an
456 element or object type."
457 (cdr (assq (if (symbolp element) element (org-element-type element))
458 org-element-object-restrictions)))
460 (defsubst org-element-put-property (element property value)
461 "In ELEMENT set PROPERTY to VALUE.
462 Return modified element."
463 (if (stringp element) (org-add-props element nil property value)
464 (setcar (cdr element) (plist-put (nth 1 element) property value))
465 element))
467 (defsubst org-element-set-contents (element &rest contents)
468 "Set ELEMENT contents to CONTENTS."
469 (cond ((not element) (list contents))
470 ((not (symbolp (car element))) contents)
471 ((cdr element) (setcdr (cdr element) contents))
472 (t (nconc element contents))))
474 (defun org-element-secondary-p (object)
475 "Non-nil when OBJECT directly belongs to a secondary string.
476 Return value is the property name, as a keyword, or nil."
477 (let* ((parent (org-element-property :parent object))
478 (properties (cdr (assq (org-element-type parent)
479 org-element-secondary-value-alist))))
480 (catch 'exit
481 (dolist (p properties)
482 (and (memq object (org-element-property p parent))
483 (throw 'exit p))))))
485 (defsubst org-element-adopt-elements (parent &rest children)
486 "Append elements to the contents of another element.
488 PARENT is an element or object. CHILDREN can be elements,
489 objects, or a strings.
491 The function takes care of setting `:parent' property for CHILD.
492 Return parent element."
493 (if (not children) parent
494 ;; Link every child to PARENT. If PARENT is nil, it is a secondary
495 ;; string: parent is the list itself.
496 (dolist (child children)
497 (org-element-put-property child :parent (or parent children)))
498 ;; Add CHILDREN at the end of PARENT contents.
499 (when parent
500 (apply #'org-element-set-contents
501 parent
502 (nconc (org-element-contents parent) children)))
503 ;; Return modified PARENT element.
504 (or parent children)))
506 (defun org-element-extract-element (element)
507 "Extract ELEMENT from parse tree.
508 Remove element from the parse tree by side-effect, and return it
509 with its `:parent' property stripped out."
510 (let ((parent (org-element-property :parent element))
511 (secondary (org-element-secondary-p element)))
512 (if secondary
513 (org-element-put-property
514 parent secondary
515 (delq element (org-element-property secondary parent)))
516 (apply #'org-element-set-contents
517 parent
518 (delq element (org-element-contents parent))))
519 ;; Return ELEMENT with its :parent removed.
520 (org-element-put-property element :parent nil)))
522 (defun org-element-insert-before (element location)
523 "Insert ELEMENT before LOCATION in parse tree.
524 LOCATION is an element, object or string within the parse tree.
525 Parse tree is modified by side effect."
526 (let* ((parent (org-element-property :parent location))
527 (property (org-element-secondary-p location))
528 (siblings (if property (org-element-property property parent)
529 (org-element-contents parent)))
530 ;; Special case: LOCATION is the first element of an
531 ;; independent secondary string (e.g. :title property). Add
532 ;; ELEMENT in-place.
533 (specialp (and (not property)
534 (eq siblings parent)
535 (eq (car parent) location))))
536 ;; Install ELEMENT at the appropriate POSITION within SIBLINGS.
537 (cond (specialp)
538 ((or (null siblings) (eq (car siblings) location))
539 (push element siblings))
540 ((null location) (nconc siblings (list element)))
541 (t (let ((previous (cadr (memq location (reverse siblings)))))
542 (if (not previous)
543 (error "No location found to insert element")
544 (let ((next (memq previous siblings)))
545 (setcdr next (cons element (cdr next))))))))
546 ;; Store SIBLINGS at appropriate place in parse tree.
547 (cond
548 (specialp (setcdr parent (copy-sequence parent)) (setcar parent element))
549 (property (org-element-put-property parent property siblings))
550 (t (apply #'org-element-set-contents parent siblings)))
551 ;; Set appropriate :parent property.
552 (org-element-put-property element :parent parent)))
554 (defun org-element-set-element (old new)
555 "Replace element or object OLD with element or object NEW.
556 The function takes care of setting `:parent' property for NEW."
557 ;; Ensure OLD and NEW have the same parent.
558 (org-element-put-property new :parent (org-element-property :parent old))
559 (if (or (memq (org-element-type old) '(plain-text nil))
560 (memq (org-element-type new) '(plain-text nil)))
561 ;; We cannot replace OLD with NEW since one of them is not an
562 ;; object or element. We take the long path.
563 (progn (org-element-insert-before new old)
564 (org-element-extract-element old))
565 ;; Since OLD is going to be changed into NEW by side-effect, first
566 ;; make sure that every element or object within NEW has OLD as
567 ;; parent.
568 (dolist (blob (org-element-contents new))
569 (org-element-put-property blob :parent old))
570 ;; Transfer contents.
571 (apply #'org-element-set-contents old (org-element-contents new))
572 ;; Overwrite OLD's properties with NEW's.
573 (setcar (cdr old) (nth 1 new))
574 ;; Transfer type.
575 (setcar old (car new))))
577 (defun org-element-create (type &optional props &rest children)
578 "Create a new element of type TYPE.
579 Optional argument PROPS, when non-nil, is a plist defining the
580 properties of the element. CHILDREN can be elements, objects or
581 strings."
582 (apply #'org-element-adopt-elements (list type props) children))
584 (defun org-element-copy (datum)
585 "Return a copy of DATUM.
586 DATUM is an element, object, string or nil. `:parent' property
587 is cleared and contents are removed in the process."
588 (when datum
589 (let ((type (org-element-type datum)))
590 (case type
591 (org-data (list 'org-data nil))
592 (plain-text (substring-no-properties datum))
593 ((nil) (copy-sequence datum))
594 (otherwise
595 (list type (plist-put (copy-sequence (nth 1 datum)) :parent nil)))))))
599 ;;; Greater elements
601 ;; For each greater element type, we define a parser and an
602 ;; interpreter.
604 ;; A parser returns the element or object as the list described above.
605 ;; Most of them accepts no argument. Though, exceptions exist. Hence
606 ;; every element containing a secondary string (see
607 ;; `org-element-secondary-value-alist') will accept an optional
608 ;; argument to toggle parsing of these secondary strings. Moreover,
609 ;; `item' parser requires current list's structure as its first
610 ;; element.
612 ;; An interpreter accepts two arguments: the list representation of
613 ;; the element or object, and its contents. The latter may be nil,
614 ;; depending on the element or object considered. It returns the
615 ;; appropriate Org syntax, as a string.
617 ;; Parsing functions must follow the naming convention:
618 ;; org-element-TYPE-parser, where TYPE is greater element's type, as
619 ;; defined in `org-element-greater-elements'.
621 ;; Similarly, interpreting functions must follow the naming
622 ;; convention: org-element-TYPE-interpreter.
624 ;; With the exception of `headline' and `item' types, greater elements
625 ;; cannot contain other greater elements of their own type.
627 ;; Beside implementing a parser and an interpreter, adding a new
628 ;; greater element requires to tweak `org-element--current-element'.
629 ;; Moreover, the newly defined type must be added to both
630 ;; `org-element-all-elements' and `org-element-greater-elements'.
633 ;;;; Center Block
635 (defun org-element-center-block-parser (limit affiliated)
636 "Parse a center block.
638 LIMIT bounds the search. AFFILIATED is a list of which CAR is
639 the buffer position at the beginning of the first affiliated
640 keyword and CDR is a plist of affiliated keywords along with
641 their value.
643 Return a list whose CAR is `center-block' and CDR is a plist
644 containing `:begin', `:end', `:contents-begin', `:contents-end',
645 `:post-blank' and `:post-affiliated' keywords.
647 Assume point is at the beginning of the block."
648 (let ((case-fold-search t))
649 (if (not (save-excursion
650 (re-search-forward "^[ \t]*#\\+END_CENTER[ \t]*$" limit t)))
651 ;; Incomplete block: parse it as a paragraph.
652 (org-element-paragraph-parser limit affiliated)
653 (let ((block-end-line (match-beginning 0)))
654 (let* ((begin (car affiliated))
655 (post-affiliated (point))
656 ;; Empty blocks have no contents.
657 (contents-begin (progn (forward-line)
658 (and (< (point) block-end-line)
659 (point))))
660 (contents-end (and contents-begin block-end-line))
661 (pos-before-blank (progn (goto-char block-end-line)
662 (forward-line)
663 (point)))
664 (end (save-excursion
665 (skip-chars-forward " \r\t\n" limit)
666 (if (eobp) (point) (line-beginning-position)))))
667 (list 'center-block
668 (nconc
669 (list :begin begin
670 :end end
671 :contents-begin contents-begin
672 :contents-end contents-end
673 :post-blank (count-lines pos-before-blank end)
674 :post-affiliated post-affiliated)
675 (cdr affiliated))))))))
677 (defun org-element-center-block-interpreter (center-block contents)
678 "Interpret CENTER-BLOCK element as Org syntax.
679 CONTENTS is the contents of the element."
680 (format "#+BEGIN_CENTER\n%s#+END_CENTER" contents))
683 ;;;; Drawer
685 (defun org-element-drawer-parser (limit affiliated)
686 "Parse a drawer.
688 LIMIT bounds the search. AFFILIATED is a list of which CAR is
689 the buffer position at the beginning of the first affiliated
690 keyword and CDR is a plist of affiliated keywords along with
691 their value.
693 Return a list whose CAR is `drawer' and CDR is a plist containing
694 `:drawer-name', `:begin', `:end', `:contents-begin',
695 `:contents-end', `:post-blank' and `:post-affiliated' keywords.
697 Assume point is at beginning of drawer."
698 (let ((case-fold-search t))
699 (if (not (save-excursion (re-search-forward "^[ \t]*:END:[ \t]*$" limit t)))
700 ;; Incomplete drawer: parse it as a paragraph.
701 (org-element-paragraph-parser limit affiliated)
702 (save-excursion
703 (let* ((drawer-end-line (match-beginning 0))
704 (name (progn (looking-at org-drawer-regexp)
705 (org-match-string-no-properties 1)))
706 (begin (car affiliated))
707 (post-affiliated (point))
708 ;; Empty drawers have no contents.
709 (contents-begin (progn (forward-line)
710 (and (< (point) drawer-end-line)
711 (point))))
712 (contents-end (and contents-begin drawer-end-line))
713 (pos-before-blank (progn (goto-char drawer-end-line)
714 (forward-line)
715 (point)))
716 (end (progn (skip-chars-forward " \r\t\n" limit)
717 (if (eobp) (point) (line-beginning-position)))))
718 (list 'drawer
719 (nconc
720 (list :begin begin
721 :end end
722 :drawer-name name
723 :contents-begin contents-begin
724 :contents-end contents-end
725 :post-blank (count-lines pos-before-blank end)
726 :post-affiliated post-affiliated)
727 (cdr affiliated))))))))
729 (defun org-element-drawer-interpreter (drawer contents)
730 "Interpret DRAWER element as Org syntax.
731 CONTENTS is the contents of the element."
732 (format ":%s:\n%s:END:"
733 (org-element-property :drawer-name drawer)
734 contents))
737 ;;;; Dynamic Block
739 (defun org-element-dynamic-block-parser (limit affiliated)
740 "Parse a dynamic block.
742 LIMIT bounds the search. AFFILIATED is a list of which CAR is
743 the buffer position at the beginning of the first affiliated
744 keyword and CDR is a plist of affiliated keywords along with
745 their value.
747 Return a list whose CAR is `dynamic-block' and CDR is a plist
748 containing `:block-name', `:begin', `:end', `:contents-begin',
749 `:contents-end', `:arguments', `:post-blank' and
750 `:post-affiliated' keywords.
752 Assume point is at beginning of dynamic block."
753 (let ((case-fold-search t))
754 (if (not (save-excursion
755 (re-search-forward "^[ \t]*#\\+END:?[ \t]*$" limit t)))
756 ;; Incomplete block: parse it as a paragraph.
757 (org-element-paragraph-parser limit affiliated)
758 (let ((block-end-line (match-beginning 0)))
759 (save-excursion
760 (let* ((name (progn (looking-at org-dblock-start-re)
761 (org-match-string-no-properties 1)))
762 (arguments (org-match-string-no-properties 3))
763 (begin (car affiliated))
764 (post-affiliated (point))
765 ;; Empty blocks have no contents.
766 (contents-begin (progn (forward-line)
767 (and (< (point) block-end-line)
768 (point))))
769 (contents-end (and contents-begin block-end-line))
770 (pos-before-blank (progn (goto-char block-end-line)
771 (forward-line)
772 (point)))
773 (end (progn (skip-chars-forward " \r\t\n" limit)
774 (if (eobp) (point) (line-beginning-position)))))
775 (list 'dynamic-block
776 (nconc
777 (list :begin begin
778 :end end
779 :block-name name
780 :arguments arguments
781 :contents-begin contents-begin
782 :contents-end contents-end
783 :post-blank (count-lines pos-before-blank end)
784 :post-affiliated post-affiliated)
785 (cdr affiliated)))))))))
787 (defun org-element-dynamic-block-interpreter (dynamic-block contents)
788 "Interpret DYNAMIC-BLOCK element as Org syntax.
789 CONTENTS is the contents of the element."
790 (format "#+BEGIN: %s%s\n%s#+END:"
791 (org-element-property :block-name dynamic-block)
792 (let ((args (org-element-property :arguments dynamic-block)))
793 (and args (concat " " args)))
794 contents))
797 ;;;; Footnote Definition
799 (defun org-element-footnote-definition-parser (limit affiliated)
800 "Parse a footnote definition.
802 LIMIT bounds the search. AFFILIATED is a list of which CAR is
803 the buffer position at the beginning of the first affiliated
804 keyword and CDR is a plist of affiliated keywords along with
805 their value.
807 Return a list whose CAR is `footnote-definition' and CDR is
808 a plist containing `:label', `:begin' `:end', `:contents-begin',
809 `:contents-end', `:post-blank' and `:post-affiliated' keywords.
811 Assume point is at the beginning of the footnote definition."
812 (save-excursion
813 (let* ((label (progn (looking-at org-footnote-definition-re)
814 (org-match-string-no-properties 1)))
815 (begin (car affiliated))
816 (post-affiliated (point))
817 (ending (save-excursion
818 (if (progn
819 (end-of-line)
820 (re-search-forward
821 (concat org-outline-regexp-bol "\\|"
822 org-footnote-definition-re "\\|"
823 "^\\([ \t]*\n\\)\\{2,\\}") limit 'move))
824 (match-beginning 0)
825 (point))))
826 (contents-begin (progn
827 (search-forward "]")
828 (skip-chars-forward " \r\t\n" ending)
829 (cond ((= (point) ending) nil)
830 ((= (line-beginning-position) begin) (point))
831 (t (line-beginning-position)))))
832 (contents-end (and contents-begin ending))
833 (end (progn (goto-char ending)
834 (skip-chars-forward " \r\t\n" limit)
835 (if (eobp) (point) (line-beginning-position)))))
836 (list 'footnote-definition
837 (nconc
838 (list :label label
839 :begin begin
840 :end end
841 :contents-begin contents-begin
842 :contents-end contents-end
843 :post-blank (count-lines ending end)
844 :post-affiliated post-affiliated)
845 (cdr affiliated))))))
847 (defun org-element-footnote-definition-interpreter (footnote-definition contents)
848 "Interpret FOOTNOTE-DEFINITION element as Org syntax.
849 CONTENTS is the contents of the footnote-definition."
850 (concat (format "[%s]" (org-element-property :label footnote-definition))
852 contents))
855 ;;;; Headline
857 (defun org-element--get-node-properties ()
858 "Return node properties associated to headline at point.
859 Upcase property names. It avoids confusion between properties
860 obtained through property drawer and default properties from the
861 parser (e.g. `:end' and :END:). Return value is a plist."
862 (save-excursion
863 (forward-line)
864 (when (org-looking-at-p org-planning-line-re) (forward-line))
865 (when (looking-at org-property-drawer-re)
866 (forward-line)
867 (let ((end (match-end 0)) properties)
868 (while (< (line-end-position) end)
869 (looking-at org-property-re)
870 (push (org-match-string-no-properties 3) properties)
871 (push (intern (concat ":" (upcase (match-string 2)))) properties)
872 (forward-line))
873 properties))))
875 (defun org-element--get-time-properties ()
876 "Return time properties associated to headline at point.
877 Return value is a plist."
878 (save-excursion
879 (when (progn (forward-line) (looking-at org-planning-line-re))
880 (let ((end (line-end-position)) plist)
881 (while (re-search-forward org-keyword-time-not-clock-regexp end t)
882 (goto-char (match-end 1))
883 (skip-chars-forward " \t")
884 (let ((keyword (match-string 1))
885 (time (org-element-timestamp-parser)))
886 (cond ((equal keyword org-scheduled-string)
887 (setq plist (plist-put plist :scheduled time)))
888 ((equal keyword org-deadline-string)
889 (setq plist (plist-put plist :deadline time)))
890 (t (setq plist (plist-put plist :closed time))))))
891 plist))))
893 (defun org-element-headline-parser (limit &optional raw-secondary-p)
894 "Parse a headline.
896 Return a list whose CAR is `headline' and CDR is a plist
897 containing `:raw-value', `:title', `:begin', `:end',
898 `:pre-blank', `:contents-begin' and `:contents-end', `:level',
899 `:priority', `:tags', `:todo-keyword',`:todo-type', `:scheduled',
900 `:deadline', `:closed', `:archivedp', `:commentedp'
901 `:footnote-section-p', `:post-blank' and `:post-affiliated'
902 keywords.
904 The plist also contains any property set in the property drawer,
905 with its name in upper cases and colons added at the
906 beginning (e.g., `:CUSTOM_ID').
908 LIMIT is a buffer position bounding the search.
910 When RAW-SECONDARY-P is non-nil, headline's title will not be
911 parsed as a secondary string, but as a plain string instead.
913 Assume point is at beginning of the headline."
914 (save-excursion
915 (let* ((begin (point))
916 (level (prog1 (org-reduced-level (skip-chars-forward "*"))
917 (skip-chars-forward " \t")))
918 (todo (and org-todo-regexp
919 (let (case-fold-search) (looking-at org-todo-regexp))
920 (progn (goto-char (match-end 0))
921 (skip-chars-forward " \t")
922 (match-string 0))))
923 (todo-type
924 (and todo (if (member todo org-done-keywords) 'done 'todo)))
925 (priority (and (looking-at "\\[#.\\][ \t]*")
926 (progn (goto-char (match-end 0))
927 (aref (match-string 0) 2))))
928 (commentedp
929 (and (let (case-fold-search) (looking-at org-comment-string))
930 (goto-char (match-end 0))))
931 (title-start (point))
932 (tags (when (re-search-forward
933 (org-re "[ \t]+\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$")
934 (line-end-position)
935 'move)
936 (goto-char (match-beginning 0))
937 (org-split-string (match-string 1) ":")))
938 (title-end (point))
939 (raw-value (org-trim
940 (buffer-substring-no-properties title-start title-end)))
941 (archivedp (member org-archive-tag tags))
942 (footnote-section-p (and org-footnote-section
943 (string= org-footnote-section raw-value)))
944 (standard-props (org-element--get-node-properties))
945 (time-props (org-element--get-time-properties))
946 (end (min (save-excursion (org-end-of-subtree t t)) limit))
947 (pos-after-head (progn (forward-line) (point)))
948 (contents-begin (save-excursion
949 (skip-chars-forward " \r\t\n" end)
950 (and (/= (point) end) (line-beginning-position))))
951 (contents-end (and contents-begin
952 (progn (goto-char end)
953 (skip-chars-backward " \r\t\n")
954 (forward-line)
955 (point)))))
956 (let ((headline
957 (list 'headline
958 (nconc
959 (list :raw-value raw-value
960 :begin begin
961 :end end
962 :pre-blank
963 (if (not contents-begin) 0
964 (count-lines pos-after-head contents-begin))
965 :contents-begin contents-begin
966 :contents-end contents-end
967 :level level
968 :priority priority
969 :tags tags
970 :todo-keyword todo
971 :todo-type todo-type
972 :post-blank (count-lines
973 (or contents-end pos-after-head)
974 end)
975 :footnote-section-p footnote-section-p
976 :archivedp archivedp
977 :commentedp commentedp
978 :post-affiliated begin)
979 time-props
980 standard-props))))
981 (org-element-put-property
982 headline :title
983 (if raw-secondary-p raw-value
984 (let ((title (org-element--parse-objects
985 (progn (goto-char title-start)
986 (skip-chars-forward " \t")
987 (point))
988 (progn (goto-char title-end)
989 (skip-chars-backward " \t")
990 (point))
992 (org-element-restriction 'headline))))
993 (dolist (datum title title)
994 (org-element-put-property datum :parent headline)))))))))
996 (defun org-element-headline-interpreter (headline contents)
997 "Interpret HEADLINE element as Org syntax.
998 CONTENTS is the contents of the element."
999 (let* ((level (org-element-property :level headline))
1000 (todo (org-element-property :todo-keyword headline))
1001 (priority (org-element-property :priority headline))
1002 (title (org-element-interpret-data
1003 (org-element-property :title headline)))
1004 (tags (let ((tag-list (org-element-property :tags headline)))
1005 (and tag-list
1006 (format ":%s:" (mapconcat #'identity tag-list ":")))))
1007 (commentedp (org-element-property :commentedp headline))
1008 (pre-blank (or (org-element-property :pre-blank headline) 0))
1009 (heading
1010 (concat (make-string (if org-odd-levels-only (1- (* level 2)) level)
1012 (and todo (concat " " todo))
1013 (and commentedp (concat " " org-comment-string))
1014 (and priority (format " [#%c]" priority))
1016 (if (and org-footnote-section
1017 (org-element-property :footnote-section-p headline))
1018 org-footnote-section
1019 title))))
1020 (concat
1021 heading
1022 ;; Align tags.
1023 (when tags
1024 (cond
1025 ((zerop org-tags-column) (format " %s" tags))
1026 ((< org-tags-column 0)
1027 (concat
1028 (make-string
1029 (max (- (+ org-tags-column (length heading) (length tags))) 1)
1030 ?\s)
1031 tags))
1033 (concat
1034 (make-string (max (- org-tags-column (length heading)) 1) ?\s)
1035 tags))))
1036 (make-string (1+ pre-blank) ?\n)
1037 contents)))
1040 ;;;; Inlinetask
1042 (defun org-element-inlinetask-parser (limit &optional raw-secondary-p)
1043 "Parse an inline task.
1045 Return a list whose CAR is `inlinetask' and CDR is a plist
1046 containing `:title', `:begin', `:end', `:contents-begin' and
1047 `:contents-end', `:level', `:priority', `:raw-value', `:tags',
1048 `:todo-keyword', `:todo-type', `:scheduled', `:deadline',
1049 `:closed', `:post-blank' and `:post-affiliated' keywords.
1051 The plist also contains any property set in the property drawer,
1052 with its name in upper cases and colons added at the
1053 beginning (e.g., `:CUSTOM_ID').
1055 When optional argument RAW-SECONDARY-P is non-nil, inline-task's
1056 title will not be parsed as a secondary string, but as a plain
1057 string instead.
1059 Assume point is at beginning of the inline task."
1060 (save-excursion
1061 (let* ((begin (point))
1062 (level (prog1 (org-reduced-level (skip-chars-forward "*"))
1063 (skip-chars-forward " \t")))
1064 (todo (and org-todo-regexp
1065 (let (case-fold-search) (looking-at org-todo-regexp))
1066 (progn (goto-char (match-end 0))
1067 (skip-chars-forward " \t")
1068 (match-string 0))))
1069 (todo-type (and todo
1070 (if (member todo org-done-keywords) 'done 'todo)))
1071 (priority (and (looking-at "\\[#.\\][ \t]*")
1072 (progn (goto-char (match-end 0))
1073 (aref (match-string 0) 2))))
1074 (title-start (point))
1075 (tags (when (re-search-forward
1076 (org-re "[ \t]+\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$")
1077 (line-end-position)
1078 'move)
1079 (goto-char (match-beginning 0))
1080 (org-split-string (match-string 1) ":")))
1081 (title-end (point))
1082 (raw-value (org-trim
1083 (buffer-substring-no-properties title-start title-end)))
1084 (task-end (save-excursion
1085 (end-of-line)
1086 (and (re-search-forward org-outline-regexp-bol limit t)
1087 (org-looking-at-p "END[ \t]*$")
1088 (line-beginning-position))))
1089 (standard-props (and task-end (org-element--get-node-properties)))
1090 (time-props (and task-end (org-element--get-time-properties)))
1091 (contents-begin (progn (forward-line)
1092 (and task-end (< (point) task-end) (point))))
1093 (contents-end (and contents-begin task-end))
1094 (before-blank (if (not task-end) (point)
1095 (goto-char task-end)
1096 (forward-line)
1097 (point)))
1098 (end (progn (skip-chars-forward " \r\t\n" limit)
1099 (if (eobp) (point) (line-beginning-position))))
1100 (inlinetask
1101 (list 'inlinetask
1102 (nconc
1103 (list :raw-value raw-value
1104 :begin begin
1105 :end end
1106 :contents-begin contents-begin
1107 :contents-end contents-end
1108 :level level
1109 :priority priority
1110 :tags tags
1111 :todo-keyword todo
1112 :todo-type todo-type
1113 :post-blank (count-lines before-blank end)
1114 :post-affiliated begin)
1115 time-props
1116 standard-props))))
1117 (org-element-put-property
1118 inlinetask :title
1119 (if raw-secondary-p raw-value
1120 (let ((title (org-element--parse-objects
1121 (progn (goto-char title-start)
1122 (skip-chars-forward " \t")
1123 (point))
1124 (progn (goto-char title-end)
1125 (skip-chars-backward " \t")
1126 (point))
1128 (org-element-restriction 'inlinetask))))
1129 (dolist (datum title title)
1130 (org-element-put-property datum :parent inlinetask))))))))
1132 (defun org-element-inlinetask-interpreter (inlinetask contents)
1133 "Interpret INLINETASK element as Org syntax.
1134 CONTENTS is the contents of inlinetask."
1135 (let* ((level (org-element-property :level inlinetask))
1136 (todo (org-element-property :todo-keyword inlinetask))
1137 (priority (org-element-property :priority inlinetask))
1138 (title (org-element-interpret-data
1139 (org-element-property :title inlinetask)))
1140 (tags (let ((tag-list (org-element-property :tags inlinetask)))
1141 (and tag-list
1142 (format ":%s:" (mapconcat 'identity tag-list ":")))))
1143 (task (concat (make-string level ?*)
1144 (and todo (concat " " todo))
1145 (and priority (format " [#%c]" priority))
1146 (and title (concat " " title)))))
1147 (concat task
1148 ;; Align tags.
1149 (when tags
1150 (cond
1151 ((zerop org-tags-column) (format " %s" tags))
1152 ((< org-tags-column 0)
1153 (concat
1154 (make-string
1155 (max (- (+ org-tags-column (length task) (length tags))) 1)
1157 tags))
1159 (concat
1160 (make-string (max (- org-tags-column (length task)) 1) ? )
1161 tags))))
1162 ;; Prefer degenerate inlinetasks when there are no
1163 ;; contents.
1164 (when contents
1165 (concat "\n"
1166 contents
1167 (make-string level ?*) " END")))))
1170 ;;;; Item
1172 (defun org-element-item-parser (limit struct &optional raw-secondary-p)
1173 "Parse an item.
1175 STRUCT is the structure of the plain list.
1177 Return a list whose CAR is `item' and CDR is a plist containing
1178 `:bullet', `:begin', `:end', `:contents-begin', `:contents-end',
1179 `:checkbox', `:counter', `:tag', `:structure', `:post-blank' and
1180 `:post-affiliated' keywords.
1182 When optional argument RAW-SECONDARY-P is non-nil, item's tag, if
1183 any, will not be parsed as a secondary string, but as a plain
1184 string instead.
1186 Assume point is at the beginning of the item."
1187 (save-excursion
1188 (beginning-of-line)
1189 (looking-at org-list-full-item-re)
1190 (let* ((begin (point))
1191 (bullet (org-match-string-no-properties 1))
1192 (checkbox (let ((box (match-string 3)))
1193 (cond ((equal "[ ]" box) 'off)
1194 ((equal "[X]" box) 'on)
1195 ((equal "[-]" box) 'trans))))
1196 (counter (let ((c (match-string 2)))
1197 (save-match-data
1198 (cond
1199 ((not c) nil)
1200 ((string-match "[A-Za-z]" c)
1201 (- (string-to-char (upcase (match-string 0 c)))
1202 64))
1203 ((string-match "[0-9]+" c)
1204 (string-to-number (match-string 0 c)))))))
1205 (end (progn (goto-char (nth 6 (assq (point) struct)))
1206 (if (bolp) (point) (line-beginning-position 2))))
1207 (contents-begin
1208 (progn (goto-char
1209 ;; Ignore tags in un-ordered lists: they are just
1210 ;; a part of item's body.
1211 (if (and (match-beginning 4)
1212 (save-match-data (string-match "[.)]" bullet)))
1213 (match-beginning 4)
1214 (match-end 0)))
1215 (skip-chars-forward " \r\t\n" end)
1216 (cond ((= (point) end) nil)
1217 ;; If first line isn't empty, contents really
1218 ;; start at the text after item's meta-data.
1219 ((= (line-beginning-position) begin) (point))
1220 (t (line-beginning-position)))))
1221 (contents-end (and contents-begin
1222 (progn (goto-char end)
1223 (skip-chars-backward " \r\t\n")
1224 (line-beginning-position 2))))
1225 (item
1226 (list 'item
1227 (list :bullet bullet
1228 :begin begin
1229 :end end
1230 :contents-begin contents-begin
1231 :contents-end contents-end
1232 :checkbox checkbox
1233 :counter counter
1234 :structure struct
1235 :post-blank (count-lines (or contents-end begin) end)
1236 :post-affiliated begin))))
1237 (org-element-put-property
1238 item :tag
1239 (let ((raw (org-list-get-tag begin struct)))
1240 (when raw
1241 (if raw-secondary-p raw
1242 (let ((tag (org-element--parse-objects
1243 (match-beginning 4) (match-end 4) nil
1244 (org-element-restriction 'item))))
1245 (dolist (datum tag tag)
1246 (org-element-put-property datum :parent item))))))))))
1248 (defun org-element-item-interpreter (item contents)
1249 "Interpret ITEM element as Org syntax.
1250 CONTENTS is the contents of the element."
1251 (let* ((bullet (let ((bullet (org-element-property :bullet item)))
1252 (org-list-bullet-string
1253 (cond ((not (string-match "[0-9a-zA-Z]" bullet)) "- ")
1254 ((eq org-plain-list-ordered-item-terminator ?\)) "1)")
1255 (t "1.")))))
1256 (checkbox (org-element-property :checkbox item))
1257 (counter (org-element-property :counter item))
1258 (tag (let ((tag (org-element-property :tag item)))
1259 (and tag (org-element-interpret-data tag))))
1260 ;; Compute indentation.
1261 (ind (make-string (length bullet) 32))
1262 (item-starts-with-par-p
1263 (eq (org-element-type (car (org-element-contents item)))
1264 'paragraph)))
1265 ;; Indent contents.
1266 (concat
1267 bullet
1268 (and counter (format "[@%d] " counter))
1269 (case checkbox
1270 (on "[X] ")
1271 (off "[ ] ")
1272 (trans "[-] "))
1273 (and tag (format "%s :: " tag))
1274 (when contents
1275 (let ((contents (replace-regexp-in-string
1276 "\\(^\\)[ \t]*\\S-" ind contents nil nil 1)))
1277 (if item-starts-with-par-p (org-trim contents)
1278 (concat "\n" contents)))))))
1281 ;;;; Plain List
1283 (defun org-element--list-struct (limit)
1284 ;; Return structure of list at point. Internal function. See
1285 ;; `org-list-struct' for details.
1286 (let ((case-fold-search t)
1287 (top-ind limit)
1288 (item-re (org-item-re))
1289 (inlinetask-re (and (featurep 'org-inlinetask) "^\\*+ "))
1290 items struct)
1291 (save-excursion
1292 (catch 'exit
1293 (while t
1294 (cond
1295 ;; At limit: end all items.
1296 ((>= (point) limit)
1297 (throw 'exit
1298 (let ((end (progn (skip-chars-backward " \r\t\n")
1299 (forward-line)
1300 (point))))
1301 (dolist (item items (sort (nconc items struct)
1302 'car-less-than-car))
1303 (setcar (nthcdr 6 item) end)))))
1304 ;; At list end: end all items.
1305 ((looking-at org-list-end-re)
1306 (throw 'exit (dolist (item items (sort (nconc items struct)
1307 'car-less-than-car))
1308 (setcar (nthcdr 6 item) (point)))))
1309 ;; At a new item: end previous sibling.
1310 ((looking-at item-re)
1311 (let ((ind (save-excursion (skip-chars-forward " \t")
1312 (current-column))))
1313 (setq top-ind (min top-ind ind))
1314 (while (and items (<= ind (nth 1 (car items))))
1315 (let ((item (pop items)))
1316 (setcar (nthcdr 6 item) (point))
1317 (push item struct)))
1318 (push (progn (looking-at org-list-full-item-re)
1319 (let ((bullet (match-string-no-properties 1)))
1320 (list (point)
1322 bullet
1323 (match-string-no-properties 2) ; counter
1324 (match-string-no-properties 3) ; checkbox
1325 ;; Description tag.
1326 (and (save-match-data
1327 (string-match "[-+*]" bullet))
1328 (match-string-no-properties 4))
1329 ;; Ending position, unknown so far.
1330 nil)))
1331 items))
1332 (forward-line 1))
1333 ;; Skip empty lines.
1334 ((looking-at "^[ \t]*$") (forward-line))
1335 ;; Skip inline tasks and blank lines along the way.
1336 ((and inlinetask-re (looking-at inlinetask-re))
1337 (forward-line)
1338 (let ((origin (point)))
1339 (when (re-search-forward inlinetask-re limit t)
1340 (if (org-looking-at-p "END[ \t]*$") (forward-line)
1341 (goto-char origin)))))
1342 ;; At some text line. Check if it ends any previous item.
1344 (let ((ind (save-excursion (skip-chars-forward " \t")
1345 (current-column))))
1346 (when (<= ind top-ind)
1347 (skip-chars-backward " \r\t\n")
1348 (forward-line))
1349 (while (<= ind (nth 1 (car items)))
1350 (let ((item (pop items)))
1351 (setcar (nthcdr 6 item) (line-beginning-position))
1352 (push item struct)
1353 (unless items
1354 (throw 'exit (sort struct #'car-less-than-car))))))
1355 ;; Skip blocks (any type) and drawers contents.
1356 (cond
1357 ((and (looking-at "[ \t]*#\\+BEGIN\\(:\\|_\\S-+\\)")
1358 (re-search-forward
1359 (format "^[ \t]*#\\+END%s[ \t]*$" (match-string 1))
1360 limit t)))
1361 ((and (looking-at org-drawer-regexp)
1362 (re-search-forward "^[ \t]*:END:[ \t]*$" limit t))))
1363 (forward-line))))))))
1365 (defun org-element-plain-list-parser (limit affiliated structure)
1366 "Parse a plain list.
1368 LIMIT bounds the search. AFFILIATED is a list of which CAR is
1369 the buffer position at the beginning of the first affiliated
1370 keyword and CDR is a plist of affiliated keywords along with
1371 their value. STRUCTURE is the structure of the plain list being
1372 parsed.
1374 Return a list whose CAR is `plain-list' and CDR is a plist
1375 containing `:type', `:begin', `:end', `:contents-begin' and
1376 `:contents-end', `:structure', `:post-blank' and
1377 `:post-affiliated' keywords.
1379 Assume point is at the beginning of the list."
1380 (save-excursion
1381 (let* ((struct (or structure (org-element--list-struct limit)))
1382 (type (cond ((org-looking-at-p "[ \t]*[A-Za-z0-9]") 'ordered)
1383 ((nth 5 (assq (point) struct)) 'descriptive)
1384 (t 'unordered)))
1385 (contents-begin (point))
1386 (begin (car affiliated))
1387 (contents-end (let* ((item (assq contents-begin struct))
1388 (ind (nth 1 item))
1389 (pos (nth 6 item)))
1390 (while (and (setq item (assq pos struct))
1391 (= (nth 1 item) ind))
1392 (setq pos (nth 6 item)))
1393 pos))
1394 (end (progn (goto-char contents-end)
1395 (skip-chars-forward " \r\t\n" limit)
1396 (if (= (point) limit) limit (line-beginning-position)))))
1397 ;; Return value.
1398 (list 'plain-list
1399 (nconc
1400 (list :type type
1401 :begin begin
1402 :end end
1403 :contents-begin contents-begin
1404 :contents-end contents-end
1405 :structure struct
1406 :post-blank (count-lines contents-end end)
1407 :post-affiliated contents-begin)
1408 (cdr affiliated))))))
1410 (defun org-element-plain-list-interpreter (plain-list contents)
1411 "Interpret PLAIN-LIST element as Org syntax.
1412 CONTENTS is the contents of the element."
1413 (with-temp-buffer
1414 (insert contents)
1415 (goto-char (point-min))
1416 (org-list-repair)
1417 (buffer-string)))
1420 ;;;; Property Drawer
1422 (defun org-element-property-drawer-parser (limit)
1423 "Parse a property drawer.
1425 LIMIT bounds the search.
1427 Return a list whose car is `property-drawer' and cdr is a plist
1428 containing `:begin', `:end', `:contents-begin', `:contents-end',
1429 `:post-blank' and `:post-affiliated' keywords.
1431 Assume point is at the beginning of the property drawer."
1432 (save-excursion
1433 (let ((case-fold-search t)
1434 (begin (point))
1435 (contents-begin (line-beginning-position 2)))
1436 (re-search-forward "^[ \t]*:END:[ \t]*$" limit t)
1437 (let ((contents-end (and (> (match-beginning 0) contents-begin)
1438 (match-beginning 0)))
1439 (before-blank (progn (forward-line) (point)))
1440 (end (progn (skip-chars-forward " \r\t\n" limit)
1441 (if (eobp) (point) (line-beginning-position)))))
1442 (list 'property-drawer
1443 (list :begin begin
1444 :end end
1445 :contents-begin (and contents-end contents-begin)
1446 :contents-end contents-end
1447 :post-blank (count-lines before-blank end)
1448 :post-affiliated begin))))))
1450 (defun org-element-property-drawer-interpreter (property-drawer contents)
1451 "Interpret PROPERTY-DRAWER element as Org syntax.
1452 CONTENTS is the properties within the drawer."
1453 (format ":PROPERTIES:\n%s:END:" contents))
1456 ;;;; Quote Block
1458 (defun org-element-quote-block-parser (limit affiliated)
1459 "Parse a quote block.
1461 LIMIT bounds the search. AFFILIATED is a list of which CAR is
1462 the buffer position at the beginning of the first affiliated
1463 keyword and CDR is a plist of affiliated keywords along with
1464 their value.
1466 Return a list whose CAR is `quote-block' and CDR is a plist
1467 containing `:begin', `:end', `:contents-begin', `:contents-end',
1468 `:post-blank' and `:post-affiliated' keywords.
1470 Assume point is at the beginning of the block."
1471 (let ((case-fold-search t))
1472 (if (not (save-excursion
1473 (re-search-forward "^[ \t]*#\\+END_QUOTE[ \t]*$" limit t)))
1474 ;; Incomplete block: parse it as a paragraph.
1475 (org-element-paragraph-parser limit affiliated)
1476 (let ((block-end-line (match-beginning 0)))
1477 (save-excursion
1478 (let* ((begin (car affiliated))
1479 (post-affiliated (point))
1480 ;; Empty blocks have no contents.
1481 (contents-begin (progn (forward-line)
1482 (and (< (point) block-end-line)
1483 (point))))
1484 (contents-end (and contents-begin block-end-line))
1485 (pos-before-blank (progn (goto-char block-end-line)
1486 (forward-line)
1487 (point)))
1488 (end (progn (skip-chars-forward " \r\t\n" limit)
1489 (if (eobp) (point) (line-beginning-position)))))
1490 (list 'quote-block
1491 (nconc
1492 (list :begin begin
1493 :end end
1494 :contents-begin contents-begin
1495 :contents-end contents-end
1496 :post-blank (count-lines pos-before-blank end)
1497 :post-affiliated post-affiliated)
1498 (cdr affiliated)))))))))
1500 (defun org-element-quote-block-interpreter (quote-block contents)
1501 "Interpret QUOTE-BLOCK element as Org syntax.
1502 CONTENTS is the contents of the element."
1503 (format "#+BEGIN_QUOTE\n%s#+END_QUOTE" contents))
1506 ;;;; Section
1508 (defun org-element-section-parser (limit)
1509 "Parse a section.
1511 LIMIT bounds the search.
1513 Return a list whose CAR is `section' and CDR is a plist
1514 containing `:begin', `:end', `:contents-begin', `contents-end',
1515 `:post-blank' and `:post-affiliated' keywords."
1516 (save-excursion
1517 ;; Beginning of section is the beginning of the first non-blank
1518 ;; line after previous headline.
1519 (let ((begin (point))
1520 (end (progn (org-with-limited-levels (outline-next-heading))
1521 (point)))
1522 (pos-before-blank (progn (skip-chars-backward " \r\t\n")
1523 (forward-line)
1524 (point))))
1525 (list 'section
1526 (list :begin begin
1527 :end end
1528 :contents-begin begin
1529 :contents-end pos-before-blank
1530 :post-blank (count-lines pos-before-blank end)
1531 :post-affiliated begin)))))
1533 (defun org-element-section-interpreter (section contents)
1534 "Interpret SECTION element as Org syntax.
1535 CONTENTS is the contents of the element."
1536 contents)
1539 ;;;; Special Block
1541 (defun org-element-special-block-parser (limit affiliated)
1542 "Parse a special block.
1544 LIMIT bounds the search. AFFILIATED is a list of which CAR is
1545 the buffer position at the beginning of the first affiliated
1546 keyword and CDR is a plist of affiliated keywords along with
1547 their value.
1549 Return a list whose CAR is `special-block' and CDR is a plist
1550 containing `:type', `:begin', `:end', `:contents-begin',
1551 `:contents-end', `:post-blank' and `:post-affiliated' keywords.
1553 Assume point is at the beginning of the block."
1554 (let* ((case-fold-search t)
1555 (type (progn (looking-at "[ \t]*#\\+BEGIN_\\(\\S-+\\)")
1556 (match-string-no-properties 1))))
1557 (if (not (save-excursion
1558 (re-search-forward
1559 (format "^[ \t]*#\\+END_%s[ \t]*$" (regexp-quote type))
1560 limit t)))
1561 ;; Incomplete block: parse it as a paragraph.
1562 (org-element-paragraph-parser limit affiliated)
1563 (let ((block-end-line (match-beginning 0)))
1564 (save-excursion
1565 (let* ((begin (car affiliated))
1566 (post-affiliated (point))
1567 ;; Empty blocks have no contents.
1568 (contents-begin (progn (forward-line)
1569 (and (< (point) block-end-line)
1570 (point))))
1571 (contents-end (and contents-begin block-end-line))
1572 (pos-before-blank (progn (goto-char block-end-line)
1573 (forward-line)
1574 (point)))
1575 (end (progn (skip-chars-forward " \r\t\n" limit)
1576 (if (eobp) (point) (line-beginning-position)))))
1577 (list 'special-block
1578 (nconc
1579 (list :type type
1580 :begin begin
1581 :end end
1582 :contents-begin contents-begin
1583 :contents-end contents-end
1584 :post-blank (count-lines pos-before-blank end)
1585 :post-affiliated post-affiliated)
1586 (cdr affiliated)))))))))
1588 (defun org-element-special-block-interpreter (special-block contents)
1589 "Interpret SPECIAL-BLOCK element as Org syntax.
1590 CONTENTS is the contents of the element."
1591 (let ((block-type (org-element-property :type special-block)))
1592 (format "#+BEGIN_%s\n%s#+END_%s" block-type contents block-type)))
1596 ;;; Elements
1598 ;; For each element, a parser and an interpreter are also defined.
1599 ;; Both follow the same naming convention used for greater elements.
1601 ;; Also, as for greater elements, adding a new element type is done
1602 ;; through the following steps: implement a parser and an interpreter,
1603 ;; tweak `org-element--current-element' so that it recognizes the new
1604 ;; type and add that new type to `org-element-all-elements'.
1606 ;; As a special case, when the newly defined type is a block type,
1607 ;; `org-element-block-name-alist' has to be modified accordingly.
1610 ;;;; Babel Call
1612 (defun org-element-babel-call-parser (limit affiliated)
1613 "Parse a babel call.
1615 LIMIT bounds the search. AFFILIATED is a list of which car is
1616 the buffer position at the beginning of the first affiliated
1617 keyword and cdr is a plist of affiliated keywords along with
1618 their value.
1620 Return a list whose car is `babel-call' and cdr is a plist
1621 containing `:call', `:inside-header', `:arguments',
1622 `:end-header', `:begin', `:end', `:value', `:post-blank' and
1623 `:post-affiliated' as keywords."
1624 (save-excursion
1625 (let* ((begin (car affiliated))
1626 (post-affiliated (point))
1627 (value (progn (search-forward ":" nil t)
1628 (org-trim
1629 (buffer-substring-no-properties
1630 (point) (line-end-position)))))
1631 (pos-before-blank (progn (forward-line) (point)))
1632 (end (progn (skip-chars-forward " \r\t\n" limit)
1633 (if (eobp) (point) (line-beginning-position))))
1634 (valid-value
1635 (string-match
1636 "\\([^()\n]+?\\)\\(?:\\[\\(.*?\\)\\]\\)?(\\(.*?\\))[ \t]*\\(.*\\)"
1637 value)))
1638 (list 'babel-call
1639 (nconc
1640 (list :call (and valid-value (match-string 1 value))
1641 :inside-header (and valid-value
1642 (org-string-nw-p (match-string 2 value)))
1643 :arguments (and valid-value
1644 (org-string-nw-p (match-string 3 value)))
1645 :end-header (and valid-value
1646 (org-string-nw-p (match-string 4 value)))
1647 :begin begin
1648 :end end
1649 :value value
1650 :post-blank (count-lines pos-before-blank end)
1651 :post-affiliated post-affiliated)
1652 (cdr affiliated))))))
1654 (defun org-element-babel-call-interpreter (babel-call contents)
1655 "Interpret BABEL-CALL element as Org syntax.
1656 CONTENTS is nil."
1657 (concat "#+CALL: "
1658 (org-element-property :call babel-call)
1659 (let ((h (org-element-property :inside-header babel-call)))
1660 (and h (format "[%s]" h)))
1661 (concat "(" (org-element-property :arguments babel-call) ")")
1662 (let ((h (org-element-property :end-header babel-call)))
1663 (and h (concat " " h)))))
1666 ;;;; Clock
1668 (defun org-element-clock-parser (limit)
1669 "Parse a clock.
1671 LIMIT bounds the search.
1673 Return a list whose CAR is `clock' and CDR is a plist containing
1674 `:status', `:value', `:time', `:begin', `:end', `:post-blank' and
1675 `:post-affiliated' as keywords."
1676 (save-excursion
1677 (let* ((case-fold-search nil)
1678 (begin (point))
1679 (value (progn (search-forward org-clock-string (line-end-position) t)
1680 (skip-chars-forward " \t")
1681 (org-element-timestamp-parser)))
1682 (duration (and (search-forward " => " (line-end-position) t)
1683 (progn (skip-chars-forward " \t")
1684 (looking-at "\\(\\S-+\\)[ \t]*$"))
1685 (org-match-string-no-properties 1)))
1686 (status (if duration 'closed 'running))
1687 (post-blank (let ((before-blank (progn (forward-line) (point))))
1688 (skip-chars-forward " \r\t\n" limit)
1689 (skip-chars-backward " \t")
1690 (unless (bolp) (end-of-line))
1691 (count-lines before-blank (point))))
1692 (end (point)))
1693 (list 'clock
1694 (list :status status
1695 :value value
1696 :duration duration
1697 :begin begin
1698 :end end
1699 :post-blank post-blank
1700 :post-affiliated begin)))))
1702 (defun org-element-clock-interpreter (clock contents)
1703 "Interpret CLOCK element as Org syntax.
1704 CONTENTS is nil."
1705 (concat org-clock-string " "
1706 (org-element-timestamp-interpreter
1707 (org-element-property :value clock) nil)
1708 (let ((duration (org-element-property :duration clock)))
1709 (and duration
1710 (concat " => "
1711 (apply 'format
1712 "%2s:%02s"
1713 (org-split-string duration ":")))))))
1716 ;;;; Comment
1718 (defun org-element-comment-parser (limit affiliated)
1719 "Parse a comment.
1721 LIMIT bounds the search. AFFILIATED is a list of which CAR is
1722 the buffer position at the beginning of the first affiliated
1723 keyword and CDR is a plist of affiliated keywords along with
1724 their value.
1726 Return a list whose CAR is `comment' and CDR is a plist
1727 containing `:begin', `:end', `:value', `:post-blank',
1728 `:post-affiliated' keywords.
1730 Assume point is at comment beginning."
1731 (save-excursion
1732 (let* ((begin (car affiliated))
1733 (post-affiliated (point))
1734 (value (prog2 (looking-at "[ \t]*# ?")
1735 (buffer-substring-no-properties
1736 (match-end 0) (line-end-position))
1737 (forward-line)))
1738 (com-end
1739 ;; Get comments ending.
1740 (progn
1741 (while (and (< (point) limit) (looking-at "[ \t]*#\\( \\|$\\)"))
1742 ;; Accumulate lines without leading hash and first
1743 ;; whitespace.
1744 (setq value
1745 (concat value
1746 "\n"
1747 (buffer-substring-no-properties
1748 (match-end 0) (line-end-position))))
1749 (forward-line))
1750 (point)))
1751 (end (progn (goto-char com-end)
1752 (skip-chars-forward " \r\t\n" limit)
1753 (if (eobp) (point) (line-beginning-position)))))
1754 (list 'comment
1755 (nconc
1756 (list :begin begin
1757 :end end
1758 :value value
1759 :post-blank (count-lines com-end end)
1760 :post-affiliated post-affiliated)
1761 (cdr affiliated))))))
1763 (defun org-element-comment-interpreter (comment contents)
1764 "Interpret COMMENT element as Org syntax.
1765 CONTENTS is nil."
1766 (replace-regexp-in-string "^" "# " (org-element-property :value comment)))
1769 ;;;; Comment Block
1771 (defun org-element-comment-block-parser (limit affiliated)
1772 "Parse an export block.
1774 LIMIT bounds the search. AFFILIATED is a list of which CAR is
1775 the buffer position at the beginning of the first affiliated
1776 keyword and CDR is a plist of affiliated keywords along with
1777 their value.
1779 Return a list whose CAR is `comment-block' and CDR is a plist
1780 containing `:begin', `:end', `:value', `:post-blank' and
1781 `:post-affiliated' keywords.
1783 Assume point is at comment block beginning."
1784 (let ((case-fold-search t))
1785 (if (not (save-excursion
1786 (re-search-forward "^[ \t]*#\\+END_COMMENT[ \t]*$" limit t)))
1787 ;; Incomplete block: parse it as a paragraph.
1788 (org-element-paragraph-parser limit affiliated)
1789 (let ((contents-end (match-beginning 0)))
1790 (save-excursion
1791 (let* ((begin (car affiliated))
1792 (post-affiliated (point))
1793 (contents-begin (progn (forward-line) (point)))
1794 (pos-before-blank (progn (goto-char contents-end)
1795 (forward-line)
1796 (point)))
1797 (end (progn (skip-chars-forward " \r\t\n" limit)
1798 (if (eobp) (point) (line-beginning-position))))
1799 (value (buffer-substring-no-properties
1800 contents-begin contents-end)))
1801 (list 'comment-block
1802 (nconc
1803 (list :begin begin
1804 :end end
1805 :value value
1806 :post-blank (count-lines pos-before-blank end)
1807 :post-affiliated post-affiliated)
1808 (cdr affiliated)))))))))
1810 (defun org-element-comment-block-interpreter (comment-block contents)
1811 "Interpret COMMENT-BLOCK element as Org syntax.
1812 CONTENTS is nil."
1813 (format "#+BEGIN_COMMENT\n%s#+END_COMMENT"
1814 (org-element-normalize-string
1815 (org-remove-indentation
1816 (org-element-property :value comment-block)))))
1819 ;;;; Diary Sexp
1821 (defun org-element-diary-sexp-parser (limit affiliated)
1822 "Parse a diary sexp.
1824 LIMIT bounds the search. AFFILIATED is a list of which CAR is
1825 the buffer position at the beginning of the first affiliated
1826 keyword and CDR is a plist of affiliated keywords along with
1827 their value.
1829 Return a list whose CAR is `diary-sexp' and CDR is a plist
1830 containing `:begin', `:end', `:value', `:post-blank' and
1831 `:post-affiliated' keywords."
1832 (save-excursion
1833 (let ((begin (car affiliated))
1834 (post-affiliated (point))
1835 (value (progn (looking-at "\\(%%(.*\\)[ \t]*$")
1836 (org-match-string-no-properties 1)))
1837 (pos-before-blank (progn (forward-line) (point)))
1838 (end (progn (skip-chars-forward " \r\t\n" limit)
1839 (if (eobp) (point) (line-beginning-position)))))
1840 (list 'diary-sexp
1841 (nconc
1842 (list :value value
1843 :begin begin
1844 :end end
1845 :post-blank (count-lines pos-before-blank end)
1846 :post-affiliated post-affiliated)
1847 (cdr affiliated))))))
1849 (defun org-element-diary-sexp-interpreter (diary-sexp contents)
1850 "Interpret DIARY-SEXP as Org syntax.
1851 CONTENTS is nil."
1852 (org-element-property :value diary-sexp))
1855 ;;;; Example Block
1857 (defun org-element-example-block-parser (limit affiliated)
1858 "Parse an example block.
1860 LIMIT bounds the search. AFFILIATED is a list of which CAR is
1861 the buffer position at the beginning of the first affiliated
1862 keyword and CDR is a plist of affiliated keywords along with
1863 their value.
1865 Return a list whose CAR is `example-block' and CDR is a plist
1866 containing `:begin', `:end', `:number-lines', `:preserve-indent',
1867 `:retain-labels', `:use-labels', `:label-fmt', `:switches',
1868 `:value', `:post-blank' and `:post-affiliated' keywords."
1869 (let ((case-fold-search t))
1870 (if (not (save-excursion
1871 (re-search-forward "^[ \t]*#\\+END_EXAMPLE[ \t]*$" limit t)))
1872 ;; Incomplete block: parse it as a paragraph.
1873 (org-element-paragraph-parser limit affiliated)
1874 (let ((contents-end (match-beginning 0)))
1875 (save-excursion
1876 (let* ((switches
1877 (progn
1878 (looking-at "^[ \t]*#\\+BEGIN_EXAMPLE\\(?: +\\(.*\\)\\)?")
1879 (org-match-string-no-properties 1)))
1880 ;; Switches analysis
1881 (number-lines
1882 (cond ((not switches) nil)
1883 ((string-match "-n\\>" switches) 'new)
1884 ((string-match "+n\\>" switches) 'continued)))
1885 (preserve-indent
1886 (and switches (string-match "-i\\>" switches)))
1887 ;; Should labels be retained in (or stripped from) example
1888 ;; blocks?
1889 (retain-labels
1890 (or (not switches)
1891 (not (string-match "-r\\>" switches))
1892 (and number-lines (string-match "-k\\>" switches))))
1893 ;; What should code-references use - labels or
1894 ;; line-numbers?
1895 (use-labels
1896 (or (not switches)
1897 (and retain-labels
1898 (not (string-match "-k\\>" switches)))))
1899 (label-fmt
1900 (and switches
1901 (string-match "-l +\"\\([^\"\n]+\\)\"" switches)
1902 (match-string 1 switches)))
1903 ;; Standard block parsing.
1904 (begin (car affiliated))
1905 (post-affiliated (point))
1906 (block-ind (progn (skip-chars-forward " \t") (current-column)))
1907 (contents-begin (progn (forward-line) (point)))
1908 (value (org-element-remove-indentation
1909 (org-unescape-code-in-string
1910 (buffer-substring-no-properties
1911 contents-begin contents-end))
1912 block-ind))
1913 (pos-before-blank (progn (goto-char contents-end)
1914 (forward-line)
1915 (point)))
1916 (end (progn (skip-chars-forward " \r\t\n" limit)
1917 (if (eobp) (point) (line-beginning-position)))))
1918 (list 'example-block
1919 (nconc
1920 (list :begin begin
1921 :end end
1922 :value value
1923 :switches switches
1924 :number-lines number-lines
1925 :preserve-indent preserve-indent
1926 :retain-labels retain-labels
1927 :use-labels use-labels
1928 :label-fmt label-fmt
1929 :post-blank (count-lines pos-before-blank end)
1930 :post-affiliated post-affiliated)
1931 (cdr affiliated)))))))))
1933 (defun org-element-example-block-interpreter (example-block contents)
1934 "Interpret EXAMPLE-BLOCK element as Org syntax.
1935 CONTENTS is nil."
1936 (let ((switches (org-element-property :switches example-block))
1937 (value (org-element-property :value example-block)))
1938 (concat "#+BEGIN_EXAMPLE" (and switches (concat " " switches)) "\n"
1939 (org-element-normalize-string
1940 (org-escape-code-in-string
1941 (if (or org-src-preserve-indentation
1942 (org-element-property :preserve-indent example-block))
1943 value
1944 (org-element-remove-indentation value))))
1945 "#+END_EXAMPLE")))
1948 ;;;; Export Block
1950 (defun org-element-export-block-parser (limit affiliated)
1951 "Parse an export block.
1953 LIMIT bounds the search. AFFILIATED is a list of which CAR is
1954 the buffer position at the beginning of the first affiliated
1955 keyword and CDR is a plist of affiliated keywords along with
1956 their value.
1958 Return a list whose CAR is `export-block' and CDR is a plist
1959 containing `:begin', `:end', `:type', `:value', `:post-blank' and
1960 `:post-affiliated' keywords.
1962 Assume point is at export-block beginning."
1963 (let* ((case-fold-search t)
1964 (type (progn (looking-at "[ \t]*#\\+BEGIN_\\(\\S-+\\)")
1965 (upcase (org-match-string-no-properties 1)))))
1966 (if (not (save-excursion
1967 (re-search-forward
1968 (format "^[ \t]*#\\+END_%s[ \t]*$" type) limit t)))
1969 ;; Incomplete block: parse it as a paragraph.
1970 (org-element-paragraph-parser limit affiliated)
1971 (let ((contents-end (match-beginning 0)))
1972 (save-excursion
1973 (let* ((begin (car affiliated))
1974 (post-affiliated (point))
1975 (contents-begin (progn (forward-line) (point)))
1976 (pos-before-blank (progn (goto-char contents-end)
1977 (forward-line)
1978 (point)))
1979 (end (progn (skip-chars-forward " \r\t\n" limit)
1980 (if (eobp) (point) (line-beginning-position))))
1981 (value (buffer-substring-no-properties contents-begin
1982 contents-end)))
1983 (list 'export-block
1984 (nconc
1985 (list :begin begin
1986 :end end
1987 :type type
1988 :value value
1989 :post-blank (count-lines pos-before-blank end)
1990 :post-affiliated post-affiliated)
1991 (cdr affiliated)))))))))
1993 (defun org-element-export-block-interpreter (export-block contents)
1994 "Interpret EXPORT-BLOCK element as Org syntax.
1995 CONTENTS is nil."
1996 (let ((type (org-element-property :type export-block)))
1997 (concat (format "#+BEGIN_%s\n" type)
1998 (org-element-property :value export-block)
1999 (format "#+END_%s" type))))
2002 ;;;; Fixed-width
2004 (defun org-element-fixed-width-parser (limit affiliated)
2005 "Parse a fixed-width section.
2007 LIMIT bounds the search. AFFILIATED is a list of which CAR is
2008 the buffer position at the beginning of the first affiliated
2009 keyword and CDR is a plist of affiliated keywords along with
2010 their value.
2012 Return a list whose CAR is `fixed-width' and CDR is a plist
2013 containing `:begin', `:end', `:value', `:post-blank' and
2014 `:post-affiliated' keywords.
2016 Assume point is at the beginning of the fixed-width area."
2017 (save-excursion
2018 (let* ((begin (car affiliated))
2019 (post-affiliated (point))
2020 value
2021 (end-area
2022 (progn
2023 (while (and (< (point) limit)
2024 (looking-at "[ \t]*:\\( \\|$\\)"))
2025 ;; Accumulate text without starting colons.
2026 (setq value
2027 (concat value
2028 (buffer-substring-no-properties
2029 (match-end 0) (point-at-eol))
2030 "\n"))
2031 (forward-line))
2032 (point)))
2033 (end (progn (skip-chars-forward " \r\t\n" limit)
2034 (if (eobp) (point) (line-beginning-position)))))
2035 (list 'fixed-width
2036 (nconc
2037 (list :begin begin
2038 :end end
2039 :value value
2040 :post-blank (count-lines end-area end)
2041 :post-affiliated post-affiliated)
2042 (cdr affiliated))))))
2044 (defun org-element-fixed-width-interpreter (fixed-width contents)
2045 "Interpret FIXED-WIDTH element as Org syntax.
2046 CONTENTS is nil."
2047 (let ((value (org-element-property :value fixed-width)))
2048 (and value
2049 (replace-regexp-in-string
2050 "^" ": "
2051 (if (string-match "\n\\'" value) (substring value 0 -1) value)))))
2054 ;;;; Horizontal Rule
2056 (defun org-element-horizontal-rule-parser (limit affiliated)
2057 "Parse an horizontal rule.
2059 LIMIT bounds the search. AFFILIATED is a list of which CAR is
2060 the buffer position at the beginning of the first affiliated
2061 keyword and CDR is a plist of affiliated keywords along with
2062 their value.
2064 Return a list whose CAR is `horizontal-rule' and CDR is a plist
2065 containing `:begin', `:end', `:post-blank' and `:post-affiliated'
2066 keywords."
2067 (save-excursion
2068 (let ((begin (car affiliated))
2069 (post-affiliated (point))
2070 (post-hr (progn (forward-line) (point)))
2071 (end (progn (skip-chars-forward " \r\t\n" limit)
2072 (if (eobp) (point) (line-beginning-position)))))
2073 (list 'horizontal-rule
2074 (nconc
2075 (list :begin begin
2076 :end end
2077 :post-blank (count-lines post-hr end)
2078 :post-affiliated post-affiliated)
2079 (cdr affiliated))))))
2081 (defun org-element-horizontal-rule-interpreter (horizontal-rule contents)
2082 "Interpret HORIZONTAL-RULE element as Org syntax.
2083 CONTENTS is nil."
2084 "-----")
2087 ;;;; Keyword
2089 (defun org-element-keyword-parser (limit affiliated)
2090 "Parse a keyword at point.
2092 LIMIT bounds the search. AFFILIATED is a list of which CAR is
2093 the buffer position at the beginning of the first affiliated
2094 keyword and CDR is a plist of affiliated keywords along with
2095 their value.
2097 Return a list whose CAR is `keyword' and CDR is a plist
2098 containing `:key', `:value', `:begin', `:end', `:post-blank' and
2099 `:post-affiliated' keywords."
2100 (save-excursion
2101 ;; An orphaned affiliated keyword is considered as a regular
2102 ;; keyword. In this case AFFILIATED is nil, so we take care of
2103 ;; this corner case.
2104 (let ((begin (or (car affiliated) (point)))
2105 (post-affiliated (point))
2106 (key (progn (looking-at "[ \t]*#\\+\\(\\S-+*\\):")
2107 (upcase (org-match-string-no-properties 1))))
2108 (value (org-trim (buffer-substring-no-properties
2109 (match-end 0) (point-at-eol))))
2110 (pos-before-blank (progn (forward-line) (point)))
2111 (end (progn (skip-chars-forward " \r\t\n" limit)
2112 (if (eobp) (point) (line-beginning-position)))))
2113 (list 'keyword
2114 (nconc
2115 (list :key key
2116 :value value
2117 :begin begin
2118 :end end
2119 :post-blank (count-lines pos-before-blank end)
2120 :post-affiliated post-affiliated)
2121 (cdr affiliated))))))
2123 (defun org-element-keyword-interpreter (keyword contents)
2124 "Interpret KEYWORD element as Org syntax.
2125 CONTENTS is nil."
2126 (format "#+%s: %s"
2127 (org-element-property :key keyword)
2128 (org-element-property :value keyword)))
2131 ;;;; Latex Environment
2133 (defconst org-element--latex-begin-environment
2134 "^[ \t]*\\\\begin{\\([A-Za-z0-9*]+\\)}"
2135 "Regexp matching the beginning of a LaTeX environment.
2136 The environment is captured by the first group.
2138 See also `org-element--latex-end-environment'.")
2140 (defconst org-element--latex-end-environment
2141 "\\\\end{%s}[ \t]*$"
2142 "Format string matching the ending of a LaTeX environment.
2143 See also `org-element--latex-begin-environment'.")
2145 (defun org-element-latex-environment-parser (limit affiliated)
2146 "Parse a LaTeX environment.
2148 LIMIT bounds the search. AFFILIATED is a list of which CAR is
2149 the buffer position at the beginning of the first affiliated
2150 keyword and CDR is a plist of affiliated keywords along with
2151 their value.
2153 Return a list whose CAR is `latex-environment' and CDR is a plist
2154 containing `:begin', `:end', `:value', `:post-blank' and
2155 `:post-affiliated' keywords.
2157 Assume point is at the beginning of the latex environment."
2158 (save-excursion
2159 (let ((case-fold-search t)
2160 (code-begin (point)))
2161 (looking-at org-element--latex-begin-environment)
2162 (if (not (re-search-forward (format org-element--latex-end-environment
2163 (regexp-quote (match-string 1)))
2164 limit t))
2165 ;; Incomplete latex environment: parse it as a paragraph.
2166 (org-element-paragraph-parser limit affiliated)
2167 (let* ((code-end (progn (forward-line) (point)))
2168 (begin (car affiliated))
2169 (value (buffer-substring-no-properties code-begin code-end))
2170 (end (progn (skip-chars-forward " \r\t\n" limit)
2171 (if (eobp) (point) (line-beginning-position)))))
2172 (list 'latex-environment
2173 (nconc
2174 (list :begin begin
2175 :end end
2176 :value value
2177 :post-blank (count-lines code-end end)
2178 :post-affiliated code-begin)
2179 (cdr affiliated))))))))
2181 (defun org-element-latex-environment-interpreter (latex-environment contents)
2182 "Interpret LATEX-ENVIRONMENT element as Org syntax.
2183 CONTENTS is nil."
2184 (org-element-property :value latex-environment))
2187 ;;;; Node Property
2189 (defun org-element-node-property-parser (limit)
2190 "Parse a node-property at point.
2192 LIMIT bounds the search.
2194 Return a list whose CAR is `node-property' and CDR is a plist
2195 containing `:key', `:value', `:begin', `:end', `:post-blank' and
2196 `:post-affiliated' keywords."
2197 (looking-at org-property-re)
2198 (let ((case-fold-search t)
2199 (begin (point))
2200 (key (org-match-string-no-properties 2))
2201 (value (org-match-string-no-properties 3))
2202 (end (save-excursion
2203 (end-of-line)
2204 (if (re-search-forward org-property-re limit t)
2205 (line-beginning-position)
2206 limit))))
2207 (list 'node-property
2208 (list :key key
2209 :value value
2210 :begin begin
2211 :end end
2212 :post-blank 0
2213 :post-affiliated begin))))
2215 (defun org-element-node-property-interpreter (node-property contents)
2216 "Interpret NODE-PROPERTY element as Org syntax.
2217 CONTENTS is nil."
2218 (format org-property-format
2219 (format ":%s:" (org-element-property :key node-property))
2220 (or (org-element-property :value node-property) "")))
2223 ;;;; Paragraph
2225 (defun org-element-paragraph-parser (limit affiliated)
2226 "Parse a paragraph.
2228 LIMIT bounds the search. AFFILIATED is a list of which CAR is
2229 the buffer position at the beginning of the first affiliated
2230 keyword and CDR is a plist of affiliated keywords along with
2231 their value.
2233 Return a list whose CAR is `paragraph' and CDR is a plist
2234 containing `:begin', `:end', `:contents-begin' and
2235 `:contents-end', `:post-blank' and `:post-affiliated' keywords.
2237 Assume point is at the beginning of the paragraph."
2238 (save-excursion
2239 (let* ((begin (car affiliated))
2240 (contents-begin (point))
2241 (before-blank
2242 (let ((case-fold-search t))
2243 (end-of-line)
2244 ;; A matching `org-element-paragraph-separate' is not
2245 ;; necessarily the end of the paragraph. In particular,
2246 ;; drawers, blocks or LaTeX environments opening lines
2247 ;; must be closed. Moreover keywords with a secondary
2248 ;; value must belong to "dual keywords".
2249 (while (not
2250 (cond
2251 ((not (and (re-search-forward
2252 org-element-paragraph-separate limit 'move)
2253 (progn (beginning-of-line) t))))
2254 ((looking-at org-drawer-regexp)
2255 (save-excursion
2256 (re-search-forward "^[ \t]*:END:[ \t]*$" limit t)))
2257 ((looking-at "[ \t]*#\\+BEGIN_\\(\\S-+\\)")
2258 (save-excursion
2259 (re-search-forward
2260 (format "^[ \t]*#\\+END_%s[ \t]*$"
2261 (regexp-quote (match-string 1)))
2262 limit t)))
2263 ((looking-at org-element--latex-begin-environment)
2264 (save-excursion
2265 (re-search-forward
2266 (format org-element--latex-end-environment
2267 (regexp-quote (match-string 1)))
2268 limit t)))
2269 ((looking-at "[ \t]*#\\+\\(\\S-+\\)\\[.*\\]:")
2270 (member-ignore-case (match-string 1)
2271 org-element-dual-keywords))
2272 ;; Everything else is unambiguous.
2273 (t)))
2274 (end-of-line))
2275 (if (= (point) limit) limit
2276 (goto-char (line-beginning-position)))))
2277 (contents-end (save-excursion
2278 (skip-chars-backward " \r\t\n" contents-begin)
2279 (line-beginning-position 2)))
2280 (end (progn (skip-chars-forward " \r\t\n" limit)
2281 (if (eobp) (point) (line-beginning-position)))))
2282 (list 'paragraph
2283 (nconc
2284 (list :begin begin
2285 :end end
2286 :contents-begin contents-begin
2287 :contents-end contents-end
2288 :post-blank (count-lines before-blank end)
2289 :post-affiliated contents-begin)
2290 (cdr affiliated))))))
2292 (defun org-element-paragraph-interpreter (paragraph contents)
2293 "Interpret PARAGRAPH element as Org syntax.
2294 CONTENTS is the contents of the element."
2295 contents)
2298 ;;;; Planning
2300 (defun org-element-planning-parser (limit)
2301 "Parse a planning.
2303 LIMIT bounds the search.
2305 Return a list whose CAR is `planning' and CDR is a plist
2306 containing `:closed', `:deadline', `:scheduled', `:begin',
2307 `:end', `:post-blank' and `:post-affiliated' keywords."
2308 (save-excursion
2309 (let* ((case-fold-search nil)
2310 (begin (point))
2311 (post-blank (let ((before-blank (progn (forward-line) (point))))
2312 (skip-chars-forward " \r\t\n" limit)
2313 (skip-chars-backward " \t")
2314 (unless (bolp) (end-of-line))
2315 (count-lines before-blank (point))))
2316 (end (point))
2317 closed deadline scheduled)
2318 (goto-char begin)
2319 (while (re-search-forward org-keyword-time-not-clock-regexp end t)
2320 (goto-char (match-end 1))
2321 (skip-chars-forward " \t" end)
2322 (let ((keyword (match-string 1))
2323 (time (org-element-timestamp-parser)))
2324 (cond ((equal keyword org-closed-string) (setq closed time))
2325 ((equal keyword org-deadline-string) (setq deadline time))
2326 (t (setq scheduled time)))))
2327 (list 'planning
2328 (list :closed closed
2329 :deadline deadline
2330 :scheduled scheduled
2331 :begin begin
2332 :end end
2333 :post-blank post-blank
2334 :post-affiliated begin)))))
2336 (defun org-element-planning-interpreter (planning contents)
2337 "Interpret PLANNING element as Org syntax.
2338 CONTENTS is nil."
2339 (mapconcat
2340 'identity
2341 (delq nil
2342 (list (let ((deadline (org-element-property :deadline planning)))
2343 (when deadline
2344 (concat org-deadline-string " "
2345 (org-element-timestamp-interpreter deadline nil))))
2346 (let ((scheduled (org-element-property :scheduled planning)))
2347 (when scheduled
2348 (concat org-scheduled-string " "
2349 (org-element-timestamp-interpreter scheduled nil))))
2350 (let ((closed (org-element-property :closed planning)))
2351 (when closed
2352 (concat org-closed-string " "
2353 (org-element-timestamp-interpreter closed nil))))))
2354 " "))
2357 ;;;; Src Block
2359 (defun org-element-src-block-parser (limit affiliated)
2360 "Parse a src block.
2362 LIMIT bounds the search. AFFILIATED is a list of which CAR is
2363 the buffer position at the beginning of the first affiliated
2364 keyword and CDR is a plist of affiliated keywords along with
2365 their value.
2367 Return a list whose CAR is `src-block' and CDR is a plist
2368 containing `:language', `:switches', `:parameters', `:begin',
2369 `:end', `:number-lines', `:retain-labels', `:use-labels',
2370 `:label-fmt', `:preserve-indent', `:value', `:post-blank' and
2371 `:post-affiliated' keywords.
2373 Assume point is at the beginning of the block."
2374 (let ((case-fold-search t))
2375 (if (not (save-excursion (re-search-forward "^[ \t]*#\\+END_SRC[ \t]*$"
2376 limit t)))
2377 ;; Incomplete block: parse it as a paragraph.
2378 (org-element-paragraph-parser limit affiliated)
2379 (let ((contents-end (match-beginning 0)))
2380 (save-excursion
2381 (let* ((begin (car affiliated))
2382 (post-affiliated (point))
2383 ;; Get language as a string.
2384 (language
2385 (progn
2386 (looking-at
2387 (concat "^[ \t]*#\\+BEGIN_SRC"
2388 "\\(?: +\\(\\S-+\\)\\)?"
2389 "\\(\\(?: +\\(?:-l \".*?\"\\|[-+][A-Za-z]\\)\\)+\\)?"
2390 "\\(.*\\)[ \t]*$"))
2391 (org-match-string-no-properties 1)))
2392 ;; Get switches.
2393 (switches (org-match-string-no-properties 2))
2394 ;; Get parameters.
2395 (parameters (org-match-string-no-properties 3))
2396 ;; Switches analysis
2397 (number-lines
2398 (cond ((not switches) nil)
2399 ((string-match "-n\\>" switches) 'new)
2400 ((string-match "+n\\>" switches) 'continued)))
2401 (preserve-indent (and switches
2402 (string-match "-i\\>" switches)))
2403 (label-fmt
2404 (and switches
2405 (string-match "-l +\"\\([^\"\n]+\\)\"" switches)
2406 (match-string 1 switches)))
2407 ;; Should labels be retained in (or stripped from)
2408 ;; src blocks?
2409 (retain-labels
2410 (or (not switches)
2411 (not (string-match "-r\\>" switches))
2412 (and number-lines (string-match "-k\\>" switches))))
2413 ;; What should code-references use - labels or
2414 ;; line-numbers?
2415 (use-labels
2416 (or (not switches)
2417 (and retain-labels
2418 (not (string-match "-k\\>" switches)))))
2419 ;; Indentation.
2420 (block-ind (progn (skip-chars-forward " \t") (current-column)))
2421 ;; Retrieve code.
2422 (value (org-element-remove-indentation
2423 (org-unescape-code-in-string
2424 (buffer-substring-no-properties
2425 (progn (forward-line) (point)) contents-end))
2426 block-ind))
2427 (pos-before-blank (progn (goto-char contents-end)
2428 (forward-line)
2429 (point)))
2430 ;; Get position after ending blank lines.
2431 (end (progn (skip-chars-forward " \r\t\n" limit)
2432 (if (eobp) (point) (line-beginning-position)))))
2433 (list 'src-block
2434 (nconc
2435 (list :language language
2436 :switches (and (org-string-nw-p switches)
2437 (org-trim switches))
2438 :parameters (and (org-string-nw-p parameters)
2439 (org-trim parameters))
2440 :begin begin
2441 :end end
2442 :number-lines number-lines
2443 :preserve-indent preserve-indent
2444 :retain-labels retain-labels
2445 :use-labels use-labels
2446 :label-fmt label-fmt
2447 :value value
2448 :post-blank (count-lines pos-before-blank end)
2449 :post-affiliated post-affiliated)
2450 (cdr affiliated)))))))))
2452 (defun org-element-src-block-interpreter (src-block contents)
2453 "Interpret SRC-BLOCK element as Org syntax.
2454 CONTENTS is nil."
2455 (let ((lang (org-element-property :language src-block))
2456 (switches (org-element-property :switches src-block))
2457 (params (org-element-property :parameters src-block))
2458 (value
2459 (let ((val (org-element-property :value src-block)))
2460 (cond
2461 ((or org-src-preserve-indentation
2462 (org-element-property :preserve-indent src-block))
2463 val)
2464 ((zerop org-edit-src-content-indentation) val)
2466 (let ((ind (make-string org-edit-src-content-indentation ?\s)))
2467 (replace-regexp-in-string
2468 "\\(^\\)[ \t]*\\S-" ind val nil nil 1)))))))
2469 (concat (format "#+BEGIN_SRC%s\n"
2470 (concat (and lang (concat " " lang))
2471 (and switches (concat " " switches))
2472 (and params (concat " " params))))
2473 (org-element-normalize-string (org-escape-code-in-string value))
2474 "#+END_SRC")))
2477 ;;;; Table
2479 (defun org-element-table-parser (limit affiliated)
2480 "Parse a table at point.
2482 LIMIT bounds the search. AFFILIATED is a list of which CAR is
2483 the buffer position at the beginning of the first affiliated
2484 keyword and CDR is a plist of affiliated keywords along with
2485 their value.
2487 Return a list whose CAR is `table' and CDR is a plist containing
2488 `:begin', `:end', `:tblfm', `:type', `:contents-begin',
2489 `:contents-end', `:value', `:post-blank' and `:post-affiliated'
2490 keywords.
2492 Assume point is at the beginning of the table."
2493 (save-excursion
2494 (let* ((case-fold-search t)
2495 (table-begin (point))
2496 (type (if (looking-at "[ \t]*|") 'org 'table.el))
2497 (end-re (format "^[ \t]*\\($\\|[^| \t%s]\\)"
2498 (if (eq type 'org) "" "+")))
2499 (begin (car affiliated))
2500 (table-end
2501 (if (re-search-forward end-re limit 'move)
2502 (goto-char (match-beginning 0))
2503 (point)))
2504 (tblfm (let (acc)
2505 (while (looking-at "[ \t]*#\\+TBLFM: +\\(.*\\)[ \t]*$")
2506 (push (org-match-string-no-properties 1) acc)
2507 (forward-line))
2508 acc))
2509 (pos-before-blank (point))
2510 (end (progn (skip-chars-forward " \r\t\n" limit)
2511 (if (eobp) (point) (line-beginning-position)))))
2512 (list 'table
2513 (nconc
2514 (list :begin begin
2515 :end end
2516 :type type
2517 :tblfm tblfm
2518 ;; Only `org' tables have contents. `table.el' tables
2519 ;; use a `:value' property to store raw table as
2520 ;; a string.
2521 :contents-begin (and (eq type 'org) table-begin)
2522 :contents-end (and (eq type 'org) table-end)
2523 :value (and (eq type 'table.el)
2524 (buffer-substring-no-properties
2525 table-begin table-end))
2526 :post-blank (count-lines pos-before-blank end)
2527 :post-affiliated table-begin)
2528 (cdr affiliated))))))
2530 (defun org-element-table-interpreter (table contents)
2531 "Interpret TABLE element as Org syntax.
2532 CONTENTS is a string, if table's type is `org', or nil."
2533 (if (eq (org-element-property :type table) 'table.el)
2534 (org-remove-indentation (org-element-property :value table))
2535 (concat (with-temp-buffer (insert contents)
2536 (org-table-align)
2537 (buffer-string))
2538 (mapconcat (lambda (fm) (concat "#+TBLFM: " fm))
2539 (reverse (org-element-property :tblfm table))
2540 "\n"))))
2543 ;;;; Table Row
2545 (defun org-element-table-row-parser (limit)
2546 "Parse table row at point.
2548 LIMIT bounds the search.
2550 Return a list whose CAR is `table-row' and CDR is a plist
2551 containing `:begin', `:end', `:contents-begin', `:contents-end',
2552 `:type', `:post-blank' and `:post-affiliated' keywords."
2553 (save-excursion
2554 (let* ((type (if (looking-at "^[ \t]*|-") 'rule 'standard))
2555 (begin (point))
2556 ;; A table rule has no contents. In that case, ensure
2557 ;; CONTENTS-BEGIN matches CONTENTS-END.
2558 (contents-begin (and (eq type 'standard)
2559 (search-forward "|")
2560 (point)))
2561 (contents-end (and (eq type 'standard)
2562 (progn
2563 (end-of-line)
2564 (skip-chars-backward " \t")
2565 (point))))
2566 (end (line-beginning-position 2)))
2567 (list 'table-row
2568 (list :type type
2569 :begin begin
2570 :end end
2571 :contents-begin contents-begin
2572 :contents-end contents-end
2573 :post-blank 0
2574 :post-affiliated begin)))))
2576 (defun org-element-table-row-interpreter (table-row contents)
2577 "Interpret TABLE-ROW element as Org syntax.
2578 CONTENTS is the contents of the table row."
2579 (if (eq (org-element-property :type table-row) 'rule) "|-"
2580 (concat "| " contents)))
2583 ;;;; Verse Block
2585 (defun org-element-verse-block-parser (limit affiliated)
2586 "Parse a verse block.
2588 LIMIT bounds the search. AFFILIATED is a list of which CAR is
2589 the buffer position at the beginning of the first affiliated
2590 keyword and CDR is a plist of affiliated keywords along with
2591 their value.
2593 Return a list whose CAR is `verse-block' and CDR is a plist
2594 containing `:begin', `:end', `:contents-begin', `:contents-end',
2595 `:post-blank' and `:post-affiliated' keywords.
2597 Assume point is at beginning of the block."
2598 (let ((case-fold-search t))
2599 (if (not (save-excursion
2600 (re-search-forward "^[ \t]*#\\+END_VERSE[ \t]*$" limit t)))
2601 ;; Incomplete block: parse it as a paragraph.
2602 (org-element-paragraph-parser limit affiliated)
2603 (let ((contents-end (match-beginning 0)))
2604 (save-excursion
2605 (let* ((begin (car affiliated))
2606 (post-affiliated (point))
2607 (contents-begin (progn (forward-line) (point)))
2608 (pos-before-blank (progn (goto-char contents-end)
2609 (forward-line)
2610 (point)))
2611 (end (progn (skip-chars-forward " \r\t\n" limit)
2612 (if (eobp) (point) (line-beginning-position)))))
2613 (list 'verse-block
2614 (nconc
2615 (list :begin begin
2616 :end end
2617 :contents-begin contents-begin
2618 :contents-end contents-end
2619 :post-blank (count-lines pos-before-blank end)
2620 :post-affiliated post-affiliated)
2621 (cdr affiliated)))))))))
2623 (defun org-element-verse-block-interpreter (verse-block contents)
2624 "Interpret VERSE-BLOCK element as Org syntax.
2625 CONTENTS is verse block contents."
2626 (format "#+BEGIN_VERSE\n%s#+END_VERSE" contents))
2630 ;;; Objects
2632 ;; Unlike to elements, raw text can be found between objects. Hence,
2633 ;; `org-element--object-lex' is provided to find the next object in
2634 ;; buffer.
2636 ;; Some object types (e.g., `italic') are recursive. Restrictions on
2637 ;; object types they can contain will be specified in
2638 ;; `org-element-object-restrictions'.
2640 ;; Creating a new type of object requires to alter
2641 ;; `org-element--object-regexp' and `org-element--object-lex', add the
2642 ;; new type in `org-element-all-objects', and possibly add
2643 ;; restrictions in `org-element-object-restrictions'.
2645 ;;;; Bold
2647 (defun org-element-bold-parser ()
2648 "Parse bold object at point, if any.
2650 When at a bold object, return a list whose car is `bold' and cdr
2651 is a plist with `:begin', `:end', `:contents-begin' and
2652 `:contents-end' and `:post-blank' keywords. Otherwise, return
2653 nil.
2655 Assume point is at the first star marker."
2656 (save-excursion
2657 (unless (bolp) (backward-char 1))
2658 (when (looking-at org-emph-re)
2659 (let ((begin (match-beginning 2))
2660 (contents-begin (match-beginning 4))
2661 (contents-end (match-end 4))
2662 (post-blank (progn (goto-char (match-end 2))
2663 (skip-chars-forward " \t")))
2664 (end (point)))
2665 (list 'bold
2666 (list :begin begin
2667 :end end
2668 :contents-begin contents-begin
2669 :contents-end contents-end
2670 :post-blank post-blank))))))
2672 (defun org-element-bold-interpreter (bold contents)
2673 "Interpret BOLD object as Org syntax.
2674 CONTENTS is the contents of the object."
2675 (format "*%s*" contents))
2678 ;;;; Code
2680 (defun org-element-code-parser ()
2681 "Parse code object at point, if any.
2683 When at a code object, return a list whose car is `code' and cdr
2684 is a plist with `:value', `:begin', `:end' and `:post-blank'
2685 keywords. Otherwise, return nil.
2687 Assume point is at the first tilde marker."
2688 (save-excursion
2689 (unless (bolp) (backward-char 1))
2690 (when (looking-at org-emph-re)
2691 (let ((begin (match-beginning 2))
2692 (value (org-match-string-no-properties 4))
2693 (post-blank (progn (goto-char (match-end 2))
2694 (skip-chars-forward " \t")))
2695 (end (point)))
2696 (list 'code
2697 (list :value value
2698 :begin begin
2699 :end end
2700 :post-blank post-blank))))))
2702 (defun org-element-code-interpreter (code contents)
2703 "Interpret CODE object as Org syntax.
2704 CONTENTS is nil."
2705 (format "~%s~" (org-element-property :value code)))
2708 ;;;; Entity
2710 (defun org-element-entity-parser ()
2711 "Parse entity at point, if any.
2713 When at an entity, return a list whose car is `entity' and cdr
2714 a plist with `:begin', `:end', `:latex', `:latex-math-p',
2715 `:html', `:latin1', `:utf-8', `:ascii', `:use-brackets-p' and
2716 `:post-blank' as keywords. Otherwise, return nil.
2718 Assume point is at the beginning of the entity."
2719 (catch 'no-object
2720 (when (looking-at "\\\\\\(?:\\(?1:_ +\\)\\|\\(?1:there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\(?2:$\\|{}\\|[^[:alpha:]]\\)\\)")
2721 (save-excursion
2722 (let* ((value (or (org-entity-get (match-string 1))
2723 (throw 'no-object nil)))
2724 (begin (match-beginning 0))
2725 (bracketsp (string= (match-string 2) "{}"))
2726 (post-blank (progn (goto-char (match-end 1))
2727 (when bracketsp (forward-char 2))
2728 (skip-chars-forward " \t")))
2729 (end (point)))
2730 (list 'entity
2731 (list :name (car value)
2732 :latex (nth 1 value)
2733 :latex-math-p (nth 2 value)
2734 :html (nth 3 value)
2735 :ascii (nth 4 value)
2736 :latin1 (nth 5 value)
2737 :utf-8 (nth 6 value)
2738 :begin begin
2739 :end end
2740 :use-brackets-p bracketsp
2741 :post-blank post-blank)))))))
2743 (defun org-element-entity-interpreter (entity contents)
2744 "Interpret ENTITY object as Org syntax.
2745 CONTENTS is nil."
2746 (concat "\\"
2747 (org-element-property :name entity)
2748 (when (org-element-property :use-brackets-p entity) "{}")))
2751 ;;;; Export Snippet
2753 (defun org-element-export-snippet-parser ()
2754 "Parse export snippet at point.
2756 When at an export snippet, return a list whose car is
2757 `export-snippet' and cdr a plist with `:begin', `:end',
2758 `:back-end', `:value' and `:post-blank' as keywords. Otherwise,
2759 return nil.
2761 Assume point is at the beginning of the snippet."
2762 (save-excursion
2763 (let (contents-end)
2764 (when (and (looking-at "@@\\([-A-Za-z0-9]+\\):")
2765 (setq contents-end
2766 (save-match-data (goto-char (match-end 0))
2767 (re-search-forward "@@" nil t)
2768 (match-beginning 0))))
2769 (let* ((begin (match-beginning 0))
2770 (back-end (org-match-string-no-properties 1))
2771 (value (buffer-substring-no-properties
2772 (match-end 0) contents-end))
2773 (post-blank (skip-chars-forward " \t"))
2774 (end (point)))
2775 (list 'export-snippet
2776 (list :back-end back-end
2777 :value value
2778 :begin begin
2779 :end end
2780 :post-blank post-blank)))))))
2782 (defun org-element-export-snippet-interpreter (export-snippet contents)
2783 "Interpret EXPORT-SNIPPET object as Org syntax.
2784 CONTENTS is nil."
2785 (format "@@%s:%s@@"
2786 (org-element-property :back-end export-snippet)
2787 (org-element-property :value export-snippet)))
2790 ;;;; Footnote Reference
2792 (defun org-element-footnote-reference-parser ()
2793 "Parse footnote reference at point, if any.
2795 When at a footnote reference, return a list whose car is
2796 `footnote-reference' and cdr a plist with `:label', `:type',
2797 `:begin', `:end', `:content-begin', `:contents-end' and
2798 `:post-blank' as keywords. Otherwise, return nil."
2799 (when (looking-at org-footnote-re)
2800 (let ((closing (with-syntax-table org-element--pair-square-table
2801 (ignore-errors (scan-lists (point) 1 0)))))
2802 (when closing
2803 (save-excursion
2804 (let* ((begin (point))
2805 (label
2806 (or (org-match-string-no-properties 2)
2807 (org-match-string-no-properties 3)
2808 (and (match-string 1)
2809 (concat "fn:" (org-match-string-no-properties 1)))))
2810 (type (if (or (not label) (match-string 1)) 'inline 'standard))
2811 (inner-begin (match-end 0))
2812 (inner-end (1- closing))
2813 (post-blank (progn (goto-char closing)
2814 (skip-chars-forward " \t")))
2815 (end (point)))
2816 (list 'footnote-reference
2817 (list :label label
2818 :type type
2819 :begin begin
2820 :end end
2821 :contents-begin (and (eq type 'inline) inner-begin)
2822 :contents-end (and (eq type 'inline) inner-end)
2823 :post-blank post-blank))))))))
2825 (defun org-element-footnote-reference-interpreter (footnote-reference contents)
2826 "Interpret FOOTNOTE-REFERENCE object as Org syntax.
2827 CONTENTS is its definition, when inline, or nil."
2828 (format "[%s]"
2829 (concat (or (org-element-property :label footnote-reference) "fn:")
2830 (and contents (concat ":" contents)))))
2833 ;;;; Inline Babel Call
2835 (defun org-element-inline-babel-call-parser ()
2836 "Parse inline babel call at point, if any.
2838 When at an inline babel call, return a list whose car is
2839 `inline-babel-call' and cdr a plist with `:call',
2840 `:inside-header', `:arguments', `:end-header', `:begin', `:end',
2841 `:value' and `:post-blank' as keywords. Otherwise, return nil.
2843 Assume point is at the beginning of the babel call."
2844 (save-excursion
2845 (unless (bolp) (backward-char))
2846 (when (let ((case-fold-search t))
2847 (looking-at org-babel-inline-lob-one-liner-regexp))
2848 (let ((begin (match-end 1))
2849 (call (org-match-string-no-properties 2))
2850 (inside-header (org-string-nw-p (org-match-string-no-properties 4)))
2851 (arguments (org-string-nw-p (org-match-string-no-properties 6)))
2852 (end-header (org-string-nw-p (org-match-string-no-properties 8)))
2853 (value (buffer-substring-no-properties (match-end 1) (match-end 0)))
2854 (post-blank (progn (goto-char (match-end 0))
2855 (skip-chars-forward " \t")))
2856 (end (point)))
2857 (list 'inline-babel-call
2858 (list :call call
2859 :inside-header inside-header
2860 :arguments arguments
2861 :end-header end-header
2862 :begin begin
2863 :end end
2864 :value value
2865 :post-blank post-blank))))))
2867 (defun org-element-inline-babel-call-interpreter (inline-babel-call contents)
2868 "Interpret INLINE-BABEL-CALL object as Org syntax.
2869 CONTENTS is nil."
2870 (concat "call_"
2871 (org-element-property :call inline-babel-call)
2872 (let ((h (org-element-property :inside-header inline-babel-call)))
2873 (and h (format "[%s]" h)))
2874 "(" (org-element-property :arguments inline-babel-call) ")"
2875 (let ((h (org-element-property :end-header inline-babel-call)))
2876 (and h (format "[%s]" h)))))
2879 ;;;; Inline Src Block
2881 (defun org-element-inline-src-block-parser ()
2882 "Parse inline source block at point, if any.
2884 When at an inline source block, return a list whose car is
2885 `inline-src-block' and cdr a plist with `:begin', `:end',
2886 `:language', `:value', `:parameters' and `:post-blank' as
2887 keywords. Otherwise, return nil.
2889 Assume point is at the beginning of the inline src block."
2890 (save-excursion
2891 (unless (bolp) (backward-char))
2892 (when (looking-at org-babel-inline-src-block-regexp)
2893 (let ((begin (match-beginning 1))
2894 (language (org-match-string-no-properties 2))
2895 (parameters (org-match-string-no-properties 4))
2896 (value (org-match-string-no-properties 5))
2897 (post-blank (progn (goto-char (match-end 0))
2898 (skip-chars-forward " \t")))
2899 (end (point)))
2900 (list 'inline-src-block
2901 (list :language language
2902 :value value
2903 :parameters parameters
2904 :begin begin
2905 :end end
2906 :post-blank post-blank))))))
2908 (defun org-element-inline-src-block-interpreter (inline-src-block contents)
2909 "Interpret INLINE-SRC-BLOCK object as Org syntax.
2910 CONTENTS is nil."
2911 (let ((language (org-element-property :language inline-src-block))
2912 (arguments (org-element-property :parameters inline-src-block))
2913 (body (org-element-property :value inline-src-block)))
2914 (format "src_%s%s{%s}"
2915 language
2916 (if arguments (format "[%s]" arguments) "")
2917 body)))
2919 ;;;; Italic
2921 (defun org-element-italic-parser ()
2922 "Parse italic object at point, if any.
2924 When at an italic object, return a list whose car is `italic' and
2925 cdr is a plist with `:begin', `:end', `:contents-begin' and
2926 `:contents-end' and `:post-blank' keywords. Otherwise, return
2927 nil.
2929 Assume point is at the first slash marker."
2930 (save-excursion
2931 (unless (bolp) (backward-char 1))
2932 (when (looking-at org-emph-re)
2933 (let ((begin (match-beginning 2))
2934 (contents-begin (match-beginning 4))
2935 (contents-end (match-end 4))
2936 (post-blank (progn (goto-char (match-end 2))
2937 (skip-chars-forward " \t")))
2938 (end (point)))
2939 (list 'italic
2940 (list :begin begin
2941 :end end
2942 :contents-begin contents-begin
2943 :contents-end contents-end
2944 :post-blank post-blank))))))
2946 (defun org-element-italic-interpreter (italic contents)
2947 "Interpret ITALIC object as Org syntax.
2948 CONTENTS is the contents of the object."
2949 (format "/%s/" contents))
2952 ;;;; Latex Fragment
2954 (defun org-element-latex-fragment-parser ()
2955 "Parse LaTeX fragment at point, if any.
2957 When at a LaTeX fragment, return a list whose car is
2958 `latex-fragment' and cdr a plist with `:value', `:begin', `:end',
2959 and `:post-blank' as keywords. Otherwise, return nil.
2961 Assume point is at the beginning of the LaTeX fragment."
2962 (catch 'no-object
2963 (save-excursion
2964 (let* ((begin (point))
2965 (after-fragment
2966 (if (eq (char-after) ?$)
2967 (if (eq (char-after (1+ (point))) ?$)
2968 (search-forward "$$" nil t 2)
2969 (and (not (eq (char-before) ?$))
2970 (search-forward "$" nil t 2)
2971 (not (memq (char-before (match-beginning 0))
2972 '(?\s ?\t ?\n ?, ?.)))
2973 (looking-at "\\(\\s.\\|\\s-\\|\\s(\\|\\s)\\|\\s\"\\|$\\)")
2974 (point)))
2975 (case (char-after (1+ (point)))
2976 (?\( (search-forward "\\)" nil t))
2977 (?\[ (search-forward "\\]" nil t))
2978 (otherwise
2979 ;; Macro.
2980 (and (looking-at "\\\\[a-zA-Z]+\\*?\\(\\(\\[[^][\n{}]*\\]\\)\\|\\({[^{}\n]*}\\)\\)*")
2981 (match-end 0))))))
2982 (post-blank (if (not after-fragment) (throw 'no-object nil)
2983 (goto-char after-fragment)
2984 (skip-chars-forward " \t")))
2985 (end (point)))
2986 (list 'latex-fragment
2987 (list :value (buffer-substring-no-properties begin after-fragment)
2988 :begin begin
2989 :end end
2990 :post-blank post-blank))))))
2992 (defun org-element-latex-fragment-interpreter (latex-fragment contents)
2993 "Interpret LATEX-FRAGMENT object as Org syntax.
2994 CONTENTS is nil."
2995 (org-element-property :value latex-fragment))
2997 ;;;; Line Break
2999 (defun org-element-line-break-parser ()
3000 "Parse line break at point, if any.
3002 When at a line break, return a list whose car is `line-break',
3003 and cdr a plist with `:begin', `:end' and `:post-blank' keywords.
3004 Otherwise, return nil.
3006 Assume point is at the beginning of the line break."
3007 (when (and (org-looking-at-p "\\\\\\\\[ \t]*$")
3008 (not (eq (char-before) ?\\)))
3009 (list 'line-break
3010 (list :begin (point)
3011 :end (line-beginning-position 2)
3012 :post-blank 0))))
3014 (defun org-element-line-break-interpreter (line-break contents)
3015 "Interpret LINE-BREAK object as Org syntax.
3016 CONTENTS is nil."
3017 "\\\\\n")
3020 ;;;; Link
3022 (defun org-element-link-parser ()
3023 "Parse link at point, if any.
3025 When at a link, return a list whose car is `link' and cdr a plist
3026 with `:type', `:path', `:raw-link', `:application',
3027 `:search-option', `:begin', `:end', `:contents-begin',
3028 `:contents-end' and `:post-blank' as keywords. Otherwise, return
3029 nil.
3031 Assume point is at the beginning of the link."
3032 (catch 'no-object
3033 (let ((begin (point))
3034 end contents-begin contents-end link-end post-blank path type
3035 raw-link link search-option application)
3036 (cond
3037 ;; Type 1: Text targeted from a radio target.
3038 ((and org-target-link-regexp
3039 (save-excursion (or (bolp) (backward-char))
3040 (looking-at org-target-link-regexp)))
3041 (setq type "radio"
3042 link-end (match-end 1)
3043 path (org-match-string-no-properties 1)
3044 contents-begin (match-beginning 1)
3045 contents-end (match-end 1)))
3046 ;; Type 2: Standard link, i.e. [[http://orgmode.org][homepage]]
3047 ((looking-at org-bracket-link-regexp)
3048 (setq contents-begin (match-beginning 3)
3049 contents-end (match-end 3)
3050 link-end (match-end 0)
3051 ;; RAW-LINK is the original link. Expand any
3052 ;; abbreviation in it.
3053 raw-link (org-translate-link
3054 (org-link-expand-abbrev
3055 (org-match-string-no-properties 1))))
3056 ;; Determine TYPE of link and set PATH accordingly.
3057 (cond
3058 ;; File type.
3059 ((or (file-name-absolute-p raw-link)
3060 (string-match "\\`\\.\\.?/" raw-link))
3061 (setq type "file" path raw-link))
3062 ;; Explicit type (http, irc, bbdb...). See `org-link-types'.
3063 ((string-match org-link-types-re raw-link)
3064 (setq type (match-string 1 raw-link)
3065 ;; According to RFC 3986, extra whitespace should be
3066 ;; ignored when a URI is extracted.
3067 path (replace-regexp-in-string
3068 "[ \t]*\n[ \t]*" "" (substring raw-link (match-end 0)))))
3069 ;; Id type: PATH is the id.
3070 ((string-match "\\`id:\\([-a-f0-9]+\\)" raw-link)
3071 (setq type "id" path (match-string 1 raw-link)))
3072 ;; Code-ref type: PATH is the name of the reference.
3073 ((string-match "\\`(\\(.*\\))\\'" raw-link)
3074 (setq type "coderef" path (match-string 1 raw-link)))
3075 ;; Custom-id type: PATH is the name of the custom id.
3076 ((= (string-to-char raw-link) ?#)
3077 (setq type "custom-id" path (substring raw-link 1)))
3078 ;; Fuzzy type: Internal link either matches a target, an
3079 ;; headline name or nothing. PATH is the target or
3080 ;; headline's name.
3081 (t (setq type "fuzzy" path raw-link))))
3082 ;; Type 3: Plain link, e.g., http://orgmode.org
3083 ((looking-at org-plain-link-re)
3084 (setq raw-link (org-match-string-no-properties 0)
3085 type (org-match-string-no-properties 1)
3086 link-end (match-end 0)
3087 path (org-match-string-no-properties 2)))
3088 ;; Type 4: Angular link, e.g., <http://orgmode.org>
3089 ((looking-at org-angle-link-re)
3090 (setq raw-link (buffer-substring-no-properties
3091 (match-beginning 1) (match-end 2))
3092 type (org-match-string-no-properties 1)
3093 link-end (match-end 0)
3094 path (org-match-string-no-properties 2)))
3095 (t (throw 'no-object nil)))
3096 ;; In any case, deduce end point after trailing white space from
3097 ;; LINK-END variable.
3098 (save-excursion
3099 (setq post-blank (progn (goto-char link-end) (skip-chars-forward " \t"))
3100 end (point))
3101 ;; Special "file" type link processing. Extract opening
3102 ;; application and search option, if any. Also normalize URI.
3103 (when (string-match "\\`file\\(?:\\+\\(.+\\)\\)?\\'" type)
3104 (setq application (match-string 1 type) type "file")
3105 (when (string-match "::\\(.*\\)\\'" path)
3106 (setq search-option (match-string 1 path)
3107 path (replace-match "" nil nil path)))
3108 (setq path (replace-regexp-in-string "\\`/+" "/" path)))
3109 (list 'link
3110 (list :type type
3111 :path path
3112 :raw-link (or raw-link path)
3113 :application application
3114 :search-option search-option
3115 :begin begin
3116 :end end
3117 :contents-begin contents-begin
3118 :contents-end contents-end
3119 :post-blank post-blank))))))
3121 (defun org-element-link-interpreter (link contents)
3122 "Interpret LINK object as Org syntax.
3123 CONTENTS is the contents of the object, or nil."
3124 (let ((type (org-element-property :type link))
3125 (raw-link (org-element-property :raw-link link)))
3126 (if (string= type "radio") raw-link
3127 (format "[[%s]%s]"
3128 raw-link
3129 (if contents (format "[%s]" contents) "")))))
3132 ;;;; Macro
3134 (defun org-element-macro-parser ()
3135 "Parse macro at point, if any.
3137 When at a macro, return a list whose car is `macro' and cdr
3138 a plist with `:key', `:args', `:begin', `:end', `:value' and
3139 `:post-blank' as keywords. Otherwise, return nil.
3141 Assume point is at the macro."
3142 (save-excursion
3143 (when (looking-at "{{{\\([a-zA-Z][-a-zA-Z0-9_]*\\)\\(([ \t\n]*\\([^\000]*?\\))\\)?}}}")
3144 (let ((begin (point))
3145 (key (downcase (org-match-string-no-properties 1)))
3146 (value (org-match-string-no-properties 0))
3147 (post-blank (progn (goto-char (match-end 0))
3148 (skip-chars-forward " \t")))
3149 (end (point))
3150 (args (let ((args (org-match-string-no-properties 3)))
3151 (and args (org-macro-extract-arguments args)))))
3152 (list 'macro
3153 (list :key key
3154 :value value
3155 :args args
3156 :begin begin
3157 :end end
3158 :post-blank post-blank))))))
3160 (defun org-element-macro-interpreter (macro contents)
3161 "Interpret MACRO object as Org syntax.
3162 CONTENTS is nil."
3163 (org-element-property :value macro))
3166 ;;;; Radio-target
3168 (defun org-element-radio-target-parser ()
3169 "Parse radio target at point, if any.
3171 When at a radio target, return a list whose car is `radio-target'
3172 and cdr a plist with `:begin', `:end', `:contents-begin',
3173 `:contents-end', `:value' and `:post-blank' as keywords.
3174 Otherwise, return nil.
3176 Assume point is at the radio target."
3177 (save-excursion
3178 (when (looking-at org-radio-target-regexp)
3179 (let ((begin (point))
3180 (contents-begin (match-beginning 1))
3181 (contents-end (match-end 1))
3182 (value (org-match-string-no-properties 1))
3183 (post-blank (progn (goto-char (match-end 0))
3184 (skip-chars-forward " \t")))
3185 (end (point)))
3186 (list 'radio-target
3187 (list :begin begin
3188 :end end
3189 :contents-begin contents-begin
3190 :contents-end contents-end
3191 :post-blank post-blank
3192 :value value))))))
3194 (defun org-element-radio-target-interpreter (target contents)
3195 "Interpret TARGET object as Org syntax.
3196 CONTENTS is the contents of the object."
3197 (concat "<<<" contents ">>>"))
3200 ;;;; Statistics Cookie
3202 (defun org-element-statistics-cookie-parser ()
3203 "Parse statistics cookie at point, if any.
3205 When at a statistics cookie, return a list whose car is
3206 `statistics-cookie', and cdr a plist with `:begin', `:end',
3207 `:value' and `:post-blank' keywords. Otherwise, return nil.
3209 Assume point is at the beginning of the statistics-cookie."
3210 (save-excursion
3211 (when (looking-at "\\[[0-9]*\\(%\\|/[0-9]*\\)\\]")
3212 (let* ((begin (point))
3213 (value (buffer-substring-no-properties
3214 (match-beginning 0) (match-end 0)))
3215 (post-blank (progn (goto-char (match-end 0))
3216 (skip-chars-forward " \t")))
3217 (end (point)))
3218 (list 'statistics-cookie
3219 (list :begin begin
3220 :end end
3221 :value value
3222 :post-blank post-blank))))))
3224 (defun org-element-statistics-cookie-interpreter (statistics-cookie contents)
3225 "Interpret STATISTICS-COOKIE object as Org syntax.
3226 CONTENTS is nil."
3227 (org-element-property :value statistics-cookie))
3230 ;;;; Strike-Through
3232 (defun org-element-strike-through-parser ()
3233 "Parse strike-through object at point, if any.
3235 When at a strike-through object, return a list whose car is
3236 `strike-through' and cdr is a plist with `:begin', `:end',
3237 `:contents-begin' and `:contents-end' and `:post-blank' keywords.
3238 Otherwise, return nil.
3240 Assume point is at the first plus sign marker."
3241 (save-excursion
3242 (unless (bolp) (backward-char 1))
3243 (when (looking-at org-emph-re)
3244 (let ((begin (match-beginning 2))
3245 (contents-begin (match-beginning 4))
3246 (contents-end (match-end 4))
3247 (post-blank (progn (goto-char (match-end 2))
3248 (skip-chars-forward " \t")))
3249 (end (point)))
3250 (list 'strike-through
3251 (list :begin begin
3252 :end end
3253 :contents-begin contents-begin
3254 :contents-end contents-end
3255 :post-blank post-blank))))))
3257 (defun org-element-strike-through-interpreter (strike-through contents)
3258 "Interpret STRIKE-THROUGH object as Org syntax.
3259 CONTENTS is the contents of the object."
3260 (format "+%s+" contents))
3263 ;;;; Subscript
3265 (defun org-element-subscript-parser ()
3266 "Parse subscript at point, if any.
3268 When at a subscript object, return a list whose car is
3269 `subscript' and cdr a plist with `:begin', `:end',
3270 `:contents-begin', `:contents-end', `:use-brackets-p' and
3271 `:post-blank' as keywords. Otherwise, return nil.
3273 Assume point is at the underscore."
3274 (save-excursion
3275 (unless (bolp) (backward-char))
3276 (when (looking-at org-match-substring-regexp)
3277 (let ((bracketsp (match-beginning 4))
3278 (begin (match-beginning 2))
3279 (contents-begin (or (match-beginning 4)
3280 (match-beginning 3)))
3281 (contents-end (or (match-end 4) (match-end 3)))
3282 (post-blank (progn (goto-char (match-end 0))
3283 (skip-chars-forward " \t")))
3284 (end (point)))
3285 (list 'subscript
3286 (list :begin begin
3287 :end end
3288 :use-brackets-p bracketsp
3289 :contents-begin contents-begin
3290 :contents-end contents-end
3291 :post-blank post-blank))))))
3293 (defun org-element-subscript-interpreter (subscript contents)
3294 "Interpret SUBSCRIPT object as Org syntax.
3295 CONTENTS is the contents of the object."
3296 (format
3297 (if (org-element-property :use-brackets-p subscript) "_{%s}" "_%s")
3298 contents))
3301 ;;;; Superscript
3303 (defun org-element-superscript-parser ()
3304 "Parse superscript at point, if any.
3306 When at a superscript object, return a list whose car is
3307 `superscript' and cdr a plist with `:begin', `:end',
3308 `:contents-begin', `:contents-end', `:use-brackets-p' and
3309 `:post-blank' as keywords. Otherwise, return nil.
3311 Assume point is at the caret."
3312 (save-excursion
3313 (unless (bolp) (backward-char))
3314 (when (looking-at org-match-substring-regexp)
3315 (let ((bracketsp (match-beginning 4))
3316 (begin (match-beginning 2))
3317 (contents-begin (or (match-beginning 4)
3318 (match-beginning 3)))
3319 (contents-end (or (match-end 4) (match-end 3)))
3320 (post-blank (progn (goto-char (match-end 0))
3321 (skip-chars-forward " \t")))
3322 (end (point)))
3323 (list 'superscript
3324 (list :begin begin
3325 :end end
3326 :use-brackets-p bracketsp
3327 :contents-begin contents-begin
3328 :contents-end contents-end
3329 :post-blank post-blank))))))
3331 (defun org-element-superscript-interpreter (superscript contents)
3332 "Interpret SUPERSCRIPT object as Org syntax.
3333 CONTENTS is the contents of the object."
3334 (format
3335 (if (org-element-property :use-brackets-p superscript) "^{%s}" "^%s")
3336 contents))
3339 ;;;; Table Cell
3341 (defun org-element-table-cell-parser ()
3342 "Parse table cell at point.
3343 Return a list whose car is `table-cell' and cdr is a plist
3344 containing `:begin', `:end', `:contents-begin', `:contents-end'
3345 and `:post-blank' keywords."
3346 (looking-at "[ \t]*\\(.*?\\)[ \t]*\\(?:|\\|$\\)")
3347 (let* ((begin (match-beginning 0))
3348 (end (match-end 0))
3349 (contents-begin (match-beginning 1))
3350 (contents-end (match-end 1)))
3351 (list 'table-cell
3352 (list :begin begin
3353 :end end
3354 :contents-begin contents-begin
3355 :contents-end contents-end
3356 :post-blank 0))))
3358 (defun org-element-table-cell-interpreter (table-cell contents)
3359 "Interpret TABLE-CELL element as Org syntax.
3360 CONTENTS is the contents of the cell, or nil."
3361 (concat " " contents " |"))
3364 ;;;; Target
3366 (defun org-element-target-parser ()
3367 "Parse target at point, if any.
3369 When at a target, return a list whose car is `target' and cdr
3370 a plist with `:begin', `:end', `:value' and `:post-blank' as
3371 keywords. Otherwise, return nil.
3373 Assume point is at the target."
3374 (save-excursion
3375 (when (looking-at org-target-regexp)
3376 (let ((begin (point))
3377 (value (org-match-string-no-properties 1))
3378 (post-blank (progn (goto-char (match-end 0))
3379 (skip-chars-forward " \t")))
3380 (end (point)))
3381 (list 'target
3382 (list :begin begin
3383 :end end
3384 :value value
3385 :post-blank post-blank))))))
3387 (defun org-element-target-interpreter (target contents)
3388 "Interpret TARGET object as Org syntax.
3389 CONTENTS is nil."
3390 (format "<<%s>>" (org-element-property :value target)))
3393 ;;;; Timestamp
3395 (defconst org-element--timestamp-regexp
3396 (concat org-ts-regexp-both
3397 "\\|"
3398 "\\(?:<[0-9]+-[0-9]+-[0-9]+[^>\n]+?\\+[0-9]+[dwmy]>\\)"
3399 "\\|"
3400 "\\(?:<%%\\(?:([^>\n]+)\\)>\\)")
3401 "Regexp matching any timestamp type object.")
3403 (defun org-element-timestamp-parser ()
3404 "Parse time stamp at point, if any.
3406 When at a time stamp, return a list whose car is `timestamp', and
3407 cdr a plist with `:type', `:raw-value', `:year-start',
3408 `:month-start', `:day-start', `:hour-start', `:minute-start',
3409 `:year-end', `:month-end', `:day-end', `:hour-end',
3410 `:minute-end', `:repeater-type', `:repeater-value',
3411 `:repeater-unit', `:warning-type', `:warning-value',
3412 `:warning-unit', `:begin', `:end' and `:post-blank' keywords.
3413 Otherwise, return nil.
3415 Assume point is at the beginning of the timestamp."
3416 (when (org-looking-at-p org-element--timestamp-regexp)
3417 (save-excursion
3418 (let* ((begin (point))
3419 (activep (eq (char-after) ?<))
3420 (raw-value
3421 (progn
3422 (looking-at "\\([<[]\\(%%\\)?.*?\\)[]>]\\(?:--\\([<[].*?[]>]\\)\\)?")
3423 (match-string-no-properties 0)))
3424 (date-start (match-string-no-properties 1))
3425 (date-end (match-string 3))
3426 (diaryp (match-beginning 2))
3427 (post-blank (progn (goto-char (match-end 0))
3428 (skip-chars-forward " \t")))
3429 (end (point))
3430 (time-range
3431 (and (not diaryp)
3432 (string-match
3433 "[012]?[0-9]:[0-5][0-9]\\(-\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)"
3434 date-start)
3435 (cons (string-to-number (match-string 2 date-start))
3436 (string-to-number (match-string 3 date-start)))))
3437 (type (cond (diaryp 'diary)
3438 ((and activep (or date-end time-range)) 'active-range)
3439 (activep 'active)
3440 ((or date-end time-range) 'inactive-range)
3441 (t 'inactive)))
3442 (repeater-props
3443 (and (not diaryp)
3444 (string-match "\\([.+]?\\+\\)\\([0-9]+\\)\\([hdwmy]\\)"
3445 raw-value)
3446 (list
3447 :repeater-type
3448 (let ((type (match-string 1 raw-value)))
3449 (cond ((equal "++" type) 'catch-up)
3450 ((equal ".+" type) 'restart)
3451 (t 'cumulate)))
3452 :repeater-value (string-to-number (match-string 2 raw-value))
3453 :repeater-unit
3454 (case (string-to-char (match-string 3 raw-value))
3455 (?h 'hour) (?d 'day) (?w 'week) (?m 'month) (t 'year)))))
3456 (warning-props
3457 (and (not diaryp)
3458 (string-match "\\(-\\)?-\\([0-9]+\\)\\([hdwmy]\\)" raw-value)
3459 (list
3460 :warning-type (if (match-string 1 raw-value) 'first 'all)
3461 :warning-value (string-to-number (match-string 2 raw-value))
3462 :warning-unit
3463 (case (string-to-char (match-string 3 raw-value))
3464 (?h 'hour) (?d 'day) (?w 'week) (?m 'month) (t 'year)))))
3465 year-start month-start day-start hour-start minute-start year-end
3466 month-end day-end hour-end minute-end)
3467 ;; Parse date-start.
3468 (unless diaryp
3469 (let ((date (org-parse-time-string date-start t)))
3470 (setq year-start (nth 5 date)
3471 month-start (nth 4 date)
3472 day-start (nth 3 date)
3473 hour-start (nth 2 date)
3474 minute-start (nth 1 date))))
3475 ;; Compute date-end. It can be provided directly in time-stamp,
3476 ;; or extracted from time range. Otherwise, it defaults to the
3477 ;; same values as date-start.
3478 (unless diaryp
3479 (let ((date (and date-end (org-parse-time-string date-end t))))
3480 (setq year-end (or (nth 5 date) year-start)
3481 month-end (or (nth 4 date) month-start)
3482 day-end (or (nth 3 date) day-start)
3483 hour-end (or (nth 2 date) (car time-range) hour-start)
3484 minute-end (or (nth 1 date) (cdr time-range) minute-start))))
3485 (list 'timestamp
3486 (nconc (list :type type
3487 :raw-value raw-value
3488 :year-start year-start
3489 :month-start month-start
3490 :day-start day-start
3491 :hour-start hour-start
3492 :minute-start minute-start
3493 :year-end year-end
3494 :month-end month-end
3495 :day-end day-end
3496 :hour-end hour-end
3497 :minute-end minute-end
3498 :begin begin
3499 :end end
3500 :post-blank post-blank)
3501 repeater-props
3502 warning-props))))))
3504 (defun org-element-timestamp-interpreter (timestamp contents)
3505 "Interpret TIMESTAMP object as Org syntax.
3506 CONTENTS is nil."
3507 (let* ((repeat-string
3508 (concat
3509 (case (org-element-property :repeater-type timestamp)
3510 (cumulate "+") (catch-up "++") (restart ".+"))
3511 (let ((val (org-element-property :repeater-value timestamp)))
3512 (and val (number-to-string val)))
3513 (case (org-element-property :repeater-unit timestamp)
3514 (hour "h") (day "d") (week "w") (month "m") (year "y"))))
3515 (warning-string
3516 (concat
3517 (case (org-element-property :warning-type timestamp)
3518 (first "--")
3519 (all "-"))
3520 (let ((val (org-element-property :warning-value timestamp)))
3521 (and val (number-to-string val)))
3522 (case (org-element-property :warning-unit timestamp)
3523 (hour "h") (day "d") (week "w") (month "m") (year "y"))))
3524 (build-ts-string
3525 ;; Build an Org timestamp string from TIME. ACTIVEP is
3526 ;; non-nil when time stamp is active. If WITH-TIME-P is
3527 ;; non-nil, add a time part. HOUR-END and MINUTE-END
3528 ;; specify a time range in the timestamp. REPEAT-STRING is
3529 ;; the repeater string, if any.
3530 (lambda (time activep &optional with-time-p hour-end minute-end)
3531 (let ((ts (format-time-string
3532 (funcall (if with-time-p 'cdr 'car)
3533 org-time-stamp-formats)
3534 time)))
3535 (when (and hour-end minute-end)
3536 (string-match "[012]?[0-9]:[0-5][0-9]" ts)
3537 (setq ts
3538 (replace-match
3539 (format "\\&-%02d:%02d" hour-end minute-end)
3540 nil nil ts)))
3541 (unless activep (setq ts (format "[%s]" (substring ts 1 -1))))
3542 (dolist (s (list repeat-string warning-string))
3543 (when (org-string-nw-p s)
3544 (setq ts (concat (substring ts 0 -1)
3547 (substring ts -1)))))
3548 ;; Return value.
3549 ts)))
3550 (type (org-element-property :type timestamp)))
3551 (case type
3552 ((active inactive)
3553 (let* ((minute-start (org-element-property :minute-start timestamp))
3554 (minute-end (org-element-property :minute-end timestamp))
3555 (hour-start (org-element-property :hour-start timestamp))
3556 (hour-end (org-element-property :hour-end timestamp))
3557 (time-range-p (and hour-start hour-end minute-start minute-end
3558 (or (/= hour-start hour-end)
3559 (/= minute-start minute-end)))))
3560 (funcall
3561 build-ts-string
3562 (encode-time 0
3563 (or minute-start 0)
3564 (or hour-start 0)
3565 (org-element-property :day-start timestamp)
3566 (org-element-property :month-start timestamp)
3567 (org-element-property :year-start timestamp))
3568 (eq type 'active)
3569 (and hour-start minute-start)
3570 (and time-range-p hour-end)
3571 (and time-range-p minute-end))))
3572 ((active-range inactive-range)
3573 (let ((minute-start (org-element-property :minute-start timestamp))
3574 (minute-end (org-element-property :minute-end timestamp))
3575 (hour-start (org-element-property :hour-start timestamp))
3576 (hour-end (org-element-property :hour-end timestamp)))
3577 (concat
3578 (funcall
3579 build-ts-string (encode-time
3581 (or minute-start 0)
3582 (or hour-start 0)
3583 (org-element-property :day-start timestamp)
3584 (org-element-property :month-start timestamp)
3585 (org-element-property :year-start timestamp))
3586 (eq type 'active-range)
3587 (and hour-start minute-start))
3588 "--"
3589 (funcall build-ts-string
3590 (encode-time 0
3591 (or minute-end 0)
3592 (or hour-end 0)
3593 (org-element-property :day-end timestamp)
3594 (org-element-property :month-end timestamp)
3595 (org-element-property :year-end timestamp))
3596 (eq type 'active-range)
3597 (and hour-end minute-end)))))
3598 (otherwise (org-element-property :raw-value timestamp)))))
3601 ;;;; Underline
3603 (defun org-element-underline-parser ()
3604 "Parse underline object at point, if any.
3606 When at an underline object, return a list whose car is
3607 `underline' and cdr is a plist with `:begin', `:end',
3608 `:contents-begin' and `:contents-end' and `:post-blank' keywords.
3609 Otherwise, return nil.
3611 Assume point is at the first underscore marker."
3612 (save-excursion
3613 (unless (bolp) (backward-char 1))
3614 (when (looking-at org-emph-re)
3615 (let ((begin (match-beginning 2))
3616 (contents-begin (match-beginning 4))
3617 (contents-end (match-end 4))
3618 (post-blank (progn (goto-char (match-end 2))
3619 (skip-chars-forward " \t")))
3620 (end (point)))
3621 (list 'underline
3622 (list :begin begin
3623 :end end
3624 :contents-begin contents-begin
3625 :contents-end contents-end
3626 :post-blank post-blank))))))
3628 (defun org-element-underline-interpreter (underline contents)
3629 "Interpret UNDERLINE object as Org syntax.
3630 CONTENTS is the contents of the object."
3631 (format "_%s_" contents))
3634 ;;;; Verbatim
3636 (defun org-element-verbatim-parser ()
3637 "Parse verbatim object at point, if any.
3639 When at a verbatim object, return a list whose car is `verbatim'
3640 and cdr is a plist with `:value', `:begin', `:end' and
3641 `:post-blank' keywords. Otherwise, return nil.
3643 Assume point is at the first equal sign marker."
3644 (save-excursion
3645 (unless (bolp) (backward-char 1))
3646 (when (looking-at org-emph-re)
3647 (let ((begin (match-beginning 2))
3648 (value (org-match-string-no-properties 4))
3649 (post-blank (progn (goto-char (match-end 2))
3650 (skip-chars-forward " \t")))
3651 (end (point)))
3652 (list 'verbatim
3653 (list :value value
3654 :begin begin
3655 :end end
3656 :post-blank post-blank))))))
3658 (defun org-element-verbatim-interpreter (verbatim contents)
3659 "Interpret VERBATIM object as Org syntax.
3660 CONTENTS is nil."
3661 (format "=%s=" (org-element-property :value verbatim)))
3665 ;;; Parsing Element Starting At Point
3667 ;; `org-element--current-element' is the core function of this section.
3668 ;; It returns the Lisp representation of the element starting at
3669 ;; point.
3671 ;; `org-element--current-element' makes use of special modes. They
3672 ;; are activated for fixed element chaining (e.g., `plain-list' >
3673 ;; `item') or fixed conditional element chaining (e.g., `headline' >
3674 ;; `section'). Special modes are: `first-section', `item',
3675 ;; `node-property', `section' and `table-row'.
3677 (defun org-element--current-element (limit &optional granularity mode structure)
3678 "Parse the element starting at point.
3680 Return value is a list like (TYPE PROPS) where TYPE is the type
3681 of the element and PROPS a plist of properties associated to the
3682 element.
3684 Possible types are defined in `org-element-all-elements'.
3686 LIMIT bounds the search.
3688 Optional argument GRANULARITY determines the depth of the
3689 recursion. Allowed values are `headline', `greater-element',
3690 `element', `object' or nil. When it is broader than `object' (or
3691 nil), secondary values will not be parsed, since they only
3692 contain objects.
3694 Optional argument MODE, when non-nil, can be either
3695 `first-section', `section', `planning', `item', `node-property'
3696 and `table-row'.
3698 If STRUCTURE isn't provided but MODE is set to `item', it will be
3699 computed.
3701 This function assumes point is always at the beginning of the
3702 element it has to parse."
3703 (save-excursion
3704 (let ((case-fold-search t)
3705 ;; Determine if parsing depth allows for secondary strings
3706 ;; parsing. It only applies to elements referenced in
3707 ;; `org-element-secondary-value-alist'.
3708 (raw-secondary-p (and granularity (not (eq granularity 'object)))))
3709 (cond
3710 ;; Item.
3711 ((eq mode 'item)
3712 (org-element-item-parser limit structure raw-secondary-p))
3713 ;; Table Row.
3714 ((eq mode 'table-row) (org-element-table-row-parser limit))
3715 ;; Node Property.
3716 ((eq mode 'node-property) (org-element-node-property-parser limit))
3717 ;; Headline.
3718 ((org-with-limited-levels (org-at-heading-p))
3719 (org-element-headline-parser limit raw-secondary-p))
3720 ;; Sections (must be checked after headline).
3721 ((eq mode 'section) (org-element-section-parser limit))
3722 ((eq mode 'first-section)
3723 (org-element-section-parser
3724 (or (save-excursion (org-with-limited-levels (outline-next-heading)))
3725 limit)))
3726 ;; Planning.
3727 ((and (eq mode 'planning) (looking-at org-planning-line-re))
3728 (org-element-planning-parser limit))
3729 ;; Property drawer.
3730 ((and (memq mode '(planning property-drawer))
3731 (looking-at org-property-drawer-re))
3732 (org-element-property-drawer-parser limit))
3733 ;; When not at bol, point is at the beginning of an item or
3734 ;; a footnote definition: next item is always a paragraph.
3735 ((not (bolp)) (org-element-paragraph-parser limit (list (point))))
3736 ;; Clock.
3737 ((looking-at org-clock-line-re) (org-element-clock-parser limit))
3738 ;; Inlinetask.
3739 ((org-at-heading-p)
3740 (org-element-inlinetask-parser limit raw-secondary-p))
3741 ;; From there, elements can have affiliated keywords.
3742 (t (let ((affiliated (org-element--collect-affiliated-keywords limit)))
3743 (cond
3744 ;; Jumping over affiliated keywords put point off-limits.
3745 ;; Parse them as regular keywords.
3746 ((and (cdr affiliated) (>= (point) limit))
3747 (goto-char (car affiliated))
3748 (org-element-keyword-parser limit nil))
3749 ;; LaTeX Environment.
3750 ((looking-at org-element--latex-begin-environment)
3751 (org-element-latex-environment-parser limit affiliated))
3752 ;; Drawer and Property Drawer.
3753 ((looking-at org-drawer-regexp)
3754 (org-element-drawer-parser limit affiliated))
3755 ;; Fixed Width
3756 ((looking-at "[ \t]*:\\( \\|$\\)")
3757 (org-element-fixed-width-parser limit affiliated))
3758 ;; Inline Comments, Blocks, Babel Calls, Dynamic Blocks and
3759 ;; Keywords.
3760 ((looking-at "[ \t]*#")
3761 (goto-char (match-end 0))
3762 (cond ((looking-at "\\(?: \\|$\\)")
3763 (beginning-of-line)
3764 (org-element-comment-parser limit affiliated))
3765 ((looking-at "\\+BEGIN_\\(\\S-+\\)")
3766 (beginning-of-line)
3767 (let ((parser (assoc (upcase (match-string 1))
3768 org-element-block-name-alist)))
3769 (if parser (funcall (cdr parser) limit affiliated)
3770 (org-element-special-block-parser limit affiliated))))
3771 ((looking-at "\\+CALL:")
3772 (beginning-of-line)
3773 (org-element-babel-call-parser limit affiliated))
3774 ((looking-at "\\+BEGIN:? ")
3775 (beginning-of-line)
3776 (org-element-dynamic-block-parser limit affiliated))
3777 ((looking-at "\\+\\S-+:")
3778 (beginning-of-line)
3779 (org-element-keyword-parser limit affiliated))
3781 (beginning-of-line)
3782 (org-element-paragraph-parser limit affiliated))))
3783 ;; Footnote Definition.
3784 ((looking-at org-footnote-definition-re)
3785 (org-element-footnote-definition-parser limit affiliated))
3786 ;; Horizontal Rule.
3787 ((looking-at "[ \t]*-\\{5,\\}[ \t]*$")
3788 (org-element-horizontal-rule-parser limit affiliated))
3789 ;; Diary Sexp.
3790 ((looking-at "%%(")
3791 (org-element-diary-sexp-parser limit affiliated))
3792 ;; Table.
3793 ((looking-at "[ \t]*\\(|\\|\\+\\(-+\\+\\)+[ \t]*$\\)")
3794 (org-element-table-parser limit affiliated))
3795 ;; List.
3796 ((looking-at (org-item-re))
3797 (org-element-plain-list-parser
3798 limit affiliated
3799 (or structure (org-element--list-struct limit))))
3800 ;; Default element: Paragraph.
3801 (t (org-element-paragraph-parser limit affiliated)))))))))
3804 ;; Most elements can have affiliated keywords. When looking for an
3805 ;; element beginning, we want to move before them, as they belong to
3806 ;; that element, and, in the meantime, collect information they give
3807 ;; into appropriate properties. Hence the following function.
3809 (defun org-element--collect-affiliated-keywords (limit)
3810 "Collect affiliated keywords from point down to LIMIT.
3812 Return a list whose CAR is the position at the first of them and
3813 CDR a plist of keywords and values and move point to the
3814 beginning of the first line after them.
3816 As a special case, if element doesn't start at the beginning of
3817 the line (e.g., a paragraph starting an item), CAR is current
3818 position of point and CDR is nil."
3819 (if (not (bolp)) (list (point))
3820 (let ((case-fold-search t)
3821 (origin (point))
3822 ;; RESTRICT is the list of objects allowed in parsed
3823 ;; keywords value.
3824 (restrict (org-element-restriction 'keyword))
3825 output)
3826 (while (and (< (point) limit) (looking-at org-element--affiliated-re))
3827 (let* ((raw-kwd (upcase (match-string 1)))
3828 ;; Apply translation to RAW-KWD. From there, KWD is
3829 ;; the official keyword.
3830 (kwd (or (cdr (assoc raw-kwd
3831 org-element-keyword-translation-alist))
3832 raw-kwd))
3833 ;; Find main value for any keyword.
3834 (value
3835 (save-match-data
3836 (org-trim
3837 (buffer-substring-no-properties
3838 (match-end 0) (line-end-position)))))
3839 ;; PARSEDP is non-nil when keyword should have its
3840 ;; value parsed.
3841 (parsedp (member kwd org-element-parsed-keywords))
3842 ;; If KWD is a dual keyword, find its secondary
3843 ;; value. Maybe parse it.
3844 (dualp (member kwd org-element-dual-keywords))
3845 (dual-value
3846 (and dualp
3847 (let ((sec (org-match-string-no-properties 2)))
3848 (if (or (not sec) (not parsedp)) sec
3849 (org-element--parse-objects
3850 (match-beginning 2) (match-end 2) nil restrict)))))
3851 ;; Attribute a property name to KWD.
3852 (kwd-sym (and kwd (intern (concat ":" (downcase kwd))))))
3853 ;; Now set final shape for VALUE.
3854 (when parsedp
3855 (setq value
3856 (org-element--parse-objects
3857 (match-end 0)
3858 (progn (end-of-line) (skip-chars-backward " \t") (point))
3859 nil restrict)))
3860 (when dualp
3861 (setq value (and (or value dual-value) (cons value dual-value))))
3862 (when (or (member kwd org-element-multiple-keywords)
3863 ;; Attributes can always appear on multiple lines.
3864 (string-match "^ATTR_" kwd))
3865 (setq value (cons value (plist-get output kwd-sym))))
3866 ;; Eventually store the new value in OUTPUT.
3867 (setq output (plist-put output kwd-sym value))
3868 ;; Move to next keyword.
3869 (forward-line)))
3870 ;; If affiliated keywords are orphaned: move back to first one.
3871 ;; They will be parsed as a paragraph.
3872 (when (looking-at "[ \t]*$") (goto-char origin) (setq output nil))
3873 ;; Return value.
3874 (cons origin output))))
3878 ;;; The Org Parser
3880 ;; The two major functions here are `org-element-parse-buffer', which
3881 ;; parses Org syntax inside the current buffer, taking into account
3882 ;; region, narrowing, or even visibility if specified, and
3883 ;; `org-element-parse-secondary-string', which parses objects within
3884 ;; a given string.
3886 ;; The (almost) almighty `org-element-map' allows to apply a function
3887 ;; on elements or objects matching some type, and accumulate the
3888 ;; resulting values. In an export situation, it also skips unneeded
3889 ;; parts of the parse tree.
3891 (defun org-element-parse-buffer (&optional granularity visible-only)
3892 "Recursively parse the buffer and return structure.
3893 If narrowing is in effect, only parse the visible part of the
3894 buffer.
3896 Optional argument GRANULARITY determines the depth of the
3897 recursion. It can be set to the following symbols:
3899 `headline' Only parse headlines.
3900 `greater-element' Don't recurse into greater elements excepted
3901 headlines and sections. Thus, elements
3902 parsed are the top-level ones.
3903 `element' Parse everything but objects and plain text.
3904 `object' Parse the complete buffer (default).
3906 When VISIBLE-ONLY is non-nil, don't parse contents of hidden
3907 elements.
3909 An element or an objects is represented as a list with the
3910 pattern (TYPE PROPERTIES CONTENTS), where :
3912 TYPE is a symbol describing the element or object. See
3913 `org-element-all-elements' and `org-element-all-objects' for an
3914 exhaustive list of such symbols. One can retrieve it with
3915 `org-element-type' function.
3917 PROPERTIES is the list of attributes attached to the element or
3918 object, as a plist. Although most of them are specific to the
3919 element or object type, all types share `:begin', `:end',
3920 `:post-blank' and `:parent' properties, which respectively
3921 refer to buffer position where the element or object starts,
3922 ends, the number of white spaces or blank lines after it, and
3923 the element or object containing it. Properties values can be
3924 obtained by using `org-element-property' function.
3926 CONTENTS is a list of elements, objects or raw strings
3927 contained in the current element or object, when applicable.
3928 One can access them with `org-element-contents' function.
3930 The Org buffer has `org-data' as type and nil as properties.
3931 `org-element-map' function can be used to find specific elements
3932 or objects within the parse tree.
3934 This function assumes that current major mode is `org-mode'."
3935 (save-excursion
3936 (goto-char (point-min))
3937 (org-skip-whitespace)
3938 (org-element--parse-elements
3939 (point-at-bol) (point-max)
3940 ;; Start in `first-section' mode so text before the first
3941 ;; headline belongs to a section.
3942 'first-section nil granularity visible-only (list 'org-data nil))))
3944 (defun org-element-parse-secondary-string (string restriction &optional parent)
3945 "Recursively parse objects in STRING and return structure.
3947 RESTRICTION is a symbol limiting the object types that will be
3948 looked after.
3950 Optional argument PARENT, when non-nil, is the element or object
3951 containing the secondary string. It is used to set correctly
3952 `:parent' property within the string.
3954 If STRING is the empty string or nil, return nil."
3955 (cond
3956 ((not string) nil)
3957 ((equal string "") nil)
3958 (t (let ((local-variables (buffer-local-variables)))
3959 (with-temp-buffer
3960 (dolist (v local-variables)
3961 (ignore-errors
3962 (if (symbolp v) (makunbound v)
3963 (org-set-local (car v) (cdr v)))))
3964 (insert string)
3965 (restore-buffer-modified-p nil)
3966 (let ((data (org-element--parse-objects
3967 (point-min) (point-max) nil restriction)))
3968 (when parent
3969 (dolist (o data) (org-element-put-property o :parent parent)))
3970 data))))))
3972 (defun org-element-map
3973 (data types fun &optional info first-match no-recursion with-affiliated)
3974 "Map a function on selected elements or objects.
3976 DATA is a parse tree, an element, an object, a string, or a list
3977 of such constructs. TYPES is a symbol or list of symbols of
3978 elements or objects types (see `org-element-all-elements' and
3979 `org-element-all-objects' for a complete list of types). FUN is
3980 the function called on the matching element or object. It has to
3981 accept one argument: the element or object itself.
3983 When optional argument INFO is non-nil, it should be a plist
3984 holding export options. In that case, parts of the parse tree
3985 not exportable according to that property list will be skipped.
3987 When optional argument FIRST-MATCH is non-nil, stop at the first
3988 match for which FUN doesn't return nil, and return that value.
3990 Optional argument NO-RECURSION is a symbol or a list of symbols
3991 representing elements or objects types. `org-element-map' won't
3992 enter any recursive element or object whose type belongs to that
3993 list. Though, FUN can still be applied on them.
3995 When optional argument WITH-AFFILIATED is non-nil, FUN will also
3996 apply to matching objects within parsed affiliated keywords (see
3997 `org-element-parsed-keywords').
3999 Nil values returned from FUN do not appear in the results.
4002 Examples:
4003 ---------
4005 Assuming TREE is a variable containing an Org buffer parse tree,
4006 the following example will return a flat list of all `src-block'
4007 and `example-block' elements in it:
4009 \(org-element-map tree '(example-block src-block) #'identity)
4011 The following snippet will find the first headline with a level
4012 of 1 and a \"phone\" tag, and will return its beginning position:
4014 \(org-element-map tree 'headline
4015 \(lambda (hl)
4016 \(and (= (org-element-property :level hl) 1)
4017 \(member \"phone\" (org-element-property :tags hl))
4018 \(org-element-property :begin hl)))
4019 nil t)
4021 The next example will return a flat list of all `plain-list' type
4022 elements in TREE that are not a sub-list themselves:
4024 \(org-element-map tree 'plain-list #'identity nil nil 'plain-list)
4026 Eventually, this example will return a flat list of all `bold'
4027 type objects containing a `latex-snippet' type object, even
4028 looking into captions:
4030 \(org-element-map tree 'bold
4031 \(lambda (b)
4032 \(and (org-element-map b 'latex-snippet #'identity nil t) b))
4033 nil nil nil t)"
4034 ;; Ensure TYPES and NO-RECURSION are a list, even of one element.
4035 (let* ((types (if (listp types) types (list types)))
4036 (no-recursion (if (listp no-recursion) no-recursion
4037 (list no-recursion)))
4038 ;; Recursion depth is determined by --CATEGORY.
4039 (--category
4040 (catch 'found
4041 (let ((category 'greater-elements)
4042 (all-objects (cons 'plain-text org-element-all-objects)))
4043 (dolist (type types category)
4044 (cond ((memq type all-objects)
4045 ;; If one object is found, the function has to
4046 ;; recurse into every object.
4047 (throw 'found 'objects))
4048 ((not (memq type org-element-greater-elements))
4049 ;; If one regular element is found, the
4050 ;; function has to recurse, at least, into
4051 ;; every element it encounters.
4052 (and (not (eq category 'elements))
4053 (setq category 'elements))))))))
4054 --acc
4055 --walk-tree
4056 (--walk-tree
4057 (lambda (--data)
4058 ;; Recursively walk DATA. INFO, if non-nil, is a plist
4059 ;; holding contextual information.
4060 (let ((--type (org-element-type --data)))
4061 (cond
4062 ((not --data))
4063 ;; Ignored element in an export context.
4064 ((and info (memq --data (plist-get info :ignore-list))))
4065 ;; List of elements or objects.
4066 ((not --type) (mapc --walk-tree --data))
4067 ;; Unconditionally enter parse trees.
4068 ((eq --type 'org-data)
4069 (mapc --walk-tree (org-element-contents --data)))
4071 ;; Check if TYPE is matching among TYPES. If so,
4072 ;; apply FUN to --DATA and accumulate return value
4073 ;; into --ACC (or exit if FIRST-MATCH is non-nil).
4074 (when (memq --type types)
4075 (let ((result (funcall fun --data)))
4076 (cond ((not result))
4077 (first-match (throw '--map-first-match result))
4078 (t (push result --acc)))))
4079 ;; If --DATA has a secondary string that can contain
4080 ;; objects with their type among TYPES, look into it.
4081 (when (and (eq --category 'objects) (not (stringp --data)))
4082 (dolist (p (cdr (assq --type
4083 org-element-secondary-value-alist)))
4084 (funcall --walk-tree (org-element-property p --data))))
4085 ;; If --DATA has any parsed affiliated keywords and
4086 ;; WITH-AFFILIATED is non-nil, look for objects in
4087 ;; them.
4088 (when (and with-affiliated
4089 (eq --category 'objects)
4090 (memq --type org-element-all-elements))
4091 (dolist (kwd-pair org-element--parsed-properties-alist)
4092 (let ((kwd (car kwd-pair))
4093 (value (org-element-property (cdr kwd-pair) --data)))
4094 ;; Pay attention to the type of parsed keyword.
4095 ;; In particular, preserve order for multiple
4096 ;; keywords.
4097 (cond
4098 ((not value))
4099 ((member kwd org-element-dual-keywords)
4100 (if (member kwd org-element-multiple-keywords)
4101 (dolist (line (reverse value))
4102 (funcall --walk-tree (cdr line))
4103 (funcall --walk-tree (car line)))
4104 (funcall --walk-tree (cdr value))
4105 (funcall --walk-tree (car value))))
4106 ((member kwd org-element-multiple-keywords)
4107 (mapc --walk-tree (reverse value)))
4108 (t (funcall --walk-tree value))))))
4109 ;; Determine if a recursion into --DATA is possible.
4110 (cond
4111 ;; --TYPE is explicitly removed from recursion.
4112 ((memq --type no-recursion))
4113 ;; --DATA has no contents.
4114 ((not (org-element-contents --data)))
4115 ;; Looking for greater elements but --DATA is simply
4116 ;; an element or an object.
4117 ((and (eq --category 'greater-elements)
4118 (not (memq --type org-element-greater-elements))))
4119 ;; Looking for elements but --DATA is an object.
4120 ((and (eq --category 'elements)
4121 (memq --type org-element-all-objects)))
4122 ;; In any other case, map contents.
4123 (t (mapc --walk-tree (org-element-contents --data))))))))))
4124 (catch '--map-first-match
4125 (funcall --walk-tree data)
4126 ;; Return value in a proper order.
4127 (nreverse --acc))))
4128 (put 'org-element-map 'lisp-indent-function 2)
4130 ;; The following functions are internal parts of the parser.
4132 ;; The first one, `org-element--parse-elements' acts at the element's
4133 ;; level.
4135 ;; The second one, `org-element--parse-objects' applies on all objects
4136 ;; of a paragraph or a secondary string. It calls
4137 ;; `org-element--object-lex' to find the next object in the current
4138 ;; container.
4140 (defsubst org-element--next-mode (type parentp)
4141 "Return next special mode according to TYPE, or nil.
4142 TYPE is a symbol representing the type of an element or object
4143 containing next element if PARENTP is non-nil, or before it
4144 otherwise. Modes can be either `first-section', `item',
4145 `node-property', `planning', `property-drawer', `section',
4146 `table-row' or nil."
4147 (if parentp
4148 (case type
4149 (headline 'section)
4150 (plain-list 'item)
4151 (property-drawer 'node-property)
4152 (section 'planning)
4153 (table 'table-row))
4154 (case type
4155 (item 'item)
4156 (node-property 'node-property)
4157 (planning 'property-drawer)
4158 (table-row 'table-row))))
4160 (defun org-element--parse-elements
4161 (beg end mode structure granularity visible-only acc)
4162 "Parse elements between BEG and END positions.
4164 MODE prioritizes some elements over the others. It can be set to
4165 `first-section', `section', `planning', `item', `node-property'
4166 or `table-row'.
4168 When value is `item', STRUCTURE will be used as the current list
4169 structure.
4171 GRANULARITY determines the depth of the recursion. See
4172 `org-element-parse-buffer' for more information.
4174 When VISIBLE-ONLY is non-nil, don't parse contents of hidden
4175 elements.
4177 Elements are accumulated into ACC."
4178 (save-excursion
4179 (goto-char beg)
4180 ;; Visible only: skip invisible parts at the beginning of the
4181 ;; element.
4182 (when (and visible-only (org-invisible-p2))
4183 (goto-char (min (1+ (org-find-visible)) end)))
4184 ;; When parsing only headlines, skip any text before first one.
4185 (when (and (eq granularity 'headline) (not (org-at-heading-p)))
4186 (org-with-limited-levels (outline-next-heading)))
4187 ;; Main loop start.
4188 (while (< (point) end)
4189 ;; Find current element's type and parse it accordingly to
4190 ;; its category.
4191 (let* ((element (org-element--current-element
4192 end granularity mode structure))
4193 (type (org-element-type element))
4194 (cbeg (org-element-property :contents-begin element)))
4195 (goto-char (org-element-property :end element))
4196 ;; Visible only: skip invisible parts between siblings.
4197 (when (and visible-only (org-invisible-p2))
4198 (goto-char (min (1+ (org-find-visible)) end)))
4199 ;; Fill ELEMENT contents by side-effect.
4200 (cond
4201 ;; If element has no contents, don't modify it.
4202 ((not cbeg))
4203 ;; Greater element: parse it between `contents-begin' and
4204 ;; `contents-end'. Make sure GRANULARITY allows the
4205 ;; recursion, or ELEMENT is a headline, in which case going
4206 ;; inside is mandatory, in order to get sub-level headings.
4207 ((and (memq type org-element-greater-elements)
4208 (or (memq granularity '(element object nil))
4209 (and (eq granularity 'greater-element)
4210 (eq type 'section))
4211 (eq type 'headline)))
4212 (org-element--parse-elements
4213 cbeg (org-element-property :contents-end element)
4214 ;; Possibly switch to a special mode.
4215 (org-element--next-mode type t)
4216 (and (memq type '(item plain-list))
4217 (org-element-property :structure element))
4218 granularity visible-only element))
4219 ;; ELEMENT has contents. Parse objects inside, if
4220 ;; GRANULARITY allows it.
4221 ((memq granularity '(object nil))
4222 (org-element--parse-objects
4223 cbeg (org-element-property :contents-end element) element
4224 (org-element-restriction type))))
4225 (org-element-adopt-elements acc element)
4226 ;; Update mode.
4227 (setq mode (org-element--next-mode type nil))))
4228 ;; Return result.
4229 acc))
4231 (defun org-element--object-lex (restriction)
4232 "Return next object in current buffer or nil.
4233 RESTRICTION is a list of object types, as symbols, that should be
4234 looked after. This function assumes that the buffer is narrowed
4235 to an appropriate container (e.g., a paragraph)."
4236 (if (memq 'table-cell restriction) (org-element-table-cell-parser)
4237 (save-excursion
4238 (let ((limit (and org-target-link-regexp
4239 (save-excursion
4240 (or (bolp) (backward-char))
4241 (re-search-forward org-target-link-regexp nil t))
4242 (match-beginning 1)))
4243 found)
4244 (while (and (not found)
4245 (re-search-forward org-element--object-regexp limit t))
4246 (goto-char (match-beginning 0))
4247 (let ((result (match-string 0)))
4248 (setq found
4249 (cond
4250 ((eq (compare-strings result nil nil "call_" nil nil t) t)
4251 (and (memq 'inline-babel-call restriction)
4252 (org-element-inline-babel-call-parser)))
4253 ((eq (compare-strings result nil nil "src_" nil nil t) t)
4254 (and (memq 'inline-src-block restriction)
4255 (org-element-inline-src-block-parser)))
4257 (case (char-after)
4258 (?^ (and (memq 'superscript restriction)
4259 (org-element-superscript-parser)))
4260 (?_ (or (and (memq 'subscript restriction)
4261 (org-element-subscript-parser))
4262 (and (memq 'underline restriction)
4263 (org-element-underline-parser))))
4264 (?* (and (memq 'bold restriction)
4265 (org-element-bold-parser)))
4266 (?/ (and (memq 'italic restriction)
4267 (org-element-italic-parser)))
4268 (?~ (and (memq 'code restriction)
4269 (org-element-code-parser)))
4270 (?= (and (memq 'verbatim restriction)
4271 (org-element-verbatim-parser)))
4272 (?+ (and (memq 'strike-through restriction)
4273 (org-element-strike-through-parser)))
4274 (?@ (and (memq 'export-snippet restriction)
4275 (org-element-export-snippet-parser)))
4276 (?{ (and (memq 'macro restriction)
4277 (org-element-macro-parser)))
4278 (?$ (and (memq 'latex-fragment restriction)
4279 (org-element-latex-fragment-parser)))
4281 (if (eq (aref result 1) ?<)
4282 (or (and (memq 'radio-target restriction)
4283 (org-element-radio-target-parser))
4284 (and (memq 'target restriction)
4285 (org-element-target-parser)))
4286 (or (and (memq 'timestamp restriction)
4287 (org-element-timestamp-parser))
4288 (and (memq 'link restriction)
4289 (org-element-link-parser)))))
4290 (?\\
4291 (if (eq (aref result 1) ?\\)
4292 (and (memq 'line-break restriction)
4293 (org-element-line-break-parser))
4294 (or (and (memq 'entity restriction)
4295 (org-element-entity-parser))
4296 (and (memq 'latex-fragment restriction)
4297 (org-element-latex-fragment-parser)))))
4298 (?\[
4299 (if (eq (aref result 1) ?\[)
4300 (and (memq 'link restriction)
4301 (org-element-link-parser))
4302 (or (and (memq 'footnote-reference restriction)
4303 (org-element-footnote-reference-parser))
4304 (and (memq 'timestamp restriction)
4305 (org-element-timestamp-parser))
4306 (and (memq 'statistics-cookie restriction)
4307 (org-element-statistics-cookie-parser)))))
4308 ;; This is probably a plain link.
4309 (otherwise (and (or (memq 'link restriction)
4310 (memq 'plain-link restriction))
4311 (org-element-link-parser)))))))
4312 (or (eobp) (forward-char))))
4313 (cond (found)
4314 ;; Radio link.
4315 ((and limit (memq 'link restriction))
4316 (goto-char limit) (org-element-link-parser)))))))
4318 (defun org-element--parse-objects (beg end acc restriction)
4319 "Parse objects between BEG and END and return recursive structure.
4321 Objects are accumulated in ACC.
4323 RESTRICTION is a list of object successors which are allowed in
4324 the current object."
4325 (save-excursion
4326 (save-restriction
4327 (narrow-to-region beg end)
4328 (goto-char (point-min))
4329 (let (next-object)
4330 (while (and (not (eobp))
4331 (setq next-object (org-element--object-lex restriction)))
4332 ;; 1. Text before any object. Untabify it.
4333 (let ((obj-beg (org-element-property :begin next-object)))
4334 (unless (= (point) obj-beg)
4335 (setq acc
4336 (org-element-adopt-elements
4338 (replace-regexp-in-string
4339 "\t" (make-string tab-width ? )
4340 (buffer-substring-no-properties (point) obj-beg))))))
4341 ;; 2. Object...
4342 (let ((obj-end (org-element-property :end next-object))
4343 (cont-beg (org-element-property :contents-begin next-object)))
4344 ;; Fill contents of NEXT-OBJECT by side-effect, if it has
4345 ;; a recursive type.
4346 (when (and cont-beg
4347 (memq (car next-object) org-element-recursive-objects))
4348 (org-element--parse-objects
4349 cont-beg (org-element-property :contents-end next-object)
4350 next-object (org-element-restriction next-object)))
4351 (setq acc (org-element-adopt-elements acc next-object))
4352 (goto-char obj-end))))
4353 ;; 3. Text after last object. Untabify it.
4354 (unless (eobp)
4355 (setq acc
4356 (org-element-adopt-elements
4358 (replace-regexp-in-string
4359 "\t" (make-string tab-width ? )
4360 (buffer-substring-no-properties (point) end)))))
4361 ;; Result.
4362 acc)))
4366 ;;; Towards A Bijective Process
4368 ;; The parse tree obtained with `org-element-parse-buffer' is really
4369 ;; a snapshot of the corresponding Org buffer. Therefore, it can be
4370 ;; interpreted and expanded into a string with canonical Org syntax.
4371 ;; Hence `org-element-interpret-data'.
4373 ;; The function relies internally on
4374 ;; `org-element--interpret-affiliated-keywords'.
4376 ;;;###autoload
4377 (defun org-element-interpret-data (data)
4378 "Interpret DATA as Org syntax.
4379 DATA is a parse tree, an element, an object or a secondary string
4380 to interpret. Return Org syntax as a string."
4381 (org-element--interpret-data-1 data nil))
4383 (defun org-element--interpret-data-1 (data parent)
4384 "Interpret DATA as Org syntax.
4386 DATA is a parse tree, an element, an object or a secondary string
4387 to interpret. PARENT is used for recursive calls. It contains
4388 the element or object containing data, or nil.
4390 Return Org syntax as a string."
4391 (let* ((type (org-element-type data))
4392 ;; Find interpreter for current object or element. If it
4393 ;; doesn't exist (e.g. this is a pseudo object or element),
4394 ;; return contents, if any.
4395 (interpret
4396 (let ((fun (intern (format "org-element-%s-interpreter" type))))
4397 (if (fboundp fun) fun (lambda (data contents) contents))))
4398 (results
4399 (cond
4400 ;; Secondary string.
4401 ((not type)
4402 (mapconcat
4403 (lambda (obj) (org-element--interpret-data-1 obj parent)) data ""))
4404 ;; Full Org document.
4405 ((eq type 'org-data)
4406 (mapconcat (lambda (obj) (org-element--interpret-data-1 obj parent))
4407 (org-element-contents data) ""))
4408 ;; Plain text: return it.
4409 ((stringp data) data)
4410 ;; Element or object without contents.
4411 ((not (org-element-contents data)) (funcall interpret data nil))
4412 ;; Element or object with contents.
4414 (funcall interpret data
4415 ;; Recursively interpret contents.
4416 (mapconcat
4417 (lambda (obj) (org-element--interpret-data-1 obj data))
4418 (org-element-contents
4419 (if (not (memq type '(paragraph verse-block)))
4420 data
4421 ;; Fix indentation of elements containing
4422 ;; objects. We ignore `table-row' elements
4423 ;; as they are one line long anyway.
4424 (org-element-normalize-contents
4425 data
4426 ;; When normalizing first paragraph of an
4427 ;; item or a footnote-definition, ignore
4428 ;; first line's indentation.
4429 (and (eq type 'paragraph)
4430 (equal data (car (org-element-contents parent)))
4431 (memq (org-element-type parent)
4432 '(footnote-definition item))))))
4433 ""))))))
4434 (if (memq type '(org-data plain-text nil)) results
4435 ;; Build white spaces. If no `:post-blank' property is
4436 ;; specified, assume its value is 0.
4437 (let ((post-blank (or (org-element-property :post-blank data) 0)))
4438 (if (or (memq type org-element-all-objects)
4439 (and parent
4440 (let ((type (org-element-type parent)))
4441 (or (not type)
4442 (memq type org-element-object-containers)))))
4443 (concat results (make-string post-blank ?\s))
4444 (concat
4445 (org-element--interpret-affiliated-keywords data)
4446 (org-element-normalize-string results)
4447 (make-string post-blank ?\n)))))))
4449 (defun org-element--interpret-affiliated-keywords (element)
4450 "Return ELEMENT's affiliated keywords as Org syntax.
4451 If there is no affiliated keyword, return the empty string."
4452 (let ((keyword-to-org
4453 (function
4454 (lambda (key value)
4455 (let (dual)
4456 (when (member key org-element-dual-keywords)
4457 (setq dual (cdr value) value (car value)))
4458 (concat "#+" key
4459 (and dual
4460 (format "[%s]" (org-element-interpret-data dual)))
4461 ": "
4462 (if (member key org-element-parsed-keywords)
4463 (org-element-interpret-data value)
4464 value)
4465 "\n"))))))
4466 (mapconcat
4467 (lambda (prop)
4468 (let ((value (org-element-property prop element))
4469 (keyword (upcase (substring (symbol-name prop) 1))))
4470 (when value
4471 (if (or (member keyword org-element-multiple-keywords)
4472 ;; All attribute keywords can have multiple lines.
4473 (string-match "^ATTR_" keyword))
4474 (mapconcat (lambda (line) (funcall keyword-to-org keyword line))
4475 (reverse value)
4477 (funcall keyword-to-org keyword value)))))
4478 ;; List all ELEMENT's properties matching an attribute line or an
4479 ;; affiliated keyword, but ignore translated keywords since they
4480 ;; cannot belong to the property list.
4481 (loop for prop in (nth 1 element) by 'cddr
4482 when (let ((keyword (upcase (substring (symbol-name prop) 1))))
4483 (or (string-match "^ATTR_" keyword)
4484 (and
4485 (member keyword org-element-affiliated-keywords)
4486 (not (assoc keyword
4487 org-element-keyword-translation-alist)))))
4488 collect prop)
4489 "")))
4491 ;; Because interpretation of the parse tree must return the same
4492 ;; number of blank lines between elements and the same number of white
4493 ;; space after objects, some special care must be given to white
4494 ;; spaces.
4496 ;; The first function, `org-element-normalize-string', ensures any
4497 ;; string different from the empty string will end with a single
4498 ;; newline character.
4500 ;; The second function, `org-element-normalize-contents', removes
4501 ;; global indentation from the contents of the current element.
4503 (defun org-element-normalize-string (s)
4504 "Ensure string S ends with a single newline character.
4506 If S isn't a string return it unchanged. If S is the empty
4507 string, return it. Otherwise, return a new string with a single
4508 newline character at its end."
4509 (cond
4510 ((not (stringp s)) s)
4511 ((string= "" s) "")
4512 (t (and (string-match "\\(\n[ \t]*\\)*\\'" s)
4513 (replace-match "\n" nil nil s)))))
4515 (defun org-element-normalize-contents (element &optional ignore-first)
4516 "Normalize plain text in ELEMENT's contents.
4518 ELEMENT must only contain plain text and objects.
4520 If optional argument IGNORE-FIRST is non-nil, ignore first line's
4521 indentation to compute maximal common indentation.
4523 Return the normalized element that is element with global
4524 indentation removed from its contents. The function assumes that
4525 indentation is not done with TAB characters."
4526 (let* ((min-ind most-positive-fixnum)
4527 find-min-ind ; For byte-compiler.
4528 (find-min-ind
4529 ;; Return minimal common indentation within BLOB. This is
4530 ;; done by walking recursively BLOB and updating MIN-IND
4531 ;; along the way. FIRST-FLAG is non-nil when the next
4532 ;; object is expected to be a string that doesn't start with
4533 ;; a newline character. It happens for strings at the
4534 ;; beginnings of the contents or right after a line break.
4535 (lambda (blob first-flag)
4536 (dolist (object (org-element-contents blob))
4537 (when first-flag
4538 (setq first-flag nil)
4539 ;; Objects cannot start with spaces: in this case,
4540 ;; indentation is 0.
4541 (if (not (stringp object)) (throw 'zero (setq min-ind 0))
4542 (string-match "\\` *" object)
4543 (let ((len (match-end 0)))
4544 ;; An indentation of zero means no string will be
4545 ;; modified. Quit the process.
4546 (if (zerop len) (throw 'zero (setq min-ind 0))
4547 (setq min-ind (min len min-ind))))))
4548 (cond
4549 ((stringp object)
4550 (dolist (line (cdr (org-split-string object " *\n")))
4551 (unless (string= line "")
4552 (setq min-ind (min (org-get-indentation line) min-ind)))))
4553 ((eq (org-element-type object) 'line-break) (setq first-flag t))
4554 ((memq (org-element-type object) org-element-recursive-objects)
4555 (funcall find-min-ind object first-flag)))))))
4556 ;; Find minimal indentation in ELEMENT.
4557 (catch 'zero (funcall find-min-ind element (not ignore-first)))
4558 (if (or (zerop min-ind) (= min-ind most-positive-fixnum)) element
4559 ;; Build ELEMENT back, replacing each string with the same
4560 ;; string minus common indentation.
4561 (let* (build ; For byte compiler.
4562 (build
4563 (lambda (blob first-flag)
4564 ;; Return BLOB with all its strings indentation
4565 ;; shortened from MIN-IND white spaces. FIRST-FLAG is
4566 ;; non-nil when the next object is expected to be
4567 ;; a string that doesn't start with a newline
4568 ;; character.
4569 (setcdr (cdr blob)
4570 (mapcar
4571 (lambda (object)
4572 (when first-flag
4573 (setq first-flag nil)
4574 (when (stringp object)
4575 (setq object
4576 (replace-regexp-in-string
4577 (format "\\` \\{%d\\}" min-ind)
4578 "" object))))
4579 (cond
4580 ((stringp object)
4581 (replace-regexp-in-string
4582 (format "\n \\{%d\\}" min-ind) "\n" object))
4583 ((memq (org-element-type object)
4584 org-element-recursive-objects)
4585 (funcall build object first-flag))
4586 ((eq (org-element-type object) 'line-break)
4587 (setq first-flag t)
4588 object)
4589 (t object)))
4590 (org-element-contents blob)))
4591 blob)))
4592 (funcall build element (not ignore-first))))))
4596 ;;; Cache
4598 ;; Implement a caching mechanism for `org-element-at-point' and
4599 ;; `org-element-context', which see.
4601 ;; A single public function is provided: `org-element-cache-reset'.
4603 ;; Cache is enabled by default, but can be disabled globally with
4604 ;; `org-element-use-cache'. `org-element-cache-sync-idle-time',
4605 ;; org-element-cache-sync-duration' and `org-element-cache-sync-break'
4606 ;; can be tweaked to control caching behaviour.
4608 ;; Internally, parsed elements are stored in an AVL tree,
4609 ;; `org-element--cache'. This tree is updated lazily: whenever
4610 ;; a change happens to the buffer, a synchronization request is
4611 ;; registered in `org-element--cache-sync-requests' (see
4612 ;; `org-element--cache-submit-request'). During idle time, requests
4613 ;; are processed by `org-element--cache-sync'. Synchronization also
4614 ;; happens when an element is required from the cache. In this case,
4615 ;; the process stops as soon as the needed element is up-to-date.
4617 ;; A synchronization request can only apply on a synchronized part of
4618 ;; the cache. Therefore, the cache is updated at least to the
4619 ;; location where the new request applies. Thus, requests are ordered
4620 ;; from left to right and all elements starting before the first
4621 ;; request are correct. This property is used by functions like
4622 ;; `org-element--cache-find' to retrieve elements in the part of the
4623 ;; cache that can be trusted.
4625 ;; A request applies to every element, starting from its original
4626 ;; location (or key, see below). When a request is processed, it
4627 ;; moves forward and may collide the next one. In this case, both
4628 ;; requests are merged into a new one that starts from that element.
4629 ;; As a consequence, the whole synchronization complexity does not
4630 ;; depend on the number of pending requests, but on the number of
4631 ;; elements the very first request will be applied on.
4633 ;; Elements cannot be accessed through their beginning position, which
4634 ;; may or may not be up-to-date. Instead, each element in the tree is
4635 ;; associated to a key, obtained with `org-element--cache-key'. This
4636 ;; mechanism is robust enough to preserve total order among elements
4637 ;; even when the tree is only partially synchronized.
4639 ;; Objects contained in an element are stored in a hash table,
4640 ;; `org-element--cache-objects'.
4643 (defvar org-element-use-cache t
4644 "Non nil when Org parser should cache its results.
4645 This is mostly for debugging purpose.")
4647 (defvar org-element-cache-sync-idle-time 0.6
4648 "Length, in seconds, of idle time before syncing cache.")
4650 (defvar org-element-cache-sync-duration (seconds-to-time 0.04)
4651 "Maximum duration, as a time value, for a cache synchronization.
4652 If the synchronization is not over after this delay, the process
4653 pauses and resumes after `org-element-cache-sync-break'
4654 seconds.")
4656 (defvar org-element-cache-sync-break (seconds-to-time 0.3)
4657 "Duration, as a time value, of the pause between synchronizations.
4658 See `org-element-cache-sync-duration' for more information.")
4661 ;;;; Data Structure
4663 (defvar org-element--cache nil
4664 "AVL tree used to cache elements.
4665 Each node of the tree contains an element. Comparison is done
4666 with `org-element--cache-compare'. This cache is used in
4667 `org-element-at-point'.")
4669 (defvar org-element--cache-objects nil
4670 "Hash table used as to cache objects.
4671 Key is an element, as returned by `org-element-at-point', and
4672 value is an alist where each association is:
4674 \(PARENT COMPLETEP . OBJECTS)
4676 where PARENT is an element or object, COMPLETEP is a boolean,
4677 non-nil when all direct children of parent are already cached and
4678 OBJECTS is a list of such children, as objects, from farthest to
4679 closest.
4681 In the following example, \\alpha, bold object and \\beta are
4682 contained within a paragraph
4684 \\alpha *\\beta*
4686 If the paragraph is completely parsed, OBJECTS-DATA will be
4688 \((PARAGRAPH t BOLD-OBJECT ENTITY-OBJECT)
4689 \(BOLD-OBJECT t ENTITY-OBJECT))
4691 whereas in a partially parsed paragraph, it could be
4693 \((PARAGRAPH nil ENTITY-OBJECT))
4695 This cache is used in `org-element-context'.")
4697 (defvar org-element--cache-sync-requests nil
4698 "List of pending synchronization requests.
4700 A request is a vector with the following pattern:
4702 \[NEXT BEG END OFFSET PARENT PHASE]
4704 Processing a synchronization request consists of three phases:
4706 0. Delete modified elements,
4707 1. Fill missing area in cache,
4708 2. Shift positions and re-parent elements after the changes.
4710 During phase 0, NEXT is the key of the first element to be
4711 removed, BEG and END is buffer position delimiting the
4712 modifications. Elements starting between them (inclusive) are
4713 removed. So are elements whose parent is removed. PARENT, when
4714 non-nil, is the parent of the first element to be removed.
4716 During phase 1, NEXT is the key of the next known element in
4717 cache and BEG its beginning position. Parse buffer between that
4718 element and the one before it in order to determine the parent of
4719 the next element. Set PARENT to the element containing NEXT.
4721 During phase 2, NEXT is the key of the next element to shift in
4722 the parse tree. All elements starting from this one have their
4723 properties relatives to buffer positions shifted by integer
4724 OFFSET and, if they belong to element PARENT, are adopted by it.
4726 PHASE specifies the phase number, as an integer.")
4728 (defvar org-element--cache-sync-timer nil
4729 "Timer used for cache synchronization.")
4731 (defvar org-element--cache-sync-keys nil
4732 "Hash table used to store keys during synchronization.
4733 See `org-element--cache-key' for more information.")
4735 (defsubst org-element--cache-key (element)
4736 "Return a unique key for ELEMENT in cache tree.
4738 Keys are used to keep a total order among elements in the cache.
4739 Comparison is done with `org-element--cache-key-less-p'.
4741 When no synchronization is taking place, a key is simply the
4742 beginning position of the element, or that position plus one in
4743 the case of an first item (respectively row) in
4744 a list (respectively a table).
4746 During a synchronization, the key is the one the element had when
4747 the cache was synchronized for the last time. Elements added to
4748 cache during the synchronization get a new key generated with
4749 `org-element--cache-generate-key'.
4751 Such keys are stored in `org-element--cache-sync-keys'. The hash
4752 table is cleared once the synchronization is complete."
4753 (or (gethash element org-element--cache-sync-keys)
4754 (let* ((begin (org-element-property :begin element))
4755 ;; Increase beginning position of items (respectively
4756 ;; table rows) by one, so the first item can get
4757 ;; a different key from its parent list (respectively
4758 ;; table).
4759 (key (if (memq (org-element-type element) '(item table-row))
4760 (1+ begin)
4761 begin)))
4762 (if org-element--cache-sync-requests
4763 (puthash element key org-element--cache-sync-keys)
4764 key))))
4766 (defun org-element--cache-generate-key (lower upper)
4767 "Generate a key between LOWER and UPPER.
4769 LOWER and UPPER are integers or lists, possibly empty.
4771 If LOWER and UPPER are equals, return LOWER. Otherwise, return
4772 a unique key, as an integer or a list of integers, according to
4773 the following rules:
4775 - LOWER and UPPER are compared level-wise until values differ.
4777 - If, at a given level, LOWER and UPPER differ from more than
4778 2, the new key shares all the levels above with LOWER and
4779 gets a new level. Its value is the mean between LOWER and
4780 UPPER:
4782 \(1 2) + (1 4) --> (1 3)
4784 - If LOWER has no value to compare with, it is assumed that its
4785 value is `most-negative-fixnum'. E.g.,
4787 \(1 1) + (1 1 2)
4789 is equivalent to
4791 \(1 1 m) + (1 1 2)
4793 where m is `most-negative-fixnum'. Likewise, if UPPER is
4794 short of levels, the current value is `most-positive-fixnum'.
4796 - If they differ from only one, the new key inherits from
4797 current LOWER level and fork it at the next level. E.g.,
4799 \(2 1) + (3 3)
4801 is equivalent to
4803 \(2 1) + (2 M)
4805 where M is `most-positive-fixnum'.
4807 - If the key is only one level long, it is returned as an
4808 integer:
4810 \(1 2) + (3 2) --> 2
4812 When they are not equals, the function assumes that LOWER is
4813 lesser than UPPER, per `org-element--cache-key-less-p'."
4814 (if (equal lower upper) lower
4815 (let ((lower (if (integerp lower) (list lower) lower))
4816 (upper (if (integerp upper) (list upper) upper))
4817 skip-upper key)
4818 (catch 'exit
4819 (while t
4820 (let ((min (or (car lower) most-negative-fixnum))
4821 (max (cond (skip-upper most-positive-fixnum)
4822 ((car upper))
4823 (t most-positive-fixnum))))
4824 (if (< (1+ min) max)
4825 (let ((mean (+ (ash min -1) (ash max -1) (logand min max 1))))
4826 (throw 'exit (if key (nreverse (cons mean key)) mean)))
4827 (when (and (< min max) (not skip-upper))
4828 ;; When at a given level, LOWER and UPPER differ from
4829 ;; 1, ignore UPPER altogether. Instead create a key
4830 ;; between LOWER and the greatest key with the same
4831 ;; prefix as LOWER so far.
4832 (setq skip-upper t))
4833 (push min key)
4834 (setq lower (cdr lower) upper (cdr upper)))))))))
4836 (defsubst org-element--cache-key-less-p (a b)
4837 "Non-nil if key A is less than key B.
4838 A and B are either integers or lists of integers, as returned by
4839 `org-element--cache-key'."
4840 (if (integerp a) (if (integerp b) (< a b) (<= a (car b)))
4841 (if (integerp b) (< (car a) b)
4842 (catch 'exit
4843 (while (and a b)
4844 (cond ((car-less-than-car a b) (throw 'exit t))
4845 ((car-less-than-car b a) (throw 'exit nil))
4846 (t (setq a (cdr a) b (cdr b)))))
4847 ;; If A is empty, either keys are equal (B is also empty) and
4848 ;; we return nil, or A is lesser than B (B is longer) and we
4849 ;; return a non-nil value.
4851 ;; If A is not empty, B is necessarily empty and A is greater
4852 ;; than B (A is longer). Therefore, return nil.
4853 (and (null a) b)))))
4855 (defun org-element--cache-compare (a b)
4856 "Non-nil when element A is located before element B."
4857 (org-element--cache-key-less-p (org-element--cache-key a)
4858 (org-element--cache-key b)))
4860 (defsubst org-element--cache-root ()
4861 "Return root value in cache.
4862 This function assumes `org-element--cache' is a valid AVL tree."
4863 (avl-tree--node-left (avl-tree--dummyroot org-element--cache)))
4866 ;;;; Tools
4868 (defsubst org-element--cache-active-p ()
4869 "Non-nil when cache is active in current buffer."
4870 (and org-element-use-cache
4871 (or (derived-mode-p 'org-mode) orgstruct-mode)))
4873 (defun org-element--cache-find (pos &optional side)
4874 "Find element in cache starting at POS or before.
4876 POS refers to a buffer position.
4878 When optional argument SIDE is non-nil, the function checks for
4879 elements starting at or past POS instead. If SIDE is `both', the
4880 function returns a cons cell where car is the first element
4881 starting at or before POS and cdr the first element starting
4882 after POS.
4884 The function can only find elements in the synchronized part of
4885 the cache."
4886 (let ((limit (and org-element--cache-sync-requests
4887 (aref (car org-element--cache-sync-requests) 0)))
4888 (node (org-element--cache-root))
4889 lower upper)
4890 (while node
4891 (let* ((element (avl-tree--node-data node))
4892 (begin (org-element-property :begin element)))
4893 (cond
4894 ((and limit
4895 (not (org-element--cache-key-less-p
4896 (org-element--cache-key element) limit)))
4897 (setq node (avl-tree--node-left node)))
4898 ((> begin pos)
4899 (setq upper element
4900 node (avl-tree--node-left node)))
4901 ((< begin pos)
4902 (setq lower element
4903 node (avl-tree--node-right node)))
4904 ;; We found an element in cache starting at POS. If `side'
4905 ;; is `both' we also want the next one in order to generate
4906 ;; a key in-between.
4908 ;; If the element is the first row or item in a table or
4909 ;; a plain list, we always return the table or the plain
4910 ;; list.
4912 ;; In any other case, we return the element found.
4913 ((eq side 'both)
4914 (setq lower element)
4915 (setq node (avl-tree--node-right node)))
4916 ((and (memq (org-element-type element) '(item table-row))
4917 (let ((parent (org-element-property :parent element)))
4918 (and (= (org-element-property :begin element)
4919 (org-element-property :contents-begin parent))
4920 (setq node nil
4921 lower parent
4922 upper parent)))))
4924 (setq node nil
4925 lower element
4926 upper element)))))
4927 (case side
4928 (both (cons lower upper))
4929 ((nil) lower)
4930 (otherwise upper))))
4932 (defun org-element--cache-put (element &optional data)
4933 "Store ELEMENT in current buffer's cache, if allowed.
4934 When optional argument DATA is non-nil, assume is it object data
4935 relative to ELEMENT and store it in the objects cache."
4936 (cond ((not (org-element--cache-active-p)) nil)
4937 ((not data)
4938 (when org-element--cache-sync-requests
4939 ;; During synchronization, first build an appropriate key
4940 ;; for the new element so `avl-tree-enter' can insert it at
4941 ;; the right spot in the cache.
4942 (let ((keys (org-element--cache-find
4943 (org-element-property :begin element) 'both)))
4944 (puthash element
4945 (org-element--cache-generate-key
4946 (and (car keys) (org-element--cache-key (car keys)))
4947 (cond ((cdr keys) (org-element--cache-key (cdr keys)))
4948 (org-element--cache-sync-requests
4949 (aref (car org-element--cache-sync-requests) 0))))
4950 org-element--cache-sync-keys)))
4951 (avl-tree-enter org-element--cache element))
4952 ;; Headlines are not stored in cache, so objects in titles are
4953 ;; not stored either.
4954 ((eq (org-element-type element) 'headline) nil)
4955 (t (puthash element data org-element--cache-objects))))
4957 (defsubst org-element--cache-remove (element)
4958 "Remove ELEMENT from cache.
4959 Assume ELEMENT belongs to cache and that a cache is active."
4960 (avl-tree-delete org-element--cache element)
4961 (remhash element org-element--cache-objects))
4964 ;;;; Synchronization
4966 (defsubst org-element--cache-set-timer (buffer)
4967 "Set idle timer for cache synchronization in BUFFER."
4968 (when org-element--cache-sync-timer
4969 (cancel-timer org-element--cache-sync-timer))
4970 (setq org-element--cache-sync-timer
4971 (run-with-idle-timer
4972 (let ((idle (current-idle-time)))
4973 (if idle (time-add idle org-element-cache-sync-break)
4974 org-element-cache-sync-idle-time))
4976 #'org-element--cache-sync
4977 buffer)))
4979 (defsubst org-element--cache-interrupt-p (time-limit)
4980 "Non-nil when synchronization process should be interrupted.
4981 TIME-LIMIT is a time value or nil."
4982 (and time-limit
4983 (or (input-pending-p)
4984 (time-less-p time-limit (current-time)))))
4986 (defsubst org-element--cache-shift-positions (element offset &optional props)
4987 "Shift ELEMENT properties relative to buffer positions by OFFSET.
4989 Properties containing buffer positions are `:begin', `:end',
4990 `:contents-begin', `:contents-end' and `:structure'. When
4991 optional argument PROPS is a list of keywords, only shift
4992 properties provided in that list.
4994 Properties are modified by side-effect."
4995 (let ((properties (nth 1 element)))
4996 ;; Shift `:structure' property for the first plain list only: it
4997 ;; is the only one that really matters and it prevents from
4998 ;; shifting it more than once.
4999 (when (and (or (not props) (memq :structure props))
5000 (eq (org-element-type element) 'plain-list)
5001 (not (eq (org-element-type (plist-get properties :parent))
5002 'item)))
5003 (dolist (item (plist-get properties :structure))
5004 (incf (car item) offset)
5005 (incf (nth 6 item) offset)))
5006 (dolist (key '(:begin :contents-begin :contents-end :end :post-affiliated))
5007 (let ((value (and (or (not props) (memq key props))
5008 (plist-get properties key))))
5009 (and value (plist-put properties key (+ offset value)))))))
5011 (defun org-element--cache-sync (buffer &optional threshold future-change)
5012 "Synchronize cache with recent modification in BUFFER.
5014 When optional argument THRESHOLD is non-nil, do the
5015 synchronization for all elements starting before or at threshold,
5016 then exit. Otherwise, synchronize cache for as long as
5017 `org-element-cache-sync-duration' or until Emacs leaves idle
5018 state.
5020 FUTURE-CHANGE, when non-nil, is a buffer position where changes
5021 not registered yet in the cache are going to happen. It is used
5022 in `org-element--cache-submit-request', where cache is partially
5023 updated before current modification are actually submitted."
5024 (when (buffer-live-p buffer)
5025 (with-current-buffer buffer
5026 (let ((inhibit-quit t) request next)
5027 (when org-element--cache-sync-timer
5028 (cancel-timer org-element--cache-sync-timer))
5029 (catch 'interrupt
5030 (while org-element--cache-sync-requests
5031 (setq request (car org-element--cache-sync-requests)
5032 next (nth 1 org-element--cache-sync-requests))
5033 (org-element--cache-process-request
5034 request
5035 (and next (aref next 0))
5036 threshold
5037 (and (not threshold)
5038 (time-add (current-time)
5039 org-element-cache-sync-duration))
5040 future-change)
5041 ;; Request processed. Merge current and next offsets and
5042 ;; transfer ending position.
5043 (when next
5044 (incf (aref next 3) (aref request 3))
5045 (aset next 2 (aref request 2)))
5046 (setq org-element--cache-sync-requests
5047 (cdr org-element--cache-sync-requests))))
5048 ;; If more requests are awaiting, set idle timer accordingly.
5049 ;; Otherwise, reset keys.
5050 (if org-element--cache-sync-requests
5051 (org-element--cache-set-timer buffer)
5052 (clrhash org-element--cache-sync-keys))))))
5054 (defun org-element--cache-process-request
5055 (request next threshold time-limit future-change)
5056 "Process synchronization REQUEST for all entries before NEXT.
5058 REQUEST is a vector, built by `org-element--cache-submit-request'.
5060 NEXT is a cache key, as returned by `org-element--cache-key'.
5062 When non-nil, THRESHOLD is a buffer position. Synchronization
5063 stops as soon as a shifted element begins after it.
5065 When non-nil, TIME-LIMIT is a time value. Synchronization stops
5066 after this time or when Emacs exits idle state.
5068 When non-nil, FUTURE-CHANGE is a buffer position where changes
5069 not registered yet in the cache are going to happen. See
5070 `org-element--cache-submit-request' for more information.
5072 Throw `interrupt' if the process stops before completing the
5073 request."
5074 (catch 'quit
5075 (when (= (aref request 5) 0)
5076 ;; Phase 0.
5078 ;; Delete all elements starting after BEG, but not after buffer
5079 ;; position END or past element with key NEXT. Also delete
5080 ;; elements contained within a previously removed element
5081 ;; (stored in `last-container').
5083 ;; At each iteration, we start again at tree root since
5084 ;; a deletion modifies structure of the balanced tree.
5085 (catch 'end-phase
5086 (while t
5087 (when (org-element--cache-interrupt-p time-limit)
5088 (throw 'interrupt nil))
5089 ;; Find first element in cache with key BEG or after it.
5090 (let ((beg (aref request 0))
5091 (end (aref request 2))
5092 (node (org-element--cache-root))
5093 data data-key last-container)
5094 (while node
5095 (let* ((element (avl-tree--node-data node))
5096 (key (org-element--cache-key element)))
5097 (cond
5098 ((org-element--cache-key-less-p key beg)
5099 (setq node (avl-tree--node-right node)))
5100 ((org-element--cache-key-less-p beg key)
5101 (setq data element
5102 data-key key
5103 node (avl-tree--node-left node)))
5104 (t (setq data element
5105 data-key key
5106 node nil)))))
5107 (if data
5108 (let ((pos (org-element-property :begin data)))
5109 (if (if (or (not next)
5110 (org-element--cache-key-less-p data-key next))
5111 (<= pos end)
5112 (and last-container
5113 (let ((up data))
5114 (while (and up (not (eq up last-container)))
5115 (setq up (org-element-property :parent up)))
5116 up)))
5117 (progn (when (and (not last-container)
5118 (> (org-element-property :end data)
5119 end))
5120 (setq last-container data))
5121 (org-element--cache-remove data))
5122 (aset request 0 data-key)
5123 (aset request 1 pos)
5124 (aset request 5 1)
5125 (throw 'end-phase nil)))
5126 ;; No element starting after modifications left in
5127 ;; cache: further processing is futile.
5128 (throw 'quit t))))))
5129 (when (= (aref request 5) 1)
5130 ;; Phase 1.
5132 ;; Phase 0 left a hole in the cache. Some elements after it
5133 ;; could have parents within. For example, in the following
5134 ;; buffer:
5136 ;; - item
5139 ;; Paragraph1
5141 ;; Paragraph2
5143 ;; if we remove a blank line between "item" and "Paragraph1",
5144 ;; everything down to "Paragraph2" is removed from cache. But
5145 ;; the paragraph now belongs to the list, and its `:parent'
5146 ;; property no longer is accurate.
5148 ;; Therefore we need to parse again elements in the hole, or at
5149 ;; least in its last section, so that we can re-parent
5150 ;; subsequent elements, during phase 2.
5152 ;; Note that we only need to get the parent from the first
5153 ;; element in cache after the hole.
5155 ;; When next key is lesser or equal to the current one, delegate
5156 ;; phase 1 processing to next request in order to preserve key
5157 ;; order among requests.
5158 (let ((key (aref request 0)))
5159 (when (and next (not (org-element--cache-key-less-p key next)))
5160 (let ((next-request (nth 1 org-element--cache-sync-requests)))
5161 (aset next-request 0 key)
5162 (aset next-request 1 (aref request 1))
5163 (aset next-request 5 1))
5164 (throw 'quit t)))
5165 ;; Next element will start at its beginning position plus
5166 ;; offset, since it hasn't been shifted yet. Therefore, LIMIT
5167 ;; contains the real beginning position of the first element to
5168 ;; shift and re-parent.
5169 (let ((limit (+ (aref request 1) (aref request 3))))
5170 (cond ((and threshold (> limit threshold)) (throw 'interrupt nil))
5171 ((and future-change (>= limit future-change))
5172 ;; Changes are going to happen around this element and
5173 ;; they will trigger another phase 1 request. Skip the
5174 ;; current one.
5175 (aset request 5 2))
5177 (let ((parent (org-element--parse-to limit t time-limit)))
5178 (aset request 4 parent)
5179 (aset request 5 2))))))
5180 ;; Phase 2.
5182 ;; Shift all elements starting from key START, but before NEXT, by
5183 ;; OFFSET, and re-parent them when appropriate.
5185 ;; Elements are modified by side-effect so the tree structure
5186 ;; remains intact.
5188 ;; Once THRESHOLD, if any, is reached, or once there is an input
5189 ;; pending, exit. Before leaving, the current synchronization
5190 ;; request is updated.
5191 (let ((start (aref request 0))
5192 (offset (aref request 3))
5193 (parent (aref request 4))
5194 (node (org-element--cache-root))
5195 (stack (list nil))
5196 (leftp t)
5197 exit-flag)
5198 ;; No re-parenting nor shifting planned: request is over.
5199 (when (and (not parent) (zerop offset)) (throw 'quit t))
5200 (while node
5201 (let* ((data (avl-tree--node-data node))
5202 (key (org-element--cache-key data)))
5203 (if (and leftp (avl-tree--node-left node)
5204 (not (org-element--cache-key-less-p key start)))
5205 (progn (push node stack)
5206 (setq node (avl-tree--node-left node)))
5207 (unless (org-element--cache-key-less-p key start)
5208 ;; We reached NEXT. Request is complete.
5209 (when (equal key next) (throw 'quit t))
5210 ;; Handle interruption request. Update current request.
5211 (when (or exit-flag (org-element--cache-interrupt-p time-limit))
5212 (aset request 0 key)
5213 (aset request 4 parent)
5214 (throw 'interrupt nil))
5215 ;; Shift element.
5216 (unless (zerop offset)
5217 (org-element--cache-shift-positions data offset)
5218 ;; Shift associated objects data, if any.
5219 (dolist (object-data (gethash data org-element--cache-objects))
5220 (dolist (object (cddr object-data))
5221 (org-element--cache-shift-positions object offset))))
5222 (let ((begin (org-element-property :begin data)))
5223 ;; Update PARENT and re-parent DATA, only when
5224 ;; necessary. Propagate new structures for lists.
5225 (while (and parent
5226 (<= (org-element-property :end parent) begin))
5227 (setq parent (org-element-property :parent parent)))
5228 (cond ((and (not parent) (zerop offset)) (throw 'quit nil))
5229 ((and parent
5230 (let ((p (org-element-property :parent data)))
5231 (or (not p)
5232 (< (org-element-property :begin p)
5233 (org-element-property :begin parent)))))
5234 (org-element-put-property data :parent parent)
5235 (let ((s (org-element-property :structure parent)))
5236 (when (and s (org-element-property :structure data))
5237 (org-element-put-property data :structure s)))))
5238 ;; Cache is up-to-date past THRESHOLD. Request
5239 ;; interruption.
5240 (when (and threshold (> begin threshold)) (setq exit-flag t))))
5241 (setq node (if (setq leftp (avl-tree--node-right node))
5242 (avl-tree--node-right node)
5243 (pop stack))))))
5244 ;; We reached end of tree: synchronization complete.
5245 t)))
5247 (defun org-element--parse-to (pos &optional syncp time-limit)
5248 "Parse elements in current section, down to POS.
5250 Start parsing from the closest between the last known element in
5251 cache or headline above. Return the smallest element containing
5252 POS.
5254 When optional argument SYNCP is non-nil, return the parent of the
5255 element containing POS instead. In that case, it is also
5256 possible to provide TIME-LIMIT, which is a time value specifying
5257 when the parsing should stop. The function throws `interrupt' if
5258 the process stopped before finding the expected result."
5259 (catch 'exit
5260 (org-with-wide-buffer
5261 (goto-char pos)
5262 (let* ((cached (and (org-element--cache-active-p)
5263 (org-element--cache-find pos nil)))
5264 (begin (org-element-property :begin cached))
5265 element next mode)
5266 (cond
5267 ;; Nothing in cache before point: start parsing from first
5268 ;; element following headline above, or first element in
5269 ;; buffer.
5270 ((not cached)
5271 (when (org-with-limited-levels (outline-previous-heading))
5272 (setq mode 'planning)
5273 (forward-line))
5274 (skip-chars-forward " \r\t\n")
5275 (beginning-of-line))
5276 ;; Cache returned exact match: return it.
5277 ((= pos begin)
5278 (throw 'exit (if syncp (org-element-property :parent cached) cached)))
5279 ;; There's a headline between cached value and POS: cached
5280 ;; value is invalid. Start parsing from first element
5281 ;; following the headline.
5282 ((re-search-backward
5283 (org-with-limited-levels org-outline-regexp-bol) begin t)
5284 (forward-line)
5285 (skip-chars-forward " \r\t\n")
5286 (beginning-of-line)
5287 (setq mode 'planning))
5288 ;; Check if CACHED or any of its ancestors contain point.
5290 ;; If there is such an element, we inspect it in order to know
5291 ;; if we return it or if we need to parse its contents.
5292 ;; Otherwise, we just start parsing from current location,
5293 ;; which is right after the top-most element containing
5294 ;; CACHED.
5296 ;; As a special case, if POS is at the end of the buffer, we
5297 ;; want to return the innermost element ending there.
5299 ;; Also, if we find an ancestor and discover that we need to
5300 ;; parse its contents, make sure we don't start from
5301 ;; `:contents-begin', as we would otherwise go past CACHED
5302 ;; again. Instead, in that situation, we will resume parsing
5303 ;; from NEXT, which is located after CACHED or its higher
5304 ;; ancestor not containing point.
5306 (let ((up cached)
5307 (pos (if (= (point-max) pos) (1- pos) pos)))
5308 (goto-char (or (org-element-property :contents-begin cached) begin))
5309 (while (let ((end (org-element-property :end up)))
5310 (and (<= end pos)
5311 (goto-char end)
5312 (setq up (org-element-property :parent up)))))
5313 (cond ((not up))
5314 ((eobp) (setq element up))
5315 (t (setq element up next (point)))))))
5316 ;; Parse successively each element until we reach POS.
5317 (let ((end (or (org-element-property :end element)
5318 (save-excursion
5319 (org-with-limited-levels (outline-next-heading))
5320 (point))))
5321 (parent element))
5322 (while t
5323 (when syncp
5324 (cond ((= (point) pos) (throw 'exit parent))
5325 ((org-element--cache-interrupt-p time-limit)
5326 (throw 'interrupt nil))))
5327 (unless element
5328 (setq element (org-element--current-element
5329 end 'element mode
5330 (org-element-property :structure parent)))
5331 (org-element-put-property element :parent parent)
5332 (org-element--cache-put element))
5333 (let ((elem-end (org-element-property :end element))
5334 (type (org-element-type element)))
5335 (cond
5336 ;; Skip any element ending before point. Also skip
5337 ;; element ending at point (unless it is also the end of
5338 ;; buffer) since we're sure that another element begins
5339 ;; after it.
5340 ((and (<= elem-end pos) (/= (point-max) elem-end))
5341 (goto-char elem-end)
5342 (setq mode (org-element--next-mode type nil)))
5343 ;; A non-greater element contains point: return it.
5344 ((not (memq type org-element-greater-elements))
5345 (throw 'exit element))
5346 ;; Otherwise, we have to decide if ELEMENT really
5347 ;; contains POS. In that case we start parsing from
5348 ;; contents' beginning.
5350 ;; If POS is at contents' beginning but it is also at
5351 ;; the beginning of the first item in a list or a table.
5352 ;; In that case, we need to create an anchor for that
5353 ;; list or table, so return it.
5355 ;; Also, if POS is at the end of the buffer, no element
5356 ;; can start after it, but more than one may end there.
5357 ;; Arbitrarily, we choose to return the innermost of
5358 ;; such elements.
5359 ((let ((cbeg (org-element-property :contents-begin element))
5360 (cend (org-element-property :contents-end element)))
5361 (when (or syncp
5362 (and cbeg cend
5363 (or (< cbeg pos)
5364 (and (= cbeg pos)
5365 (not (memq type '(plain-list table)))))
5366 (or (> cend pos)
5367 (and (= cend pos) (= (point-max) pos)))))
5368 (goto-char (or next cbeg))
5369 (setq next nil
5370 mode (org-element--next-mode type t)
5371 parent element
5372 end cend))))
5373 ;; Otherwise, return ELEMENT as it is the smallest
5374 ;; element containing POS.
5375 (t (throw 'exit element))))
5376 (setq element nil)))))))
5379 ;;;; Staging Buffer Changes
5381 (defconst org-element--cache-sensitive-re
5382 (concat
5383 org-outline-regexp-bol "\\|"
5384 "\\\\end{[A-Za-z0-9*]+}[ \t]*$" "\\|"
5385 "^[ \t]*\\(?:"
5386 "#\\+\\(?:BEGIN[:_]\\|END\\(?:_\\|:?[ \t]*$\\)\\)" "\\|"
5387 "\\\\begin{[A-Za-z0-9*]+}" "\\|"
5388 ":\\(?:\\w\\|[-_]\\)+:[ \t]*$"
5389 "\\)")
5390 "Regexp matching a sensitive line, structure wise.
5391 A sensitive line is a headline, inlinetask, block, drawer, or
5392 latex-environment boundary. When such a line is modified,
5393 structure changes in the document may propagate in the whole
5394 section, possibly making cache invalid.")
5396 (defvar org-element--cache-change-warning nil
5397 "Non-nil when a sensitive line is about to be changed.
5398 It is a symbol among nil, t and `headline'.")
5400 (defun org-element--cache-before-change (beg end)
5401 "Request extension of area going to be modified if needed.
5402 BEG and END are the beginning and end of the range of changed
5403 text. See `before-change-functions' for more information."
5404 (when (org-element--cache-active-p)
5405 (org-with-wide-buffer
5406 (goto-char beg)
5407 (beginning-of-line)
5408 (let ((bottom (save-excursion (goto-char end) (line-end-position))))
5409 (setq org-element--cache-change-warning
5410 (save-match-data
5411 (if (and (org-with-limited-levels (org-at-heading-p))
5412 (= (line-end-position) bottom))
5413 'headline
5414 (let ((case-fold-search t))
5415 (re-search-forward
5416 org-element--cache-sensitive-re bottom t)))))))))
5418 (defun org-element--cache-after-change (beg end pre)
5419 "Update buffer modifications for current buffer.
5420 BEG and END are the beginning and end of the range of changed
5421 text, and the length in bytes of the pre-change text replaced by
5422 that range. See `after-change-functions' for more information."
5423 (when (org-element--cache-active-p)
5424 (org-with-wide-buffer
5425 (goto-char beg)
5426 (beginning-of-line)
5427 (save-match-data
5428 (let ((top (point))
5429 (bottom (save-excursion (goto-char end) (line-end-position))))
5430 ;; Determine if modified area needs to be extended, according
5431 ;; to both previous and current state. We make a special
5432 ;; case for headline editing: if a headline is modified but
5433 ;; not removed, do not extend.
5434 (when (case org-element--cache-change-warning
5435 ((t) t)
5436 (headline
5437 (not (and (org-with-limited-levels (org-at-heading-p))
5438 (= (line-end-position) bottom))))
5439 (otherwise
5440 (let ((case-fold-search t))
5441 (re-search-forward
5442 org-element--cache-sensitive-re bottom t))))
5443 ;; Effectively extend modified area.
5444 (org-with-limited-levels
5445 (setq top (progn (goto-char top)
5446 (when (outline-previous-heading) (forward-line))
5447 (point)))
5448 (setq bottom (progn (goto-char bottom)
5449 (if (outline-next-heading) (1- (point))
5450 (point))))))
5451 ;; Store synchronization request.
5452 (let ((offset (- end beg pre)))
5453 (org-element--cache-submit-request top (- bottom offset) offset)))))
5454 ;; Activate a timer to process the request during idle time.
5455 (org-element--cache-set-timer (current-buffer))))
5457 (defun org-element--cache-for-removal (beg end offset)
5458 "Return first element to remove from cache.
5460 BEG and END are buffer positions delimiting buffer modifications.
5461 OFFSET is the size of the changes.
5463 Returned element is usually the first element in cache containing
5464 any position between BEG and END. As an exception, greater
5465 elements around the changes that are robust to contents
5466 modifications are preserved and updated according to the
5467 changes."
5468 (let* ((elements (org-element--cache-find (1- beg) 'both))
5469 (before (car elements))
5470 (after (cdr elements)))
5471 (if (not before) after
5472 (let ((up before)
5473 (robust-flag t))
5474 (while up
5475 (if (let ((type (org-element-type up)))
5476 (and (or (memq type '(center-block dynamic-block quote-block
5477 special-block))
5478 ;; Drawers named "PROPERTIES" are probably
5479 ;; a properties drawer being edited. Force
5480 ;; parsing to check if editing is over.
5481 (and (eq type 'drawer)
5482 (not (string=
5483 (org-element-property :drawer-name up)
5484 "PROPERTIES"))))
5485 (let ((cbeg (org-element-property :contents-begin up)))
5486 (and cbeg
5487 (<= cbeg beg)
5488 (> (org-element-property :contents-end up) end)))))
5489 ;; UP is a robust greater element containing changes.
5490 ;; We only need to extend its ending boundaries.
5491 (org-element--cache-shift-positions
5492 up offset '(:contents-end :end))
5493 (setq before up)
5494 (when robust-flag (setq robust-flag nil)))
5495 (setq up (org-element-property :parent up)))
5496 ;; We're at top level element containing ELEMENT: if it's
5497 ;; altered by buffer modifications, it is first element in
5498 ;; cache to be removed. Otherwise, that first element is the
5499 ;; following one.
5501 ;; As a special case, do not remove BEFORE if it is a robust
5502 ;; container for current changes.
5503 (if (or (< (org-element-property :end before) beg) robust-flag) after
5504 before)))))
5506 (defun org-element--cache-submit-request (beg end offset)
5507 "Submit a new cache synchronization request for current buffer.
5508 BEG and END are buffer positions delimiting the minimal area
5509 where cache data should be removed. OFFSET is the size of the
5510 change, as an integer."
5511 (let ((next (car org-element--cache-sync-requests))
5512 delete-to delete-from)
5513 (if (and next
5514 (zerop (aref next 5))
5515 (> (setq delete-to (+ (aref next 2) (aref next 3))) end)
5516 (<= (setq delete-from (aref next 1)) end))
5517 ;; Current changes can be merged with first sync request: we
5518 ;; can save a partial cache synchronization.
5519 (progn
5520 (incf (aref next 3) offset)
5521 ;; If last change happened within area to be removed, extend
5522 ;; boundaries of robust parents, if any. Otherwise, find
5523 ;; first element to remove and update request accordingly.
5524 (if (> beg delete-from)
5525 (let ((up (aref next 4)))
5526 (while up
5527 (org-element--cache-shift-positions
5528 up offset '(:contents-end :end))
5529 (setq up (org-element-property :parent up))))
5530 (let ((first (org-element--cache-for-removal beg delete-to offset)))
5531 (when first
5532 (aset next 0 (org-element--cache-key first))
5533 (aset next 1 (org-element-property :begin first))
5534 (aset next 4 (org-element-property :parent first))))))
5535 ;; Ensure cache is correct up to END. Also make sure that NEXT,
5536 ;; if any, is no longer a 0-phase request, thus ensuring that
5537 ;; phases are properly ordered. We need to provide OFFSET as
5538 ;; optional parameter since current modifications are not known
5539 ;; yet to the otherwise correct part of the cache (i.e, before
5540 ;; the first request).
5541 (when next (org-element--cache-sync (current-buffer) end beg))
5542 (let ((first (org-element--cache-for-removal beg end offset)))
5543 (if first
5544 (push (let ((beg (org-element-property :begin first))
5545 (key (org-element--cache-key first)))
5546 (cond
5547 ;; When changes happen before the first known
5548 ;; element, re-parent and shift the rest of the
5549 ;; cache.
5550 ((> beg end) (vector key beg nil offset nil 1))
5551 ;; Otherwise, we find the first non robust
5552 ;; element containing END. All elements between
5553 ;; FIRST and this one are to be removed.
5554 ((let ((first-end (org-element-property :end first)))
5555 (and (> first-end end)
5556 (vector key beg first-end offset first 0))))
5558 (let* ((element (org-element--cache-find end))
5559 (end (org-element-property :end element))
5560 (up element))
5561 (while (and (setq up (org-element-property :parent up))
5562 (>= (org-element-property :begin up) beg))
5563 (setq end (org-element-property :end up)
5564 element up))
5565 (vector key beg end offset element 0)))))
5566 org-element--cache-sync-requests)
5567 ;; No element to remove. No need to re-parent either.
5568 ;; Simply shift additional elements, if any, by OFFSET.
5569 (when org-element--cache-sync-requests
5570 (incf (aref (car org-element--cache-sync-requests) 3) offset)))))))
5573 ;;;; Public Functions
5575 ;;;###autoload
5576 (defun org-element-cache-reset (&optional all)
5577 "Reset cache in current buffer.
5578 When optional argument ALL is non-nil, reset cache in all Org
5579 buffers."
5580 (interactive "P")
5581 (dolist (buffer (if all (buffer-list) (list (current-buffer))))
5582 (with-current-buffer buffer
5583 (when (org-element--cache-active-p)
5584 (org-set-local 'org-element--cache
5585 (avl-tree-create #'org-element--cache-compare))
5586 (org-set-local 'org-element--cache-objects (make-hash-table :test #'eq))
5587 (org-set-local 'org-element--cache-sync-keys
5588 (make-hash-table :weakness 'key :test #'eq))
5589 (org-set-local 'org-element--cache-change-warning nil)
5590 (org-set-local 'org-element--cache-sync-requests nil)
5591 (org-set-local 'org-element--cache-sync-timer nil)
5592 (add-hook 'before-change-functions
5593 #'org-element--cache-before-change nil t)
5594 (add-hook 'after-change-functions
5595 #'org-element--cache-after-change nil t)))))
5597 ;;;###autoload
5598 (defun org-element-cache-refresh (pos)
5599 "Refresh cache at position POS."
5600 (when (org-element--cache-active-p)
5601 (org-element--cache-sync (current-buffer) pos)
5602 (org-element--cache-submit-request pos pos 0)
5603 (org-element--cache-set-timer (current-buffer))))
5607 ;;; The Toolbox
5609 ;; The first move is to implement a way to obtain the smallest element
5610 ;; containing point. This is the job of `org-element-at-point'. It
5611 ;; basically jumps back to the beginning of section containing point
5612 ;; and proceed, one element after the other, with
5613 ;; `org-element--current-element' until the container is found. Note:
5614 ;; When using `org-element-at-point', secondary values are never
5615 ;; parsed since the function focuses on elements, not on objects.
5617 ;; At a deeper level, `org-element-context' lists all elements and
5618 ;; objects containing point.
5620 ;; `org-element-nested-p' and `org-element-swap-A-B' may be used
5621 ;; internally by navigation and manipulation tools.
5624 ;;;###autoload
5625 (defun org-element-at-point ()
5626 "Determine closest element around point.
5628 Return value is a list like (TYPE PROPS) where TYPE is the type
5629 of the element and PROPS a plist of properties associated to the
5630 element.
5632 Possible types are defined in `org-element-all-elements'.
5633 Properties depend on element or object type, but always include
5634 `:begin', `:end', `:parent' and `:post-blank' properties.
5636 As a special case, if point is at the very beginning of the first
5637 item in a list or sub-list, returned element will be that list
5638 instead of the item. Likewise, if point is at the beginning of
5639 the first row of a table, returned element will be the table
5640 instead of the first row.
5642 When point is at the end of the buffer, return the innermost
5643 element ending there."
5644 (org-with-wide-buffer
5645 (let ((origin (point)))
5646 (end-of-line)
5647 (skip-chars-backward " \r\t\n")
5648 (cond
5649 ;; Within blank lines at the beginning of buffer, return nil.
5650 ((bobp) nil)
5651 ;; Within blank lines right after a headline, return that
5652 ;; headline.
5653 ((org-with-limited-levels (org-at-heading-p))
5654 (beginning-of-line)
5655 (org-element-headline-parser (point-max) t))
5656 ;; Otherwise parse until we find element containing ORIGIN.
5658 (when (org-element--cache-active-p)
5659 (if (not org-element--cache) (org-element-cache-reset)
5660 (org-element--cache-sync (current-buffer) origin)))
5661 (org-element--parse-to origin))))))
5663 ;;;###autoload
5664 (defun org-element-context (&optional element)
5665 "Return smallest element or object around point.
5667 Return value is a list like (TYPE PROPS) where TYPE is the type
5668 of the element or object and PROPS a plist of properties
5669 associated to it.
5671 Possible types are defined in `org-element-all-elements' and
5672 `org-element-all-objects'. Properties depend on element or
5673 object type, but always include `:begin', `:end', `:parent' and
5674 `:post-blank'.
5676 As a special case, if point is right after an object and not at
5677 the beginning of any other object, return that object.
5679 Optional argument ELEMENT, when non-nil, is the closest element
5680 containing point, as returned by `org-element-at-point'.
5681 Providing it allows for quicker computation."
5682 (catch 'objects-forbidden
5683 (org-with-wide-buffer
5684 (let* ((pos (point))
5685 (element (or element (org-element-at-point)))
5686 (type (org-element-type element)))
5687 ;; If point is inside an element containing objects or
5688 ;; a secondary string, narrow buffer to the container and
5689 ;; proceed with parsing. Otherwise, return ELEMENT.
5690 (cond
5691 ;; At a parsed affiliated keyword, check if we're inside main
5692 ;; or dual value.
5693 ((let ((post (org-element-property :post-affiliated element)))
5694 (and post (< pos post)))
5695 (beginning-of-line)
5696 (let ((case-fold-search t)) (looking-at org-element--affiliated-re))
5697 (cond
5698 ((not (member-ignore-case (match-string 1)
5699 org-element-parsed-keywords))
5700 (throw 'objects-forbidden element))
5701 ((< (match-end 0) pos)
5702 (narrow-to-region (match-end 0) (line-end-position)))
5703 ((and (match-beginning 2)
5704 (>= pos (match-beginning 2))
5705 (< pos (match-end 2)))
5706 (narrow-to-region (match-beginning 2) (match-end 2)))
5707 (t (throw 'objects-forbidden element)))
5708 ;; Also change type to retrieve correct restrictions.
5709 (setq type 'keyword))
5710 ;; At an item, objects can only be located within tag, if any.
5711 ((eq type 'item)
5712 (let ((tag (org-element-property :tag element)))
5713 (if (not tag) (throw 'objects-forbidden element)
5714 (beginning-of-line)
5715 (search-forward tag (line-end-position))
5716 (goto-char (match-beginning 0))
5717 (if (and (>= pos (point)) (< pos (match-end 0)))
5718 (narrow-to-region (point) (match-end 0))
5719 (throw 'objects-forbidden element)))))
5720 ;; At an headline or inlinetask, objects are in title.
5721 ((memq type '(headline inlinetask))
5722 (goto-char (org-element-property :begin element))
5723 (skip-chars-forward "*")
5724 (if (and (> pos (point)) (< pos (line-end-position)))
5725 (narrow-to-region (point) (line-end-position))
5726 (throw 'objects-forbidden element)))
5727 ;; At a paragraph, a table-row or a verse block, objects are
5728 ;; located within their contents.
5729 ((memq type '(paragraph table-row verse-block))
5730 (let ((cbeg (org-element-property :contents-begin element))
5731 (cend (org-element-property :contents-end element)))
5732 ;; CBEG is nil for table rules.
5733 (if (and cbeg cend (>= pos cbeg)
5734 (or (< pos cend) (and (= pos cend) (eobp))))
5735 (narrow-to-region cbeg cend)
5736 (throw 'objects-forbidden element))))
5737 ;; At a planning line, if point is at a timestamp, return it,
5738 ;; otherwise, return element.
5739 ((eq type 'planning)
5740 (dolist (p '(:closed :deadline :scheduled))
5741 (let ((timestamp (org-element-property p element)))
5742 (when (and timestamp
5743 (<= (org-element-property :begin timestamp) pos)
5744 (> (org-element-property :end timestamp) pos))
5745 (throw 'objects-forbidden timestamp))))
5746 ;; All other locations cannot contain objects: bail out.
5747 (throw 'objects-forbidden element))
5748 (t (throw 'objects-forbidden element)))
5749 (goto-char (point-min))
5750 (let ((restriction (org-element-restriction type))
5751 (parent element)
5752 (cache (cond ((not (org-element--cache-active-p)) nil)
5753 (org-element--cache-objects
5754 (gethash element org-element--cache-objects))
5755 (t (org-element-cache-reset) nil)))
5756 next object-data last)
5757 (prog1
5758 (catch 'exit
5759 (while t
5760 ;; When entering PARENT for the first time, get list
5761 ;; of objects within known so far. Store it in
5762 ;; OBJECT-DATA.
5763 (unless next
5764 (let ((data (assq parent cache)))
5765 (if data (setq object-data data)
5766 (push (setq object-data (list parent nil)) cache))))
5767 ;; Find NEXT object for analysis.
5768 (catch 'found
5769 ;; If NEXT is non-nil, we already exhausted the
5770 ;; cache so we can parse buffer to find the object
5771 ;; after it.
5772 (if next (setq next (org-element--object-lex restriction))
5773 ;; Otherwise, check if cache can help us.
5774 (let ((objects (cddr object-data))
5775 (completep (nth 1 object-data)))
5776 (cond
5777 ((and (not objects) completep) (throw 'exit parent))
5778 ((not objects)
5779 (setq next (org-element--object-lex restriction)))
5781 (let ((cache-limit
5782 (org-element-property :end (car objects))))
5783 (if (>= cache-limit pos)
5784 ;; Cache contains the information needed.
5785 (dolist (object objects (throw 'exit parent))
5786 (when (<= (org-element-property :begin object)
5787 pos)
5788 (if (>= (org-element-property :end object)
5789 pos)
5790 (throw 'found (setq next object))
5791 (throw 'exit parent))))
5792 (goto-char cache-limit)
5793 (setq next
5794 (org-element--object-lex restriction))))))))
5795 ;; If we have a new object to analyze, store it in
5796 ;; cache. Otherwise record that there is nothing
5797 ;; more to parse in this element at this depth.
5798 (if next
5799 (progn (org-element-put-property next :parent parent)
5800 (push next (cddr object-data)))
5801 (setcar (cdr object-data) t)))
5802 ;; Process NEXT, if any, in order to know if we need
5803 ;; to skip it, return it or move into it.
5804 (if (or (not next) (> (org-element-property :begin next) pos))
5805 (throw 'exit (or last parent))
5806 (let ((end (org-element-property :end next))
5807 (cbeg (org-element-property :contents-begin next))
5808 (cend (org-element-property :contents-end next)))
5809 (cond
5810 ;; Skip objects ending before point. Also skip
5811 ;; objects ending at point unless it is also the
5812 ;; end of buffer, since we want to return the
5813 ;; innermost object.
5814 ((and (<= end pos) (/= (point-max) end))
5815 (goto-char end)
5816 ;; For convenience, when object ends at POS,
5817 ;; without any space, store it in LAST, as we
5818 ;; will return it if no object starts here.
5819 (when (and (= end pos)
5820 (not (memq (char-before) '(?\s ?\t))))
5821 (setq last next)))
5822 ;; If POS is within a container object, move
5823 ;; into that object.
5824 ((and cbeg cend
5825 (>= pos cbeg)
5826 (or (< pos cend)
5827 ;; At contents' end, if there is no
5828 ;; space before point, also move into
5829 ;; object, for consistency with
5830 ;; convenience feature above.
5831 (and (= pos cend)
5832 (or (= (point-max) pos)
5833 (not (memq (char-before pos)
5834 '(?\s ?\t)))))))
5835 (goto-char cbeg)
5836 (narrow-to-region (point) cend)
5837 (setq parent next
5838 restriction (org-element-restriction next)
5839 next nil
5840 object-data nil))
5841 ;; Otherwise, return NEXT.
5842 (t (throw 'exit next)))))))
5843 ;; Store results in cache, if applicable.
5844 (org-element--cache-put element cache)))))))
5846 (defun org-element-lineage (blob &optional types with-self)
5847 "List all ancestors of a given element or object.
5849 BLOB is an object or element.
5851 When optional argument TYPES is a list of symbols, return the
5852 first element or object in the lineage whose type belongs to that
5853 list.
5855 When optional argument WITH-SELF is non-nil, lineage includes
5856 BLOB itself as the first element, and TYPES, if provided, also
5857 apply to it.
5859 When BLOB is obtained through `org-element-context' or
5860 `org-element-at-point', only ancestors from its section can be
5861 found. There is no such limitation when BLOB belongs to a full
5862 parse tree."
5863 (let ((up (if with-self blob (org-element-property :parent blob)))
5864 ancestors)
5865 (while (and up (not (memq (org-element-type up) types)))
5866 (unless types (push up ancestors))
5867 (setq up (org-element-property :parent up)))
5868 (if types up (nreverse ancestors))))
5870 (defun org-element-nested-p (elem-A elem-B)
5871 "Non-nil when elements ELEM-A and ELEM-B are nested."
5872 (let ((beg-A (org-element-property :begin elem-A))
5873 (beg-B (org-element-property :begin elem-B))
5874 (end-A (org-element-property :end elem-A))
5875 (end-B (org-element-property :end elem-B)))
5876 (or (and (>= beg-A beg-B) (<= end-A end-B))
5877 (and (>= beg-B beg-A) (<= end-B end-A)))))
5879 (defun org-element-swap-A-B (elem-A elem-B)
5880 "Swap elements ELEM-A and ELEM-B.
5881 Assume ELEM-B is after ELEM-A in the buffer. Leave point at the
5882 end of ELEM-A."
5883 (goto-char (org-element-property :begin elem-A))
5884 ;; There are two special cases when an element doesn't start at bol:
5885 ;; the first paragraph in an item or in a footnote definition.
5886 (let ((specialp (not (bolp))))
5887 ;; Only a paragraph without any affiliated keyword can be moved at
5888 ;; ELEM-A position in such a situation. Note that the case of
5889 ;; a footnote definition is impossible: it cannot contain two
5890 ;; paragraphs in a row because it cannot contain a blank line.
5891 (if (and specialp
5892 (or (not (eq (org-element-type elem-B) 'paragraph))
5893 (/= (org-element-property :begin elem-B)
5894 (org-element-property :contents-begin elem-B))))
5895 (error "Cannot swap elements"))
5896 ;; In a special situation, ELEM-A will have no indentation. We'll
5897 ;; give it ELEM-B's (which will in, in turn, have no indentation).
5898 (let* ((ind-B (when specialp
5899 (goto-char (org-element-property :begin elem-B))
5900 (org-get-indentation)))
5901 (beg-A (org-element-property :begin elem-A))
5902 (end-A (save-excursion
5903 (goto-char (org-element-property :end elem-A))
5904 (skip-chars-backward " \r\t\n")
5905 (point-at-eol)))
5906 (beg-B (org-element-property :begin elem-B))
5907 (end-B (save-excursion
5908 (goto-char (org-element-property :end elem-B))
5909 (skip-chars-backward " \r\t\n")
5910 (point-at-eol)))
5911 ;; Store inner overlays responsible for visibility status.
5912 ;; We also need to store their boundaries as they will be
5913 ;; removed from buffer.
5914 (overlays
5915 (cons
5916 (delq nil
5917 (mapcar (lambda (o)
5918 (and (>= (overlay-start o) beg-A)
5919 (<= (overlay-end o) end-A)
5920 (list o (overlay-start o) (overlay-end o))))
5921 (overlays-in beg-A end-A)))
5922 (delq nil
5923 (mapcar (lambda (o)
5924 (and (>= (overlay-start o) beg-B)
5925 (<= (overlay-end o) end-B)
5926 (list o (overlay-start o) (overlay-end o))))
5927 (overlays-in beg-B end-B)))))
5928 ;; Get contents.
5929 (body-A (buffer-substring beg-A end-A))
5930 (body-B (delete-and-extract-region beg-B end-B)))
5931 (goto-char beg-B)
5932 (when specialp
5933 (setq body-B (replace-regexp-in-string "\\`[ \t]*" "" body-B))
5934 (org-indent-to-column ind-B))
5935 (insert body-A)
5936 ;; Restore ex ELEM-A overlays.
5937 (let ((offset (- beg-B beg-A)))
5938 (dolist (o (car overlays))
5939 (move-overlay (car o) (+ (nth 1 o) offset) (+ (nth 2 o) offset)))
5940 (goto-char beg-A)
5941 (delete-region beg-A end-A)
5942 (insert body-B)
5943 ;; Restore ex ELEM-B overlays.
5944 (dolist (o (cdr overlays))
5945 (move-overlay (car o) (- (nth 1 o) offset) (- (nth 2 o) offset))))
5946 (goto-char (org-element-property :end elem-B)))))
5948 (defun org-element-remove-indentation (s &optional n)
5949 "Remove maximum common indentation in string S and return it.
5950 When optional argument N is a positive integer, remove exactly
5951 that much characters from indentation, if possible, or return
5952 S as-is otherwise. Unlike to `org-remove-indentation', this
5953 function doesn't call `untabify' on S."
5954 (catch 'exit
5955 (with-temp-buffer
5956 (insert s)
5957 (goto-char (point-min))
5958 ;; Find maximum common indentation, if not specified.
5959 (setq n (or n
5960 (let ((min-ind (point-max)))
5961 (save-excursion
5962 (while (re-search-forward "^[ \t]*\\S-" nil t)
5963 (let ((ind (1- (current-column))))
5964 (if (zerop ind) (throw 'exit s)
5965 (setq min-ind (min min-ind ind))))))
5966 min-ind)))
5967 (if (zerop n) s
5968 ;; Remove exactly N indentation, but give up if not possible.
5969 (while (not (eobp))
5970 (let ((ind (progn (skip-chars-forward " \t") (current-column))))
5971 (cond ((eolp) (delete-region (line-beginning-position) (point)))
5972 ((< ind n) (throw 'exit s))
5973 (t (org-indent-line-to (- ind n))))
5974 (forward-line)))
5975 (buffer-string)))))
5979 (provide 'org-element)
5981 ;; Local variables:
5982 ;; generated-autoload-file: "org-loaddefs.el"
5983 ;; End:
5985 ;;; org-element.el ends here