org-depend.el 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. ;;; org-depend.el --- TODO dependencies for Org-mode
  2. ;; Copyright (C) 2008 Free Software Foundation, Inc.
  3. ;;
  4. ;; Author: Carsten Dominik <carsten at orgmode dot org>
  5. ;; Keywords: outlines, hypermedia, calendar, wp
  6. ;; Homepage: http://orgmode.org
  7. ;; Version: 0.07
  8. ;;
  9. ;; This file is not part of GNU Emacs.
  10. ;;
  11. ;; This file 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, or (at your option)
  14. ;; 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; see the file COPYING. If not, write to the
  21. ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
  22. ;; Boston, MA 02110-1301, USA.
  23. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  24. ;;
  25. ;;; Commentary:
  26. ;;
  27. ;; WARNING: This file is just a PROOF OF CONCEPT, not a supported part
  28. ;; of Org-mode.
  29. ;;
  30. ;; This is an example implementation of TODO dependencies in Org-mode.
  31. ;; It uses the new hooks in version 5.13 of Org-mode,
  32. ;; `org-trigger-hook' and `org-blocker-hook'.
  33. ;;
  34. ;; It implements the following:
  35. ;;
  36. ;; Triggering
  37. ;; ----------
  38. ;;
  39. ;; 1) If an entry contains a TRIGGER property that contains the string
  40. ;; "chain-siblings(KEYWORD)", then switching that entry to DONE does
  41. ;; do the following:
  42. ;; - The sibling following this entry switched to todo-state KEYWORD.
  43. ;; - The sibling also gets a TRIGGER property "chain-sibling(KEYWORD)",
  44. ;; property, to make sure that, when *it* is DONE, the chain will
  45. ;; continue.
  46. ;;
  47. ;; 2) If the TRIGGER property contains any other words like
  48. ;; XYZ(KEYWORD), these are treated as entry id's with keywords. That
  49. ;; means, Org-mode will search for an entry with the ID property XYZ
  50. ;; and switch that entry to KEYWORD as well.
  51. ;;
  52. ;; Blocking
  53. ;; --------
  54. ;;
  55. ;; 1) If an entry contains a BLOCKER property that contains the word
  56. ;; "previous-sibling", the sibling above the current entry is
  57. ;; checked when you try to mark it DONE. If it is still in a TODO
  58. ;; state, the current state change is blocked.
  59. ;;
  60. ;; 2) If the BLOCKER property contains any other words, these are
  61. ;; treated as entry id's. That means, Org-mode will search for an
  62. ;; entry with the ID property exactly equal to this word. If any
  63. ;; of these entries is not yet marked DONE, the current state change
  64. ;; will be blocked.
  65. ;;
  66. ;; 3) Whenever a state change is blocked, an org-mark is pushed, so that
  67. ;; you can find the offending entry with `C-c &'.
  68. ;;
  69. ;;; Example:
  70. ;;
  71. ;; When trying this example, make sure that the settings for TODO keywords
  72. ;; have been activated, i.e. include the following line and press C-c C-c
  73. ;; on the line before working with the example:
  74. ;;
  75. ;; #+TYP_TODO: TODO NEXT | DONE
  76. ;;
  77. ;; * TODO Win a million in Las Vegas
  78. ;; The "third" TODO (see above) cannot become a TODO without this money.
  79. ;;
  80. ;; :PROPERTIES:
  81. ;; :ID: I-cannot-do-it-without-money
  82. ;; :END:
  83. ;;
  84. ;; * Do this by doing a chain of TODO's
  85. ;; ** NEXT This is the first in this chain
  86. ;; :PROPERTIES:
  87. ;; :TRIGGER: chain-siblings(NEXT)
  88. ;; :END:
  89. ;;
  90. ;; ** This is the second in this chain
  91. ;;
  92. ;; ** This is the third in this chain
  93. ;; :PROPERTIES:
  94. ;; :BLOCKER: I-cannot-do-it-without-money
  95. ;; :END:
  96. ;;
  97. ;; ** This is the forth in this chain
  98. ;; When this is DONE, we will also trigger entry XYZ-is-my-id
  99. ;; :PROPERTIES:
  100. ;; :TRIGGER: XYZ-is-my-id(TODO)
  101. ;; :END:
  102. ;;
  103. ;; ** This is the fifth in this chain
  104. ;;
  105. ;; * Start writing report
  106. ;; :PROPERTIES:
  107. ;; :ID: XYZ-is-my-id
  108. ;; :END:
  109. ;;
  110. ;;
  111. (require 'org)
  112. (defun org-depend-trigger-todo (change-plist)
  113. "Trigger new TODO entries after the current is switched to DONE.
  114. This does two different kinds of triggers:
  115. - If the current entry contains a TRIGGER property that contains
  116. \"chain-siblings(KEYWORD)\", it goes to the next sibling, marks it
  117. KEYWORD and also installs the \"chain-sibling\" trigger to continue
  118. the chain.
  119. - Any other word (space-separated) like XYZ(KEYWORD) in the TRIGGER
  120. property is seen as an entry id. Org-mode finds the entry with the
  121. corresponding ID property and switches it to the state TODO as well."
  122. ;; Get information from the plist
  123. (let* ((type (plist-get change-plist :type))
  124. (pos (plist-get change-plist :position))
  125. (from (plist-get change-plist :from))
  126. (to (plist-get change-plist :to))
  127. (org-log-done nil) ; IMPROTANT!: no logging during automatic trigger!
  128. trigger triggers tr p1 kwd)
  129. (catch 'return
  130. (unless (eq type 'todo-state-change)
  131. ;; We are only handling todo-state-change....
  132. (throw 'return t))
  133. (unless (and (member from org-not-done-keywords)
  134. (member to org-done-keywords))
  135. ;; This is not a change from TODO to DONE, ignore it
  136. (throw 'return t))
  137. ;; OK, we just switched from a TODO state to a DONE state
  138. ;; Lets see if this entry has a TRIGGER property.
  139. ;; If yes, split it up on whitespace.
  140. (setq trigger (org-entry-get pos "TRIGGER")
  141. triggers (and trigger (org-split-string trigger "[ \t]+")))
  142. ;; Go through all the triggers
  143. (while (setq tr (pop triggers))
  144. (cond
  145. ((string-match "\\`chain-siblings(\\(.*?\\))\\'" tr)
  146. ;; This is a TODO chain of siblings
  147. (setq kwd (match-string 1 tr))
  148. (catch 'exit
  149. (save-excursion
  150. (goto-char pos)
  151. ;; find the sibling, exit if no more siblings
  152. (condition-case nil
  153. (outline-forward-same-level 1)
  154. (error (throw 'exit t)))
  155. ;; mark the sibling TODO
  156. (org-todo kwd)
  157. ;; make sure the sibling will continue the chain
  158. (org-entry-add-to-multivalued-property
  159. nil "TRIGGER" (format "chain-siblings(%s)" kwd)))))
  160. ((string-match "\\`\\(\\S-+\\)(\\(.*?\\))\\'" tr)
  161. ;; This seems to be ENTRY_ID(KEYWORD)
  162. (setq id (match-string 1 tr)
  163. kwd (match-string 2 tr)
  164. p1 (org-find-entry-with-id id))
  165. (when p1
  166. ;; there is an entry with this ID, mark it TODO
  167. (save-excursion
  168. (goto-char p1)
  169. (org-todo kwd)))))))))
  170. (defun org-depend-block-todo (change-plist)
  171. "Block turning an entry into a TODO.
  172. This checks for a BLOCKER property in an entry and checks
  173. all the entries listed there. If any of them is not done,
  174. block changing the current entry into a TODO entry. If the property contains
  175. the word \"previous-sibling\", the sibling above the current entry is checked.
  176. Any other words are treated as entry id's. If an entry exists with the
  177. this ID property, that entry is also checked."
  178. ;; Get information from the plist
  179. (let* ((type (plist-get change-plist :type))
  180. (pos (plist-get change-plist :position))
  181. (from (plist-get change-plist :from))
  182. (to (plist-get change-plist :to))
  183. (org-log-done nil) ; IMPROTANT!: no logging during automatic trigger
  184. blocker blockers bl p1)
  185. (catch 'return
  186. (unless (eq type 'todo-state-change)
  187. ;; We are not handling this kind of change
  188. (throw 'return t))
  189. (unless (and (not from) (member to org-not-done-keywords))
  190. ;; This is not a change from nothing to TODO, ignore it
  191. (throw 'return t))
  192. ;; OK, the plan is to switch from nothing to TODO
  193. ;; Lets see if we will allow it. Find the BLOCKER property
  194. ;; and split it on whitespace.
  195. (setq blocker (org-entry-get pos "BLOCKER")
  196. blockers (and blocker (org-split-string blocker "[ \t]+")))
  197. ;; go through all the blockers
  198. (while (setq bl (pop blockers))
  199. (cond
  200. ((equal bl "previous-sibling")
  201. ;; the sibling is required to be DONE.
  202. (catch 'ignore
  203. (save-excursion
  204. (goto-char pos)
  205. ;; find the older sibling, exit if no more siblings
  206. (condition-case nil
  207. (outline-backward-same-level 1)
  208. (error (throw 'ignore t)))
  209. ;; Check if this entry is not yet done and block
  210. (unless (org-entry-is-done-p)
  211. ;; return nil, to indicate that we block the change!
  212. (org-mark-ring-push)
  213. (throw 'return nil)))))
  214. ((setq p1 (org-find-entry-with-id bl))
  215. ;; there is an entry with this ID, check it out
  216. (save-excursion
  217. (goto-char p1)
  218. (unless (org-entry-is-done-p)
  219. ;; return nil, to indicate that we block the change!
  220. (org-mark-ring-push)
  221. (throw 'return nil))))))
  222. t ; return t to indicate that we are not blocking
  223. )))
  224. (add-hook 'org-trigger-hook 'org-depend-trigger-todo)
  225. (add-hook 'org-blocker-hook 'org-depend-block-todo)
  226. (provide 'org-depend)
  227. ;;; org-depend.el ends here