org-colview.el: Fix several bugs
[org-mode.git] / lisp / org-clock.el
blob91f1c63706f57318da76e30fdc083bce2f1cd88b
1 ;;; org-clock.el --- The time clocking code for Org-mode
3 ;; Copyright (C) 2004-2012 Free Software Foundation, Inc.
5 ;; Author: Carsten Dominik <carsten at orgmode dot org>
6 ;; Keywords: outlines, hypermedia, calendar, wp
7 ;; Homepage: http://orgmode.org
8 ;;
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
25 ;;; Commentary:
27 ;; This file contains the time clocking code for Org-mode
29 (require 'org-exp)
30 ;;; Code:
32 (eval-when-compile
33 (require 'cl))
35 (declare-function calendar-absolute-from-iso "cal-iso" (&optional date))
36 (declare-function notifications-notify "notifications" (&rest params))
37 (declare-function org-pop-to-buffer-same-window "org-compat" (&optional buffer-or-name norecord label))
38 (defvar org-time-stamp-formats)
39 (defvar org-ts-what)
40 (defvar org-frame-title-format-backup frame-title-format)
42 (defgroup org-clock nil
43 "Options concerning clocking working time in Org-mode."
44 :tag "Org Clock"
45 :group 'org-progress)
47 (defcustom org-clock-into-drawer org-log-into-drawer
48 "Should clocking info be wrapped into a drawer?
49 When t, clocking info will always be inserted into a :LOGBOOK: drawer.
50 If necessary, the drawer will be created.
51 When nil, the drawer will not be created, but used when present.
52 When an integer and the number of clocking entries in an item
53 reaches or exceeds this number, a drawer will be created.
54 When a string, it names the drawer to be used.
56 The default for this variable is the value of `org-log-into-drawer',
57 which see."
58 :group 'org-todo
59 :group 'org-clock
60 :type '(choice
61 (const :tag "Always" t)
62 (const :tag "Only when drawer exists" nil)
63 (integer :tag "When at least N clock entries")
64 (const :tag "Into LOGBOOK drawer" "LOGBOOK")
65 (string :tag "Into Drawer named...")))
67 (defun org-clock-into-drawer ()
68 "Return the value of `org-clock-into-drawer', but let properties overrule.
69 If the current entry has or inherits a CLOCK_INTO_DRAWER
70 property, it will be used instead of the default value; otherwise
71 if the current entry has or inherits a LOG_INTO_DRAWER property,
72 it will be used instead of the default value.
73 The default is the value of the customizable variable `org-clock-into-drawer',
74 which see."
75 (let ((p (org-entry-get nil "CLOCK_INTO_DRAWER" 'inherit))
76 (q (org-entry-get nil "LOG_INTO_DRAWER" 'inherit)))
77 (cond
78 ((or (not (or p q)) (equal p "nil") (equal q "nil")) org-clock-into-drawer)
79 ((or (equal p "t") (equal q "t")) "LOGBOOK")
80 ((not p) q)
81 (t p))))
83 (defcustom org-clock-out-when-done t
84 "When non-nil, clock will be stopped when the clocked entry is marked DONE.
85 DONE here means any DONE-like state.
86 A nil value means clock will keep running until stopped explicitly with
87 `C-c C-x C-o', or until the clock is started in a different item.
88 Instead of t, this can also be a list of TODO states that should trigger
89 clocking out."
90 :group 'org-clock
91 :type '(choice
92 (const :tag "No" nil)
93 (const :tag "Yes, when done" t)
94 (repeat :tag "State list"
95 (string :tag "TODO keyword"))))
97 (defcustom org-clock-out-remove-zero-time-clocks nil
98 "Non-nil means remove the clock line when the resulting time is zero."
99 :group 'org-clock
100 :type 'boolean)
102 (defcustom org-clock-in-switch-to-state nil
103 "Set task to a special todo state while clocking it.
104 The value should be the state to which the entry should be
105 switched. If the value is a function, it must take one
106 parameter (the current TODO state of the item) and return the
107 state to switch it to."
108 :group 'org-clock
109 :group 'org-todo
110 :type '(choice
111 (const :tag "Don't force a state" nil)
112 (string :tag "State")
113 (symbol :tag "Function")))
115 (defcustom org-clock-out-switch-to-state nil
116 "Set task to a special todo state after clocking out.
117 The value should be the state to which the entry should be
118 switched. If the value is a function, it must take one
119 parameter (the current TODO state of the item) and return the
120 state to switch it to."
121 :group 'org-clock
122 :group 'org-todo
123 :type '(choice
124 (const :tag "Don't force a state" nil)
125 (string :tag "State")
126 (symbol :tag "Function")))
128 (defcustom org-clock-history-length 5
129 "Number of clock tasks to remember in history."
130 :group 'org-clock
131 :type 'integer)
133 (defcustom org-clock-goto-may-find-recent-task t
134 "Non-nil means `org-clock-goto' can go to recent task if no active clock."
135 :group 'org-clock
136 :type 'boolean)
138 (defcustom org-clock-heading-function nil
139 "When non-nil, should be a function to create `org-clock-heading'.
140 This is the string shown in the mode line when a clock is running.
141 The function is called with point at the beginning of the headline."
142 :group 'org-clock
143 :type 'function)
145 (defcustom org-clock-string-limit 0
146 "Maximum length of clock strings in the mode line. 0 means no limit."
147 :group 'org-clock
148 :type 'integer)
150 (defcustom org-clock-in-resume nil
151 "If non-nil, resume clock when clocking into task with open clock.
152 When clocking into a task with a clock entry which has not been closed,
153 the clock can be resumed from that point."
154 :group 'org-clock
155 :type 'boolean)
157 (defcustom org-clock-persist nil
158 "When non-nil, save the running clock when Emacs is closed.
159 The clock is resumed when Emacs restarts.
160 When this is t, both the running clock, and the entire clock
161 history are saved. When this is the symbol `clock', only the
162 running clock is saved.
164 When Emacs restarts with saved clock information, the file containing the
165 running clock as well as all files mentioned in the clock history will
166 be visited.
167 All this depends on running `org-clock-persistence-insinuate' in .emacs"
168 :group 'org-clock
169 :type '(choice
170 (const :tag "Just the running clock" clock)
171 (const :tag "Just the history" history)
172 (const :tag "Clock and history" t)
173 (const :tag "No persistence" nil)))
175 (defcustom org-clock-persist-file (convert-standard-filename
176 "~/.emacs.d/org-clock-save.el")
177 "File to save clock data to."
178 :group 'org-clock
179 :type 'string)
181 (defcustom org-clock-persist-query-save nil
182 "When non-nil, ask before saving the current clock on exit."
183 :group 'org-clock
184 :type 'boolean)
186 (defcustom org-clock-persist-query-resume t
187 "When non-nil, ask before resuming any stored clock during load."
188 :group 'org-clock
189 :type 'boolean)
191 (defcustom org-clock-sound nil
192 "Sound that will used for notifications.
193 Possible values:
195 nil no sound played.
196 t standard Emacs beep
197 file name play this sound file. If not possible, fall back to beep"
198 :group 'org-clock
199 :type '(choice
200 (const :tag "No sound" nil)
201 (const :tag "Standard beep" t)
202 (file :tag "Play sound file")))
204 (defcustom org-clock-modeline-total 'auto
205 "Default setting for the time included for the mode line clock.
206 This can be overruled locally using the CLOCK_MODELINE_TOTAL property.
207 Allowed values are:
209 current Only the time in the current instance of the clock
210 today All time clocked into this task today
211 repeat All time clocked into this task since last repeat
212 all All time ever recorded for this task
213 auto Automatically, either `all', or `repeat' for repeating tasks"
214 :group 'org-clock
215 :type '(choice
216 (const :tag "Current clock" current)
217 (const :tag "Today's task time" today)
218 (const :tag "Since last repeat" repeat)
219 (const :tag "All task time" all)
220 (const :tag "Automatically, `all' or since `repeat'" auto)))
222 (defvaralias 'org-task-overrun-text 'org-clock-task-overrun-text)
223 (defcustom org-clock-task-overrun-text nil
224 "Extra mode line text to indicate that the clock is overrun.
225 The can be nil to indicate that instead of adding text, the clock time
226 should get a different face (`org-mode-line-clock-overrun').
227 When this is a string, it is prepended to the clock string as an indication,
228 also using the face `org-mode-line-clock-overrun'."
229 :group 'org-clock
230 :version "24.1"
231 :type '(choice
232 (const :tag "Just mark the time string" nil)
233 (string :tag "Text to prepend")))
235 (defcustom org-show-notification-handler nil
236 "Function or program to send notification with.
237 The function or program will be called with the notification
238 string as argument."
239 :group 'org-clock
240 :type '(choice
241 (string :tag "Program")
242 (function :tag "Function")))
244 (defgroup org-clocktable nil
245 "Options concerning the clock table in Org-mode."
246 :tag "Org Clock Table"
247 :group 'org-clock)
249 (defcustom org-clocktable-defaults
250 (list
251 :maxlevel 2
252 :lang org-export-default-language
253 :scope 'file
254 :block nil
255 :tstart nil
256 :tend nil
257 :step nil
258 :stepskip0 nil
259 :fileskip0 nil
260 :tags nil
261 :emphasize nil
262 :link nil
263 :narrow '40!
264 :indent t
265 :formula nil
266 :timestamp nil
267 :level nil
268 :tcolumns nil
269 :formatter nil)
270 "Default properties for clock tables."
271 :group 'org-clock
272 :version "24.1"
273 :type 'plist)
275 (defcustom org-clock-clocktable-formatter 'org-clocktable-write-default
276 "Function to turn clocking data into a table.
277 For more information, see `org-clocktable-write-default'."
278 :group 'org-clocktable
279 :version "24.1"
280 :type 'function)
282 ;; FIXME: translate es and nl last string "Clock summary at"
283 (defcustom org-clock-clocktable-language-setup
284 '(("en" "File" "L" "Timestamp" "Headline" "Time" "ALL" "Total time" "File time" "Clock summary at")
285 ("es" "Archivo" "N" "Fecha y hora" "Tarea" "Tiempo" "TODO" "Tiempo total" "Tiempo archivo" "Clock summary at")
286 ("fr" "Fichier" "N" "Horodatage" "En-tête" "Durée" "TOUT" "Durée totale" "Durée fichier" "Horodatage sommaire à")
287 ("nl" "Bestand" "N" "Tijdstip" "Hoofding" "Duur" "ALLES" "Totale duur" "Bestandstijd" "Clock summary at"))
288 "Terms used in clocktable, translated to different languages."
289 :group 'org-clocktable
290 :version "24.1"
291 :type 'alist)
293 (defcustom org-clock-clocktable-default-properties '(:maxlevel 2 :scope file)
294 "Default properties for new clocktables.
295 These will be inserted into the BEGIN line, to make it easy for users to
296 play with them."
297 :group 'org-clocktable
298 :type 'plist)
300 (defcustom org-clock-idle-time nil
301 "When non-nil, resolve open clocks if the user is idle more than X minutes."
302 :group 'org-clock
303 :type '(choice
304 (const :tag "Never" nil)
305 (integer :tag "After N minutes")))
307 (defcustom org-clock-auto-clock-resolution 'when-no-clock-is-running
308 "When to automatically resolve open clocks found in Org buffers."
309 :group 'org-clock
310 :type '(choice
311 (const :tag "Never" nil)
312 (const :tag "Always" t)
313 (const :tag "When no clock is running" when-no-clock-is-running)))
315 (defcustom org-clock-report-include-clocking-task nil
316 "When non-nil, include the current clocking task time in clock reports."
317 :group 'org-clock
318 :version "24.1"
319 :type 'boolean)
321 (defcustom org-clock-resolve-expert nil
322 "Non-nil means do not show the splash buffer with the clock resolver."
323 :group 'org-clock
324 :version "24.1"
325 :type 'boolean)
327 (defcustom org-clock-continuously nil
328 "Non-nil means to start clocking from the last clock-out time, if any."
329 :type 'boolean
330 :version "24.1"
331 :group 'org-clock)
333 (defcustom org-clock-total-time-cell-format "*%s*"
334 "Format string for the total time cells."
335 :group 'org-clock
336 :version "24.1"
337 :type 'boolean)
339 (defcustom org-clock-file-time-cell-format "*%s*"
340 "Format string for the file time cells."
341 :group 'org-clock
342 :version "24.1"
343 :type 'boolean)
345 (defcustom org-clock-clocked-in-display 'mode-line
346 "When clocked in for a task, org-mode can display the current
347 task and accumulated time in the mode line and/or frame title.
348 Allowed values are:
350 both displays in both mode line and frame title
351 mode-line displays only in mode line (default)
352 frame-title displays only in frame title
353 nil current clock is not displayed"
354 :group 'org-clock
355 :type '(choice
356 (const :tag "Mode line" mode-line)
357 (const :tag "Frame title" frame-title)
358 (const :tag "Both" both)
359 (const :tag "None" nil)))
361 (defcustom org-clock-frame-title-format '(t org-mode-line-string)
362 "The value for `frame-title-format' when clocking in.
364 When `org-clock-clocked-in-display' is set to 'frame-title
365 or 'both, clocking in will replace `frame-title-format' with
366 this value. Clocking out will restore `frame-title-format'.
368 `org-frame-title-string' is a format string using the same
369 specifications than `frame-title-format', which see."
370 :version "24.1"
371 :group 'org-clock
372 :type 'sexp)
374 (defvar org-clock-in-prepare-hook nil
375 "Hook run when preparing the clock.
376 This hook is run before anything happens to the task that
377 you want to clock in. For example, you can use this hook
378 to add an effort property.")
379 (defvar org-clock-in-hook nil
380 "Hook run when starting the clock.")
381 (defvar org-clock-out-hook nil
382 "Hook run when stopping the current clock.")
384 (defvar org-clock-cancel-hook nil
385 "Hook run when cancelling the current clock.")
386 (defvar org-clock-goto-hook nil
387 "Hook run when selecting the currently clocked-in entry.")
388 (defvar org-clock-has-been-used nil
389 "Has the clock been used during the current Emacs session?")
391 ;;; The clock for measuring work time.
393 (defvar org-mode-line-string "")
394 (put 'org-mode-line-string 'risky-local-variable t)
396 (defvar org-clock-mode-line-timer nil)
397 (defvar org-clock-idle-timer nil)
398 (defvar org-clock-heading) ; defined in org.el
399 (defvar org-clock-heading-for-remember "")
400 (defvar org-clock-start-time "")
402 (defvar org-clock-leftover-time nil
403 "If non-nil, user cancelled a clock; this is when leftover time started.")
405 (defvar org-clock-effort ""
406 "Effort estimate of the currently clocking task.")
408 (defvar org-clock-total-time nil
409 "Holds total time, spent previously on currently clocked item.
410 This does not include the time in the currently running clock.")
412 (defvar org-clock-history nil
413 "List of marker pointing to recent clocked tasks.")
415 (defvar org-clock-default-task (make-marker)
416 "Marker pointing to the default task that should clock time.
417 The clock can be made to switch to this task after clocking out
418 of a different task.")
420 (defvar org-clock-interrupted-task (make-marker)
421 "Marker pointing to the task that has been interrupted by the current clock.")
423 (defvar org-clock-mode-line-map (make-sparse-keymap))
424 (define-key org-clock-mode-line-map [mode-line mouse-2] 'org-clock-goto)
425 (define-key org-clock-mode-line-map [mode-line mouse-1] 'org-clock-menu)
427 (defun org-clock-menu ()
428 (interactive)
429 (popup-menu
430 '("Clock"
431 ["Clock out" org-clock-out t]
432 ["Change effort estimate" org-clock-modify-effort-estimate t]
433 ["Go to clock entry" org-clock-goto t]
434 ["Switch task" (lambda () (interactive) (org-clock-in '(4))) :active t :keys "C-u C-c C-x C-i"])))
436 (defun org-clock-history-push (&optional pos buffer)
437 "Push a marker to the clock history."
438 (setq org-clock-history-length (max 1 (min 35 org-clock-history-length)))
439 (let ((m (move-marker (make-marker)
440 (or pos (point)) (org-base-buffer
441 (or buffer (current-buffer)))))
442 n l)
443 (while (setq n (member m org-clock-history))
444 (move-marker (car n) nil))
445 (setq org-clock-history
446 (delq nil
447 (mapcar (lambda (x) (if (marker-buffer x) x nil))
448 org-clock-history)))
449 (when (>= (setq l (length org-clock-history)) org-clock-history-length)
450 (setq org-clock-history
451 (nreverse
452 (nthcdr (- l org-clock-history-length -1)
453 (nreverse org-clock-history)))))
454 (push m org-clock-history)))
456 (defun org-clock-save-markers-for-cut-and-paste (beg end)
457 "Save relative positions of markers in region."
458 (org-check-and-save-marker org-clock-marker beg end)
459 (org-check-and-save-marker org-clock-hd-marker beg end)
460 (org-check-and-save-marker org-clock-default-task beg end)
461 (org-check-and-save-marker org-clock-interrupted-task beg end)
462 (mapc (lambda (m) (org-check-and-save-marker m beg end))
463 org-clock-history))
465 (defun org-clocking-buffer ()
466 "Return the clocking buffer if we are currently clocking a task or nil."
467 (marker-buffer org-clock-marker))
469 (defun org-clocking-p ()
470 "Return t when clocking a task."
471 (not (equal (org-clocking-buffer) nil)))
473 (defvar org-clock-before-select-task-hook nil
474 "Hook called in task selection just before prompting the user.")
476 (defun org-clock-select-task (&optional prompt)
477 "Select a task that recently was associated with clocking."
478 (interactive)
479 (let (sel-list rpl (i 0) s)
480 (save-window-excursion
481 (org-switch-to-buffer-other-window
482 (get-buffer-create "*Clock Task Select*"))
483 (erase-buffer)
484 (when (marker-buffer org-clock-default-task)
485 (insert (org-add-props "Default Task\n" nil 'face 'bold))
486 (setq s (org-clock-insert-selection-line ?d org-clock-default-task))
487 (push s sel-list))
488 (when (marker-buffer org-clock-interrupted-task)
489 (insert (org-add-props "The task interrupted by starting the last one\n" nil 'face 'bold))
490 (setq s (org-clock-insert-selection-line ?i org-clock-interrupted-task))
491 (push s sel-list))
492 (when (org-clocking-p)
493 (insert (org-add-props "Current Clocking Task\n" nil 'face 'bold))
494 (setq s (org-clock-insert-selection-line ?c org-clock-marker))
495 (push s sel-list))
496 (insert (org-add-props "Recent Tasks\n" nil 'face 'bold))
497 (mapc
498 (lambda (m)
499 (when (marker-buffer m)
500 (setq i (1+ i)
501 s (org-clock-insert-selection-line
502 (if (< i 10)
503 (+ i ?0)
504 (+ i (- ?A 10))) m))
505 (if (fboundp 'int-to-char) (setf (car s) (int-to-char (car s))))
506 (push s sel-list)))
507 org-clock-history)
508 (run-hooks 'org-clock-before-select-task-hook)
509 (org-fit-window-to-buffer)
510 (message (or prompt "Select task for clocking:"))
511 (setq rpl (read-char-exclusive))
512 (cond
513 ((eq rpl ?q) nil)
514 ((eq rpl ?x) nil)
515 ((assoc rpl sel-list) (cdr (assoc rpl sel-list)))
516 (t (error "Invalid task choice %c" rpl))))))
518 (defun org-clock-insert-selection-line (i marker)
519 "Insert a line for the clock selection menu.
520 And return a cons cell with the selection character integer and the marker
521 pointing to it."
522 (when (marker-buffer marker)
523 (let (file cat task heading prefix)
524 (with-current-buffer (org-base-buffer (marker-buffer marker))
525 (save-excursion
526 (save-restriction
527 (widen)
528 (ignore-errors
529 (goto-char marker)
530 (setq file (buffer-file-name (marker-buffer marker))
531 cat (org-get-category)
532 heading (org-get-heading 'notags)
533 prefix (save-excursion
534 (org-back-to-heading t)
535 (looking-at org-outline-regexp)
536 (match-string 0))
537 task (substring
538 (org-fontify-like-in-org-mode
539 (concat prefix heading)
540 org-odd-levels-only)
541 (length prefix)))))))
542 (when (and cat task)
543 (insert (format "[%c] %-15s %s\n" i cat task))
544 (cons i marker)))))
546 (defvar org-clock-task-overrun nil
547 "Internal flag indicating if the clock has overrun the planned time.")
548 (defvar org-clock-update-period 60
549 "Number of seconds between mode line clock string updates.")
551 (defun org-clock-get-clock-string ()
552 "Form a clock-string, that will be shown in the mode line.
553 If an effort estimate was defined for the current item, use
554 01:30/01:50 format (clocked/estimated).
555 If not, show simply the clocked time like 01:50."
556 (let* ((clocked-time (org-clock-get-clocked-time))
557 (h (floor clocked-time 60))
558 (m (- clocked-time (* 60 h))))
559 (if org-clock-effort
560 (let* ((effort-in-minutes
561 (org-duration-string-to-minutes org-clock-effort))
562 (effort-h (floor effort-in-minutes 60))
563 (effort-m (- effort-in-minutes (* effort-h 60)))
564 (work-done-str
565 (org-propertize
566 (format org-time-clocksum-format h m)
567 'face (if (and org-clock-task-overrun (not org-clock-task-overrun-text))
568 'org-mode-line-clock-overrun 'org-mode-line-clock)))
569 (effort-str (format org-time-clocksum-format effort-h effort-m))
570 (clockstr (org-propertize
571 (concat " [%s/" effort-str
572 "] (" (replace-regexp-in-string "%" "%%" org-clock-heading) ")")
573 'face 'org-mode-line-clock)))
574 (format clockstr work-done-str))
575 (org-propertize (format
576 (concat "[" org-time-clocksum-format " (%s)]")
577 h m org-clock-heading)
578 'face 'org-mode-line-clock))))
580 (defun org-clock-update-mode-line ()
581 (if org-clock-effort
582 (org-clock-notify-once-if-expired)
583 (setq org-clock-task-overrun nil))
584 (setq org-mode-line-string
585 (org-propertize
586 (let ((clock-string (org-clock-get-clock-string))
587 (help-text "Org-mode clock is running.\nmouse-1 shows a menu\nmouse-2 will jump to task"))
588 (if (and (> org-clock-string-limit 0)
589 (> (length clock-string) org-clock-string-limit))
590 (org-propertize
591 (substring clock-string 0 org-clock-string-limit)
592 'help-echo (concat help-text ": " org-clock-heading))
593 (org-propertize clock-string 'help-echo help-text)))
594 'local-map org-clock-mode-line-map
595 'mouse-face (if (featurep 'xemacs) 'highlight 'mode-line-highlight)))
596 (if (and org-clock-task-overrun org-clock-task-overrun-text)
597 (setq org-mode-line-string
598 (concat (org-propertize
599 org-clock-task-overrun-text
600 'face 'org-mode-line-clock-overrun) org-mode-line-string)))
601 (force-mode-line-update))
603 (defun org-clock-get-clocked-time ()
604 "Get the clocked time for the current item in minutes.
605 The time returned includes the time spent on this task in
606 previous clocking intervals."
607 (let ((currently-clocked-time
608 (floor (- (org-float-time)
609 (org-float-time org-clock-start-time)) 60)))
610 (+ currently-clocked-time (or org-clock-total-time 0))))
612 (defun org-clock-modify-effort-estimate (&optional value)
613 "Add to or set the effort estimate of the item currently being clocked.
614 VALUE can be a number of minutes, or a string with format hh:mm or mm.
615 When the string starts with a + or a - sign, the current value of the effort
616 property will be changed by that amount.
617 This will update the \"Effort\" property of currently clocked item, and
618 the mode line."
619 (interactive)
620 (if (org-clock-is-active)
621 (let ((current org-clock-effort) sign)
622 (unless value
623 ;; Prompt user for a value or a change
624 (setq value
625 (read-string
626 (format "Set effort (hh:mm or mm%s): "
627 (if current
628 (format ", prefix + to add to %s" org-clock-effort)
629 "")))))
630 (when (stringp value)
631 ;; A string. See if it is a delta
632 (setq sign (string-to-char value))
633 (if (member sign '(?- ?+))
634 (setq current (org-duration-string-to-minutes current)
635 value (substring value 1))
636 (setq current 0))
637 (setq value (org-duration-string-to-minutes value))
638 (if (equal ?- sign)
639 (setq value (- current value))
640 (if (equal ?+ sign) (setq value (+ current value)))))
641 (setq value (max 0 value)
642 org-clock-effort (org-minutes-to-hh:mm-string value))
643 (org-entry-put org-clock-marker "Effort" org-clock-effort)
644 (org-clock-update-mode-line)
645 (message "Effort is now %s" org-clock-effort))
646 (message "Clock is not currently active")))
648 (defvar org-clock-notification-was-shown nil
649 "Shows if we have shown notification already.")
651 (defun org-clock-notify-once-if-expired ()
652 "Show notification if we spent more time than we estimated before.
653 Notification is shown only once."
654 (when (org-clocking-p)
655 (let ((effort-in-minutes (org-duration-string-to-minutes org-clock-effort))
656 (clocked-time (org-clock-get-clocked-time)))
657 (if (setq org-clock-task-overrun
658 (if (or (null effort-in-minutes) (zerop effort-in-minutes))
660 (>= clocked-time effort-in-minutes)))
661 (unless org-clock-notification-was-shown
662 (setq org-clock-notification-was-shown t)
663 (org-notify
664 (format "Task '%s' should be finished by now. (%s)"
665 org-clock-heading org-clock-effort) t))
666 (setq org-clock-notification-was-shown nil)))))
668 (defun org-notify (notification &optional play-sound)
669 "Send a NOTIFICATION and maybe PLAY-SOUND."
670 (org-show-notification notification)
671 (if play-sound (org-clock-play-sound)))
673 (defun org-show-notification (notification)
674 "Show notification.
675 Use `org-show-notification-handler' if defined,
676 use libnotify if available, or fall back on a message."
677 (cond ((functionp org-show-notification-handler)
678 (funcall org-show-notification-handler notification))
679 ((stringp org-show-notification-handler)
680 (start-process "emacs-timer-notification" nil
681 org-show-notification-handler notification))
682 ((fboundp 'notifications-notify)
683 (notifications-notify
684 :title "Org-mode message"
685 :body notification
686 ;; FIXME how to link to the Org icon?
687 ;; :app-icon "~/.emacs.d/icons/mail.png"
688 :urgency 'low))
689 ((executable-find "notify-send")
690 (start-process "emacs-timer-notification" nil
691 "notify-send" notification))
692 ;; Maybe the handler will send a message, so only use message as
693 ;; a fall back option
694 (t (message "%s" notification))))
696 (defun org-clock-play-sound ()
697 "Play sound as configured by `org-clock-sound'.
698 Use alsa's aplay tool if available."
699 (cond
700 ((not org-clock-sound))
701 ((eq org-clock-sound t) (beep t) (beep t))
702 ((stringp org-clock-sound)
703 (let ((file (expand-file-name org-clock-sound)))
704 (if (file-exists-p file)
705 (if (executable-find "aplay")
706 (start-process "org-clock-play-notification" nil
707 "aplay" file)
708 (condition-case nil
709 (play-sound-file file)
710 (error (beep t) (beep t)))))))))
712 (defvar org-clock-mode-line-entry nil
713 "Information for the mode line about the running clock.")
715 (defun org-find-open-clocks (file)
716 "Search through the given file and find all open clocks."
717 (let ((buf (or (get-file-buffer file)
718 (find-file-noselect file)))
719 clocks)
720 (with-current-buffer buf
721 (save-excursion
722 (goto-char (point-min))
723 (while (re-search-forward "CLOCK: \\(\\[.*?\\]\\)$" nil t)
724 (push (cons (copy-marker (match-end 1) t)
725 (org-time-string-to-time (match-string 1))) clocks))))
726 clocks))
728 (defsubst org-is-active-clock (clock)
729 "Return t if CLOCK is the currently active clock."
730 (and (org-clock-is-active)
731 (= org-clock-marker (car clock))))
733 (defmacro org-with-clock-position (clock &rest forms)
734 "Evaluate FORMS with CLOCK as the current active clock."
735 `(with-current-buffer (marker-buffer (car ,clock))
736 (save-excursion
737 (save-restriction
738 (widen)
739 (goto-char (car ,clock))
740 (beginning-of-line)
741 ,@forms))))
742 (def-edebug-spec org-with-clock-position (form body))
743 (put 'org-with-clock-position 'lisp-indent-function 1)
745 (defmacro org-with-clock (clock &rest forms)
746 "Evaluate FORMS with CLOCK as the current active clock.
747 This macro also protects the current active clock from being altered."
748 `(org-with-clock-position ,clock
749 (let ((org-clock-start-time (cdr ,clock))
750 (org-clock-total-time)
751 (org-clock-history)
752 (org-clock-effort)
753 (org-clock-marker (car ,clock))
754 (org-clock-hd-marker (save-excursion
755 (outline-back-to-heading t)
756 (point-marker))))
757 ,@forms)))
758 (def-edebug-spec org-with-clock (form body))
759 (put 'org-with-clock 'lisp-indent-function 1)
761 (defsubst org-clock-clock-in (clock &optional resume start-time)
762 "Clock in to the clock located by CLOCK.
763 If necessary, clock-out of the currently active clock."
764 (org-with-clock-position clock
765 (let ((org-clock-in-resume (or resume org-clock-in-resume)))
766 (org-clock-in nil start-time))))
768 (defsubst org-clock-clock-out (clock &optional fail-quietly at-time)
769 "Clock out of the clock located by CLOCK."
770 (let ((temp (copy-marker (car clock)
771 (marker-insertion-type (car clock)))))
772 (if (org-is-active-clock clock)
773 (org-clock-out nil fail-quietly at-time)
774 (org-with-clock clock
775 (org-clock-out nil fail-quietly at-time)))
776 (setcar clock temp)))
778 (defsubst org-clock-clock-cancel (clock)
779 "Cancel the clock located by CLOCK."
780 (let ((temp (copy-marker (car clock)
781 (marker-insertion-type (car clock)))))
782 (if (org-is-active-clock clock)
783 (org-clock-cancel)
784 (org-with-clock clock
785 (org-clock-cancel)))
786 (setcar clock temp)))
788 (defvar org-clock-clocking-in nil)
789 (defvar org-clock-resolving-clocks nil)
790 (defvar org-clock-resolving-clocks-due-to-idleness nil)
792 (defun org-clock-resolve-clock (clock resolve-to clock-out-time
793 &optional close-p restart-p fail-quietly)
794 "Resolve `CLOCK' given the time `RESOLVE-TO', and the present.
795 `CLOCK' is a cons cell of the form (MARKER START-TIME)."
796 (let ((org-clock-resolving-clocks t))
797 (cond
798 ((null resolve-to)
799 (org-clock-clock-cancel clock)
800 (if (and restart-p (not org-clock-clocking-in))
801 (org-clock-clock-in clock)))
803 ((eq resolve-to 'now)
804 (if restart-p
805 (error "RESTART-P is not valid here"))
806 (if (or close-p org-clock-clocking-in)
807 (org-clock-clock-out clock fail-quietly)
808 (unless (org-is-active-clock clock)
809 (org-clock-clock-in clock t))))
811 ((not (time-less-p resolve-to (current-time)))
812 (error "RESOLVE-TO must refer to a time in the past"))
815 (if restart-p
816 (error "RESTART-P is not valid here"))
817 (org-clock-clock-out clock fail-quietly (or clock-out-time
818 resolve-to))
819 (unless org-clock-clocking-in
820 (if close-p
821 (setq org-clock-leftover-time (and (null clock-out-time)
822 resolve-to))
823 (org-clock-clock-in clock nil (and clock-out-time
824 resolve-to))))))))
826 (defun org-clock-jump-to-current-clock (&optional effective-clock)
827 (interactive)
828 (let ((org-clock-into-drawer (org-clock-into-drawer))
829 (clock (or effective-clock (cons org-clock-marker
830 org-clock-start-time))))
831 (unless (marker-buffer (car clock))
832 (error "No clock is currently running"))
833 (org-with-clock clock (org-clock-goto))
834 (with-current-buffer (marker-buffer (car clock))
835 (goto-char (car clock))
836 (if org-clock-into-drawer
837 (let ((logbook
838 (if (stringp org-clock-into-drawer)
839 (concat ":" org-clock-into-drawer ":")
840 ":LOGBOOK:")))
841 (ignore-errors
842 (outline-flag-region
843 (save-excursion
844 (outline-back-to-heading t)
845 (search-forward logbook)
846 (goto-char (match-beginning 0)))
847 (save-excursion
848 (outline-back-to-heading t)
849 (search-forward logbook)
850 (search-forward ":END:")
851 (goto-char (match-end 0)))
852 nil)))))))
854 (defun org-clock-resolve (clock &optional prompt-fn last-valid fail-quietly)
855 "Resolve an open org-mode clock.
856 An open clock was found, with `dangling' possibly being non-nil.
857 If this function was invoked with a prefix argument, non-dangling
858 open clocks are ignored. The given clock requires some sort of
859 user intervention to resolve it, either because a clock was left
860 dangling or due to an idle timeout. The clock resolution can
861 either be:
863 (a) deleted, the user doesn't care about the clock
864 (b) restarted from the current time (if no other clock is open)
865 (c) closed, giving the clock X minutes
866 (d) closed and then restarted
867 (e) resumed, as if the user had never left
869 The format of clock is (CONS MARKER START-TIME), where MARKER
870 identifies the buffer and position the clock is open at (and
871 thus, the heading it's under), and START-TIME is when the clock
872 was started."
873 (assert clock)
874 (let* ((ch
875 (save-window-excursion
876 (save-excursion
877 (unless org-clock-resolving-clocks-due-to-idleness
878 (org-clock-jump-to-current-clock clock))
879 (unless org-clock-resolve-expert
880 (with-output-to-temp-buffer "*Org Clock*"
881 (princ "Select a Clock Resolution Command:
883 i/q/C-g Ignore this question; the same as keeping all the idle time.
885 k/K Keep X minutes of the idle time (default is all). If this
886 amount is less than the default, you will be clocked out
887 that many minutes after the time that idling began, and then
888 clocked back in at the present time.
889 g/G Indicate that you \"got back\" X minutes ago. This is quite
890 different from 'k': it clocks you out from the beginning of
891 the idle period and clock you back in X minutes ago.
892 s/S Subtract the idle time from the current clock. This is the
893 same as keeping 0 minutes.
894 C Cancel the open timer altogether. It will be as though you
895 never clocked in.
896 j/J Jump to the current clock, to make manual adjustments.
898 For all these options, using uppercase makes your final state
899 to be CLOCKED OUT.")))
900 (org-fit-window-to-buffer (get-buffer-window "*Org Clock*"))
901 (let (char-pressed)
902 (when (featurep 'xemacs)
903 (message (concat (funcall prompt-fn clock)
904 " [jkKgGsScCiq]? "))
905 (setq char-pressed (read-char-exclusive)))
906 (while (or (null char-pressed)
907 (and (not (memq char-pressed
908 '(?k ?K ?g ?G ?s ?S ?C
909 ?j ?J ?i ?q)))
910 (or (ding) t)))
911 (setq char-pressed
912 (read-char (concat (funcall prompt-fn clock)
913 " [jkKgGSscCiq]? ")
914 nil 45)))
915 (and (not (memq char-pressed '(?i ?q))) char-pressed)))))
916 (default
917 (floor (/ (org-float-time
918 (time-subtract (current-time) last-valid)) 60)))
919 (keep
920 (and (memq ch '(?k ?K))
921 (read-number "Keep how many minutes? " default)))
922 (gotback
923 (and (memq ch '(?g ?G))
924 (read-number "Got back how many minutes ago? " default)))
925 (subtractp (memq ch '(?s ?S)))
926 (barely-started-p (< (- (org-float-time last-valid)
927 (org-float-time (cdr clock))) 45))
928 (start-over (and subtractp barely-started-p)))
929 (cond
930 ((memq ch '(?j ?J))
931 (if (eq ch ?J)
932 (org-clock-resolve-clock clock 'now nil t nil fail-quietly))
933 (org-clock-jump-to-current-clock clock))
934 ((or (null ch)
935 (not (memq ch '(?k ?K ?g ?G ?s ?S ?C))))
936 (message ""))
938 (org-clock-resolve-clock
939 clock (cond
940 ((or (eq ch ?C)
941 ;; If the time on the clock was less than a minute before
942 ;; the user went away, and they've ask to subtract all the
943 ;; time...
944 start-over)
945 nil)
946 ((or subtractp
947 (and gotback (= gotback 0)))
948 last-valid)
949 ((or (and keep (= keep default))
950 (and gotback (= gotback default)))
951 'now)
952 (keep
953 (time-add last-valid (seconds-to-time (* 60 keep))))
954 (gotback
955 (time-subtract (current-time)
956 (seconds-to-time (* 60 gotback))))
958 (error "Unexpected, please report this as a bug")))
959 (and gotback last-valid)
960 (memq ch '(?K ?G ?S))
961 (and start-over
962 (not (memq ch '(?K ?G ?S ?C))))
963 fail-quietly)))))
965 (defun org-resolve-clocks (&optional only-dangling-p prompt-fn last-valid)
966 "Resolve all currently open org-mode clocks.
967 If `only-dangling-p' is non-nil, only ask to resolve dangling
968 \(i.e., not currently open and valid) clocks."
969 (interactive "P")
970 (unless org-clock-resolving-clocks
971 (let ((org-clock-resolving-clocks t))
972 (dolist (file (org-files-list))
973 (let ((clocks (org-find-open-clocks file)))
974 (dolist (clock clocks)
975 (let ((dangling (or (not (org-clock-is-active))
976 (/= (car clock) org-clock-marker))))
977 (if (or (not only-dangling-p) dangling)
978 (org-clock-resolve
979 clock
980 (or prompt-fn
981 (function
982 (lambda (clock)
983 (format
984 "Dangling clock started %d mins ago"
985 (floor
986 (/ (- (org-float-time (current-time))
987 (org-float-time (cdr clock))) 60))))))
988 (or last-valid
989 (cdr clock)))))))))))
991 (defun org-emacs-idle-seconds ()
992 "Return the current Emacs idle time in seconds, or nil if not idle."
993 (let ((idle-time (current-idle-time)))
994 (if idle-time
995 (org-float-time idle-time)
996 0)))
998 (defun org-mac-idle-seconds ()
999 "Return the current Mac idle time in seconds."
1000 (string-to-number (shell-command-to-string "ioreg -c IOHIDSystem | perl -ane 'if (/Idle/) {$idle=(pop @F)/1000000000; print $idle; last}'")))
1002 (defvar org-x11idle-exists-p
1003 ;; Check that x11idle exists
1004 (and (eq window-system 'x)
1005 (eq (call-process-shell-command "command" nil nil nil "-v" "x11idle") 0)
1006 ;; Check that x11idle can retrieve the idle time
1007 (eq (call-process-shell-command "x11idle" nil nil nil) 0)))
1009 (defun org-x11-idle-seconds ()
1010 "Return the current X11 idle time in seconds."
1011 (/ (string-to-number (shell-command-to-string "x11idle")) 1000))
1013 (defun org-user-idle-seconds ()
1014 "Return the number of seconds the user has been idle for.
1015 This routine returns a floating point number."
1016 (cond
1017 ((eq system-type 'darwin)
1018 (org-mac-idle-seconds))
1019 ((and (eq window-system 'x) org-x11idle-exists-p)
1020 (org-x11-idle-seconds))
1022 (org-emacs-idle-seconds))))
1024 (defvar org-clock-user-idle-seconds)
1026 (defun org-resolve-clocks-if-idle ()
1027 "Resolve all currently open org-mode clocks.
1028 This is performed after `org-clock-idle-time' minutes, to check
1029 if the user really wants to stay clocked in after being idle for
1030 so long."
1031 (when (and org-clock-idle-time (not org-clock-resolving-clocks)
1032 org-clock-marker)
1033 (let* ((org-clock-user-idle-seconds (org-user-idle-seconds))
1034 (org-clock-user-idle-start
1035 (time-subtract (current-time)
1036 (seconds-to-time org-clock-user-idle-seconds)))
1037 (org-clock-resolving-clocks-due-to-idleness t))
1038 (if (> org-clock-user-idle-seconds (* 60 org-clock-idle-time))
1039 (org-clock-resolve
1040 (cons org-clock-marker
1041 org-clock-start-time)
1042 (function
1043 (lambda (clock)
1044 (format "Clocked in & idle for %.1f mins"
1045 (/ (org-float-time
1046 (time-subtract (current-time)
1047 org-clock-user-idle-start))
1048 60.0))))
1049 org-clock-user-idle-start)))))
1051 (defvar org-clock-current-task nil
1052 "Task currently clocked in.")
1053 (defun org-clock-set-current ()
1054 "Set `org-clock-current-task' to the task currently clocked in."
1055 (setq org-clock-current-task (nth 4 (org-heading-components))))
1057 (defun org-clock-delete-current ()
1058 "Reset `org-clock-current-task' to nil."
1059 (setq org-clock-current-task nil))
1061 (defvar org-clock-out-time nil) ; store the time of the last clock-out
1062 (defun org-clock-in (&optional select start-time)
1063 "Start the clock on the current item.
1064 If necessary, clock-out of the currently active clock.
1065 With a prefix argument SELECT (\\[universal-argument]), offer a list of recently clocked
1066 tasks to clock into. When SELECT is \\[universal-argument] \\[universal-argument], clock into the current task
1067 and mark it as the default task, a special task that will always be offered
1068 in the clocking selection, associated with the letter `d'.
1069 When SELECT is \\[universal-argument] \\[universal-argument] \\[universal-argument], \
1070 clock in by using the last clock-out
1071 time as the start time \(see `org-clock-continuously' to
1072 make this the default behavior.)"
1073 (interactive "P")
1074 (setq org-clock-notification-was-shown nil)
1075 (catch 'abort
1076 (let ((interrupting (and (not org-clock-resolving-clocks-due-to-idleness)
1077 (org-clocking-p)))
1078 ts selected-task target-pos (msg-extra "")
1079 (leftover (and (not org-clock-resolving-clocks)
1080 org-clock-leftover-time)))
1082 (when (and org-clock-auto-clock-resolution
1083 (or (not interrupting)
1084 (eq t org-clock-auto-clock-resolution))
1085 (not org-clock-clocking-in)
1086 (not org-clock-resolving-clocks))
1087 (setq org-clock-leftover-time nil)
1088 (let ((org-clock-clocking-in t))
1089 (org-resolve-clocks))) ; check if any clocks are dangling
1091 (when (equal select '(64))
1092 ;; Set start-time to `org-clock-out-time'
1093 (let ((org-clock-continuously t))
1094 (org-clock-in nil org-clock-out-time)))
1096 (when (equal select '(4))
1097 (setq selected-task (org-clock-select-task "Clock-in on task: "))
1098 (if selected-task
1099 (setq selected-task (copy-marker selected-task))
1100 (error "Abort")))
1102 (when (equal select '(16))
1103 ;; Mark as default clocking task
1104 (org-clock-mark-default-task))
1106 (when interrupting
1107 ;; We are interrupting the clocking of a different task.
1108 ;; Save a marker to this task, so that we can go back.
1109 ;; First check if we are trying to clock into the same task!
1110 (when (save-excursion
1111 (unless selected-task
1112 (org-back-to-heading t))
1113 (and (equal (marker-buffer org-clock-hd-marker)
1114 (if selected-task
1115 (marker-buffer selected-task)
1116 (current-buffer)))
1117 (= (marker-position org-clock-hd-marker)
1118 (if selected-task
1119 (marker-position selected-task)
1120 (point)))
1121 (equal org-clock-current-task (nth 4 (org-heading-components)))))
1122 (message "Clock continues in \"%s\"" org-clock-heading)
1123 (throw 'abort nil))
1124 (move-marker org-clock-interrupted-task
1125 (marker-position org-clock-marker)
1126 (marker-buffer org-clock-marker))
1127 (let ((org-clock-clocking-in t))
1128 (org-clock-out nil t)))
1130 ;; Clock in at which position?
1131 (setq target-pos
1132 (if (and (eobp) (not (org-at-heading-p)))
1133 (point-at-bol 0)
1134 (point)))
1135 (run-hooks 'org-clock-in-prepare-hook)
1136 (save-excursion
1137 (when (and selected-task (marker-buffer selected-task))
1138 ;; There is a selected task, move to the correct buffer
1139 ;; and set the new target position.
1140 (set-buffer (org-base-buffer (marker-buffer selected-task)))
1141 (setq target-pos (marker-position selected-task))
1142 (move-marker selected-task nil))
1143 (save-excursion
1144 (save-restriction
1145 (widen)
1146 (goto-char target-pos)
1147 (org-back-to-heading t)
1148 (or interrupting (move-marker org-clock-interrupted-task nil))
1149 (save-excursion
1150 (forward-char) ;; make sure the marker is not at the
1151 ;; beginning of the heading, since the
1152 ;; user is liking to insert stuff here
1153 ;; manually
1154 (org-clock-history-push))
1155 (org-clock-set-current)
1156 (cond ((functionp org-clock-in-switch-to-state)
1157 (looking-at org-complex-heading-regexp)
1158 (let ((newstate (funcall org-clock-in-switch-to-state
1159 (match-string 2))))
1160 (if newstate (org-todo newstate))))
1161 ((and org-clock-in-switch-to-state
1162 (not (looking-at (concat org-outline-regexp "[ \t]*"
1163 org-clock-in-switch-to-state
1164 "\\>"))))
1165 (org-todo org-clock-in-switch-to-state)))
1166 (setq org-clock-heading-for-remember
1167 (and (looking-at org-complex-heading-regexp)
1168 (match-end 4)
1169 (org-trim (buffer-substring (match-end 1)
1170 (match-end 4)))))
1171 (setq org-clock-heading
1172 (cond ((and org-clock-heading-function
1173 (functionp org-clock-heading-function))
1174 (funcall org-clock-heading-function))
1175 ((looking-at org-complex-heading-regexp)
1176 (replace-regexp-in-string
1177 "\\[\\[.*?\\]\\[\\(.*?\\)\\]\\]" "\\1"
1178 (match-string 4)))
1179 (t "???")))
1180 (setq org-clock-heading (org-propertize org-clock-heading
1181 'face nil))
1182 (org-clock-find-position org-clock-in-resume)
1183 (cond
1184 ((and org-clock-in-resume
1185 (looking-at
1186 (concat "^[ \t]*" org-clock-string
1187 " \\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\}"
1188 " *\\sw+\.? +[012][0-9]:[0-5][0-9]\\)\\][ \t]*$")))
1189 (message "Matched %s" (match-string 1))
1190 (setq ts (concat "[" (match-string 1) "]"))
1191 (goto-char (match-end 1))
1192 (setq org-clock-start-time
1193 (apply 'encode-time
1194 (org-parse-time-string (match-string 1))))
1195 (setq org-clock-effort (org-get-effort))
1196 (setq org-clock-total-time (org-clock-sum-current-item
1197 (org-clock-get-sum-start))))
1198 ((eq org-clock-in-resume 'auto-restart)
1199 ;; called from org-clock-load during startup,
1200 ;; do not interrupt, but warn!
1201 (message "Cannot restart clock because task does not contain unfinished clock")
1202 (ding)
1203 (sit-for 2)
1204 (throw 'abort nil))
1206 (insert-before-markers "\n")
1207 (backward-char 1)
1208 (org-indent-line)
1209 (when (and (save-excursion
1210 (end-of-line 0)
1211 (org-in-item-p)))
1212 (beginning-of-line 1)
1213 (org-indent-line-to (- (org-get-indentation) 2)))
1214 (insert org-clock-string " ")
1215 (setq org-clock-effort (org-get-effort))
1216 (setq org-clock-total-time (org-clock-sum-current-item
1217 (org-clock-get-sum-start)))
1218 (setq org-clock-start-time
1219 (or (and org-clock-continuously org-clock-out-time)
1220 (and leftover
1221 (y-or-n-p
1222 (format
1223 "You stopped another clock %d mins ago; start this one from then? "
1224 (/ (- (org-float-time (current-time))
1225 (org-float-time leftover)) 60)))
1226 leftover)
1227 start-time
1228 (current-time)))
1229 (setq ts (org-insert-time-stamp org-clock-start-time
1230 'with-hm 'inactive))))
1231 (move-marker org-clock-marker (point) (buffer-base-buffer))
1232 (move-marker org-clock-hd-marker
1233 (save-excursion (org-back-to-heading t) (point))
1234 (buffer-base-buffer))
1235 (setq org-clock-has-been-used t)
1236 ;; add to mode line
1237 (when (or (eq org-clock-clocked-in-display 'mode-line)
1238 (eq org-clock-clocked-in-display 'both))
1239 (or global-mode-string (setq global-mode-string '("")))
1240 (or (memq 'org-mode-line-string global-mode-string)
1241 (setq global-mode-string
1242 (append global-mode-string '(org-mode-line-string)))))
1243 ;; add to frame title
1244 (when (or (eq org-clock-clocked-in-display 'frame-title)
1245 (eq org-clock-clocked-in-display 'both))
1246 (setq frame-title-format org-clock-frame-title-format))
1247 (org-clock-update-mode-line)
1248 (when org-clock-mode-line-timer
1249 (cancel-timer org-clock-mode-line-timer)
1250 (setq org-clock-mode-line-timer nil))
1251 (when org-clock-clocked-in-display
1252 (setq org-clock-mode-line-timer
1253 (run-with-timer org-clock-update-period
1254 org-clock-update-period
1255 'org-clock-update-mode-line)))
1256 (when org-clock-idle-timer
1257 (cancel-timer org-clock-idle-timer)
1258 (setq org-clock-idle-timer nil))
1259 (setq org-clock-idle-timer
1260 (run-with-timer 60 60 'org-resolve-clocks-if-idle))
1261 (message "Clock starts at %s - %s" ts msg-extra)
1262 (run-hooks 'org-clock-in-hook)))))))
1264 ;;;###autoload
1265 (defun org-clock-in-last (&optional arg)
1266 "Clock in the last closed clocked item.
1267 When already clocking in, send an warning.
1268 With a universal prefix argument, select the task you want to
1269 clock in from the last clocked in tasks.
1270 With two universal prefix arguments, start clocking using the
1271 last clock-out time, if any.
1272 With three universal prefix arguments, interactively prompt
1273 for a todo state to switch to, overriding the existing value
1274 `org-clock-in-switch-to-state'."
1275 (interactive "P")
1276 (if (equal arg '(4))
1277 (org-clock-in (org-clock-select-task))
1278 (let ((start-time (if (or org-clock-continuously (equal arg '(16)))
1279 (or org-clock-out-time (current-time))
1280 (current-time))))
1281 (if (null org-clock-history)
1282 (message "No last clock")
1283 (let ((org-clock-in-switch-to-state
1284 (if (and (not org-clock-current-task) (equal arg '(64)))
1285 (completing-read "Switch to state: "
1286 (and org-clock-history
1287 (with-current-buffer
1288 (marker-buffer (car org-clock-history))
1289 org-todo-keywords-1)))
1290 org-clock-in-switch-to-state))
1291 (already-clocking org-clock-current-task))
1292 (org-clock-clock-in (list (car org-clock-history)) nil start-time)
1293 (or already-clocking
1294 ;; Don't display a message if we are already clocking in
1295 (message "Clocking back: %s (in %s)"
1296 org-clock-current-task
1297 (buffer-name (marker-buffer org-clock-marker)))))))))
1299 (defun org-clock-mark-default-task ()
1300 "Mark current task as default task."
1301 (interactive)
1302 (save-excursion
1303 (org-back-to-heading t)
1304 (move-marker org-clock-default-task (point))))
1306 (defvar msg-extra)
1307 (defun org-clock-get-sum-start ()
1308 "Return the time from which clock times should be counted.
1309 This is for the currently running clock as it is displayed
1310 in the mode line. This function looks at the properties
1311 LAST_REPEAT and in particular CLOCK_MODELINE_TOTAL and the
1312 corresponding variable `org-clock-modeline-total' and then
1313 decides which time to use."
1314 (let ((cmt (or (org-entry-get nil "CLOCK_MODELINE_TOTAL")
1315 (symbol-name org-clock-modeline-total)))
1316 (lr (org-entry-get nil "LAST_REPEAT")))
1317 (cond
1318 ((equal cmt "current")
1319 (setq msg-extra "showing time in current clock instance")
1320 (current-time))
1321 ((equal cmt "today")
1322 (setq msg-extra "showing today's task time.")
1323 (let* ((dt (decode-time (current-time))))
1324 (setq dt (append (list 0 0 0) (nthcdr 3 dt)))
1325 (if org-extend-today-until
1326 (setf (nth 2 dt) org-extend-today-until))
1327 (apply 'encode-time dt)))
1328 ((or (equal cmt "all")
1329 (and (or (not cmt) (equal cmt "auto"))
1330 (not lr)))
1331 (setq msg-extra "showing entire task time.")
1332 nil)
1333 ((or (equal cmt "repeat")
1334 (and (or (not cmt) (equal cmt "auto"))
1335 lr))
1336 (setq msg-extra "showing task time since last repeat.")
1337 (if (not lr)
1339 (org-time-string-to-time lr)))
1340 (t nil))))
1342 (defun org-clock-find-position (find-unclosed)
1343 "Find the location where the next clock line should be inserted.
1344 When FIND-UNCLOSED is non-nil, first check if there is an unclosed clock
1345 line and position cursor in that line."
1346 (org-back-to-heading t)
1347 (catch 'exit
1348 (let* ((org-clock-into-drawer (org-clock-into-drawer))
1349 (beg (save-excursion
1350 (beginning-of-line 2)
1351 (or (bolp) (newline))
1352 (point)))
1353 (end (progn (outline-next-heading) (point)))
1354 (re (concat "^[ \t]*" org-clock-string))
1355 (cnt 0)
1356 (drawer (if (stringp org-clock-into-drawer)
1357 org-clock-into-drawer "LOGBOOK"))
1358 first last ind-last)
1359 (goto-char beg)
1360 (when (and find-unclosed
1361 (re-search-forward
1362 (concat "^[ \t]*" org-clock-string
1363 " \\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\}"
1364 " *\\sw+ +[012][0-9]:[0-5][0-9]\\)\\][ \t]*$")
1365 end t))
1366 (beginning-of-line 1)
1367 (throw 'exit t))
1368 (when (eobp) (newline) (setq end (max (point) end)))
1369 (when (re-search-forward (concat "^[ \t]*:" drawer ":") end t)
1370 ;; we seem to have a CLOCK drawer, so go there.
1371 (beginning-of-line 2)
1372 (or org-log-states-order-reversed
1373 (and (re-search-forward org-property-end-re nil t)
1374 (goto-char (match-beginning 0))))
1375 (throw 'exit t))
1376 ;; Lets count the CLOCK lines
1377 (goto-char beg)
1378 (while (re-search-forward re end t)
1379 (setq first (or first (match-beginning 0))
1380 last (match-beginning 0)
1381 cnt (1+ cnt)))
1382 (when (and (integerp org-clock-into-drawer)
1383 last
1384 (>= (1+ cnt) org-clock-into-drawer))
1385 ;; Wrap current entries into a new drawer
1386 (goto-char last)
1387 (setq ind-last (org-get-indentation))
1388 (beginning-of-line 2)
1389 (if (and (>= (org-get-indentation) ind-last)
1390 (org-at-item-p))
1391 (when (and (>= (org-get-indentation) ind-last)
1392 (org-at-item-p))
1393 (let ((struct (org-list-struct)))
1394 (goto-char (org-list-get-bottom-point struct)))))
1395 (insert ":END:\n")
1396 (beginning-of-line 0)
1397 (org-indent-line-to ind-last)
1398 (goto-char first)
1399 (insert ":" drawer ":\n")
1400 (beginning-of-line 0)
1401 (org-indent-line)
1402 (org-flag-drawer t)
1403 (beginning-of-line 2)
1404 (or org-log-states-order-reversed
1405 (and (re-search-forward org-property-end-re nil t)
1406 (goto-char (match-beginning 0))))
1407 (throw 'exit nil))
1409 (goto-char beg)
1410 (while (and (looking-at (concat "[ \t]*" org-keyword-time-regexp))
1411 (not (equal (match-string 1) org-clock-string)))
1412 ;; Planning info, skip to after it
1413 (beginning-of-line 2)
1414 (or (bolp) (newline)))
1415 (when (or (eq org-clock-into-drawer t)
1416 (stringp org-clock-into-drawer)
1417 (and (integerp org-clock-into-drawer)
1418 (< org-clock-into-drawer 2)))
1419 (insert ":" drawer ":\n:END:\n")
1420 (beginning-of-line -1)
1421 (org-indent-line)
1422 (org-flag-drawer t)
1423 (beginning-of-line 2)
1424 (org-indent-line)
1425 (beginning-of-line)
1426 (or org-log-states-order-reversed
1427 (and (re-search-forward org-property-end-re nil t)
1428 (goto-char (match-beginning 0))))))))
1430 (defun org-clock-out (&optional switch-to-state fail-quietly at-time)
1431 "Stop the currently running clock.
1432 Throw an error if there is no running clock and FAIL-QUIETLY is nil.
1433 With a universal prefix, prompt for a state to switch the clocked out task
1434 to, overriding the existing value of `org-clock-out-switch-to-state'."
1435 (interactive "P")
1436 (catch 'exit
1437 (when (not (org-clocking-p))
1438 (setq global-mode-string
1439 (delq 'org-mode-line-string global-mode-string))
1440 (setq frame-title-format org-frame-title-format-backup)
1441 (force-mode-line-update)
1442 (if fail-quietly (throw 'exit t) (error "No active clock")))
1443 (let ((org-clock-out-switch-to-state
1444 (if switch-to-state
1445 (completing-read "Switch to state: "
1446 (with-current-buffer
1447 (marker-buffer org-clock-marker)
1448 org-todo-keywords-1)
1449 nil t "DONE")
1450 org-clock-out-switch-to-state))
1451 (now (current-time))
1452 ts te s h m remove)
1453 (setq org-clock-out-time now)
1454 (save-excursion ; Do not replace this with `with-current-buffer'.
1455 (org-no-warnings (set-buffer (org-clocking-buffer)))
1456 (save-restriction
1457 (widen)
1458 (goto-char org-clock-marker)
1459 (beginning-of-line 1)
1460 (if (and (looking-at (concat "[ \t]*" org-keyword-time-regexp))
1461 (equal (match-string 1) org-clock-string))
1462 (setq ts (match-string 2))
1463 (if fail-quietly (throw 'exit nil) (error "Clock start time is gone")))
1464 (goto-char (match-end 0))
1465 (delete-region (point) (point-at-eol))
1466 (insert "--")
1467 (setq te (org-insert-time-stamp (or at-time now) 'with-hm 'inactive))
1468 (setq s (- (org-float-time (apply 'encode-time (org-parse-time-string te)))
1469 (org-float-time (apply 'encode-time (org-parse-time-string ts))))
1470 h (floor (/ s 3600))
1471 s (- s (* 3600 h))
1472 m (floor (/ s 60))
1473 s (- s (* 60 s)))
1474 (insert " => " (format "%2d:%02d" h m))
1475 (when (setq remove (and org-clock-out-remove-zero-time-clocks
1476 (= (+ h m) 0)))
1477 (beginning-of-line 1)
1478 (delete-region (point) (point-at-eol))
1479 (and (looking-at "\n") (> (point-max) (1+ (point)))
1480 (delete-char 1)))
1481 (move-marker org-clock-marker nil)
1482 (move-marker org-clock-hd-marker nil)
1483 (when org-log-note-clock-out
1484 (org-add-log-setup 'clock-out nil nil nil nil
1485 (concat "# Task: " (org-get-heading t) "\n\n")))
1486 (when org-clock-mode-line-timer
1487 (cancel-timer org-clock-mode-line-timer)
1488 (setq org-clock-mode-line-timer nil))
1489 (when org-clock-idle-timer
1490 (cancel-timer org-clock-idle-timer)
1491 (setq org-clock-idle-timer nil))
1492 (setq global-mode-string
1493 (delq 'org-mode-line-string global-mode-string))
1494 (setq frame-title-format org-frame-title-format-backup)
1495 (when org-clock-out-switch-to-state
1496 (save-excursion
1497 (org-back-to-heading t)
1498 (let ((org-inhibit-logging t)
1499 (org-clock-out-when-done nil))
1500 (cond
1501 ((functionp org-clock-out-switch-to-state)
1502 (looking-at org-complex-heading-regexp)
1503 (let ((newstate (funcall org-clock-out-switch-to-state
1504 (match-string 2))))
1505 (if newstate (org-todo newstate))))
1506 ((and org-clock-out-switch-to-state
1507 (not (looking-at (concat org-outline-regexp "[ \t]*"
1508 org-clock-out-switch-to-state
1509 "\\>"))))
1510 (org-todo org-clock-out-switch-to-state))))))
1511 (force-mode-line-update)
1512 (message (concat "Clock stopped at %s after HH:MM = " org-time-clocksum-format "%s") te h m
1513 (if remove " => LINE REMOVED" ""))
1514 (run-hooks 'org-clock-out-hook)
1515 (unless (org-clocking-p)
1516 (org-clock-delete-current)))))))
1518 (add-hook 'org-clock-out-hook 'org-clock-remove-empty-clock-drawer)
1520 (defun org-clock-remove-empty-clock-drawer nil
1521 "Remove empty clock drawer in the current subtree."
1522 (let* ((olid (or (org-entry-get (point) "LOG_INTO_DRAWER")
1523 org-log-into-drawer))
1524 (clock-drawer (if (eq t olid) "LOGBOOK" olid))
1525 (end (save-excursion (org-end-of-subtree t t))))
1526 (when clock-drawer
1527 (save-excursion
1528 (org-back-to-heading t)
1529 (while (and (< (point) end)
1530 (search-forward clock-drawer end t))
1531 (goto-char (match-beginning 0))
1532 (org-remove-empty-drawer-at clock-drawer (point))
1533 (forward-line 1))))))
1535 (defun org-at-clock-log-p nil
1536 "Is the cursor on the clock log line?"
1537 (save-excursion
1538 (move-beginning-of-line 1)
1539 (looking-at "^[ \t]*CLOCK:")))
1541 (defun org-clock-timestamps-up nil
1542 "Increase CLOCK timestamps at cursor."
1543 (interactive)
1544 (org-clock-timestamps-change 'up))
1546 (defun org-clock-timestamps-down nil
1547 "Increase CLOCK timestamps at cursor."
1548 (interactive)
1549 (org-clock-timestamps-change 'down))
1551 (defun org-clock-timestamps-change (updown)
1552 "Change CLOCK timestamps synchronously at cursor.
1553 UPDOWN tells whether to change 'up or 'down."
1554 (setq org-ts-what nil)
1555 (when (org-at-timestamp-p t)
1556 (let ((tschange (if (eq updown 'up) 'org-timestamp-up
1557 'org-timestamp-down))
1558 ts1 begts1 ts2 begts2 updatets1 tdiff)
1559 (save-excursion
1560 (move-beginning-of-line 1)
1561 (re-search-forward org-ts-regexp3 nil t)
1562 (setq ts1 (match-string 0) begts1 (match-beginning 0))
1563 (when (re-search-forward org-ts-regexp3 nil t)
1564 (setq ts2 (match-string 0) begts2 (match-beginning 0))))
1565 ;; Are we on the second timestamp?
1566 (if (<= begts2 (point)) (setq updatets1 t))
1567 (if (not ts2)
1568 ;; fall back on org-timestamp-up if there is only one
1569 (funcall tschange)
1570 ;; setq this so that (boundp 'org-ts-what is non-nil)
1571 (funcall tschange)
1572 (let ((ts (if updatets1 ts2 ts1))
1573 (begts (if updatets1 begts1 begts2)))
1574 (setq tdiff
1575 (subtract-time
1576 (org-time-string-to-time org-last-changed-timestamp)
1577 (org-time-string-to-time ts)))
1578 (save-excursion
1579 (goto-char begts)
1580 (org-timestamp-change
1581 (round (/ (org-float-time tdiff)
1582 (cond ((eq org-ts-what 'minute) 60)
1583 ((eq org-ts-what 'hour) 3600)
1584 ((eq org-ts-what 'day) (* 24 3600))
1585 ((eq org-ts-what 'month) (* 24 3600 31))
1586 ((eq org-ts-what 'year) (* 24 3600 365.2)))))
1587 org-ts-what 'updown)))))))
1589 (defun org-clock-cancel ()
1590 "Cancel the running clock by removing the start timestamp."
1591 (interactive)
1592 (when (not (org-clocking-p))
1593 (setq global-mode-string
1594 (delq 'org-mode-line-string global-mode-string))
1595 (setq frame-title-format org-frame-title-format-backup)
1596 (force-mode-line-update)
1597 (error "No active clock"))
1598 (save-excursion ; Do not replace this with `with-current-buffer'.
1599 (org-no-warnings (set-buffer (org-clocking-buffer)))
1600 (goto-char org-clock-marker)
1601 (if (org-looking-back (concat "^[ \t]*" org-clock-string ".*"))
1602 (progn (delete-region (1- (point-at-bol)) (point-at-eol))
1603 (org-remove-empty-drawer-at "LOGBOOK" (point)))
1604 (message "Clock gone, cancel the timer anyway")
1605 (sit-for 2)))
1606 (move-marker org-clock-marker nil)
1607 (move-marker org-clock-hd-marker nil)
1608 (setq global-mode-string
1609 (delq 'org-mode-line-string global-mode-string))
1610 (setq frame-title-format org-frame-title-format-backup)
1611 (force-mode-line-update)
1612 (message "Clock canceled")
1613 (run-hooks 'org-clock-cancel-hook))
1615 (defun org-clock-goto (&optional select)
1616 "Go to the currently clocked-in entry, or to the most recently clocked one.
1617 With prefix arg SELECT, offer recently clocked tasks for selection."
1618 (interactive "@P")
1619 (let* ((recent nil)
1620 (m (cond
1621 (select
1622 (or (org-clock-select-task "Select task to go to: ")
1623 (error "No task selected")))
1624 ((org-clocking-p) org-clock-marker)
1625 ((and org-clock-goto-may-find-recent-task
1626 (car org-clock-history)
1627 (marker-buffer (car org-clock-history)))
1628 (setq recent t)
1629 (car org-clock-history))
1630 (t (error "No active or recent clock task")))))
1631 (org-pop-to-buffer-same-window (marker-buffer m))
1632 (if (or (< m (point-min)) (> m (point-max))) (widen))
1633 (goto-char m)
1634 (org-show-entry)
1635 (org-back-to-heading t)
1636 (org-cycle-hide-drawers 'children)
1637 (recenter)
1638 (org-reveal)
1639 (if recent
1640 (message "No running clock, this is the most recently clocked task"))
1641 (run-hooks 'org-clock-goto-hook)))
1643 (defvar org-clock-file-total-minutes nil
1644 "Holds the file total time in minutes, after a call to `org-clock-sum'.")
1645 (make-variable-buffer-local 'org-clock-file-total-minutes)
1647 (defun org-clock-sum-today (&optional headline-filter)
1648 "Sum the times for each subtree for today."
1649 (interactive)
1650 (let ((range (org-clock-special-range 'today)))
1651 (org-clock-sum (car range) (cadr range) nil :org-clock-minutes-today)))
1653 (defun org-clock-sum (&optional tstart tend headline-filter propname)
1654 "Sum the times for each subtree.
1655 Puts the resulting times in minutes as a text property on each headline.
1656 TSTART and TEND can mark a time range to be considered.
1657 HEADLINE-FILTER is a zero-arg function that, if specified, is called for
1658 each headline in the time range with point at the headline. Headlines for
1659 which HEADLINE-FILTER returns nil are excluded from the clock summation.
1660 PROPNAME lets you set a custom text property instead of :org-clock-minutes."
1661 (interactive)
1662 (let* ((bmp (buffer-modified-p))
1663 (re (concat "^\\(\\*+\\)[ \t]\\|^[ \t]*"
1664 org-clock-string
1665 "[ \t]*\\(?:\\(\\[.*?\\]\\)-+\\(\\[.*?\\]\\)\\|=>[ \t]+\\([0-9]+\\):\\([0-9]+\\)\\)"))
1666 (lmax 30)
1667 (ltimes (make-vector lmax 0))
1668 (t1 0)
1669 (level 0)
1670 ts te dt
1671 time)
1672 (if (stringp tstart) (setq tstart (org-time-string-to-seconds tstart)))
1673 (if (stringp tend) (setq tend (org-time-string-to-seconds tend)))
1674 (if (consp tstart) (setq tstart (org-float-time tstart)))
1675 (if (consp tend) (setq tend (org-float-time tend)))
1676 (remove-text-properties (point-min) (point-max)
1677 `(,(or propname :org-clock-minutes) t
1678 :org-clock-force-headline-inclusion t))
1679 (save-excursion
1680 (goto-char (point-max))
1681 (while (re-search-backward re nil t)
1682 (cond
1683 ((match-end 2)
1684 ;; Two time stamps
1685 (setq ts (match-string 2)
1686 te (match-string 3)
1687 ts (org-float-time
1688 (apply 'encode-time (org-parse-time-string ts)))
1689 te (org-float-time
1690 (apply 'encode-time (org-parse-time-string te)))
1691 ts (if tstart (max ts tstart) ts)
1692 te (if tend (min te tend) te)
1693 dt (- te ts)
1694 t1 (if (> dt 0) (+ t1 (floor (/ dt 60))) t1)))
1695 ((match-end 4)
1696 ;; A naked time
1697 (setq t1 (+ t1 (string-to-number (match-string 5))
1698 (* 60 (string-to-number (match-string 4))))))
1699 (t ;; A headline
1700 ;; Add the currently clocking item time to the total
1701 (when (and org-clock-report-include-clocking-task
1702 (equal (org-clocking-buffer) (current-buffer))
1703 (equal (marker-position org-clock-hd-marker) (point))
1704 tstart
1705 tend
1706 (>= (org-float-time org-clock-start-time) tstart)
1707 (<= (org-float-time org-clock-start-time) tend))
1708 (let ((time (floor (- (org-float-time)
1709 (org-float-time org-clock-start-time)) 60)))
1710 (setq t1 (+ t1 time))))
1711 (let* ((headline-forced
1712 (get-text-property (point)
1713 :org-clock-force-headline-inclusion))
1714 (headline-included
1715 (or (null headline-filter)
1716 (save-excursion
1717 (save-match-data (funcall headline-filter))))))
1718 (setq level (- (match-end 1) (match-beginning 1)))
1719 (when (or (> t1 0) (> (aref ltimes level) 0))
1720 (when (or headline-included headline-forced)
1721 (if headline-included
1722 (loop for l from 0 to level do
1723 (aset ltimes l (+ (aref ltimes l) t1))))
1724 (setq time (aref ltimes level))
1725 (goto-char (match-beginning 0))
1726 (put-text-property (point) (point-at-eol)
1727 (or propname :org-clock-minutes) time)
1728 (if headline-filter
1729 (save-excursion
1730 (save-match-data
1731 (while
1732 (> (funcall outline-level) 1)
1733 (outline-up-heading 1 t)
1734 (put-text-property
1735 (point) (point-at-eol)
1736 :org-clock-force-headline-inclusion t))))))
1737 (setq t1 0)
1738 (loop for l from level to (1- lmax) do
1739 (aset ltimes l 0)))))))
1740 (setq org-clock-file-total-minutes (aref ltimes 0)))
1741 (set-buffer-modified-p bmp)))
1743 (defun org-clock-sum-current-item (&optional tstart)
1744 "Return time, clocked on current item in total."
1745 (save-excursion
1746 (save-restriction
1747 (org-narrow-to-subtree)
1748 (org-clock-sum tstart)
1749 org-clock-file-total-minutes)))
1751 (defun org-clock-display (&optional total-only)
1752 "Show subtree times in the entire buffer.
1753 If TOTAL-ONLY is non-nil, only show the total time for the entire file
1754 in the echo area.
1756 Use \\[org-clock-remove-overlays] to remove the subtree times."
1757 (interactive)
1758 (org-clock-remove-overlays)
1759 (let (time h m p)
1760 (org-clock-sum)
1761 (unless total-only
1762 (save-excursion
1763 (goto-char (point-min))
1764 (while (or (and (equal (setq p (point)) (point-min))
1765 (get-text-property p :org-clock-minutes))
1766 (setq p (next-single-property-change
1767 (point) :org-clock-minutes)))
1768 (goto-char p)
1769 (when (setq time (get-text-property p :org-clock-minutes))
1770 (org-clock-put-overlay time (funcall outline-level))))
1771 (setq h (/ org-clock-file-total-minutes 60)
1772 m (- org-clock-file-total-minutes (* 60 h)))
1773 ;; Arrange to remove the overlays upon next change.
1774 (when org-remove-highlights-with-change
1775 (org-add-hook 'before-change-functions 'org-clock-remove-overlays
1776 nil 'local))))
1777 (if org-time-clocksum-use-fractional
1778 (message (concat "Total file time: " org-time-clocksum-fractional-format
1779 " (%d hours and %d minutes)")
1780 (/ (+ (* h 60.0) m) 60.0) h m)
1781 (message (concat "Total file time: " org-time-clocksum-format
1782 " (%d hours and %d minutes)") h m h m))))
1784 (defvar org-clock-overlays nil)
1785 (make-variable-buffer-local 'org-clock-overlays)
1787 (defun org-clock-put-overlay (time &optional level)
1788 "Put an overlays on the current line, displaying TIME.
1789 If LEVEL is given, prefix time with a corresponding number of stars.
1790 This creates a new overlay and stores it in `org-clock-overlays', so that it
1791 will be easy to remove."
1792 (let* ((c 60) (h (floor (/ time 60))) (m (- time (* 60 h)))
1793 (l (if level (org-get-valid-level level 0) 0))
1794 (fmt (concat "%s " (if org-time-clocksum-use-fractional
1795 org-time-clocksum-fractional-format
1796 org-time-clocksum-format) "%s"))
1797 (off 0)
1798 ov tx)
1799 (org-move-to-column c)
1800 (unless (eolp) (skip-chars-backward "^ \t"))
1801 (skip-chars-backward " \t")
1802 (setq ov (make-overlay (point-at-bol) (point-at-eol))
1803 tx (concat (buffer-substring (point-at-bol) (point))
1804 (make-string (+ off (max 0 (- c (current-column)))) ?.)
1805 (org-add-props (if org-time-clocksum-use-fractional
1806 (format fmt
1807 (make-string l ?*)
1808 (/ (+ (* h 60.0) m) 60.0)
1809 (make-string (- 16 l) ?\ ))
1810 (format fmt
1811 (make-string l ?*) h m
1812 (make-string (- 16 l) ?\ )))
1813 (list 'face 'org-clock-overlay))
1814 ""))
1815 (if (not (featurep 'xemacs))
1816 (overlay-put ov 'display tx)
1817 (overlay-put ov 'invisible t)
1818 (overlay-put ov 'end-glyph (make-glyph tx)))
1819 (push ov org-clock-overlays)))
1821 (defun org-clock-remove-overlays (&optional beg end noremove)
1822 "Remove the occur highlights from the buffer.
1823 BEG and END are ignored. If NOREMOVE is nil, remove this function
1824 from the `before-change-functions' in the current buffer."
1825 (interactive)
1826 (unless org-inhibit-highlight-removal
1827 (mapc 'delete-overlay org-clock-overlays)
1828 (setq org-clock-overlays nil)
1829 (unless noremove
1830 (remove-hook 'before-change-functions
1831 'org-clock-remove-overlays 'local))))
1833 (defvar org-state) ;; dynamically scoped into this function
1834 (defun org-clock-out-if-current ()
1835 "Clock out if the current entry contains the running clock.
1836 This is used to stop the clock after a TODO entry is marked DONE,
1837 and is only done if the variable `org-clock-out-when-done' is not nil."
1838 (when (and (org-clocking-p)
1839 org-clock-out-when-done
1840 (marker-buffer org-clock-marker)
1841 (or (and (eq t org-clock-out-when-done)
1842 (member org-state org-done-keywords))
1843 (and (listp org-clock-out-when-done)
1844 (member org-state org-clock-out-when-done)))
1845 (equal (or (buffer-base-buffer (org-clocking-buffer))
1846 (org-clocking-buffer))
1847 (or (buffer-base-buffer (current-buffer))
1848 (current-buffer)))
1849 (< (point) org-clock-marker)
1850 (> (save-excursion (outline-next-heading) (point))
1851 org-clock-marker))
1852 ;; Clock out, but don't accept a logging message for this.
1853 (let ((org-log-note-clock-out nil)
1854 (org-clock-out-switch-to-state nil))
1855 (org-clock-out))))
1857 (add-hook 'org-after-todo-state-change-hook
1858 'org-clock-out-if-current)
1860 ;;;###autoload
1861 (defun org-get-clocktable (&rest props)
1862 "Get a formatted clocktable with parameters according to PROPS.
1863 The table is created in a temporary buffer, fully formatted and
1864 fontified, and then returned."
1865 ;; Set the defaults
1866 (setq props (plist-put props :name "clocktable"))
1867 (unless (plist-member props :maxlevel)
1868 (setq props (plist-put props :maxlevel 2)))
1869 (unless (plist-member props :scope)
1870 (setq props (plist-put props :scope 'agenda)))
1871 (with-temp-buffer
1872 (org-mode)
1873 (org-create-dblock props)
1874 (org-update-dblock)
1875 (font-lock-fontify-buffer)
1876 (forward-line 2)
1877 (buffer-substring (point) (progn
1878 (re-search-forward "^[ \t]*#\\+END" nil t)
1879 (point-at-bol)))))
1881 (defun org-clock-report (&optional arg)
1882 "Create a table containing a report about clocked time.
1883 If the cursor is inside an existing clocktable block, then the table
1884 will be updated. If not, a new clocktable will be inserted. The scope
1885 of the new clock will be subtree when called from within a subtree, and
1886 file elsewhere.
1888 When called with a prefix argument, move to the first clock table in the
1889 buffer and update it."
1890 (interactive "P")
1891 (org-clock-remove-overlays)
1892 (when arg
1893 (org-find-dblock "clocktable")
1894 (org-show-entry))
1895 (if (org-in-clocktable-p)
1896 (goto-char (org-in-clocktable-p))
1897 (let ((props (if (ignore-errors
1898 (save-excursion (org-back-to-heading)))
1899 (list :name "clocktable" :scope 'subtree)
1900 (list :name "clocktable"))))
1901 (org-create-dblock
1902 (org-combine-plists org-clock-clocktable-default-properties props))))
1903 (org-update-dblock))
1905 (defun org-day-of-week (day month year)
1906 "Returns the day of the week as an integer."
1907 (nth 6
1908 (decode-time
1909 (date-to-time
1910 (format "%d-%02d-%02dT00:00:00" year month day)))))
1912 (defun org-quarter-to-date (quarter year)
1913 "Get the date (week day year) of the first day of a given quarter."
1914 (let (startday)
1915 (cond
1916 ((= quarter 1)
1917 (setq startday (org-day-of-week 1 1 year))
1918 (cond
1919 ((= startday 0)
1920 (list 52 7 (- year 1)))
1921 ((= startday 6)
1922 (list 52 6 (- year 1)))
1923 ((<= startday 4)
1924 (list 1 startday year))
1925 ((> startday 4)
1926 (list 53 startday (- year 1)))
1929 ((= quarter 2)
1930 (setq startday (org-day-of-week 1 4 year))
1931 (cond
1932 ((= startday 0)
1933 (list 13 startday year))
1934 ((< startday 4)
1935 (list 14 startday year))
1936 ((>= startday 4)
1937 (list 13 startday year))
1940 ((= quarter 3)
1941 (setq startday (org-day-of-week 1 7 year))
1942 (cond
1943 ((= startday 0)
1944 (list 26 startday year))
1945 ((< startday 4)
1946 (list 27 startday year))
1947 ((>= startday 4)
1948 (list 26 startday year))
1951 ((= quarter 4)
1952 (setq startday (org-day-of-week 1 10 year))
1953 (cond
1954 ((= startday 0)
1955 (list 39 startday year))
1956 ((<= startday 4)
1957 (list 40 startday year))
1958 ((> startday 4)
1959 (list 39 startday year)))))))
1961 (defun org-clock-special-range (key &optional time as-strings)
1962 "Return two times bordering a special time range.
1963 Key is a symbol specifying the range and can be one of `today', `yesterday',
1964 `thisweek', `lastweek', `thismonth', `lastmonth', `thisyear', `lastyear'.
1965 A week starts Monday 0:00 and ends Sunday 24:00.
1966 The range is determined relative to TIME. TIME defaults to the current time.
1967 The return value is a cons cell with two internal times like the ones
1968 returned by `current time' or `encode-time'. if AS-STRINGS is non-nil,
1969 the returned times will be formatted strings."
1970 (if (integerp key) (setq key (intern (number-to-string key))))
1971 (let* ((tm (decode-time (or time (current-time))))
1972 (s 0) (m (nth 1 tm)) (h (nth 2 tm))
1973 (d (nth 3 tm)) (month (nth 4 tm)) (y (nth 5 tm))
1974 (dow (nth 6 tm))
1975 (skey (symbol-name key))
1976 (shift 0)
1977 (q (cond ((>= (nth 4 tm) 10) 4)
1978 ((>= (nth 4 tm) 7) 3)
1979 ((>= (nth 4 tm) 4) 2)
1980 ((>= (nth 4 tm) 1) 1)))
1981 s1 m1 h1 d1 month1 y1 diff ts te fm txt w date
1982 interval tmp shiftedy shiftedm shiftedq)
1983 (cond
1984 ((string-match "^[0-9]+$" skey)
1985 (setq y (string-to-number skey) m 1 d 1 key 'year))
1986 ((string-match "^\\([0-9]+\\)-\\([0-9]\\{1,2\\}\\)$" skey)
1987 (setq y (string-to-number (match-string 1 skey))
1988 month (string-to-number (match-string 2 skey))
1989 d 1 key 'month))
1990 ((string-match "^\\([0-9]+\\)-[wW]\\([0-9]\\{1,2\\}\\)$" skey)
1991 (require 'cal-iso)
1992 (setq y (string-to-number (match-string 1 skey))
1993 w (string-to-number (match-string 2 skey)))
1994 (setq date (calendar-gregorian-from-absolute
1995 (calendar-absolute-from-iso (list w 1 y))))
1996 (setq d (nth 1 date) month (car date) y (nth 2 date)
1997 dow 1
1998 key 'week))
1999 ((string-match "^\\([0-9]+\\)-[qQ]\\([1-4]\\)$" skey)
2000 (require 'cal-iso)
2001 (setq y (string-to-number (match-string 1 skey)))
2002 (setq q (string-to-number (match-string 2 skey)))
2003 (setq date (calendar-gregorian-from-absolute
2004 (calendar-absolute-from-iso (org-quarter-to-date q y))))
2005 (setq d (nth 1 date) month (car date) y (nth 2 date)
2006 dow 1
2007 key 'quarter))
2008 ((string-match "^\\([0-9]+\\)-\\([0-9]\\{1,2\\}\\)-\\([0-9]\\{1,2\\}\\)$" skey)
2009 (setq y (string-to-number (match-string 1 skey))
2010 month (string-to-number (match-string 2 skey))
2011 d (string-to-number (match-string 3 skey))
2012 key 'day))
2013 ((string-match "\\([-+][0-9]+\\)$" skey)
2014 (setq shift (string-to-number (match-string 1 skey))
2015 key (intern (substring skey 0 (match-beginning 1))))
2016 (if(and (memq key '(quarter thisq)) (> shift 0))
2017 (error "Looking forward with quarters isn't implemented.")
2018 ())))
2020 (when (= shift 0)
2021 (cond ((eq key 'yesterday) (setq key 'today shift -1))
2022 ((eq key 'lastweek) (setq key 'week shift -1))
2023 ((eq key 'lastmonth) (setq key 'month shift -1))
2024 ((eq key 'lastyear) (setq key 'year shift -1))
2025 ((eq key 'lastq) (setq key 'quarter shift -1))))
2026 (cond
2027 ((memq key '(day today))
2028 (setq d (+ d shift) h 0 m 0 h1 24 m1 0))
2029 ((memq key '(week thisweek))
2030 (setq diff (+ (* -7 shift) (if (= dow 0) 6 (1- dow)))
2031 m 0 h 0 d (- d diff) d1 (+ 7 d)))
2032 ((memq key '(month thismonth))
2033 (setq d 1 h 0 m 0 d1 1 month (+ month shift) month1 (1+ month) h1 0 m1 0))
2034 ((memq key '(quarter thisq))
2035 ; compute if this shift remains in this year
2036 ; if not, compute how many years and quarters we have to shift (via floor*)
2037 ; and compute the shifted years, months and quarters
2038 (cond
2039 ((< (+ (- q 1) shift) 0) ; shift not in this year
2040 (setq interval (* -1 (+ (- q 1) shift)))
2041 ; set tmp to ((years to shift) (quarters to shift))
2042 (setq tmp (org-floor* interval 4))
2043 ; due to the use of floor, 0 quarters actually means 4
2044 (if (= 0 (nth 1 tmp))
2045 (setq shiftedy (- y (nth 0 tmp))
2046 shiftedm 1
2047 shiftedq 1)
2048 (setq shiftedy (- y (+ 1 (nth 0 tmp)))
2049 shiftedm (- 13 (* 3 (nth 1 tmp)))
2050 shiftedq (- 5 (nth 1 tmp))))
2051 (setq d 1 h 0 m 0 d1 1 month shiftedm month1 (+ 3 shiftedm) h1 0 m1 0 y shiftedy))
2052 ((> (+ q shift) 0) ; shift is within this year
2053 (setq shiftedq (+ q shift))
2054 (setq shiftedy y)
2055 (setq d 1 h 0 m 0 d1 1 month (+ 1 (* 3 (- (+ q shift) 1))) month1 (+ 4 (* 3 (- (+ q shift) 1))) h1 0 m1 0))))
2056 ((memq key '(year thisyear))
2057 (setq m 0 h 0 d 1 month 1 y (+ y shift) y1 (1+ y)))
2058 (t (error "No such time block %s" key)))
2059 (setq ts (encode-time s m h d month y)
2060 te (encode-time (or s1 s) (or m1 m) (or h1 h)
2061 (or d1 d) (or month1 month) (or y1 y)))
2062 (setq fm (cdr org-time-stamp-formats))
2063 (cond
2064 ((memq key '(day today))
2065 (setq txt (format-time-string "%A, %B %d, %Y" ts)))
2066 ((memq key '(week thisweek))
2067 (setq txt (format-time-string "week %G-W%V" ts)))
2068 ((memq key '(month thismonth))
2069 (setq txt (format-time-string "%B %Y" ts)))
2070 ((memq key '(year thisyear))
2071 (setq txt (format-time-string "the year %Y" ts)))
2072 ((memq key '(quarter thisq))
2073 (setq txt (concat (org-count-quarter shiftedq) " quarter of " (number-to-string shiftedy))))
2075 (if as-strings
2076 (list (format-time-string fm ts) (format-time-string fm te) txt)
2077 (list ts te txt))))
2079 (defun org-count-quarter (n)
2080 (cond
2081 ((= n 1) "1st")
2082 ((= n 2) "2nd")
2083 ((= n 3) "3rd")
2084 ((= n 4) "4th")))
2086 (defun org-clocktable-shift (dir n)
2087 "Try to shift the :block date of the clocktable at point.
2088 Point must be in the #+BEGIN: line of a clocktable, or this function
2089 will throw an error.
2090 DIR is a direction, a symbol `left', `right', `up', or `down'.
2091 Both `left' and `down' shift the block toward the past, `up' and `right'
2092 push it toward the future.
2093 N is the number of shift steps to take. The size of the step depends on
2094 the currently selected interval size."
2095 (setq n (prefix-numeric-value n))
2096 (and (memq dir '(left down)) (setq n (- n)))
2097 (save-excursion
2098 (goto-char (point-at-bol))
2099 (if (not (looking-at "^[ \t]*#\\+BEGIN:[ \t]+clocktable\\>.*?:block[ \t]+\\(\\S-+\\)"))
2100 (error "Line needs a :block definition before this command works")
2101 (let* ((b (match-beginning 1)) (e (match-end 1))
2102 (s (match-string 1))
2103 block shift ins y mw d date wp m)
2104 (cond
2105 ((equal s "yesterday") (setq s "today-1"))
2106 ((equal s "lastweek") (setq s "thisweek-1"))
2107 ((equal s "lastmonth") (setq s "thismonth-1"))
2108 ((equal s "lastyear") (setq s "thisyear-1"))
2109 ((equal s "lastq") (setq s "thisq-1")))
2111 (cond
2112 ((string-match "^\\(today\\|thisweek\\|thismonth\\|thisyear\\|thisq\\)\\([-+][0-9]+\\)?$" s)
2113 (setq block (match-string 1 s)
2114 shift (if (match-end 2)
2115 (string-to-number (match-string 2 s))
2117 (setq shift (+ shift n))
2118 (setq ins (if (= shift 0) block (format "%s%+d" block shift))))
2119 ((string-match "\\([0-9]+\\)\\(-\\([wWqQ]?\\)\\([0-9]\\{1,2\\}\\)\\(-\\([0-9]\\{1,2\\}\\)\\)?\\)?" s)
2120 ;; 1 1 2 3 3 4 4 5 6 6 5 2
2121 (setq y (string-to-number (match-string 1 s))
2122 wp (and (match-end 3) (match-string 3 s))
2123 mw (and (match-end 4) (string-to-number (match-string 4 s)))
2124 d (and (match-end 6) (string-to-number (match-string 6 s))))
2125 (cond
2126 (d (setq ins (format-time-string
2127 "%Y-%m-%d"
2128 (encode-time 0 0 0 (+ d n) m y))))
2129 ((and wp (string-match "w\\|W" wp) mw (> (length wp) 0))
2130 (require 'cal-iso)
2131 (setq date (calendar-gregorian-from-absolute
2132 (calendar-absolute-from-iso (list (+ mw n) 1 y))))
2133 (setq ins (format-time-string
2134 "%G-W%V"
2135 (encode-time 0 0 0 (nth 1 date) (car date) (nth 2 date)))))
2136 ((and wp (string-match "q\\|Q" wp) mw (> (length wp) 0))
2137 (require 'cal-iso)
2138 ; if the 4th + 1 quarter is requested we flip to the 1st quarter of the next year
2139 (if (> (+ mw n) 4)
2140 (setq mw 0
2141 y (+ 1 y))
2143 ; if the 1st - 1 quarter is requested we flip to the 4th quarter of the previous year
2144 (if (= (+ mw n) 0)
2145 (setq mw 5
2146 y (- y 1))
2148 (setq date (calendar-gregorian-from-absolute
2149 (calendar-absolute-from-iso (org-quarter-to-date (+ mw n) y))))
2150 (setq ins (format-time-string
2151 (concat (number-to-string y) "-Q" (number-to-string (+ mw n)))
2152 (encode-time 0 0 0 (nth 1 date) (car date) (nth 2 date)))))
2154 (setq ins (format-time-string
2155 "%Y-%m"
2156 (encode-time 0 0 0 1 (+ mw n) y))))
2158 (setq ins (number-to-string (+ y n))))))
2159 (t (error "Cannot shift clocktable block")))
2160 (when ins
2161 (goto-char b)
2162 (insert ins)
2163 (delete-region (point) (+ (point) (- e b)))
2164 (beginning-of-line 1)
2165 (org-update-dblock)
2166 t)))))
2168 (defun org-dblock-write:clocktable (params)
2169 "Write the standard clocktable."
2170 (setq params (org-combine-plists org-clocktable-defaults params))
2171 (catch 'exit
2172 (let* ((scope (plist-get params :scope))
2173 (block (plist-get params :block))
2174 (ts (plist-get params :tstart))
2175 (te (plist-get params :tend))
2176 (link (plist-get params :link))
2177 (maxlevel (or (plist-get params :maxlevel) 3))
2178 (step (plist-get params :step))
2179 (timestamp (plist-get params :timestamp))
2180 (formatter (or (plist-get params :formatter)
2181 org-clock-clocktable-formatter
2182 'org-clocktable-write-default))
2183 cc range-text ipos pos one-file-with-archives
2184 scope-is-list tbls level)
2185 ;; Check if we need to do steps
2186 (when block
2187 ;; Get the range text for the header
2188 (setq cc (org-clock-special-range block nil t)
2189 ts (car cc) te (nth 1 cc) range-text (nth 2 cc)))
2190 (when step
2191 ;; Write many tables, in steps
2192 (unless (or block (and ts te))
2193 (error "Clocktable `:step' can only be used with `:block' or `:tstart,:end'"))
2194 (org-clocktable-steps params)
2195 (throw 'exit nil))
2197 (setq ipos (point)) ; remember the insertion position
2199 ;; Get the right scope
2200 (setq pos (point))
2201 (cond
2202 ((and scope (listp scope) (symbolp (car scope)))
2203 (setq scope (eval scope)))
2204 ((eq scope 'agenda)
2205 (setq scope (org-agenda-files t)))
2206 ((eq scope 'agenda-with-archives)
2207 (setq scope (org-agenda-files t))
2208 (setq scope (org-add-archive-files scope)))
2209 ((eq scope 'file-with-archives)
2210 (setq scope (org-add-archive-files (list (buffer-file-name)))
2211 one-file-with-archives t)))
2212 (setq scope-is-list (and scope (listp scope)))
2213 (if scope-is-list
2214 ;; we collect from several files
2215 (let* ((files scope)
2216 file)
2217 (org-agenda-prepare-buffers files)
2218 (while (setq file (pop files))
2219 (with-current-buffer (find-buffer-visiting file)
2220 (save-excursion
2221 (save-restriction
2222 (push (org-clock-get-table-data file params) tbls))))))
2223 ;; Just from the current file
2224 (save-restriction
2225 ;; get the right range into the restriction
2226 (org-agenda-prepare-buffers (list (buffer-file-name)))
2227 (cond
2228 ((not scope)) ; use the restriction as it is now
2229 ((eq scope 'file) (widen))
2230 ((eq scope 'subtree) (org-narrow-to-subtree))
2231 ((eq scope 'tree)
2232 (while (org-up-heading-safe))
2233 (org-narrow-to-subtree))
2234 ((and (symbolp scope) (string-match "^tree\\([0-9]+\\)$"
2235 (symbol-name scope)))
2236 (setq level (string-to-number (match-string 1 (symbol-name scope))))
2237 (catch 'exit
2238 (while (org-up-heading-safe)
2239 (looking-at org-outline-regexp)
2240 (if (<= (org-reduced-level (funcall outline-level)) level)
2241 (throw 'exit nil))))
2242 (org-narrow-to-subtree)))
2243 ;; do the table, with no file name.
2244 (push (org-clock-get-table-data nil params) tbls)))
2246 ;; OK, at this point we tbls as a list of tables, one per file
2247 (setq tbls (nreverse tbls))
2249 (setq params (plist-put params :multifile scope-is-list))
2250 (setq params (plist-put params :one-file-with-archives
2251 one-file-with-archives))
2253 (funcall formatter ipos tbls params))))
2255 (defun org-clocktable-write-default (ipos tables params)
2256 "Write out a clock table at position IPOS in the current buffer.
2257 TABLES is a list of tables with clocking data as produced by
2258 `org-clock-get-table-data'. PARAMS is the parameter property list obtained
2259 from the dynamic block definition."
2260 ;; This function looks quite complicated, mainly because there are a
2261 ;; lot of options which can add or remove columns. I have massively
2262 ;; commented this function, the I hope it is understandable. If
2263 ;; someone wants to write their own special formatter, this maybe
2264 ;; much easier because there can be a fixed format with a
2265 ;; well-defined number of columns...
2266 (let* ((hlchars '((1 . "*") (2 . "/")))
2267 (lwords (assoc (or (plist-get params :lang)
2268 org-export-default-language)
2269 org-clock-clocktable-language-setup))
2270 (multifile (plist-get params :multifile))
2271 (block (plist-get params :block))
2272 (ts (plist-get params :tstart))
2273 (te (plist-get params :tend))
2274 (header (plist-get params :header))
2275 (narrow (plist-get params :narrow))
2276 (link (plist-get params :link))
2277 (maxlevel (or (plist-get params :maxlevel) 3))
2278 (emph (plist-get params :emphasize))
2279 (level-p (plist-get params :level))
2280 (timestamp (plist-get params :timestamp))
2281 (properties (plist-get params :properties))
2282 (ntcol (max 1 (or (plist-get params :tcolumns) 100)))
2283 (rm-file-column (plist-get params :one-file-with-archives))
2284 (indent (plist-get params :indent))
2285 (case-fold-search t)
2286 range-text total-time tbl level hlc formula pcol
2287 file-time entries entry headline
2288 recalc content narrow-cut-p tcol)
2290 ;; Implement abbreviations
2291 (when (plist-get params :compact)
2292 (setq level nil indent t narrow (or narrow '40!) ntcol 1))
2294 ;; Some consistency test for parameters
2295 (unless (integerp ntcol)
2296 (setq params (plist-put params :tcolumns (setq ntcol 100))))
2298 (when (and narrow (integerp narrow) link)
2299 ;; We cannot have both integer narrow and link
2300 (message
2301 "Using hard narrowing in clocktable to allow for links")
2302 (setq narrow (intern (format "%d!" narrow))))
2304 (when narrow
2305 (cond
2306 ((integerp narrow))
2307 ((and (symbolp narrow)
2308 (string-match "\\`[0-9]+!\\'" (symbol-name narrow)))
2309 (setq narrow-cut-p t
2310 narrow (string-to-number (substring (symbol-name narrow)
2311 0 -1))))
2313 (error "Invalid value %s of :narrow property in clock table"
2314 narrow))))
2316 (when block
2317 ;; Get the range text for the header
2318 (setq range-text (nth 2 (org-clock-special-range block nil t))))
2320 ;; Compute the total time
2321 (setq total-time (apply '+ (mapcar 'cadr tables)))
2323 ;; Now we need to output this tsuff
2324 (goto-char ipos)
2326 ;; Insert the text *before* the actual table
2327 (insert-before-markers
2328 (or header
2329 ;; Format the standard header
2330 (concat
2331 (nth 9 lwords) " ["
2332 (substring
2333 (format-time-string (cdr org-time-stamp-formats))
2334 1 -1)
2336 (if block (concat ", for " range-text ".") "")
2337 "\n\n")))
2339 ;; Insert the narrowing line
2340 (when (and narrow (integerp narrow) (not narrow-cut-p))
2341 (insert-before-markers
2342 "|" ; table line starter
2343 (if multifile "|" "") ; file column, maybe
2344 (if level-p "|" "") ; level column, maybe
2345 (if timestamp "|" "") ; timestamp column, maybe
2346 (if properties (make-string (length properties) ?|) "") ;properties columns, maybe
2347 (format "<%d>| |\n" narrow))) ; headline and time columns
2349 ;; Insert the table header line
2350 (insert-before-markers
2351 "|" ; table line starter
2352 (if multifile (concat (nth 1 lwords) "|") "") ; file column, maybe
2353 (if level-p (concat (nth 2 lwords) "|") "") ; level column, maybe
2354 (if timestamp (concat (nth 3 lwords) "|") "") ; timestamp column, maybe
2355 (if properties (concat (mapconcat 'identity properties "|") "|") "") ;properties columns, maybe
2356 (concat (nth 4 lwords) "|"
2357 (nth 5 lwords) "|\n")) ; headline and time columns
2359 ;; Insert the total time in the table
2360 (insert-before-markers
2361 "|-\n" ; a hline
2362 "|" ; table line starter
2363 (if multifile (concat "| " (nth 6 lwords) " ") "")
2364 ; file column, maybe
2365 (if level-p "|" "") ; level column, maybe
2366 (if timestamp "|" "") ; timestamp column, maybe
2367 (if properties (make-string (length properties) ?|) "") ; properties columns, maybe
2368 (concat (format org-clock-total-time-cell-format (nth 7 lwords)) "| ") ; instead of a headline
2369 (format org-clock-total-time-cell-format
2370 (org-minutes-to-hh:mm-string (or total-time 0))) ; the time
2371 "|\n") ; close line
2373 ;; Now iterate over the tables and insert the data
2374 ;; but only if any time has been collected
2375 (when (and total-time (> total-time 0))
2377 (while (setq tbl (pop tables))
2378 ;; now tbl is the table resulting from one file.
2379 (setq file-time (nth 1 tbl))
2380 (when (or (and file-time (> file-time 0))
2381 (not (plist-get params :fileskip0)))
2382 (insert-before-markers "|-\n") ; a hline because a new file starts
2383 ;; First the file time, if we have multiple files
2384 (when multifile
2385 ;; Summarize the time collected from this file
2386 (insert-before-markers
2387 (format (concat "| %s %s | %s%s"
2388 (format org-clock-file-time-cell-format (nth 8 lwords))
2389 " | *%s*|\n")
2390 (file-name-nondirectory (car tbl))
2391 (if level-p "| " "") ; level column, maybe
2392 (if timestamp "| " "") ; timestamp column, maybe
2393 (if properties (make-string (length properties) ?|) "") ;properties columns, maybe
2394 (org-minutes-to-hh:mm-string (nth 1 tbl))))) ; the time
2396 ;; Get the list of node entries and iterate over it
2397 (setq entries (nth 2 tbl))
2398 (while (setq entry (pop entries))
2399 (setq level (car entry)
2400 headline (nth 1 entry)
2401 hlc (if emph (or (cdr (assoc level hlchars)) "") ""))
2402 (when narrow-cut-p
2403 (if (and (string-match (concat "\\`" org-bracket-link-regexp
2404 "\\'")
2405 headline)
2406 (match-end 3))
2407 (setq headline
2408 (format "[[%s][%s]]"
2409 (match-string 1 headline)
2410 (org-shorten-string (match-string 3 headline)
2411 narrow)))
2412 (setq headline (org-shorten-string headline narrow))))
2413 (insert-before-markers
2414 "|" ; start the table line
2415 (if multifile "|" "") ; free space for file name column?
2416 (if level-p (format "%d|" (car entry)) "") ; level, maybe
2417 (if timestamp (concat (nth 2 entry) "|") "") ; timestamp, maybe
2418 (if properties
2419 (concat
2420 (mapconcat
2421 (lambda (p) (or (cdr (assoc p (nth 4 entry))) ""))
2422 properties "|") "|") "") ;properties columns, maybe
2423 (if indent (org-clocktable-indent-string level) "") ; indentation
2424 hlc headline hlc "|" ; headline
2425 (make-string (min (1- ntcol) (or (- level 1))) ?|)
2426 ; empty fields for higher levels
2427 hlc (org-minutes-to-hh:mm-string (nth 3 entry)) hlc ; time
2428 "|\n" ; close line
2429 )))))
2430 ;; When exporting subtrees or regions the region might be
2431 ;; activated, so let's disable ̀delete-active-region'
2432 (let ((delete-active-region nil)) (backward-delete-char 1))
2433 (if (setq formula (plist-get params :formula))
2434 (cond
2435 ((eq formula '%)
2436 ;; compute the column where the % numbers need to go
2437 (setq pcol (+ 2
2438 (if multifile 1 0)
2439 (if level-p 1 0)
2440 (if timestamp 1 0)
2441 (min maxlevel (or ntcol 100))))
2442 ;; compute the column where the total time is
2443 (setq tcol (+ 2
2444 (if multifile 1 0)
2445 (if level-p 1 0)
2446 (if timestamp 1 0)))
2447 (insert
2448 (format
2449 "\n#+TBLFM: $%d='(org-clock-time%% @%d$%d $%d..$%d);%%.1f"
2450 pcol ; the column where the % numbers should go
2451 (if (and narrow (not narrow-cut-p)) 3 2) ; row of the total time
2452 tcol ; column of the total time
2453 tcol (1- pcol) ; range of columns where times can be found
2455 (setq recalc t))
2456 ((stringp formula)
2457 (insert "\n#+TBLFM: " formula)
2458 (setq recalc t))
2459 (t (error "Invalid formula in clocktable")))
2460 ;; Should we rescue an old formula?
2461 (when (stringp (setq content (plist-get params :content)))
2462 (when (string-match "^\\([ \t]*#\\+tblfm:.*\\)" content)
2463 (setq recalc t)
2464 (insert "\n" (match-string 1 (plist-get params :content)))
2465 (beginning-of-line 0))))
2466 ;; Back to beginning, align the table, recalculate if necessary
2467 (goto-char ipos)
2468 (skip-chars-forward "^|")
2469 (org-table-align)
2470 (when org-hide-emphasis-markers
2471 ;; we need to align a second time
2472 (org-table-align))
2473 (when recalc
2474 (if (eq formula '%)
2475 (save-excursion
2476 (if (and narrow (not narrow-cut-p)) (beginning-of-line 2))
2477 (org-table-goto-column pcol nil 'force)
2478 (insert "%")))
2479 (org-table-recalculate 'all))
2480 (when rm-file-column
2481 ;; The file column is actually not wanted
2482 (forward-char 1)
2483 (org-table-delete-column))
2484 total-time))
2486 (defun org-clocktable-indent-string (level)
2487 (if (= level 1)
2489 (let ((str "\\__"))
2490 (while (> level 2)
2491 (setq level (1- level)
2492 str (concat str "___")))
2493 (concat str " "))))
2495 (defun org-clocktable-steps (params)
2496 "Step through the range to make a number of clock tables."
2497 (let* ((p1 (copy-sequence params))
2498 (ts (plist-get p1 :tstart))
2499 (te (plist-get p1 :tend))
2500 (step0 (plist-get p1 :step))
2501 (step (cdr (assoc step0 '((day . 86400) (week . 604800)))))
2502 (stepskip0 (plist-get p1 :stepskip0))
2503 (block (plist-get p1 :block))
2504 cc range-text step-time)
2505 (when block
2506 (setq cc (org-clock-special-range block nil t)
2507 ts (car cc) te (nth 1 cc) range-text (nth 2 cc)))
2508 (cond
2509 ((numberp ts)
2510 ;; If ts is a number, it's an absolute day number from org-agenda.
2511 (destructuring-bind (month day year) (calendar-gregorian-from-absolute ts)
2512 (setq ts (org-float-time (encode-time 0 0 0 day month year)))))
2514 (setq ts (org-float-time
2515 (apply 'encode-time (org-parse-time-string ts))))))
2516 (cond
2517 ((numberp te)
2518 ;; Likewise for te.
2519 (destructuring-bind (month day year) (calendar-gregorian-from-absolute te)
2520 (setq te (org-float-time (encode-time 0 0 0 day month year)))))
2522 (setq te (org-float-time
2523 (apply 'encode-time (org-parse-time-string te))))))
2524 (setq p1 (plist-put p1 :header ""))
2525 (setq p1 (plist-put p1 :step nil))
2526 (setq p1 (plist-put p1 :block nil))
2527 (while (< ts te)
2528 (or (bolp) (insert "\n"))
2529 (setq p1 (plist-put p1 :tstart (format-time-string
2530 (org-time-stamp-format nil t)
2531 (seconds-to-time ts))))
2532 (setq p1 (plist-put p1 :tend (format-time-string
2533 (org-time-stamp-format nil t)
2534 (seconds-to-time (setq ts (+ ts step))))))
2535 (insert "\n" (if (eq step0 'day) "Daily report: "
2536 "Weekly report starting on: ")
2537 (plist-get p1 :tstart) "\n")
2538 (setq step-time (org-dblock-write:clocktable p1))
2539 (re-search-forward "^[ \t]*#\\+END:")
2540 (when (and (equal step-time 0) stepskip0)
2541 ;; Remove the empty table
2542 (delete-region (point-at-bol)
2543 (save-excursion
2544 (re-search-backward "^\\(Daily\\|Weekly\\) report"
2545 nil t)
2546 (point))))
2547 (end-of-line 0))))
2549 (defun org-clock-get-table-data (file params)
2550 "Get the clocktable data for file FILE, with parameters PARAMS.
2551 FILE is only for identification - this function assumes that
2552 the correct buffer is current, and that the wanted restriction is
2553 in place.
2554 The return value will be a list with the file name and the total
2555 file time (in minutes) as 1st and 2nd elements. The third element
2556 of this list will be a list of headline entries. Each entry has the
2557 following structure:
2559 (LEVEL HEADLINE TIMESTAMP TIME)
2561 LEVEL: The level of the headline, as an integer. This will be
2562 the reduced leve, so 1,2,3,... even if only odd levels
2563 are being used.
2564 HEADLINE: The text of the headline. Depending on PARAMS, this may
2565 already be formatted like a link.
2566 TIMESTAMP: If PARAMS require it, this will be a time stamp found in the
2567 entry, any of SCHEDULED, DEADLINE, NORMAL, or first inactive,
2568 in this sequence.
2569 TIME: The sum of all time spend in this tree, in minutes. This time
2570 will of cause be restricted to the time block and tags match
2571 specified in PARAMS."
2572 (let* ((maxlevel (or (plist-get params :maxlevel) 3))
2573 (timestamp (plist-get params :timestamp))
2574 (ts (plist-get params :tstart))
2575 (te (plist-get params :tend))
2576 (block (plist-get params :block))
2577 (link (plist-get params :link))
2578 (tags (plist-get params :tags))
2579 (properties (plist-get params :properties))
2580 (inherit-property-p (plist-get params :inherit-props))
2581 todo-only
2582 (matcher (if tags (cdr (org-make-tags-matcher tags))))
2583 cc range-text st p time level hdl props tsp tbl)
2585 (setq org-clock-file-total-minutes nil)
2586 (when block
2587 (setq cc (org-clock-special-range block nil t)
2588 ts (car cc) te (nth 1 cc) range-text (nth 2 cc)))
2589 (when (integerp ts) (setq ts (calendar-gregorian-from-absolute ts)))
2590 (when (integerp te) (setq te (calendar-gregorian-from-absolute te)))
2591 (when (and ts (listp ts))
2592 (setq ts (format "%4d-%02d-%02d" (nth 2 ts) (car ts) (nth 1 ts))))
2593 (when (and te (listp te))
2594 (setq te (format "%4d-%02d-%02d" (nth 2 te) (car te) (nth 1 te))))
2595 ;; Now the times are strings we can parse.
2596 (if ts (setq ts (org-float-time
2597 (apply 'encode-time (org-parse-time-string ts)))))
2598 (if te (setq te (org-float-time
2599 (apply 'encode-time (org-parse-time-string te)))))
2600 (save-excursion
2601 (org-clock-sum ts te
2602 (unless (null matcher)
2603 (lambda ()
2604 (let* ((tags-list (org-get-tags-at))
2605 (org-scanner-tags tags-list)
2606 (org-trust-scanner-tags t))
2607 (eval matcher)))))
2608 (goto-char (point-min))
2609 (setq st t)
2610 (while (or (and (bobp) (prog1 st (setq st nil))
2611 (get-text-property (point) :org-clock-minutes)
2612 (setq p (point-min)))
2613 (setq p (next-single-property-change
2614 (point) :org-clock-minutes)))
2615 (goto-char p)
2616 (when (setq time (get-text-property p :org-clock-minutes))
2617 (save-excursion
2618 (beginning-of-line 1)
2619 (when (and (looking-at (org-re "\\(\\*+\\)[ \t]+\\(.*?\\)\\([ \t]+:[[:alnum:]_@#%:]+:\\)?[ \t]*$"))
2620 (setq level (org-reduced-level
2621 (- (match-end 1) (match-beginning 1))))
2622 (<= level maxlevel))
2623 (setq hdl (if (not link)
2624 (match-string 2)
2625 (org-make-link-string
2626 (format "file:%s::%s"
2627 (buffer-file-name)
2628 (save-match-data
2629 (org-make-org-heading-search-string
2630 (match-string 2))))
2631 (match-string 2)))
2632 tsp (when timestamp
2633 (setq props (org-entry-properties (point)))
2634 (or (cdr (assoc "SCHEDULED" props))
2635 (cdr (assoc "DEADLINE" props))
2636 (cdr (assoc "TIMESTAMP" props))
2637 (cdr (assoc "TIMESTAMP_IA" props))))
2638 props (when properties
2639 (remove nil
2640 (mapcar
2641 (lambda (p)
2642 (when (org-entry-get (point) p inherit-property-p)
2643 (cons p (org-entry-get (point) p inherit-property-p))))
2644 properties))))
2645 (when (> time 0) (push (list level hdl tsp time props) tbl))))))
2646 (setq tbl (nreverse tbl))
2647 (list file org-clock-file-total-minutes tbl))))
2649 (defun org-clock-time% (total &rest strings)
2650 "Compute a time fraction in percent.
2651 TOTAL s a time string like 10:21 specifying the total times.
2652 STRINGS is a list of strings that should be checked for a time.
2653 The first string that does have a time will be used.
2654 This function is made for clock tables."
2655 (let ((re "\\([0-9]+\\):\\([0-9]+\\)")
2656 tot s)
2657 (save-match-data
2658 (catch 'exit
2659 (if (not (string-match re total))
2660 (throw 'exit 0.)
2661 (setq tot (+ (string-to-number (match-string 2 total))
2662 (* 60 (string-to-number (match-string 1 total)))))
2663 (if (= tot 0.) (throw 'exit 0.)))
2664 (while (setq s (pop strings))
2665 (if (string-match "\\([0-9]+\\):\\([0-9]+\\)" s)
2666 (throw 'exit
2667 (/ (* 100.0 (+ (string-to-number (match-string 2 s))
2668 (* 60 (string-to-number
2669 (match-string 1 s)))))
2670 tot))))
2671 0))))
2673 ;; Saving and loading the clock
2675 (defvar org-clock-loaded nil
2676 "Was the clock file loaded?")
2678 (defun org-clock-save ()
2679 "Persist various clock-related data to disk.
2680 The details of what will be saved are regulated by the variable
2681 `org-clock-persist'."
2682 (when (and org-clock-persist
2683 (or org-clock-loaded
2684 org-clock-has-been-used
2685 (not (file-exists-p org-clock-persist-file))))
2686 (let (b)
2687 (with-current-buffer (find-file (expand-file-name org-clock-persist-file))
2688 (progn
2689 (delete-region (point-min) (point-max))
2690 ;;Store clock
2691 (insert (format ";; org-persist.el - %s at %s\n"
2692 system-name (format-time-string
2693 (cdr org-time-stamp-formats))))
2694 (if (and (memq org-clock-persist '(t clock))
2695 (setq b (org-clocking-buffer))
2696 (setq b (or (buffer-base-buffer b) b))
2697 (buffer-live-p b)
2698 (buffer-file-name b)
2699 (or (not org-clock-persist-query-save)
2700 (y-or-n-p (concat "Save current clock ("
2701 (substring-no-properties
2702 org-clock-heading)
2703 ") "))))
2704 (insert "(setq resume-clock '(\""
2705 (buffer-file-name (org-clocking-buffer))
2706 "\" . " (int-to-string (marker-position org-clock-marker))
2707 "))\n"))
2708 ;; Store clocked task history. Tasks are stored reversed to make
2709 ;; reading simpler
2710 (when (and (memq org-clock-persist '(t history))
2711 org-clock-history)
2712 (insert
2713 "(setq stored-clock-history '("
2714 (mapconcat
2715 (lambda (m)
2716 (when (and (setq b (marker-buffer m))
2717 (setq b (or (buffer-base-buffer b) b))
2718 (buffer-live-p b)
2719 (buffer-file-name b))
2720 (concat "(\"" (buffer-file-name b)
2721 "\" . " (int-to-string (marker-position m))
2722 ")")))
2723 (reverse org-clock-history) " ") "))\n"))
2724 (save-buffer)
2725 (kill-buffer (current-buffer)))))))
2727 (defun org-clock-load ()
2728 "Load clock-related data from disk, maybe resuming a stored clock."
2729 (when (and org-clock-persist (not org-clock-loaded))
2730 (let ((filename (expand-file-name org-clock-persist-file))
2731 (org-clock-in-resume 'auto-restart)
2732 resume-clock stored-clock-history)
2733 (if (not (file-readable-p filename))
2734 (message "Not restoring clock data; %s not found"
2735 org-clock-persist-file)
2736 (message "%s" "Restoring clock data")
2737 (setq org-clock-loaded t)
2738 (load-file filename)
2739 ;; load history
2740 (when stored-clock-history
2741 (save-window-excursion
2742 (mapc (lambda (task)
2743 (if (file-exists-p (car task))
2744 (org-clock-history-push (cdr task)
2745 (find-file (car task)))))
2746 stored-clock-history)))
2747 ;; resume clock
2748 (when (and resume-clock org-clock-persist
2749 (file-exists-p (car resume-clock))
2750 (or (not org-clock-persist-query-resume)
2751 (y-or-n-p
2752 (concat
2753 "Resume clock ("
2754 (with-current-buffer (find-file (car resume-clock))
2755 (save-excursion
2756 (goto-char (cdr resume-clock))
2757 (org-back-to-heading t)
2758 (and (looking-at org-complex-heading-regexp)
2759 (match-string 4))))
2760 ") "))))
2761 (when (file-exists-p (car resume-clock))
2762 (with-current-buffer (find-file (car resume-clock))
2763 (goto-char (cdr resume-clock))
2764 (let ((org-clock-auto-clock-resolution nil))
2765 (org-clock-in)
2766 (if (outline-invisible-p)
2767 (org-show-context))))))))))
2769 ;;;###autoload
2770 (defun org-clock-persistence-insinuate ()
2771 "Set up hooks for clock persistence."
2772 (add-hook 'org-mode-hook 'org-clock-load)
2773 (add-hook 'kill-emacs-hook 'org-clock-save))
2775 ;; Suggested bindings
2776 (org-defkey org-mode-map "\C-c\C-x\C-e" 'org-clock-modify-effort-estimate)
2778 (provide 'org-clock)
2780 ;;; org-clock.el ends here