*** empty log message ***
[bpt/emacs.git] / lisp / calendar / timeclock.el
CommitLineData
90cbf47e
GM
1;;; timeclock.el --- mode for keeping track of how much you work
2
8b72699e 3;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
dbfca9c4 4;; Free Software Foundation, Inc.
90cbf47e
GM
5
6;; Author: John Wiegley <johnw@gnu.org>
7;; Created: 25 Mar 1999
7e285b36 8;; Version: 2.6.1
90cbf47e 9;; Keywords: calendar data
90cbf47e
GM
10
11;; This file is part of GNU Emacs.
12
13;; GNU Emacs is free software; you can redistribute it and/or modify
14;; it under the terms of the GNU General Public License as published by
075969b4 15;; the Free Software Foundation; either version 3, or (at your option)
90cbf47e
GM
16;; any later version.
17
18;; GNU Emacs is distributed in the hope that it will be useful,
19;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21;; GNU General Public License for more details.
22
23;; You should have received a copy of the GNU General Public License
24;; along with GNU Emacs; see the file COPYING. If not, write to the
3a35cf56
LK
25;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
26;; Boston, MA 02110-1301, USA.
90cbf47e
GM
27
28;;; Commentary:
29
30;; This mode is for keeping track of time intervals. You can use it
31;; for whatever purpose you like, but the typical scenario is to keep
32;; track of how much time you spend working on certain projects.
33;;
34;; Use `timeclock-in' when you start on a project, and `timeclock-out'
35;; when you're done. Once you've collected some data, you can use
36;; `timeclock-workday-remaining' to see how much time is left to be
145570df
GM
37;; worked today (where `timeclock-workday' specifies the length of the
38;; working day), and `timeclock-when-to-leave' to calculate when you're free.
90cbf47e
GM
39
40;; You'll probably want to bind the timeclock commands to some handy
145570df 41;; keystrokes. At the moment, C-x t is unused:
90cbf47e
GM
42;;
43;; (require 'timeclock)
44;;
45;; (define-key ctl-x-map "ti" 'timeclock-in)
46;; (define-key ctl-x-map "to" 'timeclock-out)
47;; (define-key ctl-x-map "tc" 'timeclock-change)
48;; (define-key ctl-x-map "tr" 'timeclock-reread-log)
49;; (define-key ctl-x-map "tu" 'timeclock-update-modeline)
50;; (define-key ctl-x-map "tw" 'timeclock-when-to-leave-string)
51
52;; If you want Emacs to display the amount of time "left" to your
53;; workday in the modeline, you can either set the value of
54;; `timeclock-modeline-display' to t using M-x customize, or you
55;; can add this code to your .emacs file:
56;;
57;; (require 'timeclock)
58;; (timeclock-modeline-display)
59;;
60;; To cancel this modeline display at any time, just call
61;; `timeclock-modeline-display' again.
62
63;; You may also want Emacs to ask you before exiting, if you are
a9dfccd6 64;; currently working on a project. This can be done either by setting
90cbf47e
GM
65;; `timeclock-ask-before-exiting' to t using M-x customize (this is
66;; the default), or by adding the following to your .emacs file:
67;;
9d1137ce 68;; (add-hook 'kill-emacs-query-functions 'timeclock-query-out)
90cbf47e
GM
69
70;; NOTE: If you change your .timelog file without using timeclock's
71;; functions, or if you change the value of any of timeclock's
72;; customizable variables, you should run the command
73;; `timeclock-reread-log'. This will recompute any discrepancies in
74;; your average working time, and will make sure that the various
75;; display functions return the correct value.
76
77;;; History:
78
79;;; Code:
80
81(defgroup timeclock nil
6a8cf883 82 "Keeping track of the time that gets spent."
90cbf47e
GM
83 :group 'data)
84
85;;; User Variables:
86
e437b491 87(defcustom timeclock-file (convert-standard-filename "~/.timelog")
90cbf47e
GM
88 "*The file used to store timeclock data in."
89 :type 'file
90 :group 'timeclock)
91
92(defcustom timeclock-workday (* 8 60 60)
93 "*The length of a work period."
94 :type 'integer
95 :group 'timeclock)
96
97(defcustom timeclock-relative t
43f5aea1 98 "*Whether to make reported time relative to `timeclock-workday'.
90cbf47e
GM
99For example, if the length of a normal workday is eight hours, and you
100work four hours on Monday, then the amount of time \"remaining\" on
101Tuesday is twelve hours -- relative to an averaged work period of
102eight hours -- or eight hours, non-relative. So relative time takes
145570df
GM
103into account any discrepancy of time under-worked or over-worked on
104previous days. This only affects the timeclock modeline display."
90cbf47e
GM
105 :type 'boolean
106 :group 'timeclock)
107
108(defcustom timeclock-get-project-function 'timeclock-ask-for-project
109 "*The function used to determine the name of the current project.
110When clocking in, and no project is specified, this function will be
a9dfccd6 111called to determine what is the current project to be worked on.
90cbf47e
GM
112If this variable is nil, no questions will be asked."
113 :type 'function
114 :group 'timeclock)
115
116(defcustom timeclock-get-reason-function 'timeclock-ask-for-reason
117 "*A function used to determine the reason for clocking out.
118When clocking out, and no reason is specified, this function will be
a9dfccd6 119called to determine what is the reason.
90cbf47e
GM
120If this variable is nil, no questions will be asked."
121 :type 'function
122 :group 'timeclock)
123
124(defcustom timeclock-get-workday-function nil
125 "*A function used to determine the length of today's workday.
126The first time that a user clocks in each day, this function will be
a9dfccd6 127called to determine what is the length of the current workday. If
a3dd6af2 128the return value is nil, or equal to `timeclock-workday', nothing special
a1506d29 129will be done. If it is a quantity different from `timeclock-workday',
a3dd6af2 130however, a record will be output to the timelog file to note the fact that
a9dfccd6 131that day has a length that is different from the norm."
a3dd6af2 132 :type '(choice (const nil) function)
90cbf47e
GM
133 :group 'timeclock)
134
135(defcustom timeclock-ask-before-exiting t
145570df 136 "*If non-nil, ask if the user wants to clock out before exiting Emacs.
a9dfccd6 137This variable only has effect if set with \\[customize]."
90cbf47e
GM
138 :set (lambda (symbol value)
139 (if value
9d1137ce
GM
140 (add-hook 'kill-emacs-query-functions 'timeclock-query-out)
141 (remove-hook 'kill-emacs-query-functions 'timeclock-query-out))
90cbf47e
GM
142 (setq timeclock-ask-before-exiting value))
143 :type 'boolean
144 :group 'timeclock)
145
146(defvar timeclock-update-timer nil
147 "The timer used to update `timeclock-mode-string'.")
148
b9c3a97d
GM
149;; For byte-compiler.
150(defvar display-time-hook)
151(defvar timeclock-modeline-display)
152
90cbf47e
GM
153(defcustom timeclock-use-display-time t
154 "*If non-nil, use `display-time-hook' for doing modeline updates.
a9dfccd6
EZ
155The advantage of this is that one less timer has to be set running
156amok in Emacs' process space. The disadvantage is that it requires
157you to have `display-time' running. If you don't want to use
90cbf47e 158`display-time', but still want the modeline to show how much time is
145570df
GM
159left, set this variable to nil. Changing the value of this variable
160while timeclock information is being displayed in the modeline has no
161effect. You should call the function `timeclock-modeline-display' with
162a positive argument to force an update."
90cbf47e
GM
163 :set (lambda (symbol value)
164 (let ((currently-displaying
165 (and (boundp 'timeclock-modeline-display)
166 timeclock-modeline-display)))
167 ;; if we're changing to the state that
168 ;; `timeclock-modeline-display' is already using, don't
169 ;; bother toggling it. This happens on the initial loading
170 ;; of timeclock.el.
171 (if (and currently-displaying
172 (or (and value
173 (boundp 'display-time-hook)
174 (memq 'timeclock-update-modeline
175 display-time-hook))
176 (and (not value)
177 timeclock-update-timer)))
178 (setq currently-displaying nil))
179 (and currently-displaying
3dc630b9 180 (set-variable 'timeclock-modeline-display nil))
90cbf47e
GM
181 (setq timeclock-use-display-time value)
182 (and currently-displaying
3dc630b9 183 (set-variable 'timeclock-modeline-display t))
90cbf47e
GM
184 timeclock-use-display-time))
185 :type 'boolean
186 :group 'timeclock
187 :require 'time)
188
189(defcustom timeclock-first-in-hook nil
190 "*A hook run for the first \"in\" event each day.
191Note that this hook is run before recording any events. Thus the
192value of `timeclock-hours-today', `timeclock-last-event' and the
193return value of function `timeclock-last-period' are relative previous
194to today."
195 :type 'hook
196 :group 'timeclock)
197
198(defcustom timeclock-load-hook nil
199 "*Hook that gets run after timeclock has been loaded."
200 :type 'hook
201 :group 'timeclock)
202
203(defcustom timeclock-in-hook nil
204 "*A hook run every time an \"in\" event is recorded."
205 :type 'hook
206 :group 'timeclock)
207
208(defcustom timeclock-day-over-hook nil
209 "*A hook that is run when the workday has been completed.
4ee3e788 210This hook is only run if the current time remaining is being displayed
90cbf47e
GM
211in the modeline. See the variable `timeclock-modeline-display'."
212 :type 'hook
213 :group 'timeclock)
214
215(defcustom timeclock-out-hook nil
216 "*A hook run every time an \"out\" event is recorded."
217 :type 'hook
218 :group 'timeclock)
219
220(defcustom timeclock-done-hook nil
221 "*A hook run every time a project is marked as completed."
222 :type 'hook
223 :group 'timeclock)
224
225(defcustom timeclock-event-hook nil
226 "*A hook run every time any event is recorded."
227 :type 'hook
228 :group 'timeclock)
229
230(defvar timeclock-last-event nil
231 "A list containing the last event that was recorded.
dace60cf 232The format of this list is (CODE TIME PROJECT).")
90cbf47e
GM
233
234(defvar timeclock-last-event-workday nil
235 "The number of seconds in the workday of `timeclock-last-event'.")
236
237;;; Internal Variables:
238
239(defvar timeclock-discrepancy nil
240 "A variable containing the time discrepancy before the last event.
241Normally, timeclock assumes that you intend to work for
242`timeclock-workday' seconds every day. Any days in which you work
243more or less than this amount is considered either a positive or
a9dfccd6 244a negative discrepancy. If you work in such a manner that the
90cbf47e
GM
245discrepancy is always brought back to zero, then you will by
246definition have worked an average amount equal to `timeclock-workday'
247each day.")
248
249(defvar timeclock-elapsed nil
250 "A variable containing the time elapsed for complete periods today.
251This value is not accurate enough to be useful by itself. Rather,
252call `timeclock-workday-elapsed', to determine how much time has been
253worked so far today. Also, if `timeclock-relative' is nil, this value
43f5aea1
JW
254will be the same as `timeclock-discrepancy'.")
255
256(defvar timeclock-use-elapsed nil
257 "Non-nil if the modeline should display time elapsed, not remaining.")
90cbf47e
GM
258
259(defvar timeclock-last-period nil
260 "Integer representing the number of seconds in the last period.
a9dfccd6
EZ
261Note that you shouldn't access this value, but instead should use the
262function `timeclock-last-period'.")
90cbf47e
GM
263
264(defvar timeclock-mode-string nil
9d1137ce
GM
265 "The timeclock string (optionally) displayed in the modeline.
266The time is bracketed by <> if you are clocked in, otherwise by [].")
90cbf47e
GM
267
268(defvar timeclock-day-over nil
269 "The date of the last day when notified \"day over\" for.")
270
271;;; User Functions:
272
273;;;###autoload
274(defun timeclock-modeline-display (&optional arg)
275 "Toggle display of the amount of time left today in the modeline.
9d1137ce
GM
276If `timeclock-use-display-time' is non-nil (the default), then
277the function `display-time-mode' must be active, and the modeline
278will be updated whenever the time display is updated. Otherwise,
279the timeclock will use its own sixty second timer to do its
280updating. With prefix ARG, turn modeline display on if and only
281if ARG is positive. Returns the new status of timeclock modeline
282display (non-nil means on)."
90cbf47e 283 (interactive "P")
9d1137ce
GM
284 ;; cf display-time-mode.
285 (setq timeclock-mode-string "")
286 (or global-mode-string (setq global-mode-string '("")))
90cbf47e
GM
287 (let ((on-p (if arg
288 (> (prefix-numeric-value arg) 0)
289 (not timeclock-modeline-display))))
290 (if on-p
9d1137ce
GM
291 (progn
292 (or (memq 'timeclock-mode-string global-mode-string)
293 (setq global-mode-string
294 (append global-mode-string '(timeclock-mode-string))))
90cbf47e
GM
295 (unless (memq 'timeclock-update-modeline timeclock-event-hook)
296 (add-hook 'timeclock-event-hook 'timeclock-update-modeline))
297 (when timeclock-update-timer
298 (cancel-timer timeclock-update-timer)
299 (setq timeclock-update-timer nil))
300 (if (boundp 'display-time-hook)
301 (remove-hook 'display-time-hook 'timeclock-update-modeline))
302 (if timeclock-use-display-time
9d1137ce
GM
303 (progn
304 ;; Update immediately so there is a visible change
305 ;; on calling this function.
145570df 306 (if display-time-mode (timeclock-update-modeline)
7e285b36
CY
307 (message "Activate `display-time-mode' or turn off \
308`timeclock-use-display-time' to see timeclock information"))
9d1137ce 309 (add-hook 'display-time-hook 'timeclock-update-modeline))
90cbf47e
GM
310 (setq timeclock-update-timer
311 (run-at-time nil 60 'timeclock-update-modeline))))
4ee3e788 312 (setq global-mode-string
9d1137ce 313 (delq 'timeclock-mode-string global-mode-string))
90cbf47e
GM
314 (remove-hook 'timeclock-event-hook 'timeclock-update-modeline)
315 (if (boundp 'display-time-hook)
316 (remove-hook 'display-time-hook
317 'timeclock-update-modeline))
318 (when timeclock-update-timer
319 (cancel-timer timeclock-update-timer)
320 (setq timeclock-update-timer nil)))
321 (force-mode-line-update)
4ee3e788 322 (setq timeclock-modeline-display on-p)))
90cbf47e
GM
323
324;; This has to be here so that the function definition of
325;; `timeclock-modeline-display' is known to the "set" function.
326(defcustom timeclock-modeline-display nil
327 "Toggle modeline display of time remaining.
328You must modify via \\[customize] for this variable to have an effect."
329 :set (lambda (symbol value)
330 (setq timeclock-modeline-display
331 (timeclock-modeline-display (or value 0))))
332 :type 'boolean
333 :group 'timeclock
334 :require 'timeclock)
335
b9c3a97d
GM
336(defsubst timeclock-time-to-date (time)
337 "Convert the TIME value to a textual date string."
338 (format-time-string "%Y/%m/%d" time))
339
90cbf47e
GM
340;;;###autoload
341(defun timeclock-in (&optional arg project find-project)
342 "Clock in, recording the current time moment in the timelog.
343With a numeric prefix ARG, record the fact that today has only that
344many hours in it to be worked. If arg is a non-numeric prefix arg
345\(non-nil, but not a number), 0 is assumed (working on a holiday or
346weekend). *If not called interactively, ARG should be the number of
347_seconds_ worked today*. This feature only has effect the first time
348this function is called within a day.
349
a9dfccd6 350PROJECT is the project being clocked into. If PROJECT is nil, and
90cbf47e
GM
351FIND-PROJECT is non-nil -- or the user calls `timeclock-in'
352interactively -- call the function `timeclock-get-project-function' to
353discover the name of the project."
354 (interactive
355 (list (and current-prefix-arg
356 (if (numberp current-prefix-arg)
357 (* current-prefix-arg 60 60)
358 0))))
359 (if (equal (car timeclock-last-event) "i")
360 (error "You've already clocked in!")
361 (unless timeclock-last-event
362 (timeclock-reread-log))
4105dd52
GM
363 ;; Either no log file, or day has rolled over.
364 (unless (and timeclock-last-event
365 (equal (timeclock-time-to-date
366 (cadr timeclock-last-event))
367 (timeclock-time-to-date (current-time))))
90cbf47e
GM
368 (let ((workday (or (and (numberp arg) arg)
369 (and arg 0)
370 (and timeclock-get-workday-function
371 (funcall timeclock-get-workday-function))
372 timeclock-workday)))
373 (run-hooks 'timeclock-first-in-hook)
374 ;; settle the discrepancy for the new day
375 (setq timeclock-discrepancy
4105dd52 376 (- (or timeclock-discrepancy 0) workday))
90cbf47e 377 (if (not (= workday timeclock-workday))
9adcbb0c
RS
378 (timeclock-log "h" (number-to-string
379 (/ workday (if (zerop (% workday (* 60 60)))
380 60 60.0) 60))))))
90cbf47e
GM
381 (timeclock-log "i" (or project
382 (and timeclock-get-project-function
383 (or find-project (interactive-p))
384 (funcall timeclock-get-project-function))))
385 (run-hooks 'timeclock-in-hook)))
386
387;;;###autoload
388(defun timeclock-out (&optional arg reason find-reason)
389 "Clock out, recording the current time moment in the timelog.
390If a prefix ARG is given, the user has completed the project that was
391begun during the last time segment.
392
393REASON is the user's reason for clocking out. If REASON is nil, and
394FIND-REASON is non-nil -- or the user calls `timeclock-out'
395interactively -- call the function `timeclock-get-reason-function' to
396discover the reason."
397 (interactive "P")
9ca8a5a0
EZ
398 (or timeclock-last-event
399 (error "You haven't clocked in!"))
90cbf47e
GM
400 (if (equal (downcase (car timeclock-last-event)) "o")
401 (error "You've already clocked out!")
402 (timeclock-log
403 (if arg "O" "o")
404 (or reason
405 (and timeclock-get-reason-function
406 (or find-reason (interactive-p))
407 (funcall timeclock-get-reason-function))))
408 (run-hooks 'timeclock-out-hook)
409 (if arg
410 (run-hooks 'timeclock-done-hook))))
411
4ee3e788 412;; Should today-only be removed in favour of timeclock-relative? - gm
b9c3a97d
GM
413(defsubst timeclock-workday-remaining (&optional today-only)
414 "Return the number of seconds until the workday is complete.
415The amount returned is relative to the value of `timeclock-workday'.
416If TODAY-ONLY is non-nil, the value returned will be relative only to
4ee3e788 417the time worked today, and not to past time."
b9c3a97d
GM
418 (let ((discrep (timeclock-find-discrep)))
419 (if discrep
4ee3e788
GM
420 (- (if today-only (cadr discrep)
421 (car discrep)))
b9c3a97d
GM
422 0.0)))
423
90cbf47e
GM
424;;;###autoload
425(defun timeclock-status-string (&optional show-seconds today-only)
4ee3e788
GM
426 "Report the overall timeclock status at the present moment.
427If SHOW-SECONDS is non-nil, display second resolution.
428If TODAY-ONLY is non-nil, the display will be relative only to time
429worked today, ignoring the time worked on previous days."
90cbf47e 430 (interactive "P")
43f5aea1
JW
431 (let ((remainder (timeclock-workday-remaining
432 (or today-only
433 (not timeclock-relative))))
b9c3a97d
GM
434 (last-in (equal (car timeclock-last-event) "i"))
435 status)
90cbf47e
GM
436 (setq status
437 (format "Currently %s since %s (%s), %s %s, leave at %s"
438 (if last-in "IN" "OUT")
439 (if show-seconds
440 (format-time-string "%-I:%M:%S %p"
441 (nth 1 timeclock-last-event))
442 (format-time-string "%-I:%M %p"
443 (nth 1 timeclock-last-event)))
444 (or (nth 2 timeclock-last-event)
445 (if last-in "**UNKNOWN**" "workday over"))
446 (timeclock-seconds-to-string remainder show-seconds t)
447 (if (> remainder 0)
448 "remaining" "over")
449 (timeclock-when-to-leave-string show-seconds today-only)))
450 (if (interactive-p)
80070cca 451 (message "%s" status)
90cbf47e
GM
452 status)))
453
454;;;###autoload
455(defun timeclock-change (&optional arg project)
a9dfccd6
EZ
456 "Change to working on a different project.
457This clocks out of the current project, then clocks in on a new one.
458With a prefix ARG, consider the previous project as finished at the
459time of changeover. PROJECT is the name of the last project you were
460working on."
90cbf47e
GM
461 (interactive "P")
462 (timeclock-out arg)
463 (timeclock-in nil project (interactive-p)))
464
465;;;###autoload
466(defun timeclock-query-out ()
a9dfccd6 467 "Ask the user whether to clock out.
9d1137ce 468This is a useful function for adding to `kill-emacs-query-functions'."
b9c3a97d
GM
469 (and (equal (car timeclock-last-event) "i")
470 (y-or-n-p "You're currently clocking time, clock out? ")
471 (timeclock-out))
472 ;; Unconditionally return t for `kill-emacs-query-functions'.
473 t)
90cbf47e
GM
474
475;;;###autoload
476(defun timeclock-reread-log ()
477 "Re-read the timeclock, to account for external changes.
478Returns the new value of `timeclock-discrepancy'."
479 (interactive)
480 (setq timeclock-discrepancy nil)
481 (timeclock-find-discrep)
9329ea14 482 (if (and timeclock-discrepancy timeclock-modeline-display)
90cbf47e
GM
483 (timeclock-update-modeline))
484 timeclock-discrepancy)
485
486(defun timeclock-seconds-to-string (seconds &optional show-seconds
487 reverse-leader)
488 "Convert SECONDS into a compact time string.
489If SHOW-SECONDS is non-nil, make the resolution of the return string
490include the second count. If REVERSE-LEADER is non-nil, it means to
491output a \"+\" if the time value is negative, rather than a \"-\".
492This is used when negative time values have an inverted meaning (such
493as with time remaining, where negative time really means overtime)."
494 (if show-seconds
495 (format "%s%d:%02d:%02d"
496 (if (< seconds 0) (if reverse-leader "+" "-") "")
497 (truncate (/ (abs seconds) 60 60))
498 (% (truncate (/ (abs seconds) 60)) 60)
499 (% (truncate (abs seconds)) 60))
500 (format "%s%d:%02d"
501 (if (< seconds 0) (if reverse-leader "+" "-") "")
502 (truncate (/ (abs seconds) 60 60))
503 (% (truncate (/ (abs seconds) 60)) 60))))
504
dace60cf 505(defsubst timeclock-currently-in-p ()
90cbf47e
GM
506 "Return non-nil if the user is currently clocked in."
507 (equal (car timeclock-last-event) "i"))
508
509;;;###autoload
510(defun timeclock-workday-remaining-string (&optional show-seconds
511 today-only)
512 "Return a string representing the amount of time left today.
513Display second resolution if SHOW-SECONDS is non-nil. If TODAY-ONLY
514is non-nil, the display will be relative only to time worked today.
515See `timeclock-relative' for more information about the meaning of
516\"relative to today\"."
517 (interactive)
518 (let ((string (timeclock-seconds-to-string
519 (timeclock-workday-remaining today-only)
520 show-seconds t)))
521 (if (interactive-p)
80070cca 522 (message "%s" string)
90cbf47e
GM
523 string)))
524
1c8c9fb8 525(defsubst timeclock-workday-elapsed ()
69a04106 526 "Return the number of seconds worked so far today.
90cbf47e
GM
527If RELATIVE is non-nil, the amount returned will be relative to past
528time worked. The default is to return only the time that has elapsed
529so far today."
1c8c9fb8
JW
530 (let ((discrep (timeclock-find-discrep)))
531 (if discrep
532 (nth 2 discrep)
533 0.0)))
90cbf47e
GM
534
535;;;###autoload
1c8c9fb8 536(defun timeclock-workday-elapsed-string (&optional show-seconds)
90cbf47e
GM
537 "Return a string representing the amount of time worked today.
538Display seconds resolution if SHOW-SECONDS is non-nil. If RELATIVE is
539non-nil, the amount returned will be relative to past time worked."
540 (interactive)
1c8c9fb8
JW
541 (let ((string (timeclock-seconds-to-string (timeclock-workday-elapsed)
542 show-seconds)))
90cbf47e 543 (if (interactive-p)
80070cca 544 (message "%s" string)
90cbf47e
GM
545 string)))
546
b9c3a97d
GM
547(defsubst timeclock-time-to-seconds (time)
548 "Convert TIME to a floating point number."
549 (+ (* (car time) 65536.0)
550 (cadr time)
551 (/ (or (car (cdr (cdr time))) 0) 1000000.0)))
552
553(defsubst timeclock-seconds-to-time (seconds)
554 "Convert SECONDS (a floating point number) to an Emacs time structure."
555 (list (floor seconds 65536)
556 (floor (mod seconds 65536))
557 (floor (* (- seconds (ffloor seconds)) 1000000))))
558
4ee3e788 559;; Should today-only be removed in favour of timeclock-relative? - gm
dace60cf 560(defsubst timeclock-when-to-leave (&optional today-only)
a9dfccd6 561 "Return a time value representing the end of today's workday.
90cbf47e 562If TODAY-ONLY is non-nil, the value returned will be relative only to
4ee3e788 563the time worked today, and not to past time."
90cbf47e
GM
564 (timeclock-seconds-to-time
565 (- (timeclock-time-to-seconds (current-time))
1c8c9fb8
JW
566 (let ((discrep (timeclock-find-discrep)))
567 (if discrep
568 (if today-only
569 (cadr discrep)
570 (car discrep))
571 0.0)))))
90cbf47e
GM
572
573;;;###autoload
574(defun timeclock-when-to-leave-string (&optional show-seconds
575 today-only)
a9dfccd6 576 "Return a string representing the end of today's workday.
90cbf47e 577This string is relative to the value of `timeclock-workday'. If
4ee3e788
GM
578SHOW-SECONDS is non-nil, the value printed/returned will include
579seconds. If TODAY-ONLY is non-nil, the value returned will be
580relative only to the time worked today, and not to past time."
581 ;; Should today-only be removed in favour of timeclock-relative? - gm
90cbf47e
GM
582 (interactive)
583 (let* ((then (timeclock-when-to-leave today-only))
584 (string
585 (if show-seconds
586 (format-time-string "%-I:%M:%S %p" then)
587 (format-time-string "%-I:%M %p" then))))
588 (if (interactive-p)
80070cca 589 (message "%s" string)
90cbf47e
GM
590 string)))
591
7e285b36
CY
592(defun timeclock-make-hours-explicit (old-default)
593 "Specify all workday lengths in `timeclock-file'.
594OLD-DEFAULT hours are set for every day that has no number indicated."
595 (interactive "P")
596 (if old-default (setq old-default (prefix-numeric-value old-default))
597 (error "timelog-make-hours-explicit requires an explicit argument"))
598 (let ((extant-timelog (find-buffer-visiting timeclock-file))
599 current-date)
600 (with-current-buffer (find-file-noselect timeclock-file t)
601 (unwind-protect
602 (save-excursion
603 (save-restriction
604 (widen)
605 (goto-char (point-min))
606 (while (progn (skip-chars-forward "\n") (not (eobp)))
607 ;; This is just a variant of `timeclock-moment-regexp'.
608 (unless (looking-at
609 (concat "^\\([bhioO]\\) \\([0-9]+/[0-9]+/[0-9]+\\) "
610 "\\([0-9]+:[0-9]+:[0-9]+\\)"))
611 (error "Can't parse `%s'" timeclock-file))
612 (let ((this-date (match-string 2)))
613 (unless (or (and current-date
614 (string= this-date current-date))
615 (string= (match-string 1) "h"))
616 (insert (format "h %s %s %s\n" (match-string 2)
617 (match-string 3) old-default)))
618 (if (string-match "^[ih]" (match-string 1)) ; ignore logouts
619 (setq current-date this-date)))
620 (forward-line))
621 (save-buffer)))
622 (unless extant-timelog (kill-buffer (current-buffer)))))))
623
90cbf47e
GM
624;;; Internal Functions:
625
626(defvar timeclock-project-list nil)
627(defvar timeclock-last-project nil)
628
978bd3ea
JW
629(defun timeclock-completing-read (prompt alist &optional default)
630 "A version of `completing-read' that works on both Emacs and XEmacs."
631 (if (featurep 'xemacs)
632 (let ((str (completing-read prompt alist)))
633 (if (or (null str) (= (length str) 0))
634 default
635 str))
636 (completing-read prompt alist nil nil nil nil default)))
637
90cbf47e
GM
638(defun timeclock-ask-for-project ()
639 "Ask the user for the project they are clocking into."
978bd3ea 640 (timeclock-completing-read
5b76833f 641 (format "Clock into which project (default %s): "
978bd3ea
JW
642 (or timeclock-last-project
643 (car timeclock-project-list)))
644 (mapcar 'list timeclock-project-list)
645 (or timeclock-last-project
646 (car timeclock-project-list))))
90cbf47e
GM
647
648(defvar timeclock-reason-list nil)
649
650(defun timeclock-ask-for-reason ()
651 "Ask the user for the reason they are clocking out."
978bd3ea
JW
652 (timeclock-completing-read "Reason for clocking out: "
653 (mapcar 'list timeclock-reason-list)))
90cbf47e
GM
654
655(defun timeclock-update-modeline ()
4ee3e788
GM
656 "Update the `timeclock-mode-string' displayed in the modeline.
657The value of `timeclock-relative' affects the display as described in
658that variable's documentation."
90cbf47e 659 (interactive)
43f5aea1
JW
660 (let ((remainder
661 (if timeclock-use-elapsed
662 (timeclock-workday-elapsed)
663 (timeclock-workday-remaining (not timeclock-relative))))
9d1137ce 664 (last-in (equal (car timeclock-last-event) "i")))
90cbf47e
GM
665 (when (and (< remainder 0)
666 (not (and timeclock-day-over
667 (equal timeclock-day-over
668 (timeclock-time-to-date
669 (current-time))))))
670 (setq timeclock-day-over
671 (timeclock-time-to-date (current-time)))
672 (run-hooks 'timeclock-day-over-hook))
673 (setq timeclock-mode-string
9d1137ce
GM
674 (propertize
675 (format " %c%s%c "
676 (if last-in ?< ?[)
677 (timeclock-seconds-to-string remainder nil t)
678 (if last-in ?> ?]))
679 'help-echo "timeclock: time remaining"))))
680
681(put 'timeclock-mode-string 'risky-local-variable t)
90cbf47e
GM
682
683(defun timeclock-log (code &optional project)
684 "Log the event CODE to the timeclock log, at the time of call.
685If PROJECT is a string, it represents the project which the event is
dace60cf 686being logged for. Normally only \"in\" events specify a project."
9adcbb0c 687 (let ((extant-timelog (find-buffer-visiting timeclock-file)))
7e285b36 688 (with-current-buffer (find-file-noselect timeclock-file t)
9adcbb0c
RS
689 (save-excursion
690 (save-restriction
691 (widen)
692 (goto-char (point-max))
693 (if (not (bolp))
694 (insert "\n"))
695 (let ((now (current-time)))
696 (insert code " "
697 (format-time-string "%Y/%m/%d %H:%M:%S" now)
7e285b36 698 (or (and (stringp project)
9adcbb0c
RS
699 (> (length project) 0)
700 (concat " " project))
701 "")
702 "\n")
703 (if (equal (downcase code) "o")
704 (setq timeclock-last-period
705 (- (timeclock-time-to-seconds now)
706 (timeclock-time-to-seconds
707 (cadr timeclock-last-event)))
708 timeclock-discrepancy
709 (+ timeclock-discrepancy
710 timeclock-last-period)))
711 (setq timeclock-last-event (list code now project)))))
712 (save-buffer)
7e285b36
CY
713 (unless extant-timelog (kill-buffer (current-buffer)))))
714 (run-hooks 'timeclock-event-hook))
90cbf47e 715
dace60cf
JW
716(defvar timeclock-moment-regexp
717 (concat "\\([bhioO]\\)\\s-+"
718 "\\([0-9]+\\)/\\([0-9]+\\)/\\([0-9]+\\)\\s-+"
719 "\\([0-9]+\\):\\([0-9]+\\):\\([0-9]+\\)[ \t]*" "\\([^\n]*\\)"))
720
721(defsubst timeclock-read-moment ()
90cbf47e 722 "Read the moment under point from the timelog."
dace60cf
JW
723 (if (looking-at timeclock-moment-regexp)
724 (let ((code (match-string 1))
725 (year (string-to-number (match-string 2)))
726 (mon (string-to-number (match-string 3)))
727 (mday (string-to-number (match-string 4)))
728 (hour (string-to-number (match-string 5)))
729 (min (string-to-number (match-string 6)))
730 (sec (string-to-number (match-string 7)))
731 (project (match-string 8)))
732 (list code (encode-time sec min hour mday mon year) project))))
733
90cbf47e
GM
734(defun timeclock-last-period (&optional moment)
735 "Return the value of the last event period.
736If the last event was a clock-in, the period will be open ended, and
737growing every second. Otherwise, it is a fixed amount which has been
738recorded to disk. If MOMENT is non-nil, use that as the current time.
739This is only provided for coherency when used by
740`timeclock-discrepancy'."
741 (if (equal (car timeclock-last-event) "i")
742 (- (timeclock-time-to-seconds (or moment (current-time)))
743 (timeclock-time-to-seconds
744 (cadr timeclock-last-event)))
745 timeclock-last-period))
746
dace60cf
JW
747(defsubst timeclock-entry-length (entry)
748 (- (timeclock-time-to-seconds (cadr entry))
749 (timeclock-time-to-seconds (car entry))))
750
751(defsubst timeclock-entry-begin (entry)
752 (car entry))
753
754(defsubst timeclock-entry-end (entry)
755 (cadr entry))
756
757(defsubst timeclock-entry-project (entry)
758 (nth 2 entry))
759
760(defsubst timeclock-entry-comment (entry)
761 (nth 3 entry))
762
763
764(defsubst timeclock-entry-list-length (entry-list)
765 (let ((length 0))
766 (while entry-list
767 (setq length (+ length (timeclock-entry-length (car entry-list))))
768 (setq entry-list (cdr entry-list)))
769 length))
770
771(defsubst timeclock-entry-list-begin (entry-list)
772 (timeclock-entry-begin (car entry-list)))
773
774(defsubst timeclock-entry-list-end (entry-list)
775 (timeclock-entry-end (car (last entry-list))))
776
777(defsubst timeclock-entry-list-span (entry-list)
778 (- (timeclock-time-to-seconds (timeclock-entry-list-end entry-list))
779 (timeclock-time-to-seconds (timeclock-entry-list-begin entry-list))))
780
781(defsubst timeclock-entry-list-break (entry-list)
782 (- (timeclock-entry-list-span entry-list)
783 (timeclock-entry-list-length entry-list)))
784
785(defsubst timeclock-entry-list-projects (entry-list)
786 (let (projects)
787 (while entry-list
788 (let ((project (timeclock-entry-project (car entry-list))))
789 (if projects
790 (add-to-list 'projects project)
791 (setq projects (list project))))
792 (setq entry-list (cdr entry-list)))
793 projects))
794
795
796(defsubst timeclock-day-required (day)
3dc630b9 797 (or (car day) timeclock-workday))
dace60cf
JW
798
799(defsubst timeclock-day-length (day)
800 (timeclock-entry-list-length (cdr day)))
801
802(defsubst timeclock-day-debt (day)
803 (- (timeclock-day-required day)
804 (timeclock-day-length day)))
805
806(defsubst timeclock-day-begin (day)
807 (timeclock-entry-list-begin (cdr day)))
808
809(defsubst timeclock-day-end (day)
810 (timeclock-entry-list-end (cdr day)))
811
812(defsubst timeclock-day-span (day)
813 (timeclock-entry-list-span (cdr day)))
814
815(defsubst timeclock-day-break (day)
816 (timeclock-entry-list-break (cdr day)))
817
818(defsubst timeclock-day-projects (day)
819 (timeclock-entry-list-projects (cdr day)))
820
821(defmacro timeclock-day-list-template (func)
822 `(let ((length 0))
823 (while day-list
824 (setq length (+ length (,(eval func) (car day-list))))
825 (setq day-list (cdr day-list)))
826 length))
827
828(defun timeclock-day-list-required (day-list)
829 (timeclock-day-list-template 'timeclock-day-required))
830
831(defun timeclock-day-list-length (day-list)
832 (timeclock-day-list-template 'timeclock-day-length))
833
834(defun timeclock-day-list-debt (day-list)
835 (timeclock-day-list-template 'timeclock-day-debt))
836
837(defsubst timeclock-day-list-begin (day-list)
838 (timeclock-day-begin (car day-list)))
839
840(defsubst timeclock-day-list-end (day-list)
841 (timeclock-day-end (car (last day-list))))
842
843(defun timeclock-day-list-span (day-list)
844 (timeclock-day-list-template 'timeclock-day-span))
845
846(defun timeclock-day-list-break (day-list)
847 (timeclock-day-list-template 'timeclock-day-break))
848
849(defun timeclock-day-list-projects (day-list)
850 (let (projects)
851 (while day-list
852 (let ((projs (timeclock-day-projects (car day-list))))
853 (while projs
854 (if projects
855 (add-to-list 'projects (car projs))
856 (setq projects (list (car projs))))
857 (setq projs (cdr projs))))
858 (setq day-list (cdr day-list)))
859 projects))
860
861
862(defsubst timeclock-current-debt (&optional log-data)
863 (nth 0 (or log-data (timeclock-log-data))))
864
865(defsubst timeclock-day-alist (&optional log-data)
866 (nth 1 (or log-data (timeclock-log-data))))
867
868(defun timeclock-day-list (&optional log-data)
869 (let ((alist (timeclock-day-alist log-data))
870 day-list)
871 (while alist
872 (setq day-list (cons (cdar alist) day-list)
873 alist (cdr alist)))
874 day-list))
875
876(defsubst timeclock-project-alist (&optional log-data)
877 (nth 2 (or log-data (timeclock-log-data))))
878
879
880(defun timeclock-log-data (&optional recent-only filename)
881 "Return the contents of the timelog file, in a useful format.
4ee3e788
GM
882If the optional argument RECENT-ONLY is non-nil, only show the contents
883from the last point where the time debt (see below) was set.
884If the optional argument FILENAME is non-nil, it is used instead of
885the file specified by `timeclock-file.'
886
dace60cf
JW
887A timelog contains data in the form of a single entry per line.
888Each entry has the form:
889
890 CODE YYYY/MM/DD HH:MM:SS [COMMENT]
891
892CODE is one of: b, h, i, o or O. COMMENT is optional when the code is
893i, o or O. The meanings of the codes are:
894
895 b Set the current time balance, or \"time debt\". Useful when
896 archiving old log data, when a debt must be carried forward.
897 The COMMENT here is the number of seconds of debt.
898
899 h Set the required working time for the given day. This must
900 be the first entry for that day. The COMMENT in this case is
a9dfccd6
EZ
901 the number of hours in this workday. Floating point amounts
902 are allowed.
dace60cf
JW
903
904 i Clock in. The COMMENT in this case should be the name of the
905 project worked on.
906
907 o Clock out. COMMENT is unnecessary, but can be used to provide
908 a description of how the period went, for example.
909
910 O Final clock out. Whatever project was being worked on, it is
911 now finished. Useful for creating summary reports.
912
913When this function is called, it will return a data structure with the
914following format:
915
916 (DEBT ENTRIES-BY-DAY ENTRIES-BY-PROJECT)
917
918DEBT is a floating point number representing the number of seconds
919\"owed\" before any work was done. For a new file (one without a 'b'
920entry), this is always zero.
921
922The two entries lists have similar formats. They are both alists,
923where the CAR is the index, and the CDR is a list of time entries.
924For ENTRIES-BY-DAY, the CAR is a textual date string, of the form
925YYYY/MM/DD. For ENTRIES-BY-PROJECT, it is the name of the project
926worked on, or t for the default project.
927
928The CDR for ENTRIES-BY-DAY is slightly different than for
929ENTRIES-BY-PROJECT. It has the following form:
930
931 (DAY-LENGTH TIME-ENTRIES...)
932
933For ENTRIES-BY-PROJECT, there is no DAY-LENGTH member. It is simply a
934list of TIME-ENTRIES. Note that if DAY-LENGTH is nil, it means
935whatever is the default should be used.
936
937A TIME-ENTRY is a recorded time interval. It has the following format
938\(although generally one does not have to manipulate these entries
939directly; see below):
940
941 (BEGIN-TIME END-TIME PROJECT [COMMENT] [FINAL-P])
942
943Anyway, suffice it to say there are a lot of structures. Typically
944the user is expected to manipulate to the day(s) or project(s) that he
945or she wants, at which point the following helper functions may be
946used:
947
948 timeclock-day-required
949 timeclock-day-length
950 timeclock-day-debt
951 timeclock-day-begin
952 timeclock-day-end
953 timeclock-day-span
954 timeclock-day-break
955 timeclock-day-projects
956
957 timeclock-day-list-required
958 timeclock-day-list-length
959 timeclock-day-list-debt
960 timeclock-day-list-begin
961 timeclock-day-list-end
962 timeclock-day-list-span
963 timeclock-day-list-break
964 timeclock-day-list-projects
965
966 timeclock-entry-length
967 timeclock-entry-begin
968 timeclock-entry-end
969 timeclock-entry-project
970 timeclock-entry-comment
971
972 timeclock-entry-list-length
973 timeclock-entry-list-begin
974 timeclock-entry-list-end
975 timeclock-entry-list-span
976 timeclock-entry-list-break
977 timeclock-entry-list-projects
978
979A few comments should make the use of the above functions obvious:
980
981 `required' is the amount of time that must be spent during a day, or
982 sequence of days, in order to have no debt.
983
984 `length' is the actual amount of time that was spent.
985
986 `debt' is the difference between required time and length. A
987 negative debt signifies overtime.
988
989 `begin' is the earliest moment at which work began.
990
991 `end' is the final moment work was done.
992
993 `span' is the difference between begin and end.
994
995 `break' is the difference between span and length.
996
997 `project' is the project that was worked on, and `projects' is a
998 list of all the projects that were worked on during a given period.
999
1000 `comment', where it applies, could mean anything.
1001
1002There are a few more functions available, for locating day and entry
1003lists:
1004
1005 timeclock-day-alist LOG-DATA
1006 timeclock-project-alist LOG-DATA
1007 timeclock-current-debt LOG-DATA
1008
1009See the documentation for the given function if more info is needed."
1010 (let* ((log-data (list 0.0 nil nil))
1011 (now (current-time))
1012 (todays-date (timeclock-time-to-date now))
1013 last-date-limited last-date-seconds last-date
9329ea14 1014 (line 0) last beg day entry event)
dace60cf
JW
1015 (with-temp-buffer
1016 (insert-file-contents (or filename timeclock-file))
1017 (when recent-only
1018 (goto-char (point-max))
1019 (unless (re-search-backward "^b\\s-+" nil t)
1020 (goto-char (point-min))))
1021 (while (or (setq event (timeclock-read-moment))
1022 (and beg (not last)
1023 (setq last t event (list "o" now))))
1024 (setq line (1+ line))
1025 (cond ((equal (car event) "b")
1026 (setcar log-data (string-to-number (nth 2 event))))
1027 ((equal (car event) "h")
1028 (setq last-date-limited (timeclock-time-to-date (cadr event))
1029 last-date-seconds (* (string-to-number (nth 2 event))
1030 3600.0)))
1031 ((equal (car event) "i")
1032 (if beg
1033 (error "Error in format of timelog file, line %d" line)
1034 (setq beg t))
1035 (setq entry (list (cadr event) nil
1036 (and (> (length (nth 2 event)) 0)
1037 (nth 2 event))))
1038 (let ((date (timeclock-time-to-date (cadr event))))
1039 (if (and last-date
1040 (not (equal date last-date)))
9329ea14
JW
1041 (progn
1042 (setcar (cdr log-data)
1043 (cons (cons last-date day)
1044 (cadr log-data)))
1045 (setq day (list (and last-date-limited
1046 last-date-seconds))))
1047 (unless day
1048 (setq day (list (and last-date-limited
1049 last-date-seconds)))))
dace60cf
JW
1050 (setq last-date date
1051 last-date-limited nil)))
1052 ((equal (downcase (car event)) "o")
1053 (if (not beg)
1054 (error "Error in format of timelog file, line %d" line)
1055 (setq beg nil))
1056 (setcar (cdr entry) (cadr event))
1057 (let ((desc (and (> (length (nth 2 event)) 0)
1058 (nth 2 event))))
1059 (if desc
1060 (nconc entry (list (nth 2 event))))
1061 (if (equal (car event) "O")
1062 (nconc entry (if desc
1063 (list t)
1064 (list nil t))))
1065 (nconc day (list entry))
1066 (setq desc (nth 2 entry))
1067 (let ((proj (assoc desc (nth 2 log-data))))
9329ea14 1068 (if (null proj)
dace60cf
JW
1069 (setcar (cddr log-data)
1070 (cons (cons desc (list entry))
1071 (car (cddr log-data))))
1072 (nconc (cdr proj) (list entry)))))))
1073 (forward-line))
1074 (if day
1075 (setcar (cdr log-data)
1076 (cons (cons last-date day)
1077 (cadr log-data))))
1078 log-data)))
1079
1c8c9fb8 1080(defun timeclock-find-discrep ()
4ee3e788
GM
1081 "Calculate time discrepancies, in seconds.
1082The result is a three element list, containing the total time
1083discrepancy, today's discrepancy, and the time worked today."
dace60cf
JW
1084 ;; This is not implemented in terms of the functions above, because
1085 ;; it's a bit wasteful to read all of that data in, just to throw
1086 ;; away more than 90% of the information afterwards.
3dc630b9
JW
1087 ;;
1088 ;; If it were implemented using those functions, it would look
1089 ;; something like this:
1090 ;; (let ((days (timeclock-day-alist (timeclock-log-data)))
1091 ;; (total 0.0))
1092 ;; (while days
1093 ;; (setq total (+ total (- (timeclock-day-length (cdar days))
1094 ;; (timeclock-day-required (cdar days))))
1095 ;; days (cdr days)))
1096 ;; total)
1097 (let* ((now (current-time))
1098 (todays-date (timeclock-time-to-date now))
4bd0908b 1099 (first t) (accum 0) (elapsed 0)
3dc630b9
JW
1100 event beg last-date avg
1101 last-date-limited last-date-seconds)
1102 (unless timeclock-discrepancy
1103 (when (file-readable-p timeclock-file)
9329ea14
JW
1104 (setq timeclock-project-list nil
1105 timeclock-last-project nil
1106 timeclock-reason-list nil
1107 timeclock-elapsed 0)
1108 (with-temp-buffer
1109 (insert-file-contents timeclock-file)
1110 (goto-char (point-max))
1111 (unless (re-search-backward "^b\\s-+" nil t)
1112 (goto-char (point-min)))
1113 (while (setq event (timeclock-read-moment))
1114 (cond ((equal (car event) "b")
1115 (setq accum (string-to-number (nth 2 event))))
1116 ((equal (car event) "h")
1117 (setq last-date-limited
1118 (timeclock-time-to-date (cadr event))
1119 last-date-seconds
1120 (* (string-to-number (nth 2 event)) 3600.0)))
1121 ((equal (car event) "i")
1122 (when (and (nth 2 event)
1123 (> (length (nth 2 event)) 0))
1124 (add-to-list 'timeclock-project-list (nth 2 event))
1125 (setq timeclock-last-project (nth 2 event)))
1126 (let ((date (timeclock-time-to-date (cadr event))))
1c8c9fb8
JW
1127 (if (if last-date
1128 (not (equal date last-date))
1129 first)
9329ea14 1130 (setq first nil
1c8c9fb8
JW
1131 accum (- accum (if last-date-limited
1132 last-date-seconds
1133 timeclock-workday))))
9329ea14
JW
1134 (setq last-date date
1135 last-date-limited nil)
1136 (if beg
90cbf47e 1137 (error "Error in format of timelog file!")
9329ea14
JW
1138 (setq beg (timeclock-time-to-seconds (cadr event))))))
1139 ((equal (downcase (car event)) "o")
1140 (if (and (nth 2 event)
1141 (> (length (nth 2 event)) 0))
1142 (add-to-list 'timeclock-reason-list (nth 2 event)))
1c8c9fb8
JW
1143 (if (not beg)
1144 (error "Error in format of timelog file!")
1145 (setq timeclock-last-period
1146 (- (timeclock-time-to-seconds (cadr event)) beg)
1147 accum (+ timeclock-last-period accum)
1148 beg nil))
9329ea14
JW
1149 (if (equal last-date todays-date)
1150 (setq timeclock-elapsed
1151 (+ timeclock-last-period timeclock-elapsed)))))
1152 (setq timeclock-last-event event
1153 timeclock-last-event-workday
3dc630b9 1154 (if (equal (timeclock-time-to-date now) last-date-limited)
9329ea14
JW
1155 last-date-seconds
1156 timeclock-workday))
1157 (forward-line))
3dc630b9 1158 (setq timeclock-discrepancy accum))))
3b774a0c
JW
1159 (unless timeclock-last-event-workday
1160 (setq timeclock-last-event-workday timeclock-workday))
9d1137ce 1161 (setq accum (or timeclock-discrepancy 0)
8c9245e2 1162 elapsed (or timeclock-elapsed elapsed))
3dc630b9
JW
1163 (if timeclock-last-event
1164 (if (equal (car timeclock-last-event) "i")
1c8c9fb8
JW
1165 (let ((last-period (timeclock-last-period now)))
1166 (setq accum (+ accum last-period)
1167 elapsed (+ elapsed last-period)))
3dc630b9
JW
1168 (if (not (equal (timeclock-time-to-date
1169 (cadr timeclock-last-event))
1170 (timeclock-time-to-date now)))
1171 (setq accum (- accum timeclock-last-event-workday)))))
1c8c9fb8
JW
1172 (list accum (- elapsed timeclock-last-event-workday)
1173 elapsed)))
9329ea14
JW
1174
1175;;; A reporting function that uses timeclock-log-data
1176
9329ea14 1177(defun timeclock-day-base (&optional time)
4ee3e788
GM
1178 "Given a time within a day, return 0:0:0 within that day.
1179If optional argument TIME is non-nil, use that instead of the current time."
9329ea14
JW
1180 (let ((decoded (decode-time (or time (current-time)))))
1181 (setcar (nthcdr 0 decoded) 0)
1182 (setcar (nthcdr 1 decoded) 0)
1183 (setcar (nthcdr 2 decoded) 0)
1184 (apply 'encode-time decoded)))
1185
7e285b36
CY
1186(defun timeclock-mean (l)
1187 "Compute the arithmetic mean of the values in the list L."
9329ea14
JW
1188 (let ((total 0)
1189 (count 0))
1190 (while l
1191 (setq total (+ total (car l))
1192 count (1+ count)
1193 l (cdr l)))
1194 (if (> count 0)
1195 (/ total count)
1196 0)))
1197
1198(defun timeclock-generate-report (&optional html-p)
4ee3e788
GM
1199 "Generate a summary report based on the current timelog file.
1200By default, the report is in plain text, but if the optional argument
a9dfccd6 1201HTML-P is non-nil, HTML markup is added."
7e285b36 1202 (interactive "P")
9329ea14
JW
1203 (let ((log (timeclock-log-data))
1204 (today (timeclock-day-base)))
1205 (if html-p (insert "<p>"))
1206 (insert "Currently ")
1207 (let ((project (nth 2 timeclock-last-event))
1208 (begin (nth 1 timeclock-last-event))
1209 done)
1210 (if (timeclock-currently-in-p)
1211 (insert "IN")
1212 (if (or (null project) (= (length project) 0))
1213 (progn (insert "Done Working Today")
1214 (setq done t))
1215 (insert "OUT")))
1216 (unless done
1217 (insert " since " (format-time-string "%Y/%m/%d %-I:%M %p" begin))
1218 (if html-p
1219 (insert "<br>\n<b>")
1220 (insert "\n*"))
1221 (if (timeclock-currently-in-p)
1222 (insert "Working on "))
1223 (if html-p
40e7276a 1224 (insert project "</b><br>\n")
9329ea14
JW
1225 (insert project "*\n"))
1226 (let ((proj-data (cdr (assoc project (timeclock-project-alist log))))
1227 (two-weeks-ago (timeclock-seconds-to-time
1228 (- (timeclock-time-to-seconds today)
1229 (* 2 7 24 60 60))))
1230 two-week-len today-len)
1231 (while proj-data
1c226f2b 1232 (if (not (time-less-p
9329ea14
JW
1233 (timeclock-entry-begin (car proj-data)) today))
1234 (setq today-len (timeclock-entry-list-length proj-data)
1235 proj-data nil)
1236 (if (and (null two-week-len)
1c226f2b 1237 (not (time-less-p
9329ea14
JW
1238 (timeclock-entry-begin (car proj-data))
1239 two-weeks-ago)))
1240 (setq two-week-len (timeclock-entry-list-length proj-data)))
1241 (setq proj-data (cdr proj-data))))
1242 (if (null two-week-len)
1243 (setq two-week-len today-len))
1244 (if html-p (insert "<p>"))
3dc630b9
JW
1245 (if today-len
1246 (insert "\nTime spent on this task today: "
1247 (timeclock-seconds-to-string today-len)
1248 ". In the last two weeks: "
1249 (timeclock-seconds-to-string two-week-len))
1250 (if two-week-len
1251 (insert "\nTime spent on this task in the last two weeks: "
1252 (timeclock-seconds-to-string two-week-len))))
9329ea14
JW
1253 (if html-p (insert "<br>"))
1254 (insert "\n"
1255 (timeclock-seconds-to-string (timeclock-workday-elapsed))
1256 " worked today, "
1257 (timeclock-seconds-to-string (timeclock-workday-remaining))
1258 " remaining, done at "
1259 (timeclock-when-to-leave-string) "\n")))
1260 (if html-p (insert "<p>"))
1261 (insert "\nThere have been "
1262 (number-to-string
1263 (length (timeclock-day-alist log)))
1264 " days of activity, starting "
1265 (caar (last (timeclock-day-alist log))))
1266 (if html-p (insert "</p>"))
1267 (when html-p
1268 (insert "<p>
1269<table>
1270<td width=\"25\"><br></td><td>
1271<table border=1 cellpadding=3>
1272<tr><th><i>Statistics</i></th>
1273 <th>Entire</th>
1274 <th>-30 days</th>
1275 <th>-3 mons</th>
1276 <th>-6 mons</th>
1277 <th>-1 year</th>
1278</tr>")
1279 (let* ((day-list (timeclock-day-list))
1280 (thirty-days-ago (timeclock-seconds-to-time
1281 (- (timeclock-time-to-seconds today)
1282 (* 30 24 60 60))))
1283 (three-months-ago (timeclock-seconds-to-time
1284 (- (timeclock-time-to-seconds today)
1285 (* 90 24 60 60))))
1286 (six-months-ago (timeclock-seconds-to-time
1287 (- (timeclock-time-to-seconds today)
1288 (* 180 24 60 60))))
1289 (one-year-ago (timeclock-seconds-to-time
1290 (- (timeclock-time-to-seconds today)
1291 (* 365 24 60 60))))
1292 (time-in (vector (list t) (list t) (list t) (list t) (list t)))
1293 (time-out (vector (list t) (list t) (list t) (list t) (list t)))
1294 (breaks (vector (list t) (list t) (list t) (list t) (list t)))
1295 (workday (vector (list t) (list t) (list t) (list t) (list t)))
1296 (lengths (vector '(0 0) thirty-days-ago three-months-ago
1297 six-months-ago one-year-ago)))
1298 ;; collect statistics from complete timelog
1299 (while day-list
1300 (let ((i 0) (l 5))
1301 (while (< i l)
1c226f2b 1302 (unless (time-less-p
9329ea14
JW
1303 (timeclock-day-begin (car day-list))
1304 (aref lengths i))
1305 (let ((base (timeclock-time-to-seconds
1306 (timeclock-day-base
1307 (timeclock-day-begin (car day-list))))))
1308 (nconc (aref time-in i)
1309 (list (- (timeclock-time-to-seconds
1310 (timeclock-day-begin (car day-list)))
1311 base)))
1312 (let ((span (timeclock-day-span (car day-list)))
1313 (len (timeclock-day-length (car day-list)))
1314 (req (timeclock-day-required (car day-list))))
1315 ;; If the day's actual work length is less than
1316 ;; 70% of its span, then likely the exit time
1317 ;; and break amount are not worthwhile adding to
1318 ;; the statistic
1319 (when (and (> span 0)
1320 (> (/ (float len) (float span)) 0.70))
1321 (nconc (aref time-out i)
1322 (list (- (timeclock-time-to-seconds
1323 (timeclock-day-end (car day-list)))
1324 base)))
1325 (nconc (aref breaks i) (list (- span len))))
1326 (if req
1327 (setq len (+ len (- timeclock-workday req))))
1328 (nconc (aref workday i) (list len)))))
1329 (setq i (1+ i))))
1330 (setq day-list (cdr day-list)))
1331 ;; average statistics
1332 (let ((i 0) (l 5))
1333 (while (< i l)
7e285b36
CY
1334 (aset time-in i (timeclock-mean (cdr (aref time-in i))))
1335 (aset time-out i (timeclock-mean (cdr (aref time-out i))))
1336 (aset breaks i (timeclock-mean (cdr (aref breaks i))))
1337 (aset workday i (timeclock-mean (cdr (aref workday i))))
9329ea14
JW
1338 (setq i (1+ i))))
1339 ;; Output the HTML table
1340 (insert "<tr>\n")
1341 (insert "<td align=\"center\">Time in</td>\n")
1342 (let ((i 0) (l 5))
1343 (while (< i l)
1344 (insert "<td align=\"right\">"
1345 (timeclock-seconds-to-string (aref time-in i))
1346 "</td>\n")
1347 (setq i (1+ i))))
1348 (insert "</tr>\n")
3dc630b9 1349
9329ea14
JW
1350 (insert "<tr>\n")
1351 (insert "<td align=\"center\">Time out</td>\n")
1352 (let ((i 0) (l 5))
1353 (while (< i l)
1354 (insert "<td align=\"right\">"
1355 (timeclock-seconds-to-string (aref time-out i))
1356 "</td>\n")
1357 (setq i (1+ i))))
1358 (insert "</tr>\n")
3dc630b9 1359
9329ea14
JW
1360 (insert "<tr>\n")
1361 (insert "<td align=\"center\">Break</td>\n")
1362 (let ((i 0) (l 5))
1363 (while (< i l)
1364 (insert "<td align=\"right\">"
1365 (timeclock-seconds-to-string (aref breaks i))
1366 "</td>\n")
1367 (setq i (1+ i))))
1368 (insert "</tr>\n")
3dc630b9 1369
9329ea14
JW
1370 (insert "<tr>\n")
1371 (insert "<td align=\"center\">Workday</td>\n")
1372 (let ((i 0) (l 5))
1373 (while (< i l)
1374 (insert "<td align=\"right\">"
1375 (timeclock-seconds-to-string (aref workday i))
1376 "</td>\n")
1377 (setq i (1+ i))))
1378 (insert "</tr>\n"))
1379 (insert "<tfoot>
1380<td colspan=\"6\" align=\"center\">
1381 <i>These are approximate figures</i></td>
1382</tfoot>
1383</table>
1384</td></table>")))))
1385
1386;;; A helpful little function
1387
1388(defun timeclock-visit-timelog ()
4ee3e788 1389 "Open the file named by `timeclock-file' in another window."
9329ea14
JW
1390 (interactive)
1391 (find-file-other-window timeclock-file))
90cbf47e
GM
1392
1393(provide 'timeclock)
1394
1395(run-hooks 'timeclock-load-hook)
1396
1397;; make sure we know the list of reasons, projects, and have computed
1398;; the last event and current discrepancy.
1399(if (file-readable-p timeclock-file)
1400 (timeclock-reread-log))
1401
ab5796a9 1402;;; arch-tag: a0be3377-deb6-44ec-b9a2-a7be28436a40
90cbf47e 1403;;; timeclock.el ends here