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