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