org-habit.el 13 KB

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