org-clock.el 106 KB

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