org-clock.el 108 KB

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