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