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