org-id.el 24 KB

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