org-habit.el 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370
  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. (defcustom org-habit-today-glyph ?!
  56. "Glyph character used to identify today."
  57. :group 'org-habit
  58. :type 'character)
  59. (defcustom org-habit-completed-glyph ?*
  60. "Glyph character used to show completed days on which a task was done."
  61. :group 'org-habit
  62. :type 'character)
  63. (defface org-habit-clear-face
  64. '((((background light)) (:background "#8270f9"))
  65. (((background dark)) (:background "blue")))
  66. "Face for days on which a task shouldn't be done yet."
  67. :group 'org-habit
  68. :group 'org-faces)
  69. (defface org-habit-clear-future-face
  70. '((((background light)) (:background "#d6e4fc"))
  71. (((background dark)) (:background "midnightblue")))
  72. "Face for future days on which a task shouldn't be done yet."
  73. :group 'org-habit
  74. :group 'org-faces)
  75. (defface org-habit-ready-face
  76. '((((background light)) (:background "#4df946"))
  77. (((background dark)) (:background "forestgreen")))
  78. "Face for days on which a task should start to be done."
  79. :group 'org-habit
  80. :group 'org-faces)
  81. (defface org-habit-ready-future-face
  82. '((((background light)) (:background "#acfca9"))
  83. (((background dark)) (:background "darkgreen")))
  84. "Face for days on which a task should start to be done."
  85. :group 'org-habit
  86. :group 'org-faces)
  87. (defface org-habit-alert-face
  88. '((((background light)) (:background "#f5f946"))
  89. (((background dark)) (:background "gold")))
  90. "Face for days on which a task is due."
  91. :group 'org-habit
  92. :group 'org-faces)
  93. (defface org-habit-alert-future-face
  94. '((((background light)) (:background "#fafca9"))
  95. (((background dark)) (:background "darkgoldenrod")))
  96. "Face for days on which a task is due."
  97. :group 'org-habit
  98. :group 'org-faces)
  99. (defface org-habit-overdue-face
  100. '((((background light)) (:background "#f9372d"))
  101. (((background dark)) (:background "firebrick")))
  102. "Face for days on which a task is overdue."
  103. :group 'org-habit
  104. :group 'org-faces)
  105. (defface org-habit-overdue-future-face
  106. '((((background light)) (:background "#fc9590"))
  107. (((background dark)) (:background "darkred")))
  108. "Face for days on which a task is overdue."
  109. :group 'org-habit
  110. :group 'org-faces)
  111. (defun org-habit-duration-to-days (ts)
  112. (if (string-match "\\([0-9]+\\)\\([dwmy]\\)" ts)
  113. ;; lead time is specified.
  114. (floor (* (string-to-number (match-string 1 ts))
  115. (cdr (assoc (match-string 2 ts)
  116. '(("d" . 1) ("w" . 7)
  117. ("m" . 30.4) ("y" . 365.25))))))
  118. (error "Invalid duration string: %s" ts)))
  119. (defun org-is-habit-p (&optional pom)
  120. "Is the task at POM or point a habit?"
  121. (string= "habit" (org-entry-get (or pom (point)) "STYLE")))
  122. (defun org-habit-parse-todo (&optional pom)
  123. "Parse the TODO surrounding point for its habit-related data.
  124. Returns a list with the following elements:
  125. 0: Scheduled date for the habit (may be in the past)
  126. 1: \".+\"-style repeater for the schedule, in days
  127. 2: Optional deadline (nil if not present)
  128. 3: If deadline, the repeater for the deadline, otherwise nil
  129. 4: A list of all the past dates this todo was mark closed
  130. This list represents a \"habit\" for the rest of this module."
  131. (save-excursion
  132. (if pom (goto-char pom))
  133. (assert (org-is-habit-p (point)))
  134. (let* ((scheduled (org-get-scheduled-time (point)))
  135. (scheduled-repeat (org-get-repeat org-scheduled-string))
  136. (end (org-entry-end-position))
  137. (habit-entry (org-no-properties (nth 4 (org-heading-components))))
  138. closed-dates deadline dr-days sr-days)
  139. (if scheduled
  140. (setq scheduled (time-to-days scheduled))
  141. (error "Habit %s has no scheduled date" habit-entry))
  142. (unless scheduled-repeat
  143. (error
  144. "Habit '%s' has no scheduled repeat period or has an incorrect one"
  145. habit-entry))
  146. (setq sr-days (org-habit-duration-to-days scheduled-repeat))
  147. (unless (> sr-days 0)
  148. (error "Habit %s scheduled repeat period is less than 1d" habit-entry))
  149. (when (string-match "/\\([0-9]+[dwmy]\\)" scheduled-repeat)
  150. (setq dr-days (org-habit-duration-to-days
  151. (match-string-no-properties 1 scheduled-repeat)))
  152. (if (<= dr-days sr-days)
  153. (error "Habit %s deadline repeat period is less than or equal to scheduled (%s)"
  154. habit-entry scheduled-repeat))
  155. (setq deadline (+ scheduled (- dr-days sr-days))))
  156. (org-back-to-heading t)
  157. (let* ((maxdays (+ org-habit-preceding-days org-habit-following-days))
  158. (reversed org-log-states-order-reversed)
  159. (search (if reversed 're-search-forward 're-search-backward))
  160. (limit (if reversed end (point)))
  161. (count 0))
  162. (unless reversed (goto-char end))
  163. (while (and (< count maxdays)
  164. (funcall search "- State \"DONE\".*\\[\\([^]]+\\)\\]" limit t))
  165. (push (time-to-days
  166. (org-time-string-to-time (match-string-no-properties 1)))
  167. closed-dates)
  168. (setq count (1+ count))))
  169. (list scheduled sr-days deadline dr-days closed-dates))))
  170. (defsubst org-habit-scheduled (habit)
  171. (nth 0 habit))
  172. (defsubst org-habit-scheduled-repeat (habit)
  173. (nth 1 habit))
  174. (defsubst org-habit-deadline (habit)
  175. (let ((deadline (nth 2 habit)))
  176. (or deadline
  177. (if (nth 3 habit)
  178. (+ (org-habit-scheduled habit)
  179. (1- (org-habit-scheduled-repeat habit)))
  180. (org-habit-scheduled habit)))))
  181. (defsubst org-habit-deadline-repeat (habit)
  182. (or (nth 3 habit)
  183. (org-habit-scheduled-repeat habit)))
  184. (defsubst org-habit-done-dates (habit)
  185. (nth 4 habit))
  186. (defsubst org-habit-get-priority (habit &optional moment)
  187. "Determine the relative priority of a habit.
  188. This must take into account not just urgency, but consistency as well."
  189. (let ((pri 1000)
  190. (now (if moment (time-to-days moment) (org-today)))
  191. (scheduled (org-habit-scheduled habit))
  192. (deadline (org-habit-deadline habit)))
  193. ;; add 10 for every day past the scheduled date, and subtract for every
  194. ;; day before it
  195. (setq pri (+ pri (* (- now scheduled) 10)))
  196. ;; add 50 if the deadline is today
  197. (if (and (/= scheduled deadline)
  198. (= now deadline))
  199. (setq pri (+ pri 50)))
  200. ;; add 100 for every day beyond the deadline date, and subtract 10 for
  201. ;; every day before it
  202. (let ((slip (- now (1- deadline))))
  203. (if (> slip 0)
  204. (setq pri (+ pri (* slip 100)))
  205. (setq pri (+ pri (* slip 10)))))
  206. pri))
  207. (defun org-habit-get-faces (habit &optional now-days scheduled-days donep)
  208. "Return faces for HABIT relative to NOW-DAYS and SCHEDULED-DAYS.
  209. NOW-DAYS defaults to the current time's days-past-the-epoch if nil.
  210. SCHEDULED-DAYS defaults to the habit's actual scheduled days if nil.
  211. Habits are assigned colors on the following basis:
  212. Blue Task is before the scheduled date.
  213. Green Task is on or after scheduled date, but before the
  214. end of the schedule's repeat period.
  215. Yellow If the task has a deadline, then it is after schedule's
  216. repeat period, but before the deadline.
  217. Orange The task has reached the deadline day, or if there is
  218. no deadline, the end of the schedule's repeat period.
  219. Red The task has gone beyond the deadline day or the
  220. schedule's repeat period."
  221. (let* ((scheduled (or scheduled-days (org-habit-scheduled habit)))
  222. (s-repeat (org-habit-scheduled-repeat habit))
  223. (scheduled-end (+ scheduled (1- s-repeat)))
  224. (d-repeat (org-habit-deadline-repeat habit))
  225. (deadline (if scheduled-days
  226. (+ scheduled-days (- d-repeat s-repeat))
  227. (org-habit-deadline habit)))
  228. (m-days (or now-days (time-to-days (current-time)))))
  229. (cond
  230. ((< m-days scheduled)
  231. '(org-habit-clear-face . org-habit-clear-future-face))
  232. ((< m-days deadline)
  233. '(org-habit-ready-face . org-habit-ready-future-face))
  234. ((= m-days deadline)
  235. (if donep
  236. '(org-habit-ready-face . org-habit-ready-future-face)
  237. '(org-habit-alert-face . org-habit-alert-future-face)))
  238. (t
  239. '(org-habit-overdue-face . org-habit-overdue-future-face)))))
  240. (defun org-habit-build-graph (habit starting current ending)
  241. "Build a graph for the given HABIT, from STARTING to ENDING.
  242. CURRENT gives the current time between STARTING and ENDING, for
  243. the purpose of drawing the graph. It need not be the actual
  244. current time."
  245. (let* ((done-dates (sort (org-habit-done-dates habit) '<))
  246. (scheduled (org-habit-scheduled habit))
  247. (s-repeat (org-habit-scheduled-repeat habit))
  248. (start (time-to-days starting))
  249. (now (time-to-days current))
  250. (end (time-to-days ending))
  251. (graph (make-string (1+ (- end start)) ?\ ))
  252. (index 0)
  253. last-done-date)
  254. (while (and done-dates (< (car done-dates) start))
  255. (setq last-done-date (car done-dates)
  256. done-dates (cdr done-dates)))
  257. (while (< start end)
  258. (let* ((in-the-past-p (< start now))
  259. (todayp (= start now))
  260. (donep (and done-dates
  261. (= start (car done-dates))))
  262. (faces (if (and in-the-past-p
  263. (not last-done-date)
  264. (not (< scheduled now)))
  265. '(org-habit-clear-face . org-habit-clear-future-face)
  266. (org-habit-get-faces
  267. habit start (and in-the-past-p
  268. (if last-done-date
  269. (+ last-done-date s-repeat)
  270. scheduled))
  271. donep)))
  272. markedp face)
  273. (if donep
  274. (let ((done-time (time-add
  275. starting
  276. (days-to-time
  277. (- start (time-to-days starting))))))
  278. (aset graph index org-habit-completed-glyph)
  279. (setq markedp t)
  280. (put-text-property
  281. index (1+ index) 'help-echo
  282. (format-time-string (org-time-stamp-format) done-time) graph)
  283. (while (and done-dates
  284. (= start (car done-dates)))
  285. (setq last-done-date (car done-dates)
  286. done-dates (cdr done-dates))))
  287. (if todayp
  288. (aset graph index org-habit-today-glyph)))
  289. (setq face (if (or in-the-past-p todayp)
  290. (car faces)
  291. (cdr faces)))
  292. (if (and in-the-past-p
  293. (not (eq face 'org-habit-overdue-face))
  294. (not markedp))
  295. (setq face (cdr faces)))
  296. (put-text-property index (1+ index) 'face face graph))
  297. (setq start (1+ start)
  298. index (1+ index)))
  299. graph))
  300. (defun org-habit-insert-consistency-graphs (&optional line)
  301. "Insert consistency graph for any habitual tasks."
  302. (let ((inhibit-read-only t) l c
  303. (buffer-invisibility-spec '(org-link))
  304. (moment (time-subtract (current-time)
  305. (list 0 (* 3600 org-extend-today-until) 0))))
  306. (save-excursion
  307. (goto-char (if line (point-at-bol) (point-min)))
  308. (while (not (eobp))
  309. (let ((habit (get-text-property (point) 'org-habit-p)))
  310. (when habit
  311. (move-to-column org-habit-graph-column t)
  312. (delete-char (min (+ 1 org-habit-preceding-days
  313. org-habit-following-days)
  314. (- (line-end-position) (point))))
  315. (insert (org-habit-build-graph
  316. habit
  317. (time-subtract moment
  318. (days-to-time org-habit-preceding-days))
  319. moment
  320. (time-add moment
  321. (days-to-time org-habit-following-days))))))
  322. (forward-line)))))
  323. (defun org-habit-toggle-habits ()
  324. "Toggle display of habits in an agenda buffer."
  325. (interactive)
  326. (org-agenda-check-type t 'agenda)
  327. (setq org-habit-show-habits (not org-habit-show-habits))
  328. (org-agenda-redo)
  329. (org-agenda-set-mode-name)
  330. (message "Habits turned %s"
  331. (if org-habit-show-habits "on" "off")))
  332. (org-defkey org-agenda-mode-map "K" 'org-habit-toggle-habits)
  333. (provide 'org-habit)
  334. ;;; org-habit.el ends here