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