emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
blob a3face5d88bb729816826d0dc5fa024db47f5f87 8394 bytes (raw)
name: lisp/org-habit.el 	 # note: path name is non-authoritative(*)

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
 
;;; org-habit.el --- The habit tracking code for Org-mode

;; Copyright (C) 2009
;;   Free Software Foundation, Inc.

;; Author: John Wiegley <johnw at gnu dot org>
;; Keywords: outlines, hypermedia, calendar, wp
;; Homepage: http://orgmode.org
;; Version: 6.31trans
;;
;; This file is part of GNU Emacs.
;;
;; GNU Emacs is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.

;; GNU Emacs is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;; GNU General Public License for more details.

;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;;; Commentary:

;; This file contains the habit tracking code for Org-mode

(require 'org)
(eval-when-compile
  (require 'cl)
  (require 'calendar))

(defgroup org-habit nil
  "Options concerning habit tracking in Org-mode."
  :tag "Org Habit"
  :group 'org-progress)

(defvar org-habit-clear-color "slateblue")
(defvar org-habit-clear-future-color "powderblue")

(defvar org-habit-ready-color "green")
(defvar org-habit-ready-future-color "palegreen")

(defvar org-habit-warning-color "yellow")
(defvar org-habit-warning-future-color "palegoldenrod")

(defvar org-habit-alert-color "yellow")
(defvar org-habit-alert-future-color "palegoldenrod")

(defvar org-habit-overdue-color "red")
(defvar org-habit-overdue-future-color "mistyrose")

(defun org-habit-duration-to-days (ts)
  (if (string-match "\\([0-9]+\\)\\([dwmy]\\)\\'" ts)
      ;; lead time is specified.
      (floor (* (string-to-number (match-string 1 ts))
		(cdr (assoc (match-string 2 ts)
			    '(("d" . 1)    ("w" . 7)
			      ("m" . 30.4) ("y" . 365.25))))))
    (error "Invalid duration string: %s" ts)))

(defun org-is-habit-p (&optional pom)
  (string= "habit" (org-entry-get (or pom (point)) "STYLE")))

(defun org-habit-parse-todo (&optional pom)
  "Parse the TODO surrounding point for its habit-related data.
Returns a list with the following elements:

  0: Scheduled date for the habit (may be in the past)
  1: \".+\"-style repeater for the schedule, in days
  2: Optional deadline (nil if not present)
  3: If deadline, the repeater for the deadline, otherwise nil
  4: A list of all the past dates this todo was mark closed

This list represents a \"habit\" for the rest of this module."
  (save-excursion
    (if pom (goto-char pom))
    (assert (org-is-habit-p (point)))
    (let ((scheduled (org-get-scheduled-time (point)))
	  (scheduled-repeat (org-get-repeat "SCHEDULED"))
	  (deadline (org-get-deadline-time (point)))
	  (deadline-repeat (org-get-repeat "DEADLINE")))
      (unless scheduled
	(error "Habit has no scheduled date"))
      (unless scheduled-repeat
	(error "Habit has no scheduled repeat period"))
      (unless (string-match "\\`\\.\\+[0-9]+" scheduled-repeat)
	(error "Habit's scheduled repeat period does not match `.+[0-9]*'"))
      (if (and deadline (not deadline-repeat))
	  (error "Habit has a deadline, but no deadline repeat period"))
      (if (and deadline
	       (not (string-match "\\`\\.\\+[0-9]+" scheduled-repeat))) 
	  (error "Habit's deadline repeat period does not match `.+[0-9]*'"))
      (let ((sr-days (org-habit-duration-to-days scheduled-repeat))
	    (dr-days (org-habit-duration-to-days deadline-repeat)))
	(when (and scheduled deadline)
	  (cond
	   ((time-less-p deadline scheduled)
	    (error "Habit's deadline date is before the scheduled date"))
	   ((< dr-days sr-days)
	    (error "Habit's deadline repeat period is less than scheduled"))
	   ((/= (- (time-to-days deadline)
		   (time-to-days scheduled))
		(- dr-days sr-days))
	    (error "Habit's deadline and scheduled period lengths are off"))))
	(let ((end (org-entry-end-position))
	      closed-dates)
	  (org-back-to-heading t)
	  (while (re-search-forward "- State \"DONE\".*\\[\\([^]]+\\)\\]" end t)
	    (push (org-time-string-to-time (match-string-no-properties 1))
		  closed-dates))
	  (list scheduled sr-days deadline dr-days closed-dates))))))

(defsubst org-habit-scheduled (habit)
  (nth 0 habit))
(defsubst org-habit-scheduled-repeat (habit)
  (nth 1 habit))
(defsubst org-habit-deadline (habit)
  (nth 2 habit))
(defsubst org-habit-deadline-repeat (habit)
  (nth 3 habit))
(defsubst org-habit-done-dates (habit)
  (nth 4 habit))

(defun org-habit-get-colors (habit &optional moment scheduled-time)
  "Return faces for HABIT relative to MOMENT and SCHEDULED-TIME.
MOMENT defaults to the current time if it is nil.
SCHEDULED-TIME defaults to the habit's actual scheduled time if nil.

Habits are assigned colors on the following basis:
  Blue      Task is before the scheduled date.
  Green     Task is on or after scheduled date, but before the
            end of the schedule's repeat period.
  Yellow    If the task has a deadline, then it is after schedule's
            repeat period, but before the deadline.
  Orange    The task has reached the deadline day, or if there is
            no deadline, the end of the schedule's repeat period.
  Red       The task has gone beyond the deadline day or the
            schedule's repeat period."
  (unless moment (setq moment (current-time)))
  (let* ((scheduled (or scheduled-time (org-habit-scheduled habit)))
	 (s-repeat (org-habit-scheduled-repeat habit))
	 (scheduled-end (time-add scheduled (days-to-time s-repeat)))
	 (d-repeat (org-habit-deadline-repeat habit))
	 (deadline (if scheduled-time
		       (time-add scheduled-time
				 (days-to-time (- d-repeat s-repeat)))
		     (org-habit-deadline habit))))
    (cond
     ((time-less-p moment scheduled)
      (cons org-habit-clear-color org-habit-clear-future-color))
     ((time-less-p moment scheduled-end)
      (cons org-habit-ready-color org-habit-ready-future-color))
     ((and deadline
	   (time-less-p moment deadline))
      (cons org-habit-warning-color org-habit-warning-future-color))
     ((= (time-to-days moment)
	 (if deadline
	     (time-to-days deadline)
	   (time-to-days scheduled-end)))
      (cons org-habit-alert-color org-habit-alert-future-color))
     (t
      (cons org-habit-overdue-color org-habit-overdue-future-color)))))

(defun org-habit-build-graph (habit &optional starting current ending)
  "Build a color graph for the given HABIT, from STARTING to ENDING."
  (message "Build graph starting: %s" (format-time-string "%c" starting))
  (message "Build graph current:  %s" (format-time-string "%c" current))
  (message "Build graph ending:   %s" (format-time-string "%c" ending))
  (let ((done-dates (sort (org-habit-done-dates habit) 'time-less-p))
	(s-repeat (org-habit-scheduled-repeat habit))
	(day starting)
	(current-days (time-to-days current))
	last-done-date
	(graph (make-string (1+ (- (time-to-days ending)
				   (time-to-days starting))) ?\ ))
	(index 0))
    (if done-dates
	(while (time-less-p (car done-dates) starting)
	  (setq done-dates (cdr done-dates))))
    (while (time-less-p day ending)
      (let* ((now-days (time-to-days day))
	     (in-the-past-p (< now-days current-days))
	     (today-p (= now-days current-days))
	     (colors (if (and in-the-past-p (not last-done-date))
			 (cons org-habit-clear-color
			       org-habit-clear-future-color)
		       (org-habit-get-colors
			habit day
			(and in-the-past-p
			     (time-add last-done-date
				       (days-to-time s-repeat))))))
	     markedp color)
	(if today-p
	    (aset graph index ?!)
	  (when (and done-dates
		     (= now-days (time-to-days (car done-dates))))
	    (aset graph index ?*)
	    (setq last-done-date (car done-dates)
		  done-dates (cdr done-dates)
		  markedp t)))
	(setq color (if (or in-the-past-p
			    today-p)
			(car colors)
		      (cdr colors)))
	(if (and in-the-past-p
		 (not (string= color org-habit-overdue-color))
		 (not markedp))
	    (setq color (cdr colors)))
	(put-text-property index (1+ index)
			   'face (list :background color) graph))
      (setq day (time-add day (days-to-time 1))
	    index (1+ index)))
    graph))

(provide 'org-habit)

;; arch-tag: 

;;; org-habit.el ends here

debug log:

solving a3face5 ...
found a3face5 in https://list.orgmode.org/orgmode/D528AB3F-C00D-4BB5-B295-A2DE0DE1BCAE@gmail.com/

applying [1/1] https://list.orgmode.org/orgmode/D528AB3F-C00D-4BB5-B295-A2DE0DE1BCAE@gmail.com/
diff --git a/lisp/org-habit.el b/lisp/org-habit.el
new file mode 100644
index 0000000..a3face5

1:101: trailing whitespace.
	       (not (string-match "\\`\\.\\+[0-9]+" scheduled-repeat))) 
1:227: trailing whitespace.
;; arch-tag: 
Checking patch lisp/org-habit.el...
Applied patch lisp/org-habit.el cleanly.
warning: 2 lines add whitespace errors.

index at:
100644 a3face5d88bb729816826d0dc5fa024db47f5f87	lisp/org-habit.el

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).