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