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