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