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