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