org-clock.el 104 KB

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