org-id.el 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751
  1. ;;; org-id.el --- Global identifiers for Org entries -*- lexical-binding: t; -*-
  2. ;;
  3. ;; Copyright (C) 2008-2021 Free Software Foundation, Inc.
  4. ;;
  5. ;; Author: Carsten Dominik <carsten at orgmode dot org>
  6. ;; Keywords: outlines, hypermedia, calendar, wp
  7. ;; Homepage: https://orgmode.org
  8. ;;
  9. ;; This file is part of GNU Emacs.
  10. ;;
  11. ;; GNU Emacs is free software: you can redistribute it and/or modify
  12. ;; it under the terms of the GNU General Public License as published by
  13. ;; the Free Software Foundation, either version 3 of the License, or
  14. ;; (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.
  19. ;; You should have received a copy of the GNU General Public License
  20. ;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
  21. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  22. ;;
  23. ;;; Commentary:
  24. ;; This file implements globally unique identifiers for Org entries.
  25. ;; Identifiers are stored in the entry as an :ID: property. Functions
  26. ;; are provided that create and retrieve such identifiers, and that find
  27. ;; entries based on the identifier.
  28. ;; Identifiers consist of a prefix (default "Org" given by the variable
  29. ;; `org-id-prefix') and a unique part that can be created by a number
  30. ;; of different methods, see the variable `org-id-method'.
  31. ;; Org has a builtin method that uses a compact encoding of the creation
  32. ;; time of the ID, with microsecond accuracy. This virtually
  33. ;; guarantees globally unique identifiers, even if several people are
  34. ;; creating IDs at the same time in files that will eventually be used
  35. ;; together.
  36. ;;
  37. ;; By default Org uses UUIDs as global unique identifiers.
  38. ;;
  39. ;; This file defines the following API:
  40. ;;
  41. ;; org-id-get-create
  42. ;; Create an ID for the entry at point if it does not yet have one.
  43. ;; Returns the ID (old or new). This function can be used
  44. ;; interactively, with prefix argument the creation of a new ID is
  45. ;; forced, even if there was an old one.
  46. ;;
  47. ;; org-id-get
  48. ;; Get the ID property of an entry. Using appropriate arguments
  49. ;; to the function, it can also create the ID for this entry.
  50. ;;
  51. ;; org-id-goto
  52. ;; Command to go to a specific ID, this command can be used
  53. ;; interactively.
  54. ;;
  55. ;; org-id-get-with-outline-path-completion
  56. ;; Retrieve the ID of an entry, using outline path completion.
  57. ;; This function can work for multiple files.
  58. ;;
  59. ;; org-id-get-with-outline-drilling
  60. ;; Retrieve the ID of an entry, using outline path completion.
  61. ;; This function only works for the current file.
  62. ;;
  63. ;; org-id-find
  64. ;; Find the location of an entry with specific id.
  65. ;;
  66. ;;; Code:
  67. (require 'org)
  68. (require 'org-refile)
  69. (require 'ol)
  70. (declare-function message-make-fqdn "message" ())
  71. (declare-function org-goto-location "org-goto" (&optional _buf help))
  72. ;;; Customization
  73. (defgroup org-id nil
  74. "Options concerning global entry identifiers in Org mode."
  75. :tag "Org ID"
  76. :group 'org)
  77. (defcustom org-id-link-to-org-use-id nil
  78. "Non-nil means storing a link to an Org file will use entry IDs.
  79. \\<org-mode-map>
  80. The variable can have the following values:
  81. t Create an ID if needed to make a link to the current entry.
  82. create-if-interactive
  83. If `org-store-link' is called directly (interactively, as a user
  84. command), do create an ID to support the link. But when doing the
  85. job for capture, only use the ID if it already exists. The
  86. purpose of this setting is to avoid proliferation of unwanted
  87. IDs, just because you happen to be in an Org file when you
  88. call `org-capture' that automatically and preemptively creates a
  89. link. If you do want to get an ID link in a capture template to
  90. an entry not having an ID, create it first by explicitly creating
  91. a link to it, using `\\[org-store-link]' first.
  92. create-if-interactive-and-no-custom-id
  93. Like create-if-interactive, but do not create an ID if there is
  94. a CUSTOM_ID property defined in the entry.
  95. use-existing
  96. Use existing ID, do not create one.
  97. nil Never use an ID to make a link, instead link using a text search for
  98. the headline text."
  99. :group 'org-link-store
  100. :group 'org-id
  101. :version "24.3"
  102. :type '(choice
  103. (const :tag "Create ID to make link" t)
  104. (const :tag "Create if storing link interactively"
  105. create-if-interactive)
  106. (const :tag "Create if storing link interactively and no CUSTOM_ID is present"
  107. create-if-interactive-and-no-custom-id)
  108. (const :tag "Only use existing" use-existing)
  109. (const :tag "Do not use ID to create link" nil)))
  110. (defcustom org-id-uuid-program "uuidgen"
  111. "The uuidgen program."
  112. :group 'org-id
  113. :type 'string)
  114. (defcustom org-id-ts-format "%Y%m%dT%H%M%S.%6N"
  115. "Default format for IDs generated using `ts' `org-id-method'.
  116. The format should be suitable to pass as an argument to `format-time-string'."
  117. :type 'string
  118. :package-version '(Org . "9.5"))
  119. (defcustom org-id-method 'uuid
  120. "The method that should be used to create new IDs.
  121. An ID will consist of the optional prefix specified in `org-id-prefix',
  122. and a unique part created by the method this variable specifies.
  123. Allowed values are:
  124. org Org's own internal method, using an encoding of the current time to
  125. microsecond accuracy, and optionally the current domain of the
  126. computer. See the variable `org-id-include-domain'.
  127. uuid Create random (version 4) UUIDs. If the program defined in
  128. `org-id-uuid-program' is available it is used to create the ID.
  129. Otherwise an internal functions is used.
  130. ts Create ID's based on ISO8601 timestamps (without separators
  131. and without timezone, local time). Precision down to seconds."
  132. :group 'org-id
  133. :type '(choice
  134. (const :tag "Org's internal method" org)
  135. (const :tag "external: uuidgen" uuid)
  136. (const :tag "ISO8601 timestamp" ts)))
  137. (defcustom org-id-prefix nil
  138. "The prefix for IDs.
  139. This may be a string, or it can be nil to indicate that no prefix is required.
  140. When a string, the string should have no space characters as IDs are expected
  141. to have no space characters in them."
  142. :group 'org-id
  143. :type '(choice
  144. (const :tag "No prefix")
  145. (string :tag "Prefix")))
  146. (defcustom org-id-include-domain nil
  147. "Non-nil means add the domain name to new IDs.
  148. This ensures global uniqueness of IDs, and is also suggested by
  149. the relevant RFCs. This is relevant only if `org-id-method' is
  150. `org' or `ts'. When uuidgen is used, the domain will never be added.
  151. The default is to not use this because we have no really good way to get
  152. the true domain, and Org entries will normally not be shared with enough
  153. people to make this necessary."
  154. :group 'org-id
  155. :type 'boolean)
  156. (defcustom org-id-track-globally t
  157. "Non-nil means track IDs through files, so that links work globally.
  158. This work by maintaining a hash table for IDs and writing this table
  159. to disk when exiting Emacs. Because of this, it works best if you use
  160. a single Emacs process, not many.
  161. When nil, IDs are not tracked. Links to IDs will still work within
  162. a buffer, but not if the entry is located in another file.
  163. IDs can still be used if the entry with the id is in the same file as
  164. the link."
  165. :group 'org-id
  166. :type 'boolean)
  167. (defcustom org-id-locations-file (convert-standard-filename
  168. (concat user-emacs-directory ".org-id-locations"))
  169. "The file for remembering in which file an ID was defined.
  170. This variable is only relevant when `org-id-track-globally' is set."
  171. :group 'org-id
  172. :type 'file)
  173. (defcustom org-id-locations-file-relative nil
  174. "Determines if org-id-locations should be stored as relative links.
  175. Non-nil means that links to locations are stored as links
  176. relative to the location of where `org-id-locations-file' is
  177. stored.
  178. Nil means to store absolute paths to files.
  179. This customization is useful when folders are shared across
  180. systems but mounted at different roots. Relative path to
  181. `org-id-locations-file' still has to be maintained across
  182. systems."
  183. :group 'org-id
  184. :type 'boolean
  185. :package-version '(Org . "9.3"))
  186. (defvar org-id-locations nil
  187. "List of files with IDs in those files.")
  188. (defvar org-id-files nil
  189. "List of files that contain IDs.")
  190. (defcustom org-id-extra-files 'org-agenda-text-search-extra-files
  191. "Files to be searched for IDs, besides the agenda files.
  192. When Org reparses files to remake the list of files and IDs it is tracking,
  193. it will normally scan the agenda files, the archives related to agenda files,
  194. any files that are listed as ID containing in the current register, and
  195. any Org file currently visited by Emacs.
  196. You can list additional files here.
  197. This variable is only relevant when `org-id-track-globally' is set."
  198. :group 'org-id
  199. :type
  200. '(choice
  201. (symbol :tag "Variable")
  202. (repeat :tag "List of files"
  203. (file))))
  204. (defcustom org-id-search-archives t
  205. "Non-nil means search also the archive files of agenda files for entries.
  206. This is a possibility to reduce overhead, but it means that entries moved
  207. to the archives can no longer be found by ID.
  208. This variable is only relevant when `org-id-track-globally' is set."
  209. :group 'org-id
  210. :type 'boolean)
  211. ;;; The API functions
  212. ;;;###autoload
  213. (defun org-id-get-create (&optional force)
  214. "Create an ID for the current entry and return it.
  215. If the entry already has an ID, just return it.
  216. With optional argument FORCE, force the creation of a new ID."
  217. (interactive "P")
  218. (when force
  219. (org-entry-put (point) "ID" nil))
  220. (org-id-get (point) 'create))
  221. ;;;###autoload
  222. (defun org-id-copy ()
  223. "Copy the ID of the entry at point to the kill ring.
  224. Create an ID if necessary."
  225. (interactive)
  226. (org-kill-new (org-id-get nil 'create)))
  227. (defvar org-id-overriding-file-name nil
  228. "Tell `org-id-get' to use this as the file name when creating an ID.
  229. This is useful when working with contents in a temporary buffer
  230. that will be copied back to the original.")
  231. ;;;###autoload
  232. (defun org-id-get (&optional pom create prefix)
  233. "Get the ID property of the entry at point-or-marker POM.
  234. If POM is nil, refer to the entry at point.
  235. If the entry does not have an ID, the function returns nil.
  236. However, when CREATE is non-nil, create an ID if none is present already.
  237. PREFIX will be passed through to `org-id-new'.
  238. In any case, the ID of the entry is returned."
  239. (org-with-point-at pom
  240. (let ((id (org-entry-get nil "ID")))
  241. (cond
  242. ((and id (stringp id) (string-match "\\S-" id))
  243. id)
  244. (create
  245. (setq id (org-id-new prefix))
  246. (org-entry-put pom "ID" id)
  247. (org-id-add-location id
  248. (or org-id-overriding-file-name
  249. (buffer-file-name (buffer-base-buffer))))
  250. id)))))
  251. ;;;###autoload
  252. (defun org-id-get-with-outline-path-completion (&optional targets)
  253. "Use `outline-path-completion' to retrieve the ID of an entry.
  254. TARGETS may be a setting for `org-refile-targets' to define
  255. eligible headlines. When omitted, all headlines in the current
  256. file are eligible. This function returns the ID of the entry.
  257. If necessary, the ID is created."
  258. (let* ((org-refile-targets (or targets '((nil . (:maxlevel . 10)))))
  259. (org-refile-use-outline-path
  260. (if (caar org-refile-targets) 'file t))
  261. (org-refile-target-verify-function nil)
  262. (spos (org-refile-get-location "Entry"))
  263. (pom (and spos (move-marker (make-marker) (or (nth 3 spos) 1)
  264. (get-file-buffer (nth 1 spos))))))
  265. (prog1 (org-id-get pom 'create)
  266. (move-marker pom nil))))
  267. ;;;###autoload
  268. (defun org-id-get-with-outline-drilling ()
  269. "Use an outline-cycling interface to retrieve the ID of an entry.
  270. This only finds entries in the current buffer, using `org-goto-location'.
  271. It returns the ID of the entry. If necessary, the ID is created."
  272. (let* ((spos (org-goto-location))
  273. (pom (and spos (move-marker (make-marker) (car spos)))))
  274. (prog1 (org-id-get pom 'create)
  275. (move-marker pom nil))))
  276. ;;;###autoload
  277. (defun org-id-goto (id)
  278. "Switch to the buffer containing the entry with id ID.
  279. Move the cursor to that entry in that buffer."
  280. (interactive "sID: ")
  281. (let ((m (org-id-find id 'marker)))
  282. (unless m
  283. (error "Cannot find entry with ID \"%s\"" id))
  284. (pop-to-buffer-same-window (marker-buffer m))
  285. (goto-char m)
  286. (move-marker m nil)
  287. (org-show-context)))
  288. ;;;###autoload
  289. (defun org-id-find (id &optional markerp)
  290. "Return the location of the entry with the id ID.
  291. The return value is a cons cell (file-name . position), or nil
  292. if there is no entry with that ID.
  293. With optional argument MARKERP, return the position as a new marker."
  294. (cond
  295. ((symbolp id) (setq id (symbol-name id)))
  296. ((numberp id) (setq id (number-to-string id))))
  297. (let ((file (org-id-find-id-file id))
  298. org-agenda-new-buffers where)
  299. (when file
  300. (setq where (org-id-find-id-in-file id file markerp)))
  301. (unless where
  302. (org-id-update-id-locations nil t)
  303. (setq file (org-id-find-id-file id))
  304. (when file
  305. (setq where (org-id-find-id-in-file id file markerp))))
  306. where))
  307. ;;; Internal functions
  308. ;; Creating new IDs
  309. ;;;###autoload
  310. (defun org-id-new (&optional prefix)
  311. "Create a new globally unique ID.
  312. An ID consists of two parts separated by a colon:
  313. - a prefix
  314. - a unique part that will be created according to `org-id-method'.
  315. PREFIX can specify the prefix, the default is given by the variable
  316. `org-id-prefix'. However, if PREFIX is the symbol `none', don't use any
  317. prefix even if `org-id-prefix' specifies one.
  318. So a typical ID could look like \"Org:4nd91V40HI\"."
  319. (let* ((prefix (if (eq prefix 'none)
  320. ""
  321. (concat (or prefix org-id-prefix) ":")))
  322. unique)
  323. (if (equal prefix ":") (setq prefix ""))
  324. (cond
  325. ((memq org-id-method '(uuidgen uuid))
  326. (setq unique (org-trim (shell-command-to-string org-id-uuid-program)))
  327. (unless (org-uuidgen-p unique)
  328. (setq unique (org-id-uuid))))
  329. ((eq org-id-method 'org)
  330. (let* ((etime (org-reverse-string (org-id-time-to-b36)))
  331. (postfix (if org-id-include-domain
  332. (progn
  333. (require 'message)
  334. (concat "@" (message-make-fqdn))))))
  335. (setq unique (concat etime postfix))))
  336. ((eq org-id-method 'ts)
  337. (let ((ts (format-time-string org-id-ts-format))
  338. (postfix (if org-id-include-domain
  339. (progn
  340. (require 'message)
  341. (concat "@" (message-make-fqdn))))))
  342. (setq unique (concat ts postfix))))
  343. (t (error "Invalid `org-id-method'")))
  344. (concat prefix unique)))
  345. (defun org-id-uuid ()
  346. "Return string with random (version 4) UUID."
  347. (let ((rnd (md5 (format "%s%s%s%s%s%s%s"
  348. (random)
  349. (org-time-convert-to-list nil)
  350. (user-uid)
  351. (emacs-pid)
  352. (user-full-name)
  353. user-mail-address
  354. (recent-keys)))))
  355. (format "%s-%s-4%s-%s%s-%s"
  356. (substring rnd 0 8)
  357. (substring rnd 8 12)
  358. (substring rnd 13 16)
  359. (format "%x"
  360. (logior
  361. #b10000000
  362. (logand
  363. #b10111111
  364. (string-to-number
  365. (substring rnd 16 18) 16))))
  366. (substring rnd 18 20)
  367. (substring rnd 20 32))))
  368. (defun org-id-int-to-b36-one-digit (i)
  369. "Turn an integer between 0 and 61 into a single character 0..9, A..Z, a..z."
  370. (cond
  371. ((< i 10) (+ ?0 i))
  372. ((< i 36) (+ ?a i -10))
  373. (t (error "Larger that 35"))))
  374. (defun org-id-b36-to-int-one-digit (i)
  375. "Turn a character 0..9, A..Z, a..z into a number 0..61.
  376. The input I may be a character, or a single-letter string."
  377. (and (stringp i) (setq i (string-to-char i)))
  378. (cond
  379. ((and (>= i ?0) (<= i ?9)) (- i ?0))
  380. ((and (>= i ?a) (<= i ?z)) (+ (- i ?a) 10))
  381. (t (error "Invalid b36 letter"))))
  382. (defun org-id-int-to-b36 (i &optional length)
  383. "Convert an integer to a base-36 number represented as a string."
  384. (let ((s ""))
  385. (while (> i 0)
  386. (setq s (concat (char-to-string
  387. (org-id-int-to-b36-one-digit (mod i 36))) s)
  388. i (/ i 36)))
  389. (setq length (max 1 (or length 1)))
  390. (if (< (length s) length)
  391. (setq s (concat (make-string (- length (length s)) ?0) s)))
  392. s))
  393. (defun org-id-b36-to-int (s)
  394. "Convert a base-36 string into the corresponding integer."
  395. (let ((r 0))
  396. (mapc (lambda (i) (setq r (+ (* r 36) (org-id-b36-to-int-one-digit i))))
  397. s)
  398. r))
  399. (defun org-id-time-to-b36 (&optional time)
  400. "Encode TIME as a 12-digit string.
  401. This string holds the time to micro-second accuracy, and can be decoded
  402. using `org-id-decode'."
  403. ;; FIXME: If TIME represents N seconds after the epoch, then
  404. ;; this encoding assumes 0 <= N < 110075314176 = (* (expt 36 4) 65536),
  405. ;; i.e., that TIME is from 1970-01-01 00:00:00 to 5458-02-23 20:09:36 UTC.
  406. (setq time (org-time-convert-to-list nil))
  407. (concat (org-id-int-to-b36 (nth 0 time) 4)
  408. (org-id-int-to-b36 (nth 1 time) 4)
  409. (org-id-int-to-b36 (nth 2 time) 4)))
  410. (defun org-id-decode (id)
  411. "Split ID into the prefix and the time value that was used to create it.
  412. The return value is (prefix . time) where PREFIX is nil or a string,
  413. and TIME is a Lisp time value (HI LO USEC)."
  414. (let (prefix time parts)
  415. (setq parts (org-split-string id ":"))
  416. (if (= 2 (length parts))
  417. (setq prefix (car parts) time (nth 1 parts))
  418. (setq prefix nil time (nth 0 parts)))
  419. (setq time (org-reverse-string time))
  420. (setq time (list (org-id-b36-to-int (substring time 0 4))
  421. (org-id-b36-to-int (substring time 4 8))
  422. (org-id-b36-to-int (substring time 8 12))))
  423. (cons prefix time)))
  424. ;; Storing ID locations (files)
  425. ;;;###autoload
  426. (defun org-id-update-id-locations (&optional files silent)
  427. "Scan relevant files for IDs.
  428. Store the relation between files and corresponding IDs.
  429. This will scan all agenda files, all associated archives, and all
  430. files currently mentioned in `org-id-locations'.
  431. When FILES is given, scan also these files."
  432. (interactive)
  433. (unless org-id-track-globally
  434. (error "Please turn on `org-id-track-globally' if you want to track IDs"))
  435. (setq org-id-locations nil)
  436. (let* ((files
  437. (delete-dups
  438. (mapcar #'file-truename
  439. (cl-remove-if-not
  440. ;; Default `org-id-extra-files' value contains
  441. ;; `agenda-archives' symbol.
  442. #'stringp
  443. (append
  444. ;; Agenda files and all associated archives.
  445. (org-agenda-files t org-id-search-archives)
  446. ;; Explicit extra files.
  447. (if (symbolp org-id-extra-files)
  448. (symbol-value org-id-extra-files)
  449. org-id-extra-files)
  450. ;; All files known to have IDs.
  451. org-id-files
  452. ;; Additional files from function call.
  453. files)))))
  454. (nfiles (length files))
  455. (id-regexp
  456. (rx (seq bol (0+ (any "\t ")) ":ID:" (1+ " ") (not (any " ")))))
  457. (seen-ids nil)
  458. (ndup 0)
  459. (i 0))
  460. (with-temp-buffer
  461. (delay-mode-hooks
  462. (org-mode)
  463. (dolist (file files)
  464. (when (file-exists-p file)
  465. (unless silent
  466. (cl-incf i)
  467. (message "Finding ID locations (%d/%d files): %s" i nfiles file))
  468. (insert-file-contents file nil nil nil 'replace)
  469. (let ((ids nil)
  470. (case-fold-search t))
  471. (org-with-point-at 1
  472. (while (re-search-forward id-regexp nil t)
  473. (when (org-at-property-p)
  474. (push (org-entry-get (point) "ID") ids)))
  475. (when ids
  476. (push (cons (abbreviate-file-name file) ids)
  477. org-id-locations)
  478. (dolist (id ids)
  479. (cond
  480. ((not (member id seen-ids)) (push id seen-ids))
  481. (silent nil)
  482. (t
  483. (message "Duplicate ID %S" id)
  484. (cl-incf ndup)))))))))))
  485. (setq org-id-files (mapcar #'car org-id-locations))
  486. (org-id-locations-save)
  487. ;; Now convert to a hash table.
  488. (setq org-id-locations (org-id-alist-to-hash org-id-locations))
  489. (when (and (not silent) (> ndup 0))
  490. (warn "WARNING: %d duplicate IDs found, check *Messages* buffer" ndup))
  491. (message "%d files scanned, %d files contains IDs, and %d IDs found."
  492. nfiles (length org-id-files) (hash-table-count org-id-locations))
  493. org-id-locations))
  494. (defun org-id-locations-save ()
  495. "Save `org-id-locations' in `org-id-locations-file'."
  496. (when (and org-id-track-globally org-id-locations)
  497. (let ((out (if (hash-table-p org-id-locations)
  498. (org-id-hash-to-alist org-id-locations)
  499. org-id-locations)))
  500. (when (and org-id-locations-file-relative out)
  501. (setq out (mapcar
  502. (lambda (item)
  503. (if (file-name-absolute-p (car item))
  504. (cons (file-relative-name
  505. (car item) (file-name-directory
  506. org-id-locations-file))
  507. (cdr item))
  508. item))
  509. out)))
  510. (with-temp-file org-id-locations-file
  511. (let ((print-level nil)
  512. (print-length nil))
  513. (print out (current-buffer)))))))
  514. (defun org-id-locations-load ()
  515. "Read the data from `org-id-locations-file'."
  516. (setq org-id-locations nil)
  517. (when org-id-track-globally
  518. (with-temp-buffer
  519. (condition-case nil
  520. (progn
  521. (insert-file-contents org-id-locations-file)
  522. (setq org-id-locations (read (current-buffer)))
  523. (let ((loc (file-name-directory org-id-locations-file)))
  524. (mapc (lambda (item)
  525. (unless (file-name-absolute-p (car item))
  526. (setf (car item) (expand-file-name (car item) loc))))
  527. org-id-locations)))
  528. (error
  529. (message "Could not read org-id-values from %s. Setting it to nil."
  530. org-id-locations-file))))
  531. (setq org-id-files (mapcar 'car org-id-locations))
  532. (setq org-id-locations (org-id-alist-to-hash org-id-locations))))
  533. (defun org-id-add-location (id file)
  534. "Add the ID with location FILE to the database of ID locations."
  535. ;; Only if global tracking is on, and when the buffer has a file
  536. (unless file
  537. (error "bug: org-id-get expects a file-visiting buffer"))
  538. (let ((afile (abbreviate-file-name file)))
  539. (when (and org-id-track-globally id)
  540. (unless org-id-locations (org-id-locations-load))
  541. (puthash id afile org-id-locations)
  542. (unless (member afile org-id-files)
  543. (add-to-list 'org-id-files afile)))))
  544. (unless noninteractive
  545. (add-hook 'kill-emacs-hook 'org-id-locations-save))
  546. (defun org-id-hash-to-alist (hash)
  547. "Turn an org-id hash into an alist, so that it can be written to a file."
  548. (let (res x)
  549. (maphash
  550. (lambda (k v)
  551. (if (setq x (assoc v res))
  552. (setcdr x (cons k (cdr x)))
  553. (push (list v k) res)))
  554. hash)
  555. res))
  556. (defun org-id-alist-to-hash (list)
  557. "Turn an org-id location list into a hash table."
  558. (let ((res (make-hash-table
  559. :test 'equal
  560. :size (apply '+ (mapcar 'length list))))
  561. f)
  562. (mapc
  563. (lambda (x)
  564. (setq f (car x))
  565. (mapc (lambda (i) (puthash i f res)) (cdr x)))
  566. list)
  567. res))
  568. (defun org-id-paste-tracker (txt &optional buffer-or-file)
  569. "Update any IDs in TXT and assign BUFFER-OR-FILE to them."
  570. (when org-id-track-globally
  571. (save-match-data
  572. (setq buffer-or-file (or buffer-or-file (current-buffer)))
  573. (when (bufferp buffer-or-file)
  574. (setq buffer-or-file (or (buffer-base-buffer buffer-or-file)
  575. buffer-or-file))
  576. (setq buffer-or-file (buffer-file-name buffer-or-file)))
  577. (when buffer-or-file
  578. (let ((fname (abbreviate-file-name buffer-or-file))
  579. (s 0))
  580. (while (string-match "^[ \t]*:ID:[ \t]+\\([^ \t\n\r]+\\)" txt s)
  581. (setq s (match-end 0))
  582. (org-id-add-location (match-string 1 txt) fname)))))))
  583. ;; Finding entries with specified id
  584. ;;;###autoload
  585. (defun org-id-find-id-file (id)
  586. "Query the id database for the file in which this ID is located."
  587. (unless org-id-locations (org-id-locations-load))
  588. (or (and org-id-locations
  589. (hash-table-p org-id-locations)
  590. (gethash id org-id-locations))
  591. ;; Fall back on current buffer
  592. (buffer-file-name (or (buffer-base-buffer (current-buffer))
  593. (current-buffer)))))
  594. (defun org-id-find-id-in-file (id file &optional markerp)
  595. "Return the position of the entry ID in FILE.
  596. If that files does not exist, or if it does not contain this ID,
  597. return nil.
  598. The position is returned as a cons cell (file-name . position). With
  599. optional argument MARKERP, return the position as a new marker."
  600. (cond
  601. ((not file) nil)
  602. ((not (file-exists-p file)) nil)
  603. (t
  604. (let* ((visiting (find-buffer-visiting file))
  605. (buffer (or visiting (find-file-noselect file))))
  606. (unwind-protect
  607. (with-current-buffer buffer
  608. (let ((pos (org-find-entry-with-id id)))
  609. (cond
  610. ((null pos) nil)
  611. (markerp (move-marker (make-marker) pos buffer))
  612. (t (cons file pos)))))
  613. ;; Remove opened buffer in the process.
  614. (unless (or visiting markerp) (kill-buffer buffer)))))))
  615. ;; id link type
  616. ;; Calling the following function is hard-coded into `org-store-link',
  617. ;; so we do have to add it to `org-store-link-functions'.
  618. ;;;###autoload
  619. (defun org-id-store-link ()
  620. "Store a link to the current entry, using its ID.
  621. If before first heading store first title-keyword as description
  622. or filename if no title."
  623. (interactive)
  624. (when (and (buffer-file-name (buffer-base-buffer)) (derived-mode-p 'org-mode))
  625. (let* ((link (concat "id:" (org-id-get-create)))
  626. (case-fold-search nil)
  627. (desc (save-excursion
  628. (org-back-to-heading-or-point-min t)
  629. (cond ((org-before-first-heading-p)
  630. (let ((keywords (org-collect-keywords '("TITLE"))))
  631. (if keywords
  632. (cadr (assoc "TITLE" keywords))
  633. (file-name-nondirectory
  634. (buffer-file-name (buffer-base-buffer))))))
  635. ((looking-at org-complex-heading-regexp)
  636. (if (match-end 4)
  637. (match-string 4)
  638. (match-string 0)))
  639. (t link)))))
  640. (org-link-store-props :link link :description desc :type "id")
  641. link)))
  642. (defun org-id-open (id _)
  643. "Go to the entry with id ID."
  644. (org-mark-ring-push)
  645. (let ((m (org-id-find id 'marker))
  646. cmd)
  647. (unless m
  648. (error "Cannot find entry with ID \"%s\"" id))
  649. ;; Use a buffer-switching command in analogy to finding files
  650. (setq cmd
  651. (or
  652. (cdr
  653. (assq
  654. (cdr (assq 'file org-link-frame-setup))
  655. '((find-file . switch-to-buffer)
  656. (find-file-other-window . switch-to-buffer-other-window)
  657. (find-file-other-frame . switch-to-buffer-other-frame))))
  658. 'switch-to-buffer-other-window))
  659. (if (not (equal (current-buffer) (marker-buffer m)))
  660. (funcall cmd (marker-buffer m)))
  661. (goto-char m)
  662. (move-marker m nil)
  663. (org-show-context)))
  664. (org-link-set-parameters "id" :follow #'org-id-open)
  665. (provide 'org-id)
  666. ;; Local variables:
  667. ;; generated-autoload-file: "org-loaddefs.el"
  668. ;; End:
  669. ;;; org-id.el ends here