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