Use ‘eq’ instead of ‘equal’ for symbols
[org-mode.git] / lisp / org-clock.el
blob84b977312a9b8ef8451df359c94cb2335b58756d
1 ;;; org-clock.el --- The time clocking code for Org mode -*- lexical-binding: t; -*-
3 ;; Copyright (C) 2004-2016 Free Software Foundation, Inc.
5 ;; Author: Carsten Dominik <carsten at orgmode dot org>
6 ;; Keywords: outlines, hypermedia, calendar, wp
7 ;; Homepage: http://orgmode.org
8 ;;
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
25 ;;; Commentary:
27 ;; This file contains the time clocking code for Org mode
29 ;;; Code:
31 (require 'cl-lib)
32 (require 'org)
34 (declare-function calendar-iso-to-absolute "cal-iso" (date))
35 (declare-function notifications-notify "notifications" (&rest params))
36 (declare-function org-element-property "org-element" (property element))
37 (declare-function org-element-type "org-element" (element))
38 (declare-function org-table-goto-line "org-table" (n))
40 (defvar org-clock-stored-history nil
41 "Clock history, populated by `org-clock-load', which see.")
42 (defvar org-frame-title-format-backup frame-title-format)
43 (defvar org-time-stamp-formats)
44 (defvar org-ts-what)
47 (defgroup org-clock nil
48 "Options concerning clocking working time in Org-mode."
49 :tag "Org Clock"
50 :group 'org-progress)
52 (defcustom org-clock-into-drawer t
53 "Non-nil when clocking info should be wrapped into a drawer.
55 When non-nil, clocking info will be inserted into the same drawer
56 as log notes (see variable `org-log-into-drawer'), if it exists,
57 or \"LOGBOOK\" otherwise. If necessary, the drawer will be
58 created.
60 When an integer, the drawer is created only when the number of
61 clocking entries in an item reaches or exceeds this value.
63 When a string, it becomes the name of the drawer, ignoring the
64 log notes drawer altogether.
66 Do not check directly this variable in a Lisp program. Call
67 function `org-clock-into-drawer' instead."
68 :group 'org-todo
69 :group 'org-clock
70 :version "25.1"
71 :package-version '(Org . "8.3")
72 :type '(choice
73 (const :tag "Always" t)
74 (const :tag "Only when drawer exists" nil)
75 (integer :tag "When at least N clock entries")
76 (const :tag "Into LOGBOOK drawer" "LOGBOOK")
77 (string :tag "Into Drawer named...")))
79 (defun org-clock-into-drawer ()
80 "Value of `org-clock-into-drawer'. but let properties overrule.
82 If the current entry has or inherits a CLOCK_INTO_DRAWER
83 property, it will be used instead of the default value.
85 Return value is either a string, an integer, or nil."
86 (let ((p (org-entry-get nil "CLOCK_INTO_DRAWER" 'inherit t)))
87 (cond ((equal p "nil") nil)
88 ((equal p "t") (or (org-log-into-drawer) "LOGBOOK"))
89 ((org-string-nw-p p)
90 (if (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 menu\nmouse-2 will jump to task"))
699 (if (and (> org-clock-string-limit 0)
700 (> (length clock-string) org-clock-string-limit))
701 (propertize
702 (substring clock-string 0 org-clock-string-limit)
703 'help-echo (concat help-text ": " org-clock-heading))
704 (propertize clock-string 'help-echo help-text)))
705 'local-map org-clock-mode-line-map
706 'mouse-face 'mode-line-highlight))
707 (if (and org-clock-task-overrun org-clock-task-overrun-text)
708 (setq org-mode-line-string
709 (concat (propertize
710 org-clock-task-overrun-text
711 'face 'org-mode-line-clock-overrun) org-mode-line-string)))
712 (force-mode-line-update))
714 (defun org-clock-get-clocked-time ()
715 "Get the clocked time for the current item in minutes.
716 The time returned includes the time spent on this task in
717 previous clocking intervals."
718 (let ((currently-clocked-time
719 (floor (- (float-time)
720 (float-time org-clock-start-time)) 60)))
721 (+ currently-clocked-time (or org-clock-total-time 0))))
723 (defun org-clock-modify-effort-estimate (&optional value)
724 "Add to or set the effort estimate of the item currently being clocked.
725 VALUE can be a number of minutes, or a string with format hh:mm or mm.
726 When the string starts with a + or a - sign, the current value of the effort
727 property will be changed by that amount. If the effort value is expressed
728 as an `org-effort-durations' (e.g. \"3h\"), the modified value will be
729 converted to a hh:mm duration.
731 This command will update the \"Effort\" property of the currently
732 clocked item, and the value displayed in the mode line."
733 (interactive)
734 (if (org-clock-is-active)
735 (let ((current org-clock-effort) sign)
736 (unless value
737 ;; Prompt user for a value or a change
738 (setq value
739 (read-string
740 (format "Set effort (hh:mm or mm%s): "
741 (if current
742 (format ", prefix + to add to %s" org-clock-effort)
743 "")))))
744 (when (stringp value)
745 ;; A string. See if it is a delta
746 (setq sign (string-to-char value))
747 (if (member sign '(?- ?+))
748 (setq current (org-duration-string-to-minutes current)
749 value (substring value 1))
750 (setq current 0))
751 (setq value (org-duration-string-to-minutes value))
752 (if (equal ?- sign)
753 (setq value (- current value))
754 (if (equal ?+ sign) (setq value (+ current value)))))
755 (setq value (max 0 value)
756 org-clock-effort (org-minutes-to-clocksum-string value))
757 (org-entry-put org-clock-marker "Effort" org-clock-effort)
758 (org-clock-update-mode-line)
759 (message "Effort is now %s" org-clock-effort))
760 (message "Clock is not currently active")))
762 (defvar org-clock-notification-was-shown nil
763 "Shows if we have shown notification already.")
765 (defun org-clock-notify-once-if-expired ()
766 "Show notification if we spent more time than we estimated before.
767 Notification is shown only once."
768 (when (org-clocking-p)
769 (let ((effort-in-minutes (org-duration-string-to-minutes org-clock-effort))
770 (clocked-time (org-clock-get-clocked-time)))
771 (if (setq org-clock-task-overrun
772 (if (or (null effort-in-minutes) (zerop effort-in-minutes))
774 (>= clocked-time effort-in-minutes)))
775 (unless org-clock-notification-was-shown
776 (setq org-clock-notification-was-shown t)
777 (org-notify
778 (format-message "Task `%s' should be finished by now. (%s)"
779 org-clock-heading org-clock-effort)
780 org-clock-sound))
781 (setq org-clock-notification-was-shown nil)))))
783 (defun org-notify (notification &optional play-sound)
784 "Send a NOTIFICATION and maybe PLAY-SOUND.
785 If PLAY-SOUND is non-nil, it overrides `org-clock-sound'."
786 (org-show-notification notification)
787 (if play-sound (org-clock-play-sound play-sound)))
789 (defun org-show-notification (notification)
790 "Show notification.
791 Use `org-show-notification-handler' if defined,
792 use libnotify if available, or fall back on a message."
793 (cond ((functionp org-show-notification-handler)
794 (funcall org-show-notification-handler notification))
795 ((stringp org-show-notification-handler)
796 (start-process "emacs-timer-notification" nil
797 org-show-notification-handler notification))
798 ((fboundp 'notifications-notify)
799 (notifications-notify
800 :title "Org-mode message"
801 :body notification
802 ;; FIXME how to link to the Org icon?
803 ;; :app-icon "~/.emacs.d/icons/mail.png"
804 :urgency 'low))
805 ((executable-find "notify-send")
806 (start-process "emacs-timer-notification" nil
807 "notify-send" notification))
808 ;; Maybe the handler will send a message, so only use message as
809 ;; a fall back option
810 (t (message "%s" notification))))
812 (defun org-clock-play-sound (&optional clock-sound)
813 "Play sound as configured by `org-clock-sound'.
814 Use alsa's aplay tool if available.
815 If CLOCK-SOUND is non-nil, it overrides `org-clock-sound'."
816 (let ((org-clock-sound (or clock-sound org-clock-sound)))
817 (cond
818 ((not org-clock-sound))
819 ((eq org-clock-sound t) (beep t) (beep t))
820 ((stringp org-clock-sound)
821 (let ((file (expand-file-name org-clock-sound)))
822 (if (file-exists-p file)
823 (if (executable-find "aplay")
824 (start-process "org-clock-play-notification" nil
825 "aplay" file)
826 (condition-case nil
827 (play-sound-file file)
828 (error (beep t) (beep t))))))))))
830 (defvar org-clock-mode-line-entry nil
831 "Information for the mode line about the running clock.")
833 (defun org-find-open-clocks (file)
834 "Search through the given file and find all open clocks."
835 (let ((buf (or (get-file-buffer file)
836 (find-file-noselect file)))
837 (org-clock-re (concat org-clock-string " \\(\\[.*?\\]\\)$"))
838 clocks)
839 (with-current-buffer buf
840 (save-excursion
841 (goto-char (point-min))
842 (while (re-search-forward org-clock-re nil t)
843 (push (cons (copy-marker (match-end 1) t)
844 (org-time-string-to-time (match-string 1))) clocks))))
845 clocks))
847 (defsubst org-is-active-clock (clock)
848 "Return t if CLOCK is the currently active clock."
849 (and (org-clock-is-active)
850 (= org-clock-marker (car clock))))
852 (defmacro org-with-clock-position (clock &rest forms)
853 "Evaluate FORMS with CLOCK as the current active clock."
854 `(with-current-buffer (marker-buffer (car ,clock))
855 (org-with-wide-buffer
856 (goto-char (car ,clock))
857 (beginning-of-line)
858 ,@forms)))
859 (def-edebug-spec org-with-clock-position (form body))
860 (put 'org-with-clock-position 'lisp-indent-function 1)
862 (defmacro org-with-clock (clock &rest forms)
863 "Evaluate FORMS with CLOCK as the current active clock.
864 This macro also protects the current active clock from being altered."
865 `(org-with-clock-position ,clock
866 (let ((org-clock-start-time (cdr ,clock))
867 (org-clock-total-time)
868 (org-clock-history)
869 (org-clock-effort)
870 (org-clock-marker (car ,clock))
871 (org-clock-hd-marker (save-excursion
872 (org-back-to-heading t)
873 (point-marker))))
874 ,@forms)))
875 (def-edebug-spec org-with-clock (form body))
876 (put 'org-with-clock 'lisp-indent-function 1)
878 (defsubst org-clock-clock-in (clock &optional resume start-time)
879 "Clock in to the clock located by CLOCK.
880 If necessary, clock-out of the currently active clock."
881 (org-with-clock-position clock
882 (let ((org-clock-in-resume (or resume org-clock-in-resume)))
883 (org-clock-in nil start-time))))
885 (defsubst org-clock-clock-out (clock &optional fail-quietly at-time)
886 "Clock out of the clock located by CLOCK."
887 (let ((temp (copy-marker (car clock)
888 (marker-insertion-type (car clock)))))
889 (if (org-is-active-clock clock)
890 (org-clock-out nil fail-quietly at-time)
891 (org-with-clock clock
892 (org-clock-out nil fail-quietly at-time)))
893 (setcar clock temp)))
895 (defsubst org-clock-clock-cancel (clock)
896 "Cancel the clock located by CLOCK."
897 (let ((temp (copy-marker (car clock)
898 (marker-insertion-type (car clock)))))
899 (if (org-is-active-clock clock)
900 (org-clock-cancel)
901 (org-with-clock clock
902 (org-clock-cancel)))
903 (setcar clock temp)))
905 (defvar org-clock-clocking-in nil)
906 (defvar org-clock-resolving-clocks nil)
907 (defvar org-clock-resolving-clocks-due-to-idleness nil)
909 (defun org-clock-resolve-clock (clock resolve-to clock-out-time
910 &optional close-p restart-p fail-quietly)
911 "Resolve `CLOCK' given the time `RESOLVE-TO', and the present.
912 `CLOCK' is a cons cell of the form (MARKER START-TIME)."
913 (let ((org-clock-resolving-clocks t))
914 (cond
915 ((null resolve-to)
916 (org-clock-clock-cancel clock)
917 (if (and restart-p (not org-clock-clocking-in))
918 (org-clock-clock-in clock)))
920 ((eq resolve-to 'now)
921 (if restart-p
922 (error "RESTART-P is not valid here"))
923 (if (or close-p org-clock-clocking-in)
924 (org-clock-clock-out clock fail-quietly)
925 (unless (org-is-active-clock clock)
926 (org-clock-clock-in clock t))))
928 ((not (time-less-p resolve-to (current-time)))
929 (error "RESOLVE-TO must refer to a time in the past"))
932 (if restart-p
933 (error "RESTART-P is not valid here"))
934 (org-clock-clock-out clock fail-quietly (or clock-out-time
935 resolve-to))
936 (unless org-clock-clocking-in
937 (if close-p
938 (setq org-clock-leftover-time (and (null clock-out-time)
939 resolve-to))
940 (org-clock-clock-in clock nil (and clock-out-time
941 resolve-to))))))))
943 (defun org-clock-jump-to-current-clock (&optional effective-clock)
944 (interactive)
945 (let ((drawer (org-clock-into-drawer))
946 (clock (or effective-clock (cons org-clock-marker
947 org-clock-start-time))))
948 (unless (marker-buffer (car clock))
949 (error "No clock is currently running"))
950 (org-with-clock clock (org-clock-goto))
951 (with-current-buffer (marker-buffer (car clock))
952 (goto-char (car clock))
953 (when drawer
954 (org-with-wide-buffer
955 (let ((drawer-re (format "^[ \t]*:%s:[ \t]*$"
956 (regexp-quote (if (stringp drawer) drawer "LOGBOOK"))))
957 (beg (save-excursion (org-back-to-heading t) (point))))
958 (catch 'exit
959 (while (re-search-backward drawer-re beg t)
960 (let ((element (org-element-at-point)))
961 (when (eq (org-element-type element) 'drawer)
962 (when (> (org-element-property :end element) (car clock))
963 (org-flag-drawer nil element))
964 (throw 'exit nil)))))))))))
966 (defun org-clock-resolve (clock &optional prompt-fn last-valid fail-quietly)
967 "Resolve an open Org clock.
968 An open clock was found, with `dangling' possibly being non-nil.
969 If this function was invoked with a prefix argument, non-dangling
970 open clocks are ignored. The given clock requires some sort of
971 user intervention to resolve it, either because a clock was left
972 dangling or due to an idle timeout. The clock resolution can
973 either be:
975 (a) deleted, the user doesn't care about the clock
976 (b) restarted from the current time (if no other clock is open)
977 (c) closed, giving the clock X minutes
978 (d) closed and then restarted
979 (e) resumed, as if the user had never left
981 The format of clock is (CONS MARKER START-TIME), where MARKER
982 identifies the buffer and position the clock is open at (and
983 thus, the heading it's under), and START-TIME is when the clock
984 was started."
985 (cl-assert clock)
986 (let* ((ch
987 (save-window-excursion
988 (save-excursion
989 (unless org-clock-resolving-clocks-due-to-idleness
990 (org-clock-jump-to-current-clock clock))
991 (unless org-clock-resolve-expert
992 (with-output-to-temp-buffer "*Org Clock*"
993 (princ (format-message "Select a Clock Resolution Command:
995 i/q Ignore this question; the same as keeping all the idle time.
997 k/K Keep X minutes of the idle time (default is all). If this
998 amount is less than the default, you will be clocked out
999 that many minutes after the time that idling began, and then
1000 clocked back in at the present time.
1002 g/G Indicate that you \"got back\" X minutes ago. This is quite
1003 different from `k': it clocks you out from the beginning of
1004 the idle period and clock you back in X minutes ago.
1006 s/S Subtract the idle time from the current clock. This is the
1007 same as keeping 0 minutes.
1009 C Cancel the open timer altogether. It will be as though you
1010 never clocked in.
1012 j/J Jump to the current clock, to make manual adjustments.
1014 For all these options, using uppercase makes your final state
1015 to be CLOCKED OUT."))))
1016 (org-fit-window-to-buffer (get-buffer-window "*Org Clock*"))
1017 (let (char-pressed)
1018 (while (or (null char-pressed)
1019 (and (not (memq char-pressed
1020 '(?k ?K ?g ?G ?s ?S ?C
1021 ?j ?J ?i ?q)))
1022 (or (ding) t)))
1023 (setq char-pressed
1024 (read-char (concat (funcall prompt-fn clock)
1025 " [jkKgGSscCiq]? ")
1026 nil 45)))
1027 (and (not (memq char-pressed '(?i ?q))) char-pressed)))))
1028 (default
1029 (floor (/ (float-time
1030 (time-subtract (current-time) last-valid)) 60)))
1031 (keep
1032 (and (memq ch '(?k ?K))
1033 (read-number "Keep how many minutes? " default)))
1034 (gotback
1035 (and (memq ch '(?g ?G))
1036 (read-number "Got back how many minutes ago? " default)))
1037 (subtractp (memq ch '(?s ?S)))
1038 (barely-started-p (< (- (float-time last-valid)
1039 (float-time (cdr clock))) 45))
1040 (start-over (and subtractp barely-started-p)))
1041 (cond
1042 ((memq ch '(?j ?J))
1043 (if (eq ch ?J)
1044 (org-clock-resolve-clock clock 'now nil t nil fail-quietly))
1045 (org-clock-jump-to-current-clock clock))
1046 ((or (null ch)
1047 (not (memq ch '(?k ?K ?g ?G ?s ?S ?C))))
1048 (message ""))
1050 (org-clock-resolve-clock
1051 clock (cond
1052 ((or (eq ch ?C)
1053 ;; If the time on the clock was less than a minute before
1054 ;; the user went away, and they've ask to subtract all the
1055 ;; time...
1056 start-over)
1057 nil)
1058 ((or subtractp
1059 (and gotback (= gotback 0)))
1060 last-valid)
1061 ((or (and keep (= keep default))
1062 (and gotback (= gotback default)))
1063 'now)
1064 (keep
1065 (time-add last-valid (seconds-to-time (* 60 keep))))
1066 (gotback
1067 (time-subtract (current-time)
1068 (seconds-to-time (* 60 gotback))))
1070 (error "Unexpected, please report this as a bug")))
1071 (and gotback last-valid)
1072 (memq ch '(?K ?G ?S))
1073 (and start-over
1074 (not (memq ch '(?K ?G ?S ?C))))
1075 fail-quietly)))))
1077 ;;;###autoload
1078 (defun org-resolve-clocks (&optional only-dangling-p prompt-fn last-valid)
1079 "Resolve all currently open Org clocks.
1080 If `only-dangling-p' is non-nil, only ask to resolve dangling
1081 \(i.e., not currently open and valid) clocks."
1082 (interactive "P")
1083 (unless org-clock-resolving-clocks
1084 (let ((org-clock-resolving-clocks t))
1085 (dolist (file (org-files-list))
1086 (let ((clocks (org-find-open-clocks file)))
1087 (dolist (clock clocks)
1088 (let ((dangling (or (not (org-clock-is-active))
1089 (/= (car clock) org-clock-marker))))
1090 (if (or (not only-dangling-p) dangling)
1091 (org-clock-resolve
1092 clock
1093 (or prompt-fn
1094 (function
1095 (lambda (clock)
1096 (format
1097 "Dangling clock started %d mins ago"
1098 (floor (- (float-time)
1099 (float-time (cdr clock)))
1100 60)))))
1101 (or last-valid
1102 (cdr clock)))))))))))
1104 (defun org-emacs-idle-seconds ()
1105 "Return the current Emacs idle time in seconds, or nil if not idle."
1106 (let ((idle-time (current-idle-time)))
1107 (if idle-time
1108 (float-time idle-time)
1109 0)))
1111 (defun org-mac-idle-seconds ()
1112 "Return the current Mac idle time in seconds."
1113 (string-to-number (shell-command-to-string "ioreg -c IOHIDSystem | perl -ane 'if (/Idle/) {$idle=(pop @F)/1000000000; print $idle; last}'")))
1115 (defvar org-x11idle-exists-p
1116 ;; Check that x11idle exists
1117 (and (eq window-system 'x)
1118 (eq 0 (call-process-shell-command
1119 (format "command -v %s" org-clock-x11idle-program-name)))
1120 ;; Check that x11idle can retrieve the idle time
1121 ;; FIXME: Why "..-shell-command" rather than just `call-process'?
1122 (eq 0 (call-process-shell-command org-clock-x11idle-program-name))))
1124 (defun org-x11-idle-seconds ()
1125 "Return the current X11 idle time in seconds."
1126 (/ (string-to-number (shell-command-to-string org-clock-x11idle-program-name)) 1000))
1128 (defun org-user-idle-seconds ()
1129 "Return the number of seconds the user has been idle for.
1130 This routine returns a floating point number."
1131 (cond
1132 ((eq system-type 'darwin)
1133 (org-mac-idle-seconds))
1134 ((and (eq window-system 'x) org-x11idle-exists-p)
1135 (org-x11-idle-seconds))
1137 (org-emacs-idle-seconds))))
1139 (defvar org-clock-user-idle-seconds)
1141 (defun org-resolve-clocks-if-idle ()
1142 "Resolve all currently open Org clocks.
1143 This is performed after `org-clock-idle-time' minutes, to check
1144 if the user really wants to stay clocked in after being idle for
1145 so long."
1146 (when (and org-clock-idle-time (not org-clock-resolving-clocks)
1147 org-clock-marker (marker-buffer org-clock-marker))
1148 (let* ((org-clock-user-idle-seconds (org-user-idle-seconds))
1149 (org-clock-user-idle-start
1150 (time-subtract (current-time)
1151 (seconds-to-time org-clock-user-idle-seconds)))
1152 (org-clock-resolving-clocks-due-to-idleness t))
1153 (if (> org-clock-user-idle-seconds (* 60 org-clock-idle-time))
1154 (org-clock-resolve
1155 (cons org-clock-marker
1156 org-clock-start-time)
1157 (lambda (_)
1158 (format "Clocked in & idle for %.1f mins"
1159 (/ (float-time
1160 (time-subtract (current-time)
1161 org-clock-user-idle-start))
1162 60.0)))
1163 org-clock-user-idle-start)))))
1165 (defvar org-clock-current-task nil "Task currently clocked in.")
1166 (defvar org-clock-out-time nil) ; store the time of the last clock-out
1167 (defvar org--msg-extra)
1169 ;;;###autoload
1170 (defun org-clock-in (&optional select start-time)
1171 "Start the clock on the current item.
1172 If necessary, clock-out of the currently active clock.
1173 With a prefix argument SELECT (\\[universal-argument]), offer a list of recently clocked
1174 tasks to clock into. When SELECT is \\[universal-argument] \\[universal-argument], clock into the current task
1175 and mark it as the default task, a special task that will always be offered
1176 in the clocking selection, associated with the letter `d'.
1177 When SELECT is \\[universal-argument] \\[universal-argument] \\[universal-argument], \
1178 clock in by using the last clock-out
1179 time as the start time \(see `org-clock-continuously' to
1180 make this the default behavior.)"
1181 (interactive "P")
1182 (setq org-clock-notification-was-shown nil)
1183 (org-refresh-properties
1184 org-effort-property '((effort . identity)
1185 (effort-minutes . org-duration-string-to-minutes)))
1186 (catch 'abort
1187 (let ((interrupting (and (not org-clock-resolving-clocks-due-to-idleness)
1188 (org-clocking-p)))
1189 ts selected-task target-pos (org--msg-extra "")
1190 (leftover (and (not org-clock-resolving-clocks)
1191 org-clock-leftover-time)))
1193 (when (and org-clock-auto-clock-resolution
1194 (or (not interrupting)
1195 (eq t org-clock-auto-clock-resolution))
1196 (not org-clock-clocking-in)
1197 (not org-clock-resolving-clocks))
1198 (setq org-clock-leftover-time nil)
1199 (let ((org-clock-clocking-in t))
1200 (org-resolve-clocks))) ; check if any clocks are dangling
1202 (when (equal select '(64))
1203 ;; Set start-time to `org-clock-out-time'
1204 (let ((org-clock-continuously t))
1205 (org-clock-in nil org-clock-out-time)))
1207 (when (equal select '(4))
1208 (setq selected-task (org-clock-select-task "Clock-in on task: "))
1209 (if selected-task
1210 (setq selected-task (copy-marker selected-task))
1211 (error "Abort")))
1213 (when (equal select '(16))
1214 ;; Mark as default clocking task
1215 (org-clock-mark-default-task))
1217 (when interrupting
1218 ;; We are interrupting the clocking of a different task.
1219 ;; Save a marker to this task, so that we can go back.
1220 ;; First check if we are trying to clock into the same task!
1221 (when (save-excursion
1222 (unless selected-task
1223 (org-back-to-heading t))
1224 (and (equal (marker-buffer org-clock-hd-marker)
1225 (if selected-task
1226 (marker-buffer selected-task)
1227 (current-buffer)))
1228 (= (marker-position org-clock-hd-marker)
1229 (if selected-task
1230 (marker-position selected-task)
1231 (point)))
1232 (equal org-clock-current-task (nth 4 (org-heading-components)))))
1233 (message "Clock continues in \"%s\"" org-clock-heading)
1234 (throw 'abort nil))
1235 (move-marker org-clock-interrupted-task
1236 (marker-position org-clock-marker)
1237 (marker-buffer org-clock-marker))
1238 (let ((org-clock-clocking-in t))
1239 (org-clock-out nil t)))
1241 ;; Clock in at which position?
1242 (setq target-pos
1243 (if (and (eobp) (not (org-at-heading-p)))
1244 (point-at-bol 0)
1245 (point)))
1246 (save-excursion
1247 (when (and selected-task (marker-buffer selected-task))
1248 ;; There is a selected task, move to the correct buffer
1249 ;; and set the new target position.
1250 (set-buffer (org-base-buffer (marker-buffer selected-task)))
1251 (setq target-pos (marker-position selected-task))
1252 (move-marker selected-task nil))
1253 (org-with-wide-buffer
1254 (goto-char target-pos)
1255 (org-back-to-heading t)
1256 (or interrupting (move-marker org-clock-interrupted-task nil))
1257 (run-hooks 'org-clock-in-prepare-hook)
1258 (org-clock-history-push)
1259 (setq org-clock-current-task (nth 4 (org-heading-components)))
1260 (cond ((functionp org-clock-in-switch-to-state)
1261 (looking-at org-complex-heading-regexp)
1262 (let ((newstate (funcall org-clock-in-switch-to-state
1263 (match-string 2))))
1264 (if newstate (org-todo newstate))))
1265 ((and org-clock-in-switch-to-state
1266 (not (looking-at (concat org-outline-regexp "[ \t]*"
1267 org-clock-in-switch-to-state
1268 "\\>"))))
1269 (org-todo org-clock-in-switch-to-state)))
1270 (setq org-clock-heading
1271 (cond ((and org-clock-heading-function
1272 (functionp org-clock-heading-function))
1273 (funcall org-clock-heading-function))
1274 ((nth 4 (org-heading-components))
1275 (replace-regexp-in-string
1276 "\\[\\[.*?\\]\\[\\(.*?\\)\\]\\]" "\\1"
1277 (match-string-no-properties 4)))
1278 (t "???")))
1279 (org-clock-find-position org-clock-in-resume)
1280 (cond
1281 ((and org-clock-in-resume
1282 (looking-at
1283 (concat "^[ \t]*" org-clock-string
1284 " \\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\}"
1285 " *\\sw+.? +[012][0-9]:[0-5][0-9]\\)\\][ \t]*$")))
1286 (message "Matched %s" (match-string 1))
1287 (setq ts (concat "[" (match-string 1) "]"))
1288 (goto-char (match-end 1))
1289 (setq org-clock-start-time
1290 (apply 'encode-time
1291 (org-parse-time-string (match-string 1))))
1292 (setq org-clock-effort (org-entry-get (point) org-effort-property))
1293 (setq org-clock-total-time (org-clock-sum-current-item
1294 (org-clock-get-sum-start))))
1295 ((eq org-clock-in-resume 'auto-restart)
1296 ;; called from org-clock-load during startup,
1297 ;; do not interrupt, but warn!
1298 (message "Cannot restart clock because task does not contain unfinished clock")
1299 (ding)
1300 (sit-for 2)
1301 (throw 'abort nil))
1303 (insert-before-markers "\n")
1304 (backward-char 1)
1305 (org-indent-line)
1306 (when (and (save-excursion
1307 (end-of-line 0)
1308 (org-in-item-p)))
1309 (beginning-of-line 1)
1310 (indent-line-to (- (org-get-indentation) 2)))
1311 (insert org-clock-string " ")
1312 (setq org-clock-effort (org-entry-get (point) org-effort-property))
1313 (setq org-clock-total-time (org-clock-sum-current-item
1314 (org-clock-get-sum-start)))
1315 (setq org-clock-start-time
1316 (or (and org-clock-continuously org-clock-out-time)
1317 (and leftover
1318 (y-or-n-p
1319 (format
1320 "You stopped another clock %d mins ago; start this one from then? "
1321 (/ (- (float-time
1322 (org-current-time org-clock-rounding-minutes t))
1323 (float-time leftover))
1324 60)))
1325 leftover)
1326 start-time
1327 (org-current-time org-clock-rounding-minutes t)))
1328 (setq ts (org-insert-time-stamp org-clock-start-time
1329 'with-hm 'inactive))))
1330 (move-marker org-clock-marker (point) (buffer-base-buffer))
1331 (move-marker org-clock-hd-marker
1332 (save-excursion (org-back-to-heading t) (point))
1333 (buffer-base-buffer))
1334 (setq org-clock-has-been-used t)
1335 ;; add to mode line
1336 (when (or (eq org-clock-clocked-in-display 'mode-line)
1337 (eq org-clock-clocked-in-display 'both))
1338 (or global-mode-string (setq global-mode-string '("")))
1339 (or (memq 'org-mode-line-string global-mode-string)
1340 (setq global-mode-string
1341 (append global-mode-string '(org-mode-line-string)))))
1342 ;; add to frame title
1343 (when (or (eq org-clock-clocked-in-display 'frame-title)
1344 (eq org-clock-clocked-in-display 'both))
1345 (setq frame-title-format org-clock-frame-title-format))
1346 (org-clock-update-mode-line)
1347 (when org-clock-mode-line-timer
1348 (cancel-timer org-clock-mode-line-timer)
1349 (setq org-clock-mode-line-timer nil))
1350 (when org-clock-clocked-in-display
1351 (setq org-clock-mode-line-timer
1352 (run-with-timer org-clock-update-period
1353 org-clock-update-period
1354 'org-clock-update-mode-line)))
1355 (when org-clock-idle-timer
1356 (cancel-timer org-clock-idle-timer)
1357 (setq org-clock-idle-timer nil))
1358 (setq org-clock-idle-timer
1359 (run-with-timer 60 60 'org-resolve-clocks-if-idle))
1360 (message "Clock starts at %s - %s" ts org--msg-extra)
1361 (run-hooks 'org-clock-in-hook))))))
1363 ;;;###autoload
1364 (defun org-clock-in-last (&optional arg)
1365 "Clock in the last closed clocked item.
1366 When already clocking in, send an warning.
1367 With a universal prefix argument, select the task you want to
1368 clock in from the last clocked in tasks.
1369 With two universal prefix arguments, start clocking using the
1370 last clock-out time, if any.
1371 With three universal prefix arguments, interactively prompt
1372 for a todo state to switch to, overriding the existing value
1373 `org-clock-in-switch-to-state'."
1374 (interactive "P")
1375 (if (equal arg '(4)) (org-clock-in arg)
1376 (let ((start-time (if (or org-clock-continuously (equal arg '(16)))
1377 (or org-clock-out-time
1378 (org-current-time org-clock-rounding-minutes t))
1379 (org-current-time org-clock-rounding-minutes t))))
1380 (if (null org-clock-history)
1381 (message "No last clock")
1382 (let ((org-clock-in-switch-to-state
1383 (if (and (not org-clock-current-task) (equal arg '(64)))
1384 (completing-read "Switch to state: "
1385 (and org-clock-history
1386 (with-current-buffer
1387 (marker-buffer (car org-clock-history))
1388 org-todo-keywords-1)))
1389 org-clock-in-switch-to-state))
1390 (already-clocking org-clock-current-task))
1391 (org-clock-clock-in (list (car org-clock-history)) nil start-time)
1392 (or already-clocking
1393 ;; Don't display a message if we are already clocking in
1394 (message "Clocking back: %s (in %s)"
1395 org-clock-current-task
1396 (buffer-name (marker-buffer org-clock-marker)))))))))
1398 (defun org-clock-mark-default-task ()
1399 "Mark current task as default task."
1400 (interactive)
1401 (save-excursion
1402 (org-back-to-heading t)
1403 (move-marker org-clock-default-task (point))))
1405 (defun org-clock-get-sum-start ()
1406 "Return the time from which clock times should be counted.
1407 This is for the currently running clock as it is displayed
1408 in the mode line. This function looks at the properties
1409 LAST_REPEAT and in particular CLOCK_MODELINE_TOTAL and the
1410 corresponding variable `org-clock-mode-line-total' and then
1411 decides which time to use."
1412 (let ((cmt (or (org-entry-get nil "CLOCK_MODELINE_TOTAL")
1413 (symbol-name org-clock-mode-line-total)))
1414 (lr (org-entry-get nil "LAST_REPEAT")))
1415 (cond
1416 ((equal cmt "current")
1417 (setq org--msg-extra "showing time in current clock instance")
1418 (current-time))
1419 ((equal cmt "today")
1420 (setq org--msg-extra "showing today's task time.")
1421 (let* ((dt (decode-time))
1422 (hour (nth 2 dt))
1423 (day (nth 3 dt)))
1424 (if (< hour org-extend-today-until) (setf (nth 3 dt) (1- day)))
1425 (setf (nth 2 dt) org-extend-today-until)
1426 (setq dt (append (list 0 0) (nthcdr 2 dt)))
1427 (apply 'encode-time dt)))
1428 ((or (equal cmt "all")
1429 (and (or (not cmt) (equal cmt "auto"))
1430 (not lr)))
1431 (setq org--msg-extra "showing entire task time.")
1432 nil)
1433 ((or (equal cmt "repeat")
1434 (and (or (not cmt) (equal cmt "auto"))
1435 lr))
1436 (setq org--msg-extra "showing task time since last repeat.")
1437 (if (not lr)
1439 (org-time-string-to-time lr)))
1440 (t nil))))
1442 (defun org-clock-find-position (find-unclosed)
1443 "Find the location where the next clock line should be inserted.
1444 When FIND-UNCLOSED is non-nil, first check if there is an unclosed clock
1445 line and position cursor in that line."
1446 (org-back-to-heading t)
1447 (catch 'exit
1448 (let* ((beg (line-beginning-position))
1449 (end (save-excursion (outline-next-heading) (point)))
1450 (org-clock-into-drawer (org-clock-into-drawer))
1451 (drawer (org-clock-drawer-name)))
1452 ;; Look for a running clock if FIND-UNCLOSED in non-nil.
1453 (when find-unclosed
1454 (let ((open-clock-re
1455 (concat "^[ \t]*"
1456 org-clock-string
1457 " \\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\}"
1458 " *\\sw+ +[012][0-9]:[0-5][0-9]\\)\\][ \t]*$")))
1459 (while (re-search-forward open-clock-re end t)
1460 (let ((element (org-element-at-point)))
1461 (when (and (eq (org-element-type element) 'clock)
1462 (eq (org-element-property :status element) 'running))
1463 (beginning-of-line)
1464 (throw 'exit t))))))
1465 ;; Look for an existing clock drawer.
1466 (when drawer
1467 (goto-char beg)
1468 (let ((drawer-re (concat "^[ \t]*:" (regexp-quote drawer) ":[ \t]*$")))
1469 (while (re-search-forward drawer-re end t)
1470 (let ((element (org-element-at-point)))
1471 (when (eq (org-element-type element) 'drawer)
1472 (let ((cend (org-element-property :contents-end element)))
1473 (if (and (not org-log-states-order-reversed) cend)
1474 (goto-char cend)
1475 (forward-line))
1476 (throw 'exit t)))))))
1477 (goto-char beg)
1478 (let ((clock-re (concat "^[ \t]*" org-clock-string))
1479 (count 0)
1480 positions)
1481 ;; Count the CLOCK lines and store their positions.
1482 (save-excursion
1483 (while (re-search-forward clock-re end t)
1484 (let ((element (org-element-at-point)))
1485 (when (eq (org-element-type element) 'clock)
1486 (setq positions (cons (line-beginning-position) positions)
1487 count (1+ count))))))
1488 (cond
1489 ((null positions)
1490 ;; Skip planning line and property drawer, if any.
1491 (org-end-of-meta-data)
1492 (unless (bolp) (insert "\n"))
1493 ;; Create a new drawer if necessary.
1494 (when (and org-clock-into-drawer
1495 (or (not (wholenump org-clock-into-drawer))
1496 (< org-clock-into-drawer 2)))
1497 (let ((beg (point)))
1498 (insert ":" drawer ":\n:END:\n")
1499 (org-indent-region beg (point))
1500 (goto-char beg)
1501 (org-flag-drawer t)
1502 (forward-line))))
1503 ;; When a clock drawer needs to be created because of the
1504 ;; number of clock items or simply if it is missing, collect
1505 ;; all clocks in the section and wrap them within the drawer.
1506 ((if (wholenump org-clock-into-drawer)
1507 (>= (1+ count) org-clock-into-drawer)
1508 drawer)
1509 ;; Skip planning line and property drawer, if any.
1510 (org-end-of-meta-data)
1511 (let ((beg (point)))
1512 (insert
1513 (mapconcat
1514 (lambda (p)
1515 (save-excursion
1516 (goto-char p)
1517 (org-trim (delete-and-extract-region
1518 (save-excursion (skip-chars-backward " \r\t\n")
1519 (line-beginning-position 2))
1520 (line-beginning-position 2)))))
1521 positions "\n")
1522 "\n:END:\n")
1523 (let ((end (point-marker)))
1524 (goto-char beg)
1525 (save-excursion (insert ":" drawer ":\n"))
1526 (org-flag-drawer t)
1527 (org-indent-region (point) end)
1528 (forward-line)
1529 (unless org-log-states-order-reversed
1530 (goto-char end)
1531 (beginning-of-line -1))
1532 (set-marker end nil))))
1533 (org-log-states-order-reversed (goto-char (car (last positions))))
1534 (t (goto-char (car positions))))))))
1536 ;;;###autoload
1537 (defun org-clock-out (&optional switch-to-state fail-quietly at-time)
1538 "Stop the currently running clock.
1539 Throw an error if there is no running clock and FAIL-QUIETLY is nil.
1540 With a universal prefix, prompt for a state to switch the clocked out task
1541 to, overriding the existing value of `org-clock-out-switch-to-state'."
1542 (interactive "P")
1543 (catch 'exit
1544 (when (not (org-clocking-p))
1545 (setq global-mode-string
1546 (delq 'org-mode-line-string global-mode-string))
1547 (setq frame-title-format org-frame-title-format-backup)
1548 (force-mode-line-update)
1549 (if fail-quietly (throw 'exit t) (user-error "No active clock")))
1550 (let ((org-clock-out-switch-to-state
1551 (if switch-to-state
1552 (completing-read "Switch to state: "
1553 (with-current-buffer
1554 (marker-buffer org-clock-marker)
1555 org-todo-keywords-1)
1556 nil t "DONE")
1557 org-clock-out-switch-to-state))
1558 (now (org-current-time org-clock-rounding-minutes))
1559 ts te s h m remove)
1560 (setq org-clock-out-time now)
1561 (save-excursion ; Do not replace this with `with-current-buffer'.
1562 (with-no-warnings (set-buffer (org-clocking-buffer)))
1563 (save-restriction
1564 (widen)
1565 (goto-char org-clock-marker)
1566 (beginning-of-line 1)
1567 (if (and (looking-at (concat "[ \t]*" org-keyword-time-regexp))
1568 (equal (match-string 1) org-clock-string))
1569 (setq ts (match-string 2))
1570 (if fail-quietly (throw 'exit nil) (error "Clock start time is gone")))
1571 (goto-char (match-end 0))
1572 (delete-region (point) (point-at-eol))
1573 (insert "--")
1574 (setq te (org-insert-time-stamp (or at-time now) 'with-hm 'inactive))
1575 (setq s (- (float-time
1576 (apply #'encode-time (org-parse-time-string te)))
1577 (float-time
1578 (apply #'encode-time (org-parse-time-string ts))))
1579 h (floor (/ s 3600))
1580 s (- s (* 3600 h))
1581 m (floor (/ s 60))
1582 s (- s (* 60 s)))
1583 (insert " => " (format "%2d:%02d" h m))
1584 (when (setq remove (and org-clock-out-remove-zero-time-clocks
1585 (= (+ h m) 0)))
1586 (beginning-of-line 1)
1587 (delete-region (point) (point-at-eol))
1588 (and (looking-at "\n") (> (point-max) (1+ (point)))
1589 (delete-char 1)))
1590 (move-marker org-clock-marker nil)
1591 (move-marker org-clock-hd-marker nil)
1592 (when org-log-note-clock-out
1593 (org-add-log-setup
1594 'clock-out nil nil nil
1595 (concat "# Task: " (org-get-heading t) "\n\n")))
1596 (when org-clock-mode-line-timer
1597 (cancel-timer org-clock-mode-line-timer)
1598 (setq org-clock-mode-line-timer nil))
1599 (when org-clock-idle-timer
1600 (cancel-timer org-clock-idle-timer)
1601 (setq org-clock-idle-timer nil))
1602 (setq global-mode-string
1603 (delq 'org-mode-line-string global-mode-string))
1604 (setq frame-title-format org-frame-title-format-backup)
1605 (when org-clock-out-switch-to-state
1606 (save-excursion
1607 (org-back-to-heading t)
1608 (let ((org-inhibit-logging t)
1609 (org-clock-out-when-done nil))
1610 (cond
1611 ((functionp org-clock-out-switch-to-state)
1612 (looking-at org-complex-heading-regexp)
1613 (let ((newstate (funcall org-clock-out-switch-to-state
1614 (match-string 2))))
1615 (if newstate (org-todo newstate))))
1616 ((and org-clock-out-switch-to-state
1617 (not (looking-at (concat org-outline-regexp "[ \t]*"
1618 org-clock-out-switch-to-state
1619 "\\>"))))
1620 (org-todo org-clock-out-switch-to-state))))))
1621 (force-mode-line-update)
1622 (message (concat "Clock stopped at %s after "
1623 (org-minutes-to-clocksum-string (+ (* 60 h) m)) "%s")
1624 te (if remove " => LINE REMOVED" ""))
1625 (run-hooks 'org-clock-out-hook)
1626 (unless (org-clocking-p)
1627 (setq org-clock-current-task nil)))))))
1629 (add-hook 'org-clock-out-hook 'org-clock-remove-empty-clock-drawer)
1631 (defun org-clock-remove-empty-clock-drawer ()
1632 "Remove empty clock drawers in current subtree."
1633 (save-excursion
1634 (org-back-to-heading t)
1635 (org-map-tree
1636 (lambda ()
1637 (let ((drawer (org-clock-drawer-name))
1638 (case-fold-search t))
1639 (when drawer
1640 (let ((re (format "^[ \t]*:%s:[ \t]*$" (regexp-quote drawer)))
1641 (end (save-excursion (outline-next-heading))))
1642 (while (re-search-forward re end t)
1643 (org-remove-empty-drawer-at (point))))))))))
1645 (defun org-clock-timestamps-up (&optional n)
1646 "Increase CLOCK timestamps at cursor.
1647 Optional argument N tells to change by that many units."
1648 (interactive "P")
1649 (org-clock-timestamps-change 'up n))
1651 (defun org-clock-timestamps-down (&optional n)
1652 "Increase CLOCK timestamps at cursor.
1653 Optional argument N tells to change by that many units."
1654 (interactive "P")
1655 (org-clock-timestamps-change 'down n))
1657 (defun org-clock-timestamps-change (updown &optional n)
1658 "Change CLOCK timestamps synchronously at cursor.
1659 UPDOWN tells whether to change `up' or `down'.
1660 Optional argument N tells to change by that many units."
1661 (setq org-ts-what nil)
1662 (when (org-at-timestamp-p t)
1663 (let ((tschange (if (eq updown 'up) 'org-timestamp-up
1664 'org-timestamp-down))
1665 ts1 begts1 ts2 begts2 updatets1 tdiff)
1666 (save-excursion
1667 (move-beginning-of-line 1)
1668 (re-search-forward org-ts-regexp3 nil t)
1669 (setq ts1 (match-string 0) begts1 (match-beginning 0))
1670 (when (re-search-forward org-ts-regexp3 nil t)
1671 (setq ts2 (match-string 0) begts2 (match-beginning 0))))
1672 ;; Are we on the second timestamp?
1673 (if (<= begts2 (point)) (setq updatets1 t))
1674 (if (not ts2)
1675 ;; fall back on org-timestamp-up if there is only one
1676 (funcall tschange n)
1677 ;; setq this so that (boundp 'org-ts-what is non-nil)
1678 (funcall tschange n)
1679 (let ((ts (if updatets1 ts2 ts1))
1680 (begts (if updatets1 begts1 begts2)))
1681 (setq tdiff
1682 (time-subtract
1683 (org-time-string-to-time org-last-changed-timestamp)
1684 (org-time-string-to-time ts)))
1685 (save-excursion
1686 (goto-char begts)
1687 (org-timestamp-change
1688 (round (/ (float-time tdiff)
1689 (cond ((eq org-ts-what 'minute) 60)
1690 ((eq org-ts-what 'hour) 3600)
1691 ((eq org-ts-what 'day) (* 24 3600))
1692 ((eq org-ts-what 'month) (* 24 3600 31))
1693 ((eq org-ts-what 'year) (* 24 3600 365.2)))))
1694 org-ts-what 'updown)))))))
1696 ;;;###autoload
1697 (defun org-clock-cancel ()
1698 "Cancel the running clock by removing the start timestamp."
1699 (interactive)
1700 (when (not (org-clocking-p))
1701 (setq global-mode-string
1702 (delq 'org-mode-line-string global-mode-string))
1703 (setq frame-title-format org-frame-title-format-backup)
1704 (force-mode-line-update)
1705 (error "No active clock"))
1706 (save-excursion ; Do not replace this with `with-current-buffer'.
1707 (with-no-warnings (set-buffer (org-clocking-buffer)))
1708 (goto-char org-clock-marker)
1709 (if (looking-back (concat "^[ \t]*" org-clock-string ".*")
1710 (line-beginning-position))
1711 (progn (delete-region (1- (point-at-bol)) (point-at-eol))
1712 (org-remove-empty-drawer-at (point)))
1713 (message "Clock gone, cancel the timer anyway")
1714 (sit-for 2)))
1715 (move-marker org-clock-marker nil)
1716 (move-marker org-clock-hd-marker nil)
1717 (setq global-mode-string
1718 (delq 'org-mode-line-string global-mode-string))
1719 (setq frame-title-format org-frame-title-format-backup)
1720 (force-mode-line-update)
1721 (message "Clock canceled")
1722 (run-hooks 'org-clock-cancel-hook))
1724 ;;;###autoload
1725 (defun org-clock-goto (&optional select)
1726 "Go to the currently clocked-in entry, or to the most recently clocked one.
1727 With prefix arg SELECT, offer recently clocked tasks for selection."
1728 (interactive "@P")
1729 (let* ((recent nil)
1730 (m (cond
1731 (select
1732 (or (org-clock-select-task "Select task to go to: ")
1733 (error "No task selected")))
1734 ((org-clocking-p) org-clock-marker)
1735 ((and org-clock-goto-may-find-recent-task
1736 (car org-clock-history)
1737 (marker-buffer (car org-clock-history)))
1738 (setq recent t)
1739 (car org-clock-history))
1740 (t (error "No active or recent clock task")))))
1741 (pop-to-buffer-same-window (marker-buffer m))
1742 (if (or (< m (point-min)) (> m (point-max))) (widen))
1743 (goto-char m)
1744 (org-show-entry)
1745 (org-back-to-heading t)
1746 (org-cycle-hide-drawers 'children)
1747 (recenter org-clock-goto-before-context)
1748 (org-reveal)
1749 (if recent
1750 (message "No running clock, this is the most recently clocked task"))
1751 (run-hooks 'org-clock-goto-hook)))
1753 (defvar-local org-clock-file-total-minutes nil
1754 "Holds the file total time in minutes, after a call to `org-clock-sum'.")
1756 (defun org-clock-sum-today (&optional headline-filter)
1757 "Sum the times for each subtree for today."
1758 (let ((range (org-clock-special-range 'today)))
1759 (org-clock-sum (car range) (cadr range)
1760 headline-filter :org-clock-minutes-today)))
1762 (defun org-clock-sum-custom (&optional headline-filter range propname)
1763 "Sum the times for each subtree for today."
1764 (let ((r (or (and (symbolp range) (org-clock-special-range range))
1765 (org-clock-special-range
1766 (intern (completing-read
1767 "Range: "
1768 '("today" "yesterday" "thisweek" "lastweek"
1769 "thismonth" "lastmonth" "thisyear" "lastyear"
1770 "interactive")
1771 nil t))))))
1772 (org-clock-sum (car r) (cadr r)
1773 headline-filter (or propname :org-clock-minutes-custom))))
1775 ;;;###autoload
1776 (defun org-clock-sum (&optional tstart tend headline-filter propname)
1777 "Sum the times for each subtree.
1778 Puts the resulting times in minutes as a text property on each headline.
1779 TSTART and TEND can mark a time range to be considered.
1780 HEADLINE-FILTER is a zero-arg function that, if specified, is called for
1781 each headline in the time range with point at the headline. Headlines for
1782 which HEADLINE-FILTER returns nil are excluded from the clock summation.
1783 PROPNAME lets you set a custom text property instead of :org-clock-minutes."
1784 (org-with-silent-modifications
1785 (let* ((re (concat "^\\(\\*+\\)[ \t]\\|^[ \t]*"
1786 org-clock-string
1787 "[ \t]*\\(?:\\(\\[.*?\\]\\)-+\\(\\[.*?\\]\\)\\|=>[ \t]+\\([0-9]+\\):\\([0-9]+\\)\\)"))
1788 (lmax 30)
1789 (ltimes (make-vector lmax 0))
1790 (t1 0)
1791 (level 0)
1792 ts te dt
1793 time)
1794 (if (stringp tstart) (setq tstart (org-time-string-to-seconds tstart)))
1795 (if (stringp tend) (setq tend (org-time-string-to-seconds tend)))
1796 (if (consp tstart) (setq tstart (float-time tstart)))
1797 (if (consp tend) (setq tend (float-time tend)))
1798 (remove-text-properties (point-min) (point-max)
1799 `(,(or propname :org-clock-minutes) t
1800 :org-clock-force-headline-inclusion t))
1801 (save-excursion
1802 (goto-char (point-max))
1803 (while (re-search-backward re nil t)
1804 (cond
1805 ((match-end 2)
1806 ;; Two time stamps
1807 (setq ts (match-string 2)
1808 te (match-string 3)
1809 ts (float-time
1810 (apply #'encode-time (org-parse-time-string ts)))
1811 te (float-time
1812 (apply #'encode-time (org-parse-time-string te)))
1813 ts (if tstart (max ts tstart) ts)
1814 te (if tend (min te tend) te)
1815 dt (- te ts)
1816 t1 (if (> dt 0) (+ t1 (floor (/ dt 60))) t1)))
1817 ((match-end 4)
1818 ;; A naked time
1819 (setq t1 (+ t1 (string-to-number (match-string 5))
1820 (* 60 (string-to-number (match-string 4))))))
1821 (t ;; A headline
1822 ;; Add the currently clocking item time to the total
1823 (when (and org-clock-report-include-clocking-task
1824 (equal (org-clocking-buffer) (current-buffer))
1825 (equal (marker-position org-clock-hd-marker) (point))
1826 tstart
1827 tend
1828 (>= (float-time org-clock-start-time) tstart)
1829 (<= (float-time org-clock-start-time) tend))
1830 (let ((time (floor (- (float-time)
1831 (float-time org-clock-start-time))
1832 60)))
1833 (setq t1 (+ t1 time))))
1834 (let* ((headline-forced
1835 (get-text-property (point)
1836 :org-clock-force-headline-inclusion))
1837 (headline-included
1838 (or (null headline-filter)
1839 (save-excursion
1840 (save-match-data (funcall headline-filter))))))
1841 (setq level (- (match-end 1) (match-beginning 1)))
1842 (when (>= level lmax)
1843 (setq ltimes (vconcat ltimes (make-vector lmax 0)) lmax (* 2 lmax)))
1844 (when (or (> t1 0) (> (aref ltimes level) 0))
1845 (when (or headline-included headline-forced)
1846 (if headline-included
1847 (cl-loop for l from 0 to level do
1848 (aset ltimes l (+ (aref ltimes l) t1))))
1849 (setq time (aref ltimes level))
1850 (goto-char (match-beginning 0))
1851 (put-text-property (point) (point-at-eol)
1852 (or propname :org-clock-minutes) time)
1853 (when headline-filter
1854 (save-excursion
1855 (save-match-data
1856 (while (org-up-heading-safe)
1857 (put-text-property
1858 (point) (line-end-position)
1859 :org-clock-force-headline-inclusion t))))))
1860 (setq t1 0)
1861 (cl-loop for l from level to (1- lmax) do
1862 (aset ltimes l 0)))))))
1863 (setq org-clock-file-total-minutes (aref ltimes 0))))))
1865 (defun org-clock-sum-current-item (&optional tstart)
1866 "Return time, clocked on current item in total."
1867 (save-excursion
1868 (save-restriction
1869 (org-narrow-to-subtree)
1870 (org-clock-sum tstart)
1871 org-clock-file-total-minutes)))
1873 ;;;###autoload
1874 (defun org-clock-display (&optional arg)
1875 "Show subtree times in the entire buffer.
1877 By default, show the total time for the range defined in
1878 `org-clock-display-default-range'. With \\[universal-argument] \
1879 prefix, show
1880 the total time for today instead. With \\[universal-argument] \
1881 \\[universal-argument] prefix, use
1882 a custom range, entered at the prompt. With \\[universal-argument] \
1883 \\[universal-argument] \\[universal-argument]
1884 prefix, display the total time in the echo area.
1886 Use \\[org-clock-remove-overlays] to remove the subtree times."
1887 (interactive "P")
1888 (org-clock-remove-overlays)
1889 (let* ((todayp (equal arg '(4)))
1890 (customp (member arg '((16) today yesterday
1891 thisweek lastweek thismonth
1892 lastmonth thisyear lastyear
1893 untilnow interactive)))
1894 (prop (cond ((not arg) :org-clock-minutes-default)
1895 (todayp :org-clock-minutes-today)
1896 (customp :org-clock-minutes-custom)
1897 (t :org-clock-minutes)))
1898 time h m p)
1899 (cond ((not arg) (org-clock-sum-custom
1900 nil org-clock-display-default-range prop))
1901 (todayp (org-clock-sum-today))
1902 (customp (org-clock-sum-custom nil arg))
1903 (t (org-clock-sum)))
1904 (unless (eq arg '(64))
1905 (save-excursion
1906 (goto-char (point-min))
1907 (while (or (and (equal (setq p (point)) (point-min))
1908 (get-text-property p prop))
1909 (setq p (next-single-property-change
1910 (point) prop)))
1911 (goto-char p)
1912 (when (setq time (get-text-property p prop))
1913 (org-clock-put-overlay time)))
1914 (setq h (/ org-clock-file-total-minutes 60)
1915 m (- org-clock-file-total-minutes (* 60 h)))
1916 ;; Arrange to remove the overlays upon next change.
1917 (when org-remove-highlights-with-change
1918 (add-hook 'before-change-functions 'org-clock-remove-overlays
1919 nil 'local))))
1920 (message (concat (format "Total file time%s: "
1921 (cond (todayp " for today")
1922 (customp " (custom)")
1923 (t "")))
1924 (org-minutes-to-clocksum-string
1925 org-clock-file-total-minutes)
1926 " (%d hours and %d minutes)")
1927 h m)))
1929 (defvar-local org-clock-overlays nil)
1931 (defun org-clock-put-overlay (time)
1932 "Put an overlays on the current line, displaying TIME.
1933 This creates a new overlay and stores it in `org-clock-overlays', so that it
1934 will be easy to remove."
1935 (let (ov tx)
1936 (beginning-of-line)
1937 (when (looking-at org-complex-heading-regexp)
1938 (goto-char (match-beginning 4)))
1939 (setq ov (make-overlay (point) (point-at-eol))
1940 tx (concat (buffer-substring-no-properties (point) (match-end 4))
1941 (org-add-props
1942 (make-string
1943 (max 0 (- (- 60 (current-column))
1944 (- (match-end 4) (match-beginning 4))
1945 (length (org-get-at-bol 'line-prefix)))))
1946 '(face shadow))
1947 (org-add-props
1948 (format " %9s " (org-minutes-to-clocksum-string time))
1949 '(face org-clock-overlay))
1950 ""))
1951 (overlay-put ov 'display tx)
1952 (push ov org-clock-overlays)))
1954 ;;;###autoload
1955 (defun org-clock-remove-overlays (&optional _beg _end noremove)
1956 "Remove the occur highlights from the buffer.
1957 If NOREMOVE is nil, remove this function from the
1958 `before-change-functions' in the current buffer."
1959 (interactive)
1960 (unless org-inhibit-highlight-removal
1961 (mapc #'delete-overlay org-clock-overlays)
1962 (setq org-clock-overlays nil)
1963 (unless noremove
1964 (remove-hook 'before-change-functions
1965 'org-clock-remove-overlays 'local))))
1967 (defvar org-state) ;; dynamically scoped into this function
1968 (defun org-clock-out-if-current ()
1969 "Clock out if the current entry contains the running clock.
1970 This is used to stop the clock after a TODO entry is marked DONE,
1971 and is only done if the variable `org-clock-out-when-done' is not nil."
1972 (when (and (org-clocking-p)
1973 org-clock-out-when-done
1974 (marker-buffer org-clock-marker)
1975 (or (and (eq t org-clock-out-when-done)
1976 (member org-state org-done-keywords))
1977 (and (listp org-clock-out-when-done)
1978 (member org-state org-clock-out-when-done)))
1979 (equal (or (buffer-base-buffer (org-clocking-buffer))
1980 (org-clocking-buffer))
1981 (or (buffer-base-buffer (current-buffer))
1982 (current-buffer)))
1983 (< (point) org-clock-marker)
1984 (> (save-excursion (outline-next-heading) (point))
1985 org-clock-marker))
1986 ;; Clock out, but don't accept a logging message for this.
1987 (let ((org-log-note-clock-out nil)
1988 (org-clock-out-switch-to-state nil))
1989 (org-clock-out))))
1991 (add-hook 'org-after-todo-state-change-hook
1992 'org-clock-out-if-current)
1994 ;;;###autoload
1995 (defun org-clock-get-clocktable (&rest props)
1996 "Get a formatted clocktable with parameters according to PROPS.
1997 The table is created in a temporary buffer, fully formatted and
1998 fontified, and then returned."
1999 ;; Set the defaults
2000 (setq props (plist-put props :name "clocktable"))
2001 (unless (plist-member props :maxlevel)
2002 (setq props (plist-put props :maxlevel 2)))
2003 (unless (plist-member props :scope)
2004 (setq props (plist-put props :scope 'agenda)))
2005 (with-temp-buffer
2006 (org-mode)
2007 (org-create-dblock props)
2008 (org-update-dblock)
2009 (org-font-lock-ensure)
2010 (forward-line 2)
2011 (buffer-substring (point) (progn
2012 (re-search-forward "^[ \t]*#\\+END" nil t)
2013 (point-at-bol)))))
2015 ;;;###autoload
2016 (defun org-clock-report (&optional arg)
2017 "Create a table containing a report about clocked time.
2018 If the cursor is inside an existing clocktable block, then the table
2019 will be updated. If not, a new clocktable will be inserted. The scope
2020 of the new clock will be subtree when called from within a subtree, and
2021 file elsewhere.
2023 When called with a prefix argument, move to the first clock table in the
2024 buffer and update it."
2025 (interactive "P")
2026 (org-clock-remove-overlays)
2027 (when arg
2028 (org-find-dblock "clocktable")
2029 (org-show-entry))
2030 (if (org-in-clocktable-p)
2031 (goto-char (org-in-clocktable-p))
2032 (let ((props (if (ignore-errors
2033 (save-excursion (org-back-to-heading)))
2034 (list :name "clocktable" :scope 'subtree)
2035 (list :name "clocktable"))))
2036 (org-create-dblock
2037 (org-combine-plists org-clock-clocktable-default-properties props))))
2038 (org-update-dblock))
2040 (defun org-day-of-week (day month year)
2041 "Returns the day of the week as an integer."
2042 (nth 6
2043 (decode-time
2044 (date-to-time
2045 (format "%d-%02d-%02dT00:00:00" year month day)))))
2047 (defun org-quarter-to-date (quarter year)
2048 "Get the date (week day year) of the first day of a given quarter."
2049 (let (startday)
2050 (cond
2051 ((= quarter 1)
2052 (setq startday (org-day-of-week 1 1 year))
2053 (cond
2054 ((= startday 0)
2055 (list 52 7 (- year 1)))
2056 ((= startday 6)
2057 (list 52 6 (- year 1)))
2058 ((<= startday 4)
2059 (list 1 startday year))
2060 ((> startday 4)
2061 (list 53 startday (- year 1)))
2064 ((= quarter 2)
2065 (setq startday (org-day-of-week 1 4 year))
2066 (cond
2067 ((= startday 0)
2068 (list 13 startday year))
2069 ((< startday 4)
2070 (list 14 startday year))
2071 ((>= startday 4)
2072 (list 13 startday year))
2075 ((= quarter 3)
2076 (setq startday (org-day-of-week 1 7 year))
2077 (cond
2078 ((= startday 0)
2079 (list 26 startday year))
2080 ((< startday 4)
2081 (list 27 startday year))
2082 ((>= startday 4)
2083 (list 26 startday year))
2086 ((= quarter 4)
2087 (setq startday (org-day-of-week 1 10 year))
2088 (cond
2089 ((= startday 0)
2090 (list 39 startday year))
2091 ((<= startday 4)
2092 (list 40 startday year))
2093 ((> startday 4)
2094 (list 39 startday year)))))))
2096 (defun org-clock-special-range (key &optional time as-strings wstart mstart)
2097 "Return two times bordering a special time range.
2099 KEY is a symbol specifying the range and can be one of `today',
2100 `yesterday', `thisweek', `lastweek', `thismonth', `lastmonth',
2101 `thisyear', `lastyear' or `untilnow'. If set to `interactive',
2102 user is prompted for range boundaries. It can be a string or an
2103 integer.
2105 By default, a week starts Monday 0:00 and ends Sunday 24:00. The
2106 range is determined relative to TIME, which defaults to current
2107 time.
2109 The return value is a list containing two internal times, one for
2110 the beginning of the range and one for its end, like the ones
2111 returned by `current time' or `encode-time' and a string used to
2112 display information. If AS-STRINGS is non-nil, the returned
2113 times will be formatted strings.
2115 If WSTART is non-nil, use this number to specify the starting day
2116 of a week (monday is 1). If MSTART is non-nil, use this number
2117 to specify the starting day of a month (1 is the first day of the
2118 month). If you can combine both, the month starting day will
2119 have priority."
2120 (let* ((tm (decode-time time))
2121 (m (nth 1 tm))
2122 (h (nth 2 tm))
2123 (d (nth 3 tm))
2124 (month (nth 4 tm))
2125 (y (nth 5 tm))
2126 (dow (nth 6 tm))
2127 (skey (format "%s" key))
2128 (shift 0)
2129 (q (cond ((>= month 10) 4)
2130 ((>= month 7) 3)
2131 ((>= month 4) 2)
2132 (t 1)))
2133 m1 h1 d1 month1 y1 shiftedy shiftedm shiftedq)
2134 (cond
2135 ((string-match "\\`[0-9]+\\'" skey)
2136 (setq y (string-to-number skey) month 1 d 1 key 'year))
2137 ((string-match "\\`\\([0-9]+\\)-\\([0-9]\\{1,2\\}\\)\\'" skey)
2138 (setq y (string-to-number (match-string 1 skey))
2139 month (string-to-number (match-string 2 skey))
2141 key 'month))
2142 ((string-match "\\`\\([0-9]+\\)-[wW]\\([0-9]\\{1,2\\}\\)\\'" skey)
2143 (require 'cal-iso)
2144 (let ((date (calendar-gregorian-from-absolute
2145 (calendar-iso-to-absolute
2146 (list (string-to-number (match-string 2 skey))
2148 (string-to-number (match-string 1 skey)))))))
2149 (setq d (nth 1 date)
2150 month (car date)
2151 y (nth 2 date)
2152 dow 1
2153 key 'week)))
2154 ((string-match "\\`\\([0-9]+\\)-[qQ]\\([1-4]\\)\\'" skey)
2155 (require 'cal-iso)
2156 (setq q (string-to-number (match-string 2 skey)))
2157 (let ((date (calendar-gregorian-from-absolute
2158 (calendar-iso-to-absolute
2159 (org-quarter-to-date
2160 q (string-to-number (match-string 1 skey)))))))
2161 (setq d (nth 1 date)
2162 month (car date)
2163 y (nth 2 date)
2164 dow 1
2165 key 'quarter)))
2166 ((string-match
2167 "\\`\\([0-9]+\\)-\\([0-9]\\{1,2\\}\\)-\\([0-9]\\{1,2\\}\\)\\'"
2168 skey)
2169 (setq y (string-to-number (match-string 1 skey))
2170 month (string-to-number (match-string 2 skey))
2171 d (string-to-number (match-string 3 skey))
2172 key 'day))
2173 ((string-match "\\([-+][0-9]+\\)\\'" skey)
2174 (setq shift (string-to-number (match-string 1 skey))
2175 key (intern (substring skey 0 (match-beginning 1))))
2176 (when (and (memq key '(quarter thisq)) (> shift 0))
2177 (error "Looking forward with quarters isn't implemented"))))
2178 (when (= shift 0)
2179 (pcase key
2180 (`yesterday (setq key 'today shift -1))
2181 (`lastweek (setq key 'week shift -1))
2182 (`lastmonth (setq key 'month shift -1))
2183 (`lastyear (setq key 'year shift -1))
2184 (`lastq (setq key 'quarter shift -1))))
2185 ;; Prepare start and end times depending on KEY's type.
2186 (pcase key
2187 ((or `day `today) (setq m 0 h 0 h1 24 d (+ d shift)))
2188 ((or `week `thisweek)
2189 (let* ((ws (or wstart 1))
2190 (diff (+ (* -7 shift) (if (= dow 0) (- 7 ws) (- dow ws)))))
2191 (setq m 0 h 0 d (- d diff) d1 (+ 7 d))))
2192 ((or `month `thismonth)
2193 (setq h 0 m 0 d (or mstart 1) month (+ month shift) month1 (1+ month)))
2194 ((or `quarter `thisq)
2195 ;; Compute if this shift remains in this year. If not, compute
2196 ;; how many years and quarters we have to shift (via floor*) and
2197 ;; compute the shifted years, months and quarters.
2198 (cond
2199 ((< (+ (- q 1) shift) 0) ; Shift not in this year.
2200 (let* ((interval (* -1 (+ (- q 1) shift)))
2201 ;; Set tmp to ((years to shift) (quarters to shift)).
2202 (tmp (cl-floor interval 4)))
2203 ;; Due to the use of floor, 0 quarters actually means 4.
2204 (if (= 0 (nth 1 tmp))
2205 (setq shiftedy (- y (nth 0 tmp))
2206 shiftedm 1
2207 shiftedq 1)
2208 (setq shiftedy (- y (+ 1 (nth 0 tmp)))
2209 shiftedm (- 13 (* 3 (nth 1 tmp)))
2210 shiftedq (- 5 (nth 1 tmp)))))
2211 (setq m 0 h 0 d 1 month shiftedm month1 (+ 3 shiftedm) y shiftedy))
2212 ((> (+ q shift) 0) ; Shift is within this year.
2213 (setq shiftedq (+ q shift))
2214 (setq shiftedy y)
2215 (let ((qshift (* 3 (1- (+ q shift)))))
2216 (setq m 0 h 0 d 1 month (+ 1 qshift) month1 (+ 4 qshift))))))
2217 ((or `year `thisyear)
2218 (setq m 0 h 0 d 1 month 1 y (+ y shift) y1 (1+ y)))
2219 ((or `interactive `untilnow)) ; Special cases, ignore them.
2220 (_ (user-error "No such time block %s" key)))
2221 ;; Format start and end times according to AS-STRINGS.
2222 (let* ((start (pcase key
2223 (`interactive (org-read-date nil t nil "Range start? "))
2224 (`untilnow org-clock--oldest-date)
2225 (_ (encode-time 0 m h d month y))))
2226 (end (pcase key
2227 (`interactive (org-read-date nil t nil "Range end? "))
2228 (`untilnow (current-time))
2229 (_ (encode-time 0
2230 (or m1 m)
2231 (or h1 h)
2232 (or d1 d)
2233 (or month1 month)
2234 (or y1 y)))))
2235 (text
2236 (pcase key
2237 ((or `day `today) (format-time-string "%A, %B %d, %Y" start))
2238 ((or `week `thisweek) (format-time-string "week %G-W%V" start))
2239 ((or `month `thismonth) (format-time-string "%B %Y" start))
2240 ((or `year `thisyear) (format-time-string "the year %Y" start))
2241 ((or `quarter `thisq)
2242 (concat (org-count-quarter shiftedq)
2243 " quarter of " (number-to-string shiftedy)))
2244 (`interactive "(Range interactively set)")
2245 (`untilnow "now"))))
2246 (if (not as-strings) (list start end text)
2247 (let ((f (cdr org-time-stamp-formats)))
2248 (list (format-time-string f start)
2249 (format-time-string f end)
2250 text))))))
2252 (defun org-count-quarter (n)
2253 (cond
2254 ((= n 1) "1st")
2255 ((= n 2) "2nd")
2256 ((= n 3) "3rd")
2257 ((= n 4) "4th")))
2259 ;;;###autoload
2260 (defun org-clocktable-shift (dir n)
2261 "Try to shift the :block date of the clocktable at point.
2262 Point must be in the #+BEGIN: line of a clocktable, or this function
2263 will throw an error.
2264 DIR is a direction, a symbol `left', `right', `up', or `down'.
2265 Both `left' and `down' shift the block toward the past, `up' and `right'
2266 push it toward the future.
2267 N is the number of shift steps to take. The size of the step depends on
2268 the currently selected interval size."
2269 (setq n (prefix-numeric-value n))
2270 (and (memq dir '(left down)) (setq n (- n)))
2271 (save-excursion
2272 (goto-char (point-at-bol))
2273 (if (not (looking-at "^[ \t]*#\\+BEGIN:[ \t]+clocktable\\>.*?:block[ \t]+\\(\\S-+\\)"))
2274 (error "Line needs a :block definition before this command works")
2275 (let* ((b (match-beginning 1)) (e (match-end 1))
2276 (s (match-string 1))
2277 block shift ins y mw d date wp m)
2278 (cond
2279 ((equal s "yesterday") (setq s "today-1"))
2280 ((equal s "lastweek") (setq s "thisweek-1"))
2281 ((equal s "lastmonth") (setq s "thismonth-1"))
2282 ((equal s "lastyear") (setq s "thisyear-1"))
2283 ((equal s "lastq") (setq s "thisq-1")))
2285 (cond
2286 ((string-match "^\\(today\\|thisweek\\|thismonth\\|thisyear\\|thisq\\)\\([-+][0-9]+\\)?$" s)
2287 (setq block (match-string 1 s)
2288 shift (if (match-end 2)
2289 (string-to-number (match-string 2 s))
2291 (setq shift (+ shift n))
2292 (setq ins (if (= shift 0) block (format "%s%+d" block shift))))
2293 ((string-match "\\([0-9]+\\)\\(-\\([wWqQ]?\\)\\([0-9]\\{1,2\\}\\)\\(-\\([0-9]\\{1,2\\}\\)\\)?\\)?" s)
2294 ;; 1 1 2 3 3 4 4 5 6 6 5 2
2295 (setq y (string-to-number (match-string 1 s))
2296 wp (and (match-end 3) (match-string 3 s))
2297 mw (and (match-end 4) (string-to-number (match-string 4 s)))
2298 d (and (match-end 6) (string-to-number (match-string 6 s))))
2299 (cond
2300 (d (setq ins (format-time-string
2301 "%Y-%m-%d"
2302 (encode-time 0 0 0 (+ d n) m y))))
2303 ((and wp (string-match "w\\|W" wp) mw (> (length wp) 0))
2304 (require 'cal-iso)
2305 (setq date (calendar-gregorian-from-absolute
2306 (calendar-iso-to-absolute (list (+ mw n) 1 y))))
2307 (setq ins (format-time-string
2308 "%G-W%V"
2309 (encode-time 0 0 0 (nth 1 date) (car date) (nth 2 date)))))
2310 ((and wp (string-match "q\\|Q" wp) mw (> (length wp) 0))
2311 (require 'cal-iso)
2312 ; if the 4th + 1 quarter is requested we flip to the 1st quarter of the next year
2313 (if (> (+ mw n) 4)
2314 (setq mw 0
2315 y (+ 1 y))
2317 ; if the 1st - 1 quarter is requested we flip to the 4th quarter of the previous year
2318 (if (= (+ mw n) 0)
2319 (setq mw 5
2320 y (- y 1))
2322 (setq date (calendar-gregorian-from-absolute
2323 (calendar-iso-to-absolute (org-quarter-to-date (+ mw n) y))))
2324 (setq ins (format-time-string
2325 (concat (number-to-string y) "-Q" (number-to-string (+ mw n)))
2326 (encode-time 0 0 0 (nth 1 date) (car date) (nth 2 date)))))
2328 (setq ins (format-time-string
2329 "%Y-%m"
2330 (encode-time 0 0 0 1 (+ mw n) y))))
2332 (setq ins (number-to-string (+ y n))))))
2333 (t (error "Cannot shift clocktable block")))
2334 (when ins
2335 (goto-char b)
2336 (insert ins)
2337 (delete-region (point) (+ (point) (- e b)))
2338 (beginning-of-line 1)
2339 (org-update-dblock)
2340 t)))))
2342 ;;;###autoload
2343 (defun org-dblock-write:clocktable (params)
2344 "Write the standard clocktable."
2345 (setq params (org-combine-plists org-clocktable-defaults params))
2346 (catch 'exit
2347 (let* ((scope (plist-get params :scope))
2348 (block (plist-get params :block))
2349 (ts (plist-get params :tstart))
2350 (te (plist-get params :tend))
2351 (ws (plist-get params :wstart))
2352 (ms (plist-get params :mstart))
2353 (step (plist-get params :step))
2354 (formatter (or (plist-get params :formatter)
2355 org-clock-clocktable-formatter
2356 'org-clocktable-write-default))
2357 cc ipos one-file-with-archives scope-is-list tbls level)
2358 ;; Check if we need to do steps
2359 (when block
2360 ;; Get the range text for the header
2361 (setq cc (org-clock-special-range block nil t ws ms)
2362 ts (car cc)
2363 te (nth 1 cc)))
2364 (when step
2365 ;; Write many tables, in steps
2366 (unless (or block (and ts te))
2367 (error "Clocktable `:step' can only be used with `:block' or `:tstart,:end'"))
2368 (org-clocktable-steps params)
2369 (throw 'exit nil))
2371 (setq ipos (point)) ; remember the insertion position
2373 ;; Get the right scope
2374 (cond
2375 ((eq scope 'agenda)
2376 (setq scope (org-agenda-files t)))
2377 ((eq scope 'agenda-with-archives)
2378 (setq scope (org-agenda-files t))
2379 (setq scope (org-add-archive-files scope)))
2380 ((eq scope 'file-with-archives)
2381 (setq scope (and buffer-file-name
2382 (org-add-archive-files (list buffer-file-name)))
2383 one-file-with-archives t)))
2384 (setq scope-is-list (and scope (listp scope)))
2385 (if scope-is-list
2386 ;; we collect from several files
2387 (let* ((files scope)
2388 file)
2389 (org-agenda-prepare-buffers files)
2390 (while (setq file (pop files))
2391 (with-current-buffer (find-buffer-visiting file)
2392 (save-excursion
2393 (save-restriction
2394 (push (org-clock-get-table-data file params) tbls))))))
2395 ;; Just from the current file
2396 (save-restriction
2397 ;; get the right range into the restriction
2398 (org-agenda-prepare-buffers (list (or (buffer-file-name)
2399 (current-buffer))))
2400 (cond
2401 ((not scope)) ; use the restriction as it is now
2402 ((eq scope 'file) (widen))
2403 ((eq scope 'subtree) (org-narrow-to-subtree))
2404 ((eq scope 'tree)
2405 (while (org-up-heading-safe))
2406 (org-narrow-to-subtree))
2407 ((and (symbolp scope) (string-match "^tree\\([0-9]+\\)$"
2408 (symbol-name scope)))
2409 (setq level (string-to-number (match-string 1 (symbol-name scope))))
2410 (catch 'exit
2411 (while (org-up-heading-safe)
2412 (looking-at org-outline-regexp)
2413 (if (<= (org-reduced-level (funcall outline-level)) level)
2414 (throw 'exit nil))))
2415 (org-narrow-to-subtree)))
2416 ;; do the table, with no file name.
2417 (push (org-clock-get-table-data nil params) tbls)))
2419 ;; OK, at this point we tbls as a list of tables, one per file
2420 (setq tbls (nreverse tbls))
2422 (setq params (plist-put params :multifile scope-is-list))
2423 (setq params (plist-put params :one-file-with-archives
2424 one-file-with-archives))
2426 (funcall formatter ipos tbls params))))
2428 (defun org-clocktable-write-default (ipos tables params)
2429 "Write out a clock table at position IPOS in the current buffer.
2430 TABLES is a list of tables with clocking data as produced by
2431 `org-clock-get-table-data'. PARAMS is the parameter property list obtained
2432 from the dynamic block definition."
2433 ;; This function looks quite complicated, mainly because there are a
2434 ;; lot of options which can add or remove columns. I have massively
2435 ;; commented this function, the I hope it is understandable. If
2436 ;; someone wants to write their own special formatter, this maybe
2437 ;; much easier because there can be a fixed format with a
2438 ;; well-defined number of columns...
2439 (let* ((hlchars '((1 . "*") (2 . "/")))
2440 (lwords (assoc (or (plist-get params :lang)
2441 (bound-and-true-p org-export-default-language)
2442 "en")
2443 org-clock-clocktable-language-setup))
2444 (multifile (plist-get params :multifile))
2445 (block (plist-get params :block))
2446 (sort (plist-get params :sort))
2447 (header (plist-get params :header))
2448 (narrow (plist-get params :narrow))
2449 (ws (or (plist-get params :wstart) 1))
2450 (ms (or (plist-get params :mstart) 1))
2451 (link (plist-get params :link))
2452 (maxlevel (or (plist-get params :maxlevel) 3))
2453 (emph (plist-get params :emphasize))
2454 (level-p (plist-get params :level))
2455 (org-time-clocksum-use-effort-durations
2456 (plist-get params :effort-durations))
2457 (timestamp (plist-get params :timestamp))
2458 (properties (plist-get params :properties))
2459 (ntcol (max 1 (or (plist-get params :tcolumns) 100)))
2460 (rm-file-column (plist-get params :one-file-with-archives))
2461 (indent (plist-get params :indent))
2462 (case-fold-search t)
2463 range-text total-time tbl level hlc formula pcol
2464 file-time entries entry headline
2465 recalc content narrow-cut-p tcol)
2467 ;; Implement abbreviations
2468 (when (plist-get params :compact)
2469 (setq level nil indent t narrow (or narrow '40!) ntcol 1))
2471 ;; Some consistency test for parameters
2472 (unless (integerp ntcol)
2473 (setq params (plist-put params :tcolumns (setq ntcol 100))))
2475 (when (and narrow (integerp narrow) link)
2476 ;; We cannot have both integer narrow and link
2477 (message
2478 "Using hard narrowing in clocktable to allow for links")
2479 (setq narrow (intern (format "%d!" narrow))))
2481 (when narrow
2482 (cond
2483 ((integerp narrow))
2484 ((and (symbolp narrow)
2485 (string-match "\\`[0-9]+!\\'" (symbol-name narrow)))
2486 (setq narrow-cut-p t
2487 narrow (string-to-number (substring (symbol-name narrow)
2488 0 -1))))
2490 (error "Invalid value %s of :narrow property in clock table"
2491 narrow))))
2493 (when block
2494 ;; Get the range text for the header
2495 (setq range-text (nth 2 (org-clock-special-range block nil t ws ms))))
2497 ;; Compute the total time
2498 (setq total-time (apply '+ (mapcar 'cadr tables)))
2500 ;; Now we need to output this tsuff
2501 (goto-char ipos)
2503 ;; Insert the text *before* the actual table
2504 (insert-before-markers
2505 (or header
2506 ;; Format the standard header
2507 (concat
2508 "#+CAPTION: "
2509 (nth 9 lwords) " ["
2510 (substring
2511 (format-time-string (cdr org-time-stamp-formats))
2512 1 -1)
2514 (if block (concat ", for " range-text ".") "")
2515 "\n")))
2517 ;; Insert the narrowing line
2518 (when (and narrow (integerp narrow) (not narrow-cut-p))
2519 (insert-before-markers
2520 "|" ; table line starter
2521 (if multifile "|" "") ; file column, maybe
2522 (if level-p "|" "") ; level column, maybe
2523 (if timestamp "|" "") ; timestamp column, maybe
2524 (if properties (make-string (length properties) ?|) "") ;properties columns, maybe
2525 (format "<%d>| |\n" narrow))) ; headline and time columns
2527 ;; Insert the table header line
2528 (insert-before-markers
2529 "|" ; table line starter
2530 (if multifile (concat (nth 1 lwords) "|") "") ; file column, maybe
2531 (if level-p (concat (nth 2 lwords) "|") "") ; level column, maybe
2532 (if timestamp (concat (nth 3 lwords) "|") "") ; timestamp column, maybe
2533 (if properties (concat (mapconcat 'identity properties "|") "|") "") ;properties columns, maybe
2534 (concat (nth 4 lwords) "|"
2535 (nth 5 lwords) "|\n")) ; headline and time columns
2537 ;; Insert the total time in the table
2538 (insert-before-markers
2539 "|-\n" ; a hline
2540 "|" ; table line starter
2541 (if multifile (concat "| " (nth 6 lwords) " ") "")
2542 ; file column, maybe
2543 (if level-p "|" "") ; level column, maybe
2544 (if timestamp "|" "") ; timestamp column, maybe
2545 (if properties (make-string (length properties) ?|) "") ; properties columns, maybe
2546 (concat (format org-clock-total-time-cell-format (nth 7 lwords)) "| ") ; instead of a headline
2547 (format org-clock-total-time-cell-format
2548 (org-minutes-to-clocksum-string (or total-time 0))) ; the time
2549 "|\n") ; close line
2551 ;; Now iterate over the tables and insert the data
2552 ;; but only if any time has been collected
2553 (when (and total-time (> total-time 0))
2555 (while (setq tbl (pop tables))
2556 ;; now tbl is the table resulting from one file.
2557 (setq file-time (nth 1 tbl))
2558 (when (or (and file-time (> file-time 0))
2559 (not (plist-get params :fileskip0)))
2560 (insert-before-markers "|-\n") ; a hline because a new file starts
2561 ;; First the file time, if we have multiple files
2562 (when multifile
2563 ;; Summarize the time collected from this file
2564 (insert-before-markers
2565 (format (concat "| %s %s | %s%s"
2566 (format org-clock-file-time-cell-format (nth 8 lwords))
2567 " | *%s*|\n")
2568 (file-name-nondirectory (car tbl))
2569 (if level-p "| " "") ; level column, maybe
2570 (if timestamp "| " "") ; timestamp column, maybe
2571 (if properties (make-string (length properties) ?|) "") ;properties columns, maybe
2572 (org-minutes-to-clocksum-string (nth 1 tbl))))) ; the time
2574 ;; Get the list of node entries and iterate over it
2575 (setq entries (nth 2 tbl))
2576 (while (setq entry (pop entries))
2577 (setq level (car entry)
2578 headline (nth 1 entry)
2579 hlc (if emph (or (cdr (assoc level hlchars)) "") ""))
2580 (when narrow-cut-p
2581 (if (and (string-match (concat "\\`" org-bracket-link-regexp
2582 "\\'")
2583 headline)
2584 (match-end 3))
2585 (setq headline
2586 (format "[[%s][%s]]"
2587 (match-string 1 headline)
2588 (org-shorten-string (match-string 3 headline)
2589 narrow)))
2590 (setq headline (org-shorten-string headline narrow))))
2591 (insert-before-markers
2592 "|" ; start the table line
2593 (if multifile "|" "") ; free space for file name column?
2594 (if level-p (format "%d|" (car entry)) "") ; level, maybe
2595 (if timestamp (concat (nth 2 entry) "|") "") ; timestamp, maybe
2596 (if properties
2597 (concat
2598 (mapconcat
2599 (lambda (p) (or (cdr (assoc p (nth 4 entry))) ""))
2600 properties "|") "|") "") ;properties columns, maybe
2601 (if indent (org-clocktable-indent-string level) "") ; indentation
2602 hlc headline hlc "|" ; headline
2603 (make-string (min (1- ntcol) (or (- level 1))) ?|)
2604 ; empty fields for higher levels
2605 hlc (org-minutes-to-clocksum-string (nth 3 entry)) hlc ; time
2606 "|\n" ; close line
2607 )))))
2608 ;; When exporting subtrees or regions the region might be
2609 ;; activated, so let's disable ̀delete-active-region'
2610 (let ((delete-active-region nil)) (backward-delete-char 1))
2611 (if (setq formula (plist-get params :formula))
2612 (cond
2613 ((eq formula '%)
2614 ;; compute the column where the % numbers need to go
2615 (setq pcol (+ 2
2616 (length properties)
2617 (if multifile 1 0)
2618 (if level-p 1 0)
2619 (if timestamp 1 0)
2620 (min maxlevel (or ntcol 100))))
2621 ;; compute the column where the total time is
2622 (setq tcol (+ 2
2623 (length properties)
2624 (if multifile 1 0)
2625 (if level-p 1 0)
2626 (if timestamp 1 0)))
2627 (insert
2628 (format
2629 "\n#+TBLFM: $%d='(org-clock-time%% @%d$%d $%d..$%d);%%.1f"
2630 pcol ; the column where the % numbers should go
2631 (if (and narrow (not narrow-cut-p)) 3 2) ; row of the total time
2632 tcol ; column of the total time
2633 tcol (1- pcol) ; range of columns where times can be found
2635 (setq recalc t))
2636 ((stringp formula)
2637 (insert "\n#+TBLFM: " formula)
2638 (setq recalc t))
2639 (t (error "Invalid formula in clocktable")))
2640 ;; Should we rescue an old formula?
2641 (when (stringp (setq content (plist-get params :content)))
2642 (when (string-match "^\\([ \t]*#\\+tblfm:.*\\)" content)
2643 (setq recalc t)
2644 (insert "\n" (match-string 1 (plist-get params :content)))
2645 (beginning-of-line 0))))
2646 ;; Back to beginning, align the table, recalculate if necessary
2647 (goto-char ipos)
2648 (skip-chars-forward "^|")
2649 (org-table-align)
2650 (when org-hide-emphasis-markers
2651 ;; we need to align a second time
2652 (org-table-align))
2653 (when sort
2654 (save-excursion
2655 (org-table-goto-line 3)
2656 (org-table-goto-column (car sort))
2657 (org-table-sort-lines nil (cdr sort))))
2658 (when recalc
2659 (if (eq formula '%)
2660 (save-excursion
2661 (if (and narrow (not narrow-cut-p)) (beginning-of-line 2))
2662 (org-table-goto-column pcol nil 'force)
2663 (insert "%")))
2664 (org-table-recalculate 'all))
2665 (when rm-file-column
2666 ;; The file column is actually not wanted
2667 (forward-char 1)
2668 (org-table-delete-column))
2669 total-time))
2671 (defun org-clocktable-indent-string (level)
2672 "Return indentation string according to LEVEL.
2673 LEVEL is an integer. Indent by two spaces per level above 1."
2674 (if (= level 1) ""
2675 (concat "\\_" (make-string (* 2 (1- level)) ?\s))))
2677 (defun org-clocktable-steps (params)
2678 "Step through the range to make a number of clock tables."
2679 (let* ((p1 (copy-sequence params))
2680 (ts (plist-get p1 :tstart))
2681 (te (plist-get p1 :tend))
2682 (ws (plist-get p1 :wstart))
2683 (ms (plist-get p1 :mstart))
2684 (step0 (plist-get p1 :step))
2685 (step (cdr (assoc step0 '((day . 86400) (week . 604800)))))
2686 (stepskip0 (plist-get p1 :stepskip0))
2687 (block (plist-get p1 :block))
2688 cc step-time tsb)
2689 (when block
2690 (setq cc (org-clock-special-range block nil t ws ms)
2691 ts (car cc)
2692 te (nth 1 cc)))
2693 (cond
2694 ((numberp ts)
2695 ;; If ts is a number, it's an absolute day number from
2696 ;; org-agenda.
2697 (pcase-let ((`(,month ,day ,year) (calendar-gregorian-from-absolute ts)))
2698 (setq ts (float-time (encode-time 0 0 0 day month year)))))
2700 (setq ts (float-time (apply #'encode-time (org-parse-time-string ts))))))
2701 (cond
2702 ((numberp te)
2703 ;; Likewise for te.
2704 (pcase-let ((`(,month ,day ,year) (calendar-gregorian-from-absolute te)))
2705 (setq te (float-time (encode-time 0 0 0 day month year)))))
2707 (setq te (float-time (apply #'encode-time (org-parse-time-string te))))))
2708 (setq tsb
2709 (if (eq step0 'week)
2710 (- ts (* 86400 (- (nth 6 (decode-time (seconds-to-time ts))) ws)))
2711 ts))
2712 (setq p1 (plist-put p1 :header ""))
2713 (setq p1 (plist-put p1 :step nil))
2714 (setq p1 (plist-put p1 :block nil))
2715 (while (< tsb te)
2716 (or (bolp) (insert "\n"))
2717 (setq p1 (plist-put p1 :tstart (format-time-string
2718 (org-time-stamp-format nil t)
2719 (seconds-to-time (max tsb ts)))))
2720 (setq p1 (plist-put p1 :tend (format-time-string
2721 (org-time-stamp-format nil t)
2722 (seconds-to-time (min te (setq tsb (+ tsb step)))))))
2723 (insert "\n" (if (eq step0 'day) "Daily report: "
2724 "Weekly report starting on: ")
2725 (plist-get p1 :tstart) "\n")
2726 (setq step-time (org-dblock-write:clocktable p1))
2727 (re-search-forward "^[ \t]*#\\+END:")
2728 (when (and (equal step-time 0) stepskip0)
2729 ;; Remove the empty table
2730 (delete-region (point-at-bol)
2731 (save-excursion
2732 (re-search-backward "^\\(Daily\\|Weekly\\) report"
2733 nil t)
2734 (point))))
2735 (end-of-line 0))))
2737 (defun org-clock-get-table-data (file params)
2738 "Get the clocktable data for file FILE, with parameters PARAMS.
2739 FILE is only for identification - this function assumes that
2740 the correct buffer is current, and that the wanted restriction is
2741 in place.
2742 The return value will be a list with the file name and the total
2743 file time (in minutes) as 1st and 2nd elements. The third element
2744 of this list will be a list of headline entries. Each entry has the
2745 following structure:
2747 \(LEVEL HEADLINE TIMESTAMP TIME)
2749 LEVEL: The level of the headline, as an integer. This will be
2750 the reduced level, so 1,2,3,... even if only odd levels
2751 are being used.
2752 HEADLINE: The text of the headline. Depending on PARAMS, this may
2753 already be formatted like a link.
2754 TIMESTAMP: If PARAMS require it, this will be a time stamp found in the
2755 entry, any of SCHEDULED, DEADLINE, NORMAL, or first inactive,
2756 in this sequence.
2757 TIME: The sum of all time spend in this tree, in minutes. This time
2758 will of cause be restricted to the time block and tags match
2759 specified in PARAMS."
2760 (let* ((maxlevel (or (plist-get params :maxlevel) 3))
2761 (timestamp (plist-get params :timestamp))
2762 (ts (plist-get params :tstart))
2763 (te (plist-get params :tend))
2764 (ws (plist-get params :wstart))
2765 (ms (plist-get params :mstart))
2766 (block (plist-get params :block))
2767 (link (plist-get params :link))
2768 (tags (plist-get params :tags))
2769 (properties (plist-get params :properties))
2770 (inherit-property-p (plist-get params :inherit-props))
2771 (matcher (and tags (cdr (org-make-tags-matcher tags))))
2772 cc st p time level hdl props tsp tbl)
2774 (setq org-clock-file-total-minutes nil)
2775 (when block
2776 (setq cc (org-clock-special-range block nil t ws ms)
2777 ts (car cc)
2778 te (nth 1 cc)))
2779 (when (integerp ts) (setq ts (calendar-gregorian-from-absolute ts)))
2780 (when (integerp te) (setq te (calendar-gregorian-from-absolute te)))
2781 (when (and ts (listp ts))
2782 (setq ts (format "%4d-%02d-%02d" (nth 2 ts) (car ts) (nth 1 ts))))
2783 (when (and te (listp te))
2784 (setq te (format "%4d-%02d-%02d" (nth 2 te) (car te) (nth 1 te))))
2785 ;; Now the times are strings we can parse.
2786 (if ts (setq ts (org-matcher-time ts)))
2787 (if te (setq te (org-matcher-time te)))
2788 (save-excursion
2789 (org-clock-sum ts te
2790 (when matcher
2791 `(lambda ()
2792 (let* ((tags-list (org-get-tags-at))
2793 (org-scanner-tags tags-list)
2794 (org-trust-scanner-tags t))
2795 (funcall ,matcher nil tags-list nil)))))
2796 (goto-char (point-min))
2797 (setq st t)
2798 (while (or (and (bobp) (prog1 st (setq st nil))
2799 (get-text-property (point) :org-clock-minutes)
2800 (setq p (point-min)))
2801 (setq p (next-single-property-change
2802 (point) :org-clock-minutes)))
2803 (goto-char p)
2804 (when (setq time (get-text-property p :org-clock-minutes))
2805 (save-excursion
2806 (beginning-of-line 1)
2807 (when (and (looking-at "\\(\\*+\\)[ \t]+\\(.*?\\)\\([ \t]+:[[:alnum:]_@#%:]+:\\)?[ \t]*$")
2808 (setq level (org-reduced-level
2809 (- (match-end 1) (match-beginning 1))))
2810 (<= level maxlevel))
2811 (setq hdl (if (not link)
2812 (match-string 2)
2813 (org-make-link-string
2814 (format "file:%s::%s"
2815 (buffer-file-name)
2816 (save-match-data
2817 (match-string 2)))
2818 (org-make-org-heading-search-string
2819 (replace-regexp-in-string
2820 org-bracket-link-regexp
2821 (lambda (m) (or (match-string 3 m)
2822 (match-string 1 m)))
2823 (match-string 2)))))
2824 tsp (when timestamp
2825 (setq props (org-entry-properties (point)))
2826 (or (cdr (assoc "SCHEDULED" props))
2827 (cdr (assoc "DEADLINE" props))
2828 (cdr (assoc "TIMESTAMP" props))
2829 (cdr (assoc "TIMESTAMP_IA" props))))
2830 props (when properties
2831 (remove nil
2832 (mapcar
2833 (lambda (p)
2834 (when (org-entry-get (point) p inherit-property-p)
2835 (cons p (org-entry-get (point) p inherit-property-p))))
2836 properties))))
2837 (when (> time 0) (push (list level hdl tsp time props) tbl))))))
2838 (setq tbl (nreverse tbl))
2839 (list file org-clock-file-total-minutes tbl))))
2841 (defun org-clock-time% (total &rest strings)
2842 "Compute a time fraction in percent.
2843 TOTAL s a time string like 10:21 specifying the total times.
2844 STRINGS is a list of strings that should be checked for a time.
2845 The first string that does have a time will be used.
2846 This function is made for clock tables."
2847 (let ((re "\\([0-9]+\\):\\([0-9]+\\)")
2848 tot s)
2849 (save-match-data
2850 (catch 'exit
2851 (if (not (string-match re total))
2852 (throw 'exit 0.)
2853 (setq tot (+ (string-to-number (match-string 2 total))
2854 (* 60 (string-to-number (match-string 1 total)))))
2855 (if (= tot 0.) (throw 'exit 0.)))
2856 (while (setq s (pop strings))
2857 (if (string-match "\\([0-9]+\\):\\([0-9]+\\)" s)
2858 (throw 'exit
2859 (/ (* 100.0 (+ (string-to-number (match-string 2 s))
2860 (* 60 (string-to-number
2861 (match-string 1 s)))))
2862 tot))))
2863 0))))
2865 ;; Saving and loading the clock
2867 (defvar org-clock-loaded nil
2868 "Was the clock file loaded?")
2870 ;;;###autoload
2871 (defun org-clock-update-time-maybe ()
2872 "If this is a CLOCK line, update it and return t.
2873 Otherwise, return nil."
2874 (interactive)
2875 (save-excursion
2876 (beginning-of-line 1)
2877 (skip-chars-forward " \t")
2878 (when (looking-at org-clock-string)
2879 (let ((re (concat "[ \t]*" org-clock-string
2880 " *[[<]\\([^]>]+\\)[]>]\\(-+[[<]\\([^]>]+\\)[]>]"
2881 "\\([ \t]*=>.*\\)?\\)?"))
2882 ts te h m s neg)
2883 (cond
2884 ((not (looking-at re))
2885 nil)
2886 ((not (match-end 2))
2887 (when (and (equal (marker-buffer org-clock-marker) (current-buffer))
2888 (> org-clock-marker (point))
2889 (<= org-clock-marker (point-at-eol)))
2890 ;; The clock is running here
2891 (setq org-clock-start-time
2892 (apply 'encode-time
2893 (org-parse-time-string (match-string 1))))
2894 (org-clock-update-mode-line)))
2896 (and (match-end 4) (delete-region (match-beginning 4) (match-end 4)))
2897 (end-of-line 1)
2898 (setq ts (match-string 1)
2899 te (match-string 3))
2900 (setq s (- (float-time
2901 (apply #'encode-time (org-parse-time-string te)))
2902 (float-time
2903 (apply #'encode-time (org-parse-time-string ts))))
2904 neg (< s 0)
2905 s (abs s)
2906 h (floor (/ s 3600))
2907 s (- s (* 3600 h))
2908 m (floor (/ s 60))
2909 s (- s (* 60 s)))
2910 (insert " => " (format (if neg "-%d:%02d" "%2d:%02d") h m))
2911 t))))))
2913 (defun org-clock-save ()
2914 "Persist various clock-related data to disk.
2915 The details of what will be saved are regulated by the variable
2916 `org-clock-persist'."
2917 (when (and org-clock-persist
2918 (or org-clock-loaded
2919 org-clock-has-been-used
2920 (not (file-exists-p org-clock-persist-file))))
2921 (let (b)
2922 (with-current-buffer (find-file (expand-file-name org-clock-persist-file))
2923 (progn
2924 (delete-region (point-min) (point-max))
2925 ;;Store clock
2926 (insert (format ";; org-persist.el - %s at %s\n"
2927 (system-name) (format-time-string
2928 (cdr org-time-stamp-formats))))
2929 (if (and (memq org-clock-persist '(t clock))
2930 (setq b (org-clocking-buffer))
2931 (setq b (or (buffer-base-buffer b) b))
2932 (buffer-live-p b)
2933 (buffer-file-name b)
2934 (or (not org-clock-persist-query-save)
2935 (y-or-n-p (concat "Save current clock ("
2936 org-clock-heading ") "))))
2937 (insert "(setq resume-clock '(\""
2938 (buffer-file-name (org-clocking-buffer))
2939 "\" . " (int-to-string (marker-position org-clock-marker))
2940 "))\n"))
2941 ;; Store clocked task history. Tasks are stored reversed to make
2942 ;; reading simpler
2943 (when (and (memq org-clock-persist '(t history))
2944 org-clock-history)
2945 (insert
2946 "(setq org-clock-stored-history '("
2947 (mapconcat
2948 (lambda (m)
2949 (when (and (setq b (marker-buffer m))
2950 (setq b (or (buffer-base-buffer b) b))
2951 (buffer-live-p b)
2952 (buffer-file-name b))
2953 (concat "(\"" (buffer-file-name b)
2954 "\" . " (int-to-string (marker-position m))
2955 ")")))
2956 (reverse org-clock-history) " ") "))\n"))
2957 (save-buffer)
2958 (kill-buffer (current-buffer)))))))
2960 (defun org-clock-load ()
2961 "Load clock-related data from disk, maybe resuming a stored clock."
2962 (when (and org-clock-persist (not org-clock-loaded))
2963 (let ((filename (expand-file-name org-clock-persist-file))
2964 (org-clock-in-resume 'auto-restart)
2965 resume-clock)
2966 (if (not (file-readable-p filename))
2967 (message "Not restoring clock data; %s not found"
2968 org-clock-persist-file)
2969 (message "%s" "Restoring clock data")
2970 (setq org-clock-loaded t)
2971 ;; Load history.
2972 (load-file filename)
2973 (save-window-excursion
2974 (dolist (task org-clock-stored-history)
2975 (when (file-exists-p (car task))
2976 (org-clock-history-push (cdr task)
2977 (find-file (car task))))))
2978 ;; Resume clock.
2979 (when (and resume-clock org-clock-persist
2980 (file-exists-p (car resume-clock))
2981 (or (not org-clock-persist-query-resume)
2982 (y-or-n-p
2983 (concat
2984 "Resume clock ("
2985 (with-current-buffer (find-file (car resume-clock))
2986 (save-excursion
2987 (goto-char (cdr resume-clock))
2988 (org-back-to-heading t)
2989 (and (looking-at org-complex-heading-regexp)
2990 (match-string 4))))
2991 ") "))))
2992 (when (file-exists-p (car resume-clock))
2993 (with-current-buffer (find-file (car resume-clock))
2994 (goto-char (cdr resume-clock))
2995 (let ((org-clock-auto-clock-resolution nil))
2996 (org-clock-in)
2997 (if (outline-invisible-p)
2998 (org-show-context))))))))))
3000 ;; Suggested bindings
3001 (org-defkey org-mode-map "\C-c\C-x\C-e" 'org-clock-modify-effort-estimate)
3003 (provide 'org-clock)
3005 ;; Local variables:
3006 ;; generated-autoload-file: "org-loaddefs.el"
3007 ;; End:
3009 ;;; org-clock.el ends here