org-id.el 25 KB

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