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