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