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