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