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