org-habit.el 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360
  1. ;;; org-habit.el --- The habit tracking code for Org-mode
  2. ;; Copyright (C) 2009-2011 Free Software Foundation, Inc.
  3. ;; Author: John Wiegley <johnw at gnu dot org>
  4. ;; Keywords: outlines, hypermedia, calendar, wp
  5. ;; Homepage: http://orgmode.org
  6. ;;
  7. ;; This file is part of GNU Emacs.
  8. ;;
  9. ;; GNU Emacs is free software: you can redistribute it and/or modify
  10. ;; it under the terms of the GNU General Public License as published by
  11. ;; the Free Software Foundation, either version 3 of the License, or
  12. ;; (at your option) any later version.
  13. ;; GNU Emacs is distributed in the hope that it will be useful,
  14. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. ;; GNU General Public License for more details.
  17. ;; You should have received a copy of the GNU General Public License
  18. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  19. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  20. ;;
  21. ;;; Commentary:
  22. ;; This file contains the habit tracking code for Org-mode
  23. ;;; Code:
  24. (require 'org)
  25. (require 'org-agenda)
  26. (eval-when-compile
  27. (require 'cl))
  28. (defgroup org-habit nil
  29. "Options concerning habit tracking in Org-mode."
  30. :tag "Org Habit"
  31. :group 'org-progress)
  32. (defcustom org-habit-graph-column 40
  33. "The absolute column at which to insert habit consistency graphs.
  34. Note that consistency graphs will overwrite anything else in the buffer."
  35. :group 'org-habit
  36. :type 'integer)
  37. (defcustom org-habit-preceding-days 21
  38. "Number of days before today to appear in consistency graphs."
  39. :group 'org-habit
  40. :type 'integer)
  41. (defcustom org-habit-following-days 7
  42. "Number of days after today to appear in consistency graphs."
  43. :group 'org-habit
  44. :type 'integer)
  45. (defcustom org-habit-show-habits t
  46. "If non-nil, show habits in agenda buffers."
  47. :group 'org-habit
  48. :type 'boolean)
  49. (defcustom org-habit-show-habits-only-for-today t
  50. "If non-nil, only show habits on today's agenda, and not for future days.
  51. Note that even when shown for future days, the graph is always
  52. relative to the current effective date."
  53. :group 'org-habit
  54. :type 'boolean)
  55. (defface org-habit-clear-face
  56. '((((background light)) (:background "#8270f9"))
  57. (((background dark)) (:background "blue")))
  58. "Face for days on which a task shouldn't be done yet."
  59. :group 'org-habit
  60. :group 'org-faces)
  61. (defface org-habit-clear-future-face
  62. '((((background light)) (:background "#d6e4fc"))
  63. (((background dark)) (:background "midnightblue")))
  64. "Face for future days on which a task shouldn't be done yet."
  65. :group 'org-habit
  66. :group 'org-faces)
  67. (defface org-habit-ready-face
  68. '((((background light)) (:background "#4df946"))
  69. (((background dark)) (:background "forestgreen")))
  70. "Face for days on which a task should start to be done."
  71. :group 'org-habit
  72. :group 'org-faces)
  73. (defface org-habit-ready-future-face
  74. '((((background light)) (:background "#acfca9"))
  75. (((background dark)) (:background "darkgreen")))
  76. "Face for days on which a task should start to be done."
  77. :group 'org-habit
  78. :group 'org-faces)
  79. (defface org-habit-alert-face
  80. '((((background light)) (:background "#f5f946"))
  81. (((background dark)) (:background "gold")))
  82. "Face for days on which a task is due."
  83. :group 'org-habit
  84. :group 'org-faces)
  85. (defface org-habit-alert-future-face
  86. '((((background light)) (:background "#fafca9"))
  87. (((background dark)) (:background "darkgoldenrod")))
  88. "Face for days on which a task is due."
  89. :group 'org-habit
  90. :group 'org-faces)
  91. (defface org-habit-overdue-face
  92. '((((background light)) (:background "#f9372d"))
  93. (((background dark)) (:background "firebrick")))
  94. "Face for days on which a task is overdue."
  95. :group 'org-habit
  96. :group 'org-faces)
  97. (defface org-habit-overdue-future-face
  98. '((((background light)) (:background "#fc9590"))
  99. (((background dark)) (:background "darkred")))
  100. "Face for days on which a task is overdue."
  101. :group 'org-habit
  102. :group 'org-faces)
  103. (defun org-habit-duration-to-days (ts)
  104. (if (string-match "\\([0-9]+\\)\\([dwmy]\\)" ts)
  105. ;; lead time is specified.
  106. (floor (* (string-to-number (match-string 1 ts))
  107. (cdr (assoc (match-string 2 ts)
  108. '(("d" . 1) ("w" . 7)
  109. ("m" . 30.4) ("y" . 365.25))))))
  110. (error "Invalid duration string: %s" ts)))
  111. (defun org-is-habit-p (&optional pom)
  112. "Is the task at POM or point a habit?"
  113. (string= "habit" (org-entry-get (or pom (point)) "STYLE")))
  114. (defun org-habit-parse-todo (&optional pom)
  115. "Parse the TODO surrounding point for its habit-related data.
  116. Returns a list with the following elements:
  117. 0: Scheduled date for the habit (may be in the past)
  118. 1: \".+\"-style repeater for the schedule, in days
  119. 2: Optional deadline (nil if not present)
  120. 3: If deadline, the repeater for the deadline, otherwise nil
  121. 4: A list of all the past dates this todo was mark closed
  122. This list represents a \"habit\" for the rest of this module."
  123. (save-excursion
  124. (if pom (goto-char pom))
  125. (assert (org-is-habit-p (point)))
  126. (let* ((scheduled (org-get-scheduled-time (point)))
  127. (scheduled-repeat (org-get-repeat org-scheduled-string))
  128. (end (org-entry-end-position))
  129. (habit-entry (org-no-properties (nth 4 (org-heading-components))))
  130. closed-dates deadline dr-days sr-days)
  131. (if scheduled
  132. (setq scheduled (time-to-days scheduled))
  133. (error "Habit %s has no scheduled date" habit-entry))
  134. (unless scheduled-repeat
  135. (error
  136. "Habit '%s' has no scheduled repeat period or has an incorrect one"
  137. habit-entry))
  138. (setq sr-days (org-habit-duration-to-days scheduled-repeat))
  139. (unless (> sr-days 0)
  140. (error "Habit %s scheduled repeat period is less than 1d" habit-entry))
  141. (when (string-match "/\\([0-9]+[dwmy]\\)" scheduled-repeat)
  142. (setq dr-days (org-habit-duration-to-days
  143. (match-string-no-properties 1 scheduled-repeat)))
  144. (if (<= dr-days sr-days)
  145. (error "Habit %s deadline repeat period is less than or equal to scheduled (%s)"
  146. habit-entry scheduled-repeat))
  147. (setq deadline (+ scheduled (- dr-days sr-days))))
  148. (org-back-to-heading t)
  149. (let* ((maxdays (+ org-habit-preceding-days org-habit-following-days))
  150. (reversed org-log-states-order-reversed)
  151. (search (if reversed 're-search-forward 're-search-backward))
  152. (limit (if reversed end (point)))
  153. (count 0))
  154. (unless reversed (goto-char end))
  155. (while (and (< count maxdays)
  156. (funcall search "- State \"DONE\".*\\[\\([^]]+\\)\\]" limit t))
  157. (push (time-to-days
  158. (org-time-string-to-time (match-string-no-properties 1)))
  159. closed-dates)
  160. (setq count (1+ count))))
  161. (list scheduled sr-days deadline dr-days closed-dates))))
  162. (defsubst org-habit-scheduled (habit)
  163. (nth 0 habit))
  164. (defsubst org-habit-scheduled-repeat (habit)
  165. (nth 1 habit))
  166. (defsubst org-habit-deadline (habit)
  167. (let ((deadline (nth 2 habit)))
  168. (or deadline
  169. (if (nth 3 habit)
  170. (+ (org-habit-scheduled habit)
  171. (1- (org-habit-scheduled-repeat habit)))
  172. (org-habit-scheduled habit)))))
  173. (defsubst org-habit-deadline-repeat (habit)
  174. (or (nth 3 habit)
  175. (org-habit-scheduled-repeat habit)))
  176. (defsubst org-habit-done-dates (habit)
  177. (nth 4 habit))
  178. (defsubst org-habit-get-priority (habit &optional moment)
  179. "Determine the relative priority of a habit.
  180. This must take into account not just urgency, but consistency as well."
  181. (let ((pri 1000)
  182. (now (if moment (time-to-days moment) (org-today)))
  183. (scheduled (org-habit-scheduled habit))
  184. (deadline (org-habit-deadline habit)))
  185. ;; add 10 for every day past the scheduled date, and subtract for every
  186. ;; day before it
  187. (setq pri (+ pri (* (- now scheduled) 10)))
  188. ;; add 50 if the deadline is today
  189. (if (and (/= scheduled deadline)
  190. (= now deadline))
  191. (setq pri (+ pri 50)))
  192. ;; add 100 for every day beyond the deadline date, and subtract 10 for
  193. ;; every day before it
  194. (let ((slip (- now (1- deadline))))
  195. (if (> slip 0)
  196. (setq pri (+ pri (* slip 100)))
  197. (setq pri (+ pri (* slip 10)))))
  198. pri))
  199. (defun org-habit-get-faces (habit &optional now-days scheduled-days donep)
  200. "Return faces for HABIT relative to NOW-DAYS and SCHEDULED-DAYS.
  201. NOW-DAYS defaults to the current time's days-past-the-epoch if nil.
  202. SCHEDULED-DAYS defaults to the habit's actual scheduled days if nil.
  203. Habits are assigned colors on the following basis:
  204. Blue Task is before the scheduled date.
  205. Green Task is on or after scheduled date, but before the
  206. end of the schedule's repeat period.
  207. Yellow If the task has a deadline, then it is after schedule's
  208. repeat period, but before the deadline.
  209. Orange The task has reached the deadline day, or if there is
  210. no deadline, the end of the schedule's repeat period.
  211. Red The task has gone beyond the deadline day or the
  212. schedule's repeat period."
  213. (let* ((scheduled (or scheduled-days (org-habit-scheduled habit)))
  214. (s-repeat (org-habit-scheduled-repeat habit))
  215. (scheduled-end (+ scheduled (1- s-repeat)))
  216. (d-repeat (org-habit-deadline-repeat habit))
  217. (deadline (if scheduled-days
  218. (+ scheduled-days (- d-repeat s-repeat))
  219. (org-habit-deadline habit)))
  220. (m-days (or now-days (time-to-days (current-time)))))
  221. (cond
  222. ((< m-days scheduled)
  223. '(org-habit-clear-face . org-habit-clear-future-face))
  224. ((< m-days deadline)
  225. '(org-habit-ready-face . org-habit-ready-future-face))
  226. ((= m-days deadline)
  227. (if donep
  228. '(org-habit-ready-face . org-habit-ready-future-face)
  229. '(org-habit-alert-face . org-habit-alert-future-face)))
  230. (t
  231. '(org-habit-overdue-face . org-habit-overdue-future-face)))))
  232. (defun org-habit-build-graph (habit starting current ending)
  233. "Build a graph for the given HABIT, from STARTING to ENDING.
  234. CURRENT gives the current time between STARTING and ENDING, for
  235. the purpose of drawing the graph. It need not be the actual
  236. current time."
  237. (let* ((done-dates (sort (org-habit-done-dates habit) '<))
  238. (scheduled (org-habit-scheduled habit))
  239. (s-repeat (org-habit-scheduled-repeat habit))
  240. (start (time-to-days starting))
  241. (now (time-to-days current))
  242. (end (time-to-days ending))
  243. (graph (make-string (1+ (- end start)) ?\ ))
  244. (index 0)
  245. last-done-date)
  246. (while (and done-dates (< (car done-dates) start))
  247. (setq last-done-date (car done-dates)
  248. done-dates (cdr done-dates)))
  249. (while (< start end)
  250. (let* ((in-the-past-p (< start now))
  251. (todayp (= start now))
  252. (donep (and done-dates
  253. (= start (car done-dates))))
  254. (faces (if (and in-the-past-p
  255. (not last-done-date)
  256. (not (< scheduled now)))
  257. '(org-habit-clear-face . org-habit-clear-future-face)
  258. (org-habit-get-faces
  259. habit start (and in-the-past-p
  260. (if last-done-date
  261. (+ last-done-date s-repeat)
  262. scheduled))
  263. donep)))
  264. markedp face)
  265. (if donep
  266. (let ((done-time (time-add
  267. starting
  268. (days-to-time
  269. (- start (time-to-days starting))))))
  270. (aset graph index ?*)
  271. (setq markedp t)
  272. (put-text-property
  273. index (1+ index) 'help-echo
  274. (format-time-string (org-time-stamp-format) done-time) graph)
  275. (while (and done-dates
  276. (= start (car done-dates)))
  277. (setq last-done-date (car done-dates)
  278. done-dates (cdr done-dates))))
  279. (if todayp
  280. (aset graph index ?!)))
  281. (setq face (if (or in-the-past-p todayp)
  282. (car faces)
  283. (cdr faces)))
  284. (if (and in-the-past-p
  285. (not (eq face 'org-habit-overdue-face))
  286. (not markedp))
  287. (setq face (cdr faces)))
  288. (put-text-property index (1+ index) 'face face graph))
  289. (setq start (1+ start)
  290. index (1+ index)))
  291. graph))
  292. (defun org-habit-insert-consistency-graphs (&optional line)
  293. "Insert consistency graph for any habitual tasks."
  294. (let ((inhibit-read-only t) l c
  295. (buffer-invisibility-spec '(org-link))
  296. (moment (time-subtract (current-time)
  297. (list 0 (* 3600 org-extend-today-until) 0))))
  298. (save-excursion
  299. (goto-char (if line (point-at-bol) (point-min)))
  300. (while (not (eobp))
  301. (let ((habit (get-text-property (point) 'org-habit-p)))
  302. (when habit
  303. (move-to-column org-habit-graph-column t)
  304. (delete-char (min (+ 1 org-habit-preceding-days
  305. org-habit-following-days)
  306. (- (line-end-position) (point))))
  307. (insert (org-habit-build-graph
  308. habit
  309. (time-subtract moment
  310. (days-to-time org-habit-preceding-days))
  311. moment
  312. (time-add moment
  313. (days-to-time org-habit-following-days))))))
  314. (forward-line)))))
  315. (defun org-habit-toggle-habits ()
  316. "Toggle display of habits in an agenda buffer."
  317. (interactive)
  318. (org-agenda-check-type t 'agenda)
  319. (setq org-habit-show-habits (not org-habit-show-habits))
  320. (org-agenda-redo)
  321. (org-agenda-set-mode-name)
  322. (message "Habits turned %s"
  323. (if org-habit-show-habits "on" "off")))
  324. (org-defkey org-agenda-mode-map "K" 'org-habit-toggle-habits)
  325. (provide 'org-habit)
  326. ;;; org-habit.el ends here