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