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