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