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