org-id.el 24 KB

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