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