ob-core.el 119 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135
  1. ;;; ob-core.el --- Working with Code Blocks -*- lexical-binding: t; -*-
  2. ;; Copyright (C) 2009-2017 Free Software Foundation, Inc.
  3. ;; Authors: Eric Schulte
  4. ;; Dan Davison
  5. ;; Keywords: literate programming, reproducible research
  6. ;; Homepage: http://orgmode.org
  7. ;; This file is part of GNU Emacs.
  8. ;; GNU Emacs is free software: you can redistribute it and/or modify
  9. ;; it under the terms of the GNU General Public License as published by
  10. ;; the Free Software Foundation, either version 3 of the License, or
  11. ;; (at your option) any later version.
  12. ;; GNU Emacs is distributed in the hope that it will be useful,
  13. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. ;; GNU General Public License for more details.
  16. ;; You should have received a copy of the GNU General Public License
  17. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  18. ;;; Code:
  19. (require 'cl-lib)
  20. (require 'ob-eval)
  21. (require 'org-macs)
  22. (require 'org-compat)
  23. (defconst org-babel-exeext
  24. (if (memq system-type '(windows-nt cygwin))
  25. ".exe"
  26. nil))
  27. (defvar org-babel-library-of-babel)
  28. (defvar org-edit-src-content-indentation)
  29. (defvar org-src-lang-modes)
  30. (defvar org-src-preserve-indentation)
  31. (declare-function org-at-item-p "org-list" ())
  32. (declare-function org-at-table-p "org" (&optional table-type))
  33. (declare-function org-babel-lob-execute-maybe "ob-lob" ())
  34. (declare-function org-babel-ref-goto-headline-id "ob-ref" (id))
  35. (declare-function org-babel-ref-headline-body "ob-ref" ())
  36. (declare-function org-babel-ref-parse "ob-ref" (assignment))
  37. (declare-function org-babel-ref-resolve "ob-ref" (ref))
  38. (declare-function org-babel-ref-split-args "ob-ref" (arg-string))
  39. (declare-function org-babel-tangle-comment-links "ob-tangle" (&optional info))
  40. (declare-function org-completing-read "org" (&rest args))
  41. (declare-function org-current-level "org" ())
  42. (declare-function org-cycle "org" (&optional arg))
  43. (declare-function org-do-remove-indentation "org" (&optional n))
  44. (declare-function org-edit-src-code "org-src" (&optional code edit-buffer-name))
  45. (declare-function org-edit-src-exit "org-src" ())
  46. (declare-function org-element-at-point "org-element" ())
  47. (declare-function org-element-context "org-element" (&optional element))
  48. (declare-function org-element-normalize-string "org-element" (s))
  49. (declare-function org-element-property "org-element" (property element))
  50. (declare-function org-element-type "org-element" (element))
  51. (declare-function org-entry-get "org" (pom property &optional inherit literal-nil))
  52. (declare-function org-escape-code-in-region "org-src" (beg end))
  53. (declare-function org-get-indentation "org" (&optional line))
  54. (declare-function org-get-indentation "org" (&optional line))
  55. (declare-function org-in-regexp "org" (regexp &optional nlines visually))
  56. (declare-function org-indent-line "org" ())
  57. (declare-function org-list-get-list-end "org-list" (item struct prevs))
  58. (declare-function org-list-prevs-alist "org-list" (struct))
  59. (declare-function org-list-struct "org-list" ())
  60. (declare-function org-list-to-generic "org-list" (LIST PARAMS))
  61. (declare-function org-list-to-lisp "org-list" (&optional delete))
  62. (declare-function org-macro-escape-arguments "org-macro" (&rest args))
  63. (declare-function org-make-options-regexp "org" (kwds &optional extra))
  64. (declare-function org-mark-ring-push "org" (&optional pos buffer))
  65. (declare-function org-narrow-to-subtree "org" ())
  66. (declare-function org-next-block "org" (arg &optional backward block-regexp))
  67. (declare-function org-number-sequence "org-compat" (from &optional to inc))
  68. (declare-function org-open-at-point "org" (&optional in-emacs reference-buffer))
  69. (declare-function org-outline-overlay-data "org" (&optional use-markers))
  70. (declare-function org-previous-block "org" (arg &optional block-regexp))
  71. (declare-function org-remove-indentation "org" (code &optional n))
  72. (declare-function org-reverse-string "org" (string))
  73. (declare-function org-set-outline-overlay-data "org" (data))
  74. (declare-function org-show-context "org" (&optional key))
  75. (declare-function org-split-string "org" (string &optional separators))
  76. (declare-function org-src-coderef-format "org-src" (element))
  77. (declare-function org-src-coderef-regexp "org-src" (fmt &optional label))
  78. (declare-function org-table-align "org-table" ())
  79. (declare-function org-table-end "org-table" (&optional table-type))
  80. (declare-function org-table-import "org-table" (file arg))
  81. (declare-function org-table-to-lisp "org-table" (&optional txt))
  82. (declare-function org-trim "org" (s &optional keep-lead))
  83. (declare-function org-unescape-code-in-string "org-src" (s))
  84. (declare-function org-uniquify "org" (list))
  85. (declare-function orgtbl-to-generic "org-table" (table params))
  86. (declare-function orgtbl-to-orgtbl "org-table" (table params))
  87. (declare-function outline-show-all "outline" ())
  88. (declare-function tramp-compat-make-temp-file "tramp-compat" (filename &optional dir-flag))
  89. (defgroup org-babel nil
  90. "Code block evaluation and management in `org-mode' documents."
  91. :tag "Babel"
  92. :group 'org)
  93. (defcustom org-confirm-babel-evaluate t
  94. "Confirm before evaluation.
  95. \\<org-mode-map>\
  96. Require confirmation before interactively evaluating code
  97. blocks in Org buffers. The default value of this variable is t,
  98. meaning confirmation is required for any code block evaluation.
  99. This variable can be set to nil to inhibit any future
  100. confirmation requests. This variable can also be set to a
  101. function which takes two arguments the language of the code block
  102. and the body of the code block. Such a function should then
  103. return a non-nil value if the user should be prompted for
  104. execution or nil if no prompt is required.
  105. Warning: Disabling confirmation may result in accidental
  106. evaluation of potentially harmful code. It may be advisable
  107. remove code block execution from `\\[org-ctrl-c-ctrl-c]' \
  108. as further protection
  109. against accidental code block evaluation. The
  110. `org-babel-no-eval-on-ctrl-c-ctrl-c' variable can be used to
  111. remove code block execution from the `\\[org-ctrl-c-ctrl-c]' keybinding."
  112. :group 'org-babel
  113. :version "24.1"
  114. :type '(choice boolean function))
  115. ;; don't allow this variable to be changed through file settings
  116. (put 'org-confirm-babel-evaluate 'safe-local-variable (lambda (x) (eq x t)))
  117. (defcustom org-babel-no-eval-on-ctrl-c-ctrl-c nil
  118. "\\<org-mode-map>\
  119. Remove code block evaluation from the `\\[org-ctrl-c-ctrl-c]' key binding."
  120. :group 'org-babel
  121. :version "24.1"
  122. :type 'boolean)
  123. (defcustom org-babel-results-keyword "RESULTS"
  124. "Keyword used to name results generated by code blocks.
  125. It should be \"RESULTS\". However any capitalization may be
  126. used."
  127. :group 'org-babel
  128. :version "24.4"
  129. :package-version '(Org . "8.0")
  130. :type 'string
  131. :safe (lambda (v)
  132. (and (stringp v)
  133. (eq (compare-strings "RESULTS" nil nil v nil nil t)
  134. t))))
  135. (defcustom org-babel-noweb-wrap-start "<<"
  136. "String used to begin a noweb reference in a code block.
  137. See also `org-babel-noweb-wrap-end'."
  138. :group 'org-babel
  139. :type 'string)
  140. (defcustom org-babel-noweb-wrap-end ">>"
  141. "String used to end a noweb reference in a code block.
  142. See also `org-babel-noweb-wrap-start'."
  143. :group 'org-babel
  144. :type 'string)
  145. (defcustom org-babel-inline-result-wrap "=%s="
  146. "Format string used to wrap inline results.
  147. This string must include a \"%s\" which will be replaced by the results."
  148. :group 'org-babel
  149. :type 'string)
  150. (put 'org-babel-inline-result-wrap
  151. 'safe-local-variable
  152. (lambda (value)
  153. (and (stringp value)
  154. (string-match-p "%s" value))))
  155. (defcustom org-babel-hash-show-time nil
  156. "Non-nil means show the time the code block was evaluated in the result hash."
  157. :group 'org-babel
  158. :type 'boolean
  159. :version "26.1"
  160. :package-version '(Org . "9.0")
  161. :safe #'booleanp)
  162. (defun org-babel-noweb-wrap (&optional regexp)
  163. (concat org-babel-noweb-wrap-start
  164. (or regexp "\\([^ \t\n].+?[^ \t]\\|[^ \t\n]\\)")
  165. org-babel-noweb-wrap-end))
  166. (defvar org-babel-src-name-regexp
  167. "^[ \t]*#\\+name:[ \t]*"
  168. "Regular expression used to match a source name line.")
  169. (defvar org-babel-multi-line-header-regexp
  170. "^[ \t]*#\\+headers?:[ \t]*\\([^\n]*\\)$"
  171. "Regular expression used to match multi-line header arguments.")
  172. (defvar org-babel-src-block-regexp
  173. (concat
  174. ;; (1) indentation (2) lang
  175. "^\\([ \t]*\\)#\\+begin_src[ \t]+\\([^ \f\t\n\r\v]+\\)[ \t]*"
  176. ;; (3) switches
  177. "\\([^\":\n]*\"[^\"\n*]*\"[^\":\n]*\\|[^\":\n]*\\)"
  178. ;; (4) header arguments
  179. "\\([^\n]*\\)\n"
  180. ;; (5) body
  181. "\\([^\000]*?\n\\)??[ \t]*#\\+end_src")
  182. "Regexp used to identify code blocks.")
  183. (defun org-babel--get-vars (params)
  184. "Return the babel variable assignments in PARAMS.
  185. PARAMS is a quasi-alist of header args, which may contain
  186. multiple entries for the key `:var'. This function returns a
  187. list of the cdr of all the `:var' entries."
  188. (mapcar #'cdr
  189. (cl-remove-if-not (lambda (x) (eq (car x) :var)) params)))
  190. (defvar org-babel-exp-reference-buffer nil
  191. "Buffer containing original contents of the exported buffer.
  192. This is used by Babel to resolve references in source blocks.
  193. Its value is dynamically bound during export.")
  194. (defun org-babel-check-confirm-evaluate (info)
  195. "Check whether INFO allows code block evaluation.
  196. Returns nil if evaluation is disallowed, t if it is
  197. unconditionally allowed, and the symbol `query' if the user
  198. should be asked whether to allow evaluation."
  199. (let* ((headers (nth 2 info))
  200. (eval (or (cdr (assq :eval headers))
  201. (when (assq :noeval headers) "no")))
  202. (eval-no (member eval '("no" "never")))
  203. (export org-babel-exp-reference-buffer)
  204. (eval-no-export (and export (member eval '("no-export" "never-export"))))
  205. (noeval (or eval-no eval-no-export))
  206. (query (or (equal eval "query")
  207. (and export (equal eval "query-export"))
  208. (if (functionp org-confirm-babel-evaluate)
  209. (save-excursion
  210. (goto-char (nth 5 info))
  211. (funcall org-confirm-babel-evaluate
  212. ;; language, code block body
  213. (nth 0 info) (nth 1 info)))
  214. org-confirm-babel-evaluate))))
  215. (cond
  216. (noeval nil)
  217. (query 'query)
  218. (t t))))
  219. (defun org-babel-check-evaluate (info)
  220. "Check if code block INFO should be evaluated.
  221. Do not query the user, but do display an informative message if
  222. evaluation is blocked. Returns non-nil if evaluation is not blocked."
  223. (let ((confirmed (org-babel-check-confirm-evaluate info)))
  224. (unless confirmed
  225. (message "Evaluation of this %s code block%sis disabled."
  226. (nth 0 info)
  227. (let ((name (nth 4 info)))
  228. (if name (format " (%s) " name) " "))))
  229. confirmed))
  230. ;; Dynamically scoped for asynchronous export.
  231. (defvar org-babel-confirm-evaluate-answer-no)
  232. (defun org-babel-confirm-evaluate (info)
  233. "Confirm evaluation of the code block INFO.
  234. This query can also be suppressed by setting the value of
  235. `org-confirm-babel-evaluate' to nil, in which case all future
  236. interactive code block evaluations will proceed without any
  237. confirmation from the user.
  238. Note disabling confirmation may result in accidental evaluation
  239. of potentially harmful code.
  240. The variable `org-babel-confirm-evaluate-answer-no' is used by
  241. the async export process, which requires a non-interactive
  242. environment, to override this check."
  243. (let* ((evalp (org-babel-check-confirm-evaluate info))
  244. (lang (nth 0 info))
  245. (name (nth 4 info))
  246. (name-string (if name (format " (%s) " name) " ")))
  247. (pcase evalp
  248. (`nil nil)
  249. (`t t)
  250. (`query (or
  251. (and (not (bound-and-true-p
  252. org-babel-confirm-evaluate-answer-no))
  253. (yes-or-no-p
  254. (format "Evaluate this %s code block%son your system? "
  255. lang name-string)))
  256. (progn
  257. (message "Evaluation of this %s code block%sis aborted."
  258. lang name-string)
  259. nil)))
  260. (x (error "Unexpected value `%s' from `org-babel-check-confirm-evaluate'" x)))))
  261. ;;;###autoload
  262. (defun org-babel-execute-safely-maybe ()
  263. (unless org-babel-no-eval-on-ctrl-c-ctrl-c
  264. (org-babel-execute-maybe)))
  265. ;;;###autoload
  266. (defun org-babel-execute-maybe ()
  267. (interactive)
  268. (or (org-babel-execute-src-block-maybe)
  269. (org-babel-lob-execute-maybe)))
  270. (defmacro org-babel-when-in-src-block (&rest body)
  271. "Execute BODY if point is in a source block and return t.
  272. Otherwise do nothing and return nil."
  273. `(if (memq (org-element-type (org-element-context))
  274. '(inline-src-block src-block))
  275. (progn
  276. ,@body
  277. t)
  278. nil))
  279. (defun org-babel-execute-src-block-maybe ()
  280. "Conditionally execute a source block.
  281. Detect if this is context for a Babel src-block and if so
  282. then run `org-babel-execute-src-block'."
  283. (interactive)
  284. (org-babel-when-in-src-block
  285. (org-babel-eval-wipe-error-buffer)
  286. (org-babel-execute-src-block current-prefix-arg)))
  287. ;;;###autoload
  288. (defun org-babel-view-src-block-info ()
  289. "Display information on the current source block.
  290. This includes header arguments, language and name, and is largely
  291. a window into the `org-babel-get-src-block-info' function."
  292. (interactive)
  293. (let ((info (org-babel-get-src-block-info 'light))
  294. (full (lambda (it) (> (length it) 0)))
  295. (printf (lambda (fmt &rest args) (princ (apply #'format fmt args)))))
  296. (when info
  297. (with-help-window (help-buffer)
  298. (let ((name (nth 4 info))
  299. (lang (nth 0 info))
  300. (switches (nth 3 info))
  301. (header-args (nth 2 info)))
  302. (when name (funcall printf "Name: %s\n" name))
  303. (when lang (funcall printf "Lang: %s\n" lang))
  304. (funcall printf "Properties:\n")
  305. (funcall printf "\t:header-args \t%s\n" (org-entry-get (point) "header-args" t))
  306. (funcall printf "\t:header-args:%s \t%s\n" lang (org-entry-get (point) (concat "header-args:" lang) t))
  307. (when (funcall full switches) (funcall printf "Switches: %s\n" switches))
  308. (funcall printf "Header Arguments:\n")
  309. (dolist (pair (sort header-args
  310. (lambda (a b) (string< (symbol-name (car a))
  311. (symbol-name (car b))))))
  312. (when (funcall full (format "%s" (cdr pair)))
  313. (funcall printf "\t%S%s\t%s\n"
  314. (car pair)
  315. (if (> (length (format "%S" (car pair))) 7) "" "\t")
  316. (cdr pair)))))))))
  317. ;;;###autoload
  318. (defun org-babel-expand-src-block-maybe ()
  319. "Conditionally expand a source block.
  320. Detect if this is context for a org-babel src-block and if so
  321. then run `org-babel-expand-src-block'."
  322. (interactive)
  323. (org-babel-when-in-src-block
  324. (org-babel-expand-src-block current-prefix-arg)))
  325. ;;;###autoload
  326. (defun org-babel-load-in-session-maybe ()
  327. "Conditionally load a source block in a session.
  328. Detect if this is context for a org-babel src-block and if so
  329. then run `org-babel-load-in-session'."
  330. (interactive)
  331. (org-babel-when-in-src-block
  332. (org-babel-load-in-session current-prefix-arg)))
  333. (add-hook 'org-metaup-hook 'org-babel-load-in-session-maybe)
  334. ;;;###autoload
  335. (defun org-babel-pop-to-session-maybe ()
  336. "Conditionally pop to a session.
  337. Detect if this is context for a org-babel src-block and if so
  338. then run `org-babel-switch-to-session'."
  339. (interactive)
  340. (org-babel-when-in-src-block
  341. (org-babel-switch-to-session current-prefix-arg)))
  342. (add-hook 'org-metadown-hook 'org-babel-pop-to-session-maybe)
  343. (defconst org-babel-common-header-args-w-values
  344. '((cache . ((no yes)))
  345. (cmdline . :any)
  346. (colnames . ((nil no yes)))
  347. (comments . ((no link yes org both noweb)))
  348. (dir . :any)
  349. (eval . ((yes no no-export strip-export never-export eval never
  350. query)))
  351. (exports . ((code results both none)))
  352. (epilogue . :any)
  353. (file . :any)
  354. (file-desc . :any)
  355. (file-ext . :any)
  356. (hlines . ((no yes)))
  357. (mkdirp . ((yes no)))
  358. (no-expand)
  359. (noeval)
  360. (noweb . ((yes no tangle no-export strip-export)))
  361. (noweb-ref . :any)
  362. (noweb-sep . :any)
  363. (output-dir . :any)
  364. (padline . ((yes no)))
  365. (post . :any)
  366. (prologue . :any)
  367. (results . ((file list vector table scalar verbatim)
  368. (raw html latex org code pp drawer)
  369. (replace silent none append prepend)
  370. (output value)))
  371. (rownames . ((no yes)))
  372. (sep . :any)
  373. (session . :any)
  374. (shebang . :any)
  375. (tangle . ((tangle yes no :any)))
  376. (tangle-mode . ((#o755 #o555 #o444 :any)))
  377. (var . :any)
  378. (wrap . :any)))
  379. (defconst org-babel-header-arg-names
  380. (mapcar #'car org-babel-common-header-args-w-values)
  381. "Common header arguments used by org-babel.
  382. Note that individual languages may define their own language
  383. specific header arguments as well.")
  384. (defconst org-babel-safe-header-args
  385. '(:cache :colnames :comments :exports :epilogue :hlines :noeval
  386. :noweb :noweb-ref :noweb-sep :padline :prologue :rownames
  387. :sep :session :tangle :wrap
  388. (:eval . ("never" "query"))
  389. (:results . (lambda (str) (not (string-match "file" str)))))
  390. "A list of safe header arguments for babel source blocks.
  391. The list can have entries of the following forms:
  392. - :ARG -> :ARG is always a safe header arg
  393. - (:ARG . (VAL1 VAL2 ...)) -> :ARG is safe as a header arg if it is
  394. `equal' to one of the VALs.
  395. - (:ARG . FN) -> :ARG is safe as a header arg if the function FN
  396. returns non-nil. FN is passed one
  397. argument, the value of the header arg
  398. (as a string).")
  399. (defmacro org-babel-header-args-safe-fn (safe-list)
  400. "Return a function that determines whether a list of header args are safe.
  401. Intended usage is:
  402. \(put \\='org-babel-default-header-args \\='safe-local-variable
  403. (org-babel-header-args-safe-p org-babel-safe-header-args)
  404. This allows org-babel languages to extend the list of safe values for
  405. their `org-babel-default-header-args:foo' variable.
  406. For the format of SAFE-LIST, see `org-babel-safe-header-args'."
  407. `(lambda (value)
  408. (and (listp value)
  409. (cl-every
  410. (lambda (pair)
  411. (and (consp pair)
  412. (org-babel-one-header-arg-safe-p pair ,safe-list)))
  413. value))))
  414. (defvar org-babel-default-header-args
  415. '((:session . "none") (:results . "replace") (:exports . "code")
  416. (:cache . "no") (:noweb . "no") (:hlines . "no") (:tangle . "no"))
  417. "Default arguments to use when evaluating a source block.")
  418. (put 'org-babel-default-header-args 'safe-local-variable
  419. (org-babel-header-args-safe-fn org-babel-safe-header-args))
  420. (defvar org-babel-default-inline-header-args
  421. '((:session . "none") (:results . "replace")
  422. (:exports . "results") (:hlines . "yes"))
  423. "Default arguments to use when evaluating an inline source block.")
  424. (put 'org-babel-default-inline-header-args 'safe-local-variable
  425. (org-babel-header-args-safe-fn org-babel-safe-header-args))
  426. (defconst org-babel-name-regexp
  427. (format "^[ \t]*#\\+%s:[ \t]*"
  428. ;; FIXME: TBLNAME is for backward compatibility.
  429. (regexp-opt '("NAME" "TBLNAME")))
  430. "Regexp matching a NAME keyword.")
  431. (defconst org-babel-result-regexp
  432. (format "^[ \t]*#\\+%s\\(?:\\[\\(?:%s \\)?\\([[:alnum:]]+\\)\\]\\)?:[ \t]*"
  433. org-babel-results-keyword
  434. ;; <%Y-%m-%d %H:%M:%S>
  435. "<\\(?:[0-9]\\{4\\}-[0-1][0-9]-[0-3][0-9] \
  436. [0-2][0-9]\\(?::[0-5][0-9]\\)\\{2\\}\\)>")
  437. "Regular expression used to match result lines.
  438. If the results are associated with a hash key then the hash will
  439. be saved in match group 1.")
  440. (defconst org-babel-result-w-name-regexp
  441. (concat org-babel-result-regexp "\\(?9:[^ \t\n\r\v\f]+\\)")
  442. "Regexp matching a RESULTS keyword with a name.
  443. Name is saved in match group 9.")
  444. (defvar org-babel-min-lines-for-block-output 10
  445. "The minimum number of lines for block output.
  446. If number of lines of output is equal to or exceeds this
  447. value, the output is placed in a #+begin_example...#+end_example
  448. block. Otherwise the output is marked as literal by inserting
  449. colons at the starts of the lines. This variable only takes
  450. effect if the :results output option is in effect.")
  451. (defvar org-babel-noweb-error-all-langs nil
  452. "Raise errors when noweb references don't resolve.
  453. Also see `org-babel-noweb-error-langs' to control noweb errors on
  454. a language by language bases.")
  455. (defvar org-babel-noweb-error-langs nil
  456. "Languages for which Babel will raise literate programming errors.
  457. List of languages for which errors should be raised when the
  458. source code block satisfying a noweb reference in this language
  459. can not be resolved. Also see `org-babel-noweb-error-all-langs'
  460. to raise errors for all languages.")
  461. (defvar org-babel-hash-show 4
  462. "Number of initial characters to show of a hidden results hash.")
  463. (defvar org-babel-after-execute-hook nil
  464. "Hook for functions to be called after `org-babel-execute-src-block'")
  465. (defun org-babel-named-src-block-regexp-for-name (&optional name)
  466. "This generates a regexp used to match a src block named NAME.
  467. If NAME is nil, match any name. Matched name is then put in
  468. match group 9. Other match groups are defined in
  469. `org-babel-src-block-regexp'."
  470. (concat org-babel-src-name-regexp
  471. (concat (if name (regexp-quote name) "\\(?9:.*?\\)") "[ \t]*" )
  472. "\\(?:\n[ \t]*#\\+\\S-+:.*\\)*?"
  473. "\n"
  474. (substring org-babel-src-block-regexp 1)))
  475. (defun org-babel-named-data-regexp-for-name (name)
  476. "This generates a regexp used to match data named NAME."
  477. (concat org-babel-name-regexp (regexp-quote name) "[ \t]*$"))
  478. (defun org-babel--normalize-body (datum)
  479. "Normalize body for element or object DATUM.
  480. DATUM is a source block element or an inline source block object.
  481. Remove final newline character and spurious indentation."
  482. (let* ((value (org-element-property :value datum))
  483. (body (if (string-suffix-p "\n" value)
  484. (substring value 0 -1)
  485. value)))
  486. (cond ((eq (org-element-type datum) 'inline-src-block)
  487. ;; Newline characters and indentation in an inline
  488. ;; src-block are not meaningful, since they could come from
  489. ;; some paragraph filling. Treat them as a white space.
  490. (replace-regexp-in-string "\n[ \t]*" " " body))
  491. ((or org-src-preserve-indentation
  492. (org-element-property :preserve-indent datum))
  493. body)
  494. (t (org-remove-indentation body)))))
  495. ;;; functions
  496. (defvar org-babel-current-src-block-location nil
  497. "Marker pointing to the src block currently being executed.
  498. This may also point to a call line or an inline code block. If
  499. multiple blocks are being executed (e.g., in chained execution
  500. through use of the :var header argument) this marker points to
  501. the outer-most code block.")
  502. (defvar *this*)
  503. (defun org-babel-get-src-block-info (&optional light datum)
  504. "Extract information from a source block or inline source block.
  505. Optional argument LIGHT does not resolve remote variable
  506. references; a process which could likely result in the execution
  507. of other code blocks.
  508. By default, consider the block at point. However, when optional
  509. argument DATUM is provided, extract information from that parsed
  510. object instead.
  511. Return nil if point is not on a source block. Otherwise, return
  512. a list with the following pattern:
  513. (language body arguments switches name start coderef)"
  514. (let* ((datum (or datum (org-element-context)))
  515. (type (org-element-type datum))
  516. (inline (eq type 'inline-src-block)))
  517. (when (memq type '(inline-src-block src-block))
  518. (let* ((lang (org-element-property :language datum))
  519. (lang-headers (intern
  520. (concat "org-babel-default-header-args:" lang)))
  521. (name (org-element-property :name datum))
  522. (info
  523. (list
  524. lang
  525. (org-babel--normalize-body datum)
  526. (apply #'org-babel-merge-params
  527. (if inline org-babel-default-inline-header-args
  528. org-babel-default-header-args)
  529. (and (boundp lang-headers) (eval lang-headers t))
  530. (append
  531. ;; If DATUM is provided, make sure we get node
  532. ;; properties applicable to its location within
  533. ;; the document.
  534. (org-with-point-at (org-element-property :begin datum)
  535. (org-babel-params-from-properties lang))
  536. (mapcar #'org-babel-parse-header-arguments
  537. (cons (org-element-property :parameters datum)
  538. (org-element-property :header datum)))))
  539. (or (org-element-property :switches datum) "")
  540. name
  541. (org-element-property (if inline :begin :post-affiliated)
  542. datum)
  543. (and (not inline) (org-src-coderef-format datum)))))
  544. (unless light
  545. (setf (nth 2 info) (org-babel-process-params (nth 2 info))))
  546. (setf (nth 2 info) (org-babel-generate-file-param name (nth 2 info)))
  547. info))))
  548. ;;;###autoload
  549. (defun org-babel-execute-src-block (&optional arg info params)
  550. "Execute the current source code block.
  551. Insert the results of execution into the buffer. Source code
  552. execution and the collection and formatting of results can be
  553. controlled through a variety of header arguments.
  554. With prefix argument ARG, force re-execution even if an existing
  555. result cached in the buffer would otherwise have been returned.
  556. Optionally supply a value for INFO in the form returned by
  557. `org-babel-get-src-block-info'.
  558. Optionally supply a value for PARAMS which will be merged with
  559. the header arguments specified at the front of the source code
  560. block."
  561. (interactive)
  562. (let* ((org-babel-current-src-block-location
  563. (or org-babel-current-src-block-location
  564. (nth 5 info)
  565. (org-babel-where-is-src-block-head)))
  566. (info (if info (copy-tree info) (org-babel-get-src-block-info))))
  567. ;; Merge PARAMS with INFO before considering source block
  568. ;; evaluation since both could disagree.
  569. (cl-callf org-babel-merge-params (nth 2 info) params)
  570. (when (org-babel-check-evaluate info)
  571. (cl-callf org-babel-process-params (nth 2 info))
  572. (let* ((params (nth 2 info))
  573. (cache (let ((c (cdr (assq :cache params))))
  574. (and (not arg) c (string= "yes" c))))
  575. (new-hash (and cache (org-babel-sha1-hash info)))
  576. (old-hash (and cache (org-babel-current-result-hash)))
  577. (current-cache (and new-hash (equal new-hash old-hash))))
  578. (cond
  579. (current-cache
  580. (save-excursion ;Return cached result.
  581. (goto-char (org-babel-where-is-src-block-result nil info))
  582. (forward-line)
  583. (skip-chars-forward " \t")
  584. (let ((result (org-babel-read-result)))
  585. (message (replace-regexp-in-string "%" "%%" (format "%S" result)))
  586. result)))
  587. ((org-babel-confirm-evaluate info)
  588. (let* ((lang (nth 0 info))
  589. (result-params (cdr (assq :result-params params)))
  590. ;; Expand noweb references in BODY and remove any
  591. ;; coderef.
  592. (body
  593. (let ((coderef (nth 6 info))
  594. (expand
  595. (if (org-babel-noweb-p params :eval)
  596. (org-babel-expand-noweb-references info)
  597. (nth 1 info))))
  598. (if (not coderef) expand
  599. (replace-regexp-in-string
  600. (org-src-coderef-regexp coderef) "" expand nil nil 1))))
  601. (dir (cdr (assq :dir params)))
  602. (default-directory
  603. (or (and dir (file-name-as-directory (expand-file-name dir)))
  604. default-directory))
  605. (cmd (intern (concat "org-babel-execute:" lang)))
  606. result)
  607. (unless (fboundp cmd)
  608. (error "No org-babel-execute function for %s!" lang))
  609. (message "executing %s code block%s..."
  610. (capitalize lang)
  611. (let ((name (nth 4 info)))
  612. (if name (format " (%s)" name) "")))
  613. (if (member "none" result-params)
  614. (progn (funcall cmd body params)
  615. (message "result silenced"))
  616. (setq result
  617. (let ((r (funcall cmd body params)))
  618. (if (and (eq (cdr (assq :result-type params)) 'value)
  619. (or (member "vector" result-params)
  620. (member "table" result-params))
  621. (not (listp r)))
  622. (list (list r))
  623. r)))
  624. (let ((file (cdr (assq :file params))))
  625. ;; If non-empty result and :file then write to :file.
  626. (when file
  627. (when result
  628. (with-temp-file file
  629. (insert (org-babel-format-result
  630. result (cdr (assq :sep params))))))
  631. (setq result file))
  632. ;; Possibly perform post process provided its
  633. ;; appropriate. Dynamically bind "*this*" to the
  634. ;; actual results of the block.
  635. (let ((post (cdr (assq :post params))))
  636. (when post
  637. (let ((*this* (if (not file) result
  638. (org-babel-result-to-file
  639. file
  640. (let ((desc (assq :file-desc params)))
  641. (and desc (or (cdr desc) result)))))))
  642. (setq result (org-babel-ref-resolve post))
  643. (when file
  644. (setq result-params (remove "file" result-params))))))
  645. (org-babel-insert-result
  646. result result-params info new-hash lang)))
  647. (run-hooks 'org-babel-after-execute-hook)
  648. result)))))))
  649. (defun org-babel-expand-body:generic (body params &optional var-lines)
  650. "Expand BODY with PARAMS.
  651. Expand a block of code with org-babel according to its header
  652. arguments. This generic implementation of body expansion is
  653. called for languages which have not defined their own specific
  654. org-babel-expand-body:lang function."
  655. (let ((pro (cdr (assq :prologue params)))
  656. (epi (cdr (assq :epilogue params))))
  657. (mapconcat #'identity
  658. (append (when pro (list pro))
  659. var-lines
  660. (list body)
  661. (when epi (list epi)))
  662. "\n")))
  663. ;;;###autoload
  664. (defun org-babel-expand-src-block (&optional _arg info params)
  665. "Expand the current source code block.
  666. Expand according to the source code block's header
  667. arguments and pop open the results in a preview buffer."
  668. (interactive)
  669. (let* ((info (or info (org-babel-get-src-block-info)))
  670. (lang (nth 0 info))
  671. (params (setf (nth 2 info)
  672. (sort (org-babel-merge-params (nth 2 info) params)
  673. (lambda (el1 el2) (string< (symbol-name (car el1))
  674. (symbol-name (car el2)))))))
  675. (body (setf (nth 1 info)
  676. (if (org-babel-noweb-p params :eval)
  677. (org-babel-expand-noweb-references info) (nth 1 info))))
  678. (expand-cmd (intern (concat "org-babel-expand-body:" lang)))
  679. (assignments-cmd (intern (concat "org-babel-variable-assignments:"
  680. lang)))
  681. (expanded
  682. (if (fboundp expand-cmd) (funcall expand-cmd body params)
  683. (org-babel-expand-body:generic
  684. body params (and (fboundp assignments-cmd)
  685. (funcall assignments-cmd params))))))
  686. (if (called-interactively-p 'any)
  687. (org-edit-src-code
  688. expanded (concat "*Org-Babel Preview " (buffer-name) "[ " lang " ]*"))
  689. expanded)))
  690. (defun org-babel-edit-distance (s1 s2)
  691. "Return the edit (levenshtein) distance between strings S1 S2."
  692. (let* ((l1 (length s1))
  693. (l2 (length s2))
  694. (dist (vconcat (mapcar (lambda (_) (make-vector (1+ l2) nil))
  695. (number-sequence 1 (1+ l1)))))
  696. (in (lambda (i j) (aref (aref dist i) j))))
  697. (setf (aref (aref dist 0) 0) 0)
  698. (dolist (j (number-sequence 1 l2))
  699. (setf (aref (aref dist 0) j) j))
  700. (dolist (i (number-sequence 1 l1))
  701. (setf (aref (aref dist i) 0) i)
  702. (dolist (j (number-sequence 1 l2))
  703. (setf (aref (aref dist i) j)
  704. (min
  705. (1+ (funcall in (1- i) j))
  706. (1+ (funcall in i (1- j)))
  707. (+ (if (equal (aref s1 (1- i)) (aref s2 (1- j))) 0 1)
  708. (funcall in (1- i) (1- j)))))))
  709. (funcall in l1 l2)))
  710. (defun org-babel-combine-header-arg-lists (original &rest others)
  711. "Combine a number of lists of header argument names and arguments."
  712. (let ((results (copy-sequence original)))
  713. (dolist (new-list others)
  714. (dolist (arg-pair new-list)
  715. (let ((header (car arg-pair)))
  716. (setq results
  717. (cons arg-pair (cl-remove-if
  718. (lambda (pair) (equal header (car pair)))
  719. results))))))
  720. results))
  721. ;;;###autoload
  722. (defun org-babel-check-src-block ()
  723. "Check for misspelled header arguments in the current code block."
  724. (interactive)
  725. ;; TODO: report malformed code block
  726. ;; TODO: report incompatible combinations of header arguments
  727. ;; TODO: report uninitialized variables
  728. (let ((too-close 2) ;; <- control closeness to report potential match
  729. (names (mapcar #'symbol-name org-babel-header-arg-names)))
  730. (dolist (header (mapcar (lambda (arg) (substring (symbol-name (car arg)) 1))
  731. (and (org-babel-where-is-src-block-head)
  732. (org-babel-parse-header-arguments
  733. (org-no-properties
  734. (match-string 4))))))
  735. (dolist (name names)
  736. (when (and (not (string= header name))
  737. (<= (org-babel-edit-distance header name) too-close)
  738. (not (member header names)))
  739. (error "Supplied header \"%S\" is suspiciously close to \"%S\""
  740. header name))))
  741. (message "No suspicious header arguments found.")))
  742. ;;;###autoload
  743. (defun org-babel-insert-header-arg (&optional header-arg value)
  744. "Insert a header argument selecting from lists of common args and values."
  745. (interactive)
  746. (let* ((info (org-babel-get-src-block-info 'light))
  747. (lang (car info))
  748. (begin (nth 5 info))
  749. (lang-headers (intern (concat "org-babel-header-args:" lang)))
  750. (headers (org-babel-combine-header-arg-lists
  751. org-babel-common-header-args-w-values
  752. (when (boundp lang-headers) (eval lang-headers t))))
  753. (header-arg (or header-arg
  754. (completing-read
  755. "Header Arg: "
  756. (mapcar
  757. (lambda (header-spec) (symbol-name (car header-spec)))
  758. headers))))
  759. (vals (cdr (assoc (intern header-arg) headers)))
  760. (value (or value
  761. (cond
  762. ((eq vals :any)
  763. (read-from-minibuffer "value: "))
  764. ((listp vals)
  765. (mapconcat
  766. (lambda (group)
  767. (let ((arg (completing-read
  768. "Value: "
  769. (cons "default"
  770. (mapcar #'symbol-name group)))))
  771. (if (and arg (not (string= "default" arg)))
  772. (concat arg " ")
  773. "")))
  774. vals ""))))))
  775. (save-excursion
  776. (goto-char begin)
  777. (goto-char (point-at-eol))
  778. (unless (= (char-before (point)) ?\ ) (insert " "))
  779. (insert ":" header-arg) (when value (insert " " value)))))
  780. ;; Add support for completing-read insertion of header arguments after ":"
  781. (defun org-babel-header-arg-expand ()
  782. "Call `org-babel-enter-header-arg-w-completion' in appropriate contexts."
  783. (when (and (equal (char-before) ?\:) (org-babel-where-is-src-block-head))
  784. (org-babel-enter-header-arg-w-completion (match-string 2))))
  785. (defun org-babel-enter-header-arg-w-completion (&optional lang)
  786. "Insert header argument appropriate for LANG with completion."
  787. (let* ((lang-headers-var (intern (concat "org-babel-header-args:" lang)))
  788. (lang-headers (when (boundp lang-headers-var) (eval lang-headers-var t)))
  789. (headers-w-values (org-babel-combine-header-arg-lists
  790. org-babel-common-header-args-w-values lang-headers))
  791. (headers (mapcar #'symbol-name (mapcar #'car headers-w-values)))
  792. (header (org-completing-read "Header Arg: " headers))
  793. (args (cdr (assoc (intern header) headers-w-values)))
  794. (arg (when (and args (listp args))
  795. (org-completing-read
  796. (format "%s: " header)
  797. (mapcar #'symbol-name (apply #'append args))))))
  798. (insert (concat header " " (or arg "")))
  799. (cons header arg)))
  800. (add-hook 'org-tab-first-hook 'org-babel-header-arg-expand)
  801. ;;;###autoload
  802. (defun org-babel-load-in-session (&optional _arg info)
  803. "Load the body of the current source-code block.
  804. Evaluate the header arguments for the source block before
  805. entering the session. After loading the body this pops open the
  806. session."
  807. (interactive)
  808. (let* ((info (or info (org-babel-get-src-block-info)))
  809. (lang (nth 0 info))
  810. (params (nth 2 info))
  811. (body (if (not info)
  812. (user-error "No src code block at point")
  813. (setf (nth 1 info)
  814. (if (org-babel-noweb-p params :eval)
  815. (org-babel-expand-noweb-references info)
  816. (nth 1 info)))))
  817. (session (cdr (assq :session params)))
  818. (dir (cdr (assq :dir params)))
  819. (default-directory
  820. (or (and dir (file-name-as-directory dir)) default-directory))
  821. (cmd (intern (concat "org-babel-load-session:" lang))))
  822. (unless (fboundp cmd)
  823. (error "No org-babel-load-session function for %s!" lang))
  824. (pop-to-buffer (funcall cmd session body params))
  825. (end-of-line 1)))
  826. ;;;###autoload
  827. (defun org-babel-initiate-session (&optional arg info)
  828. "Initiate session for current code block.
  829. If called with a prefix argument then resolve any variable
  830. references in the header arguments and assign these variables in
  831. the session. Copy the body of the code block to the kill ring."
  832. (interactive "P")
  833. (let* ((info (or info (org-babel-get-src-block-info (not arg))))
  834. (lang (nth 0 info))
  835. (body (nth 1 info))
  836. (params (nth 2 info))
  837. (session (cdr (assq :session params)))
  838. (dir (cdr (assq :dir params)))
  839. (default-directory
  840. (or (and dir (file-name-as-directory dir)) default-directory))
  841. (init-cmd (intern (format "org-babel-%s-initiate-session" lang)))
  842. (prep-cmd (intern (concat "org-babel-prep-session:" lang))))
  843. (when (and (stringp session) (string= session "none"))
  844. (error "This block is not using a session!"))
  845. (unless (fboundp init-cmd)
  846. (error "No org-babel-initiate-session function for %s!" lang))
  847. (with-temp-buffer (insert (org-trim body))
  848. (copy-region-as-kill (point-min) (point-max)))
  849. (when arg
  850. (unless (fboundp prep-cmd)
  851. (error "No org-babel-prep-session function for %s!" lang))
  852. (funcall prep-cmd session params))
  853. (funcall init-cmd session params)))
  854. ;;;###autoload
  855. (defun org-babel-switch-to-session (&optional arg info)
  856. "Switch to the session of the current code block.
  857. Uses `org-babel-initiate-session' to start the session. If called
  858. with a prefix argument then this is passed on to
  859. `org-babel-initiate-session'."
  860. (interactive "P")
  861. (pop-to-buffer (org-babel-initiate-session arg info))
  862. (end-of-line 1))
  863. (defalias 'org-babel-pop-to-session 'org-babel-switch-to-session)
  864. (defvar org-src-window-setup)
  865. ;;;###autoload
  866. (defun org-babel-switch-to-session-with-code (&optional arg _info)
  867. "Switch to code buffer and display session."
  868. (interactive "P")
  869. (let ((swap-windows
  870. (lambda ()
  871. (let ((other-window-buffer (window-buffer (next-window))))
  872. (set-window-buffer (next-window) (current-buffer))
  873. (set-window-buffer (selected-window) other-window-buffer))
  874. (other-window 1)))
  875. (info (org-babel-get-src-block-info))
  876. (org-src-window-setup 'reorganize-frame))
  877. (save-excursion
  878. (org-babel-switch-to-session arg info))
  879. (org-edit-src-code)
  880. (funcall swap-windows)))
  881. ;;;###autoload
  882. (defmacro org-babel-do-in-edit-buffer (&rest body)
  883. "Evaluate BODY in edit buffer if there is a code block at point.
  884. Return t if a code block was found at point, nil otherwise."
  885. `(let ((org-src-window-setup 'switch-invisibly))
  886. (when (and (org-babel-where-is-src-block-head)
  887. (org-edit-src-code))
  888. (unwind-protect (progn ,@body)
  889. (org-edit-src-exit))
  890. t)))
  891. (def-edebug-spec org-babel-do-in-edit-buffer (body))
  892. (defun org-babel-do-key-sequence-in-edit-buffer (key)
  893. "Read key sequence and execute the command in edit buffer.
  894. Enter a key sequence to be executed in the language major-mode
  895. edit buffer. For example, TAB will alter the contents of the
  896. Org code block according to the effect of TAB in the language
  897. major mode buffer. For languages that support interactive
  898. sessions, this can be used to send code from the Org buffer
  899. to the session for evaluation using the native major mode
  900. evaluation mechanisms."
  901. (interactive "kEnter key-sequence to execute in edit buffer: ")
  902. (org-babel-do-in-edit-buffer
  903. (call-interactively
  904. (key-binding (or key (read-key-sequence nil))))))
  905. (defvar org-bracket-link-regexp)
  906. (defun org-babel-active-location-p ()
  907. (memq (org-element-type (save-match-data (org-element-context)))
  908. '(babel-call inline-babel-call inline-src-block src-block)))
  909. ;;;###autoload
  910. (defun org-babel-open-src-block-result (&optional re-run)
  911. "If `point' is on a src block then open the results of the
  912. source code block, otherwise return nil. With optional prefix
  913. argument RE-RUN the source-code block is evaluated even if
  914. results already exist."
  915. (interactive "P")
  916. (let ((info (org-babel-get-src-block-info 'light)))
  917. (when info
  918. (save-excursion
  919. ;; go to the results, if there aren't any then run the block
  920. (goto-char (or (and (not re-run) (org-babel-where-is-src-block-result))
  921. (progn (org-babel-execute-src-block)
  922. (org-babel-where-is-src-block-result))))
  923. (end-of-line 1)
  924. (while (looking-at "[\n\r\t\f ]") (forward-char 1))
  925. ;; open the results
  926. (if (looking-at org-bracket-link-regexp)
  927. ;; file results
  928. (org-open-at-point)
  929. (let ((r (org-babel-format-result
  930. (org-babel-read-result) (cdr (assq :sep (nth 2 info))))))
  931. (pop-to-buffer (get-buffer-create "*Org-Babel Results*"))
  932. (delete-region (point-min) (point-max))
  933. (insert r)))
  934. t))))
  935. ;;;###autoload
  936. (defmacro org-babel-map-src-blocks (file &rest body)
  937. "Evaluate BODY forms on each source-block in FILE.
  938. If FILE is nil evaluate BODY forms on source blocks in current
  939. buffer. During evaluation of BODY the following local variables
  940. are set relative to the currently matched code block.
  941. full-block ------- string holding the entirety of the code block
  942. beg-block -------- point at the beginning of the code block
  943. end-block -------- point at the end of the matched code block
  944. lang ------------- string holding the language of the code block
  945. beg-lang --------- point at the beginning of the lang
  946. end-lang --------- point at the end of the lang
  947. switches --------- string holding the switches
  948. beg-switches ----- point at the beginning of the switches
  949. end-switches ----- point at the end of the switches
  950. header-args ------ string holding the header-args
  951. beg-header-args -- point at the beginning of the header-args
  952. end-header-args -- point at the end of the header-args
  953. body ------------- string holding the body of the code block
  954. beg-body --------- point at the beginning of the body
  955. end-body --------- point at the end of the body"
  956. (declare (indent 1))
  957. (let ((tempvar (make-symbol "file")))
  958. `(let* ((case-fold-search t)
  959. (,tempvar ,file)
  960. (visited-p (or (null ,tempvar)
  961. (get-file-buffer (expand-file-name ,tempvar))))
  962. (point (point)) to-be-removed)
  963. (save-window-excursion
  964. (when ,tempvar (find-file ,tempvar))
  965. (setq to-be-removed (current-buffer))
  966. (goto-char (point-min))
  967. (while (re-search-forward org-babel-src-block-regexp nil t)
  968. (when (org-babel-active-location-p)
  969. (goto-char (match-beginning 0))
  970. (let ((full-block (match-string 0))
  971. (beg-block (match-beginning 0))
  972. (end-block (match-end 0))
  973. (lang (match-string 2))
  974. (beg-lang (match-beginning 2))
  975. (end-lang (match-end 2))
  976. (switches (match-string 3))
  977. (beg-switches (match-beginning 3))
  978. (end-switches (match-end 3))
  979. (header-args (match-string 4))
  980. (beg-header-args (match-beginning 4))
  981. (end-header-args (match-end 4))
  982. (body (match-string 5))
  983. (beg-body (match-beginning 5))
  984. (end-body (match-end 5)))
  985. ;; Silence byte-compiler in case `body' doesn't use all
  986. ;; those variables.
  987. (ignore full-block beg-block end-block lang
  988. beg-lang end-lang switches beg-switches
  989. end-switches header-args beg-header-args
  990. end-header-args body beg-body end-body)
  991. ,@body
  992. (goto-char end-block)))))
  993. (unless visited-p (kill-buffer to-be-removed))
  994. (goto-char point))))
  995. (def-edebug-spec org-babel-map-src-blocks (form body))
  996. ;;;###autoload
  997. (defmacro org-babel-map-inline-src-blocks (file &rest body)
  998. "Evaluate BODY forms on each inline source block in FILE.
  999. If FILE is nil evaluate BODY forms on source blocks in current
  1000. buffer."
  1001. (declare (indent 1) (debug (form body)))
  1002. (org-with-gensyms (datum end point tempvar to-be-removed visitedp)
  1003. `(let* ((case-fold-search t)
  1004. (,tempvar ,file)
  1005. (,visitedp (or (null ,tempvar)
  1006. (get-file-buffer (expand-file-name ,tempvar))))
  1007. (,point (point))
  1008. ,to-be-removed)
  1009. (save-window-excursion
  1010. (when ,tempvar (find-file ,tempvar))
  1011. (setq ,to-be-removed (current-buffer))
  1012. (goto-char (point-min))
  1013. (while (re-search-forward "src_\\S-" nil t)
  1014. (let ((,datum (save-match-data (org-element-context))))
  1015. (when (eq (org-element-type ,datum) 'inline-src-block)
  1016. (goto-char (match-beginning 0))
  1017. (let ((,end (copy-marker (org-element-property :end ,datum))))
  1018. ,@body
  1019. (goto-char ,end)
  1020. (set-marker ,end nil))))))
  1021. (unless ,visitedp (kill-buffer ,to-be-removed))
  1022. (goto-char ,point))))
  1023. ;;;###autoload
  1024. (defmacro org-babel-map-call-lines (file &rest body)
  1025. "Evaluate BODY forms on each call line in FILE.
  1026. If FILE is nil evaluate BODY forms on source blocks in current
  1027. buffer."
  1028. (declare (indent 1) (debug (form body)))
  1029. (org-with-gensyms (datum end point tempvar to-be-removed visitedp)
  1030. `(let* ((case-fold-search t)
  1031. (,tempvar ,file)
  1032. (,visitedp (or (null ,tempvar)
  1033. (get-file-buffer (expand-file-name ,tempvar))))
  1034. (,point (point))
  1035. ,to-be-removed)
  1036. (save-window-excursion
  1037. (when ,tempvar (find-file ,tempvar))
  1038. (setq ,to-be-removed (current-buffer))
  1039. (goto-char (point-min))
  1040. (while (re-search-forward "call_\\S-\\|^[ \t]*#\\+CALL:" nil t)
  1041. (let ((,datum (save-match-data (org-element-context))))
  1042. (when (memq (org-element-type ,datum)
  1043. '(babel-call inline-babel-call))
  1044. (goto-char (match-beginning 0))
  1045. (let ((,end (copy-marker (org-element-property :end ,datum))))
  1046. ,@body
  1047. (goto-char ,end)
  1048. (set-marker ,end nil))))))
  1049. (unless ,visitedp (kill-buffer ,to-be-removed))
  1050. (goto-char ,point))))
  1051. ;;;###autoload
  1052. (defmacro org-babel-map-executables (file &rest body)
  1053. "Evaluate BODY forms on each active Babel code in FILE.
  1054. If FILE is nil evaluate BODY forms on source blocks in current
  1055. buffer."
  1056. (declare (indent 1) (debug (form body)))
  1057. (org-with-gensyms (datum end point tempvar to-be-removed visitedp)
  1058. `(let* ((case-fold-search t)
  1059. (,tempvar ,file)
  1060. (,visitedp (or (null ,tempvar)
  1061. (get-file-buffer (expand-file-name ,tempvar))))
  1062. (,point (point))
  1063. ,to-be-removed)
  1064. (save-window-excursion
  1065. (when ,tempvar (find-file ,tempvar))
  1066. (setq ,to-be-removed (current-buffer))
  1067. (goto-char (point-min))
  1068. (while (re-search-forward
  1069. "\\(call\\|src\\)_\\|^[ \t]*#\\+\\(BEGIN_SRC\\|CALL:\\)" nil t)
  1070. (let ((,datum (save-match-data (org-element-context))))
  1071. (when (memq (org-element-type ,datum)
  1072. '(babel-call inline-babel-call inline-src-block
  1073. src-block))
  1074. (goto-char (match-beginning 0))
  1075. (let ((,end (copy-marker (org-element-property :end ,datum))))
  1076. ,@body
  1077. (goto-char ,end)
  1078. (set-marker ,end nil))))))
  1079. (unless ,visitedp (kill-buffer ,to-be-removed))
  1080. (goto-char ,point))))
  1081. ;;;###autoload
  1082. (defun org-babel-execute-buffer (&optional arg)
  1083. "Execute source code blocks in a buffer.
  1084. Call `org-babel-execute-src-block' on every source block in
  1085. the current buffer."
  1086. (interactive "P")
  1087. (org-babel-eval-wipe-error-buffer)
  1088. (org-save-outline-visibility t
  1089. (org-babel-map-executables nil
  1090. (if (memq (org-element-type (org-element-context))
  1091. '(babel-call inline-babel-call))
  1092. (org-babel-lob-execute-maybe)
  1093. (org-babel-execute-src-block arg)))))
  1094. ;;;###autoload
  1095. (defun org-babel-execute-subtree (&optional arg)
  1096. "Execute source code blocks in a subtree.
  1097. Call `org-babel-execute-src-block' on every source block in
  1098. the current subtree."
  1099. (interactive "P")
  1100. (save-restriction
  1101. (save-excursion
  1102. (org-narrow-to-subtree)
  1103. (org-babel-execute-buffer arg)
  1104. (widen))))
  1105. ;;;###autoload
  1106. (defun org-babel-sha1-hash (&optional info)
  1107. "Generate an sha1 hash based on the value of info."
  1108. (interactive)
  1109. (let ((print-level nil)
  1110. (info (or info (org-babel-get-src-block-info))))
  1111. (setf (nth 2 info)
  1112. (sort (copy-sequence (nth 2 info))
  1113. (lambda (a b) (string< (car a) (car b)))))
  1114. (let* ((rm (lambda (lst)
  1115. (dolist (p '("replace" "silent" "none"
  1116. "append" "prepend"))
  1117. (setq lst (remove p lst)))
  1118. lst))
  1119. (norm (lambda (arg)
  1120. (let ((v (if (and (listp (cdr arg)) (null (cddr arg)))
  1121. (copy-sequence (cdr arg))
  1122. (cdr arg))))
  1123. (when (and v (not (and (sequencep v)
  1124. (not (consp v))
  1125. (= (length v) 0))))
  1126. (cond
  1127. ((and (listp v) ; lists are sorted
  1128. (member (car arg) '(:result-params)))
  1129. (sort (funcall rm v) #'string<))
  1130. ((and (stringp v) ; strings are sorted
  1131. (member (car arg) '(:results :exports)))
  1132. (mapconcat #'identity (sort (funcall rm (split-string v))
  1133. #'string<) " "))
  1134. (t v))))))
  1135. ;; expanded body
  1136. (lang (nth 0 info))
  1137. (params (nth 2 info))
  1138. (body (if (org-babel-noweb-p params :eval)
  1139. (org-babel-expand-noweb-references info) (nth 1 info)))
  1140. (expand-cmd (intern (concat "org-babel-expand-body:" lang)))
  1141. (assignments-cmd (intern (concat "org-babel-variable-assignments:"
  1142. lang)))
  1143. (expanded
  1144. (if (fboundp expand-cmd) (funcall expand-cmd body params)
  1145. (org-babel-expand-body:generic
  1146. body params (and (fboundp assignments-cmd)
  1147. (funcall assignments-cmd params))))))
  1148. (let* ((it (format "%s-%s"
  1149. (mapconcat
  1150. #'identity
  1151. (delq nil (mapcar (lambda (arg)
  1152. (let ((normalized (funcall norm arg)))
  1153. (when normalized
  1154. (format "%S" normalized))))
  1155. (nth 2 info))) ":")
  1156. expanded))
  1157. (hash (sha1 it)))
  1158. (when (called-interactively-p 'interactive) (message hash))
  1159. hash))))
  1160. (defun org-babel-current-result-hash (&optional info)
  1161. "Return the current in-buffer hash."
  1162. (let ((result (org-babel-where-is-src-block-result nil info)))
  1163. (when result
  1164. (org-with-wide-buffer
  1165. (goto-char result)
  1166. (looking-at org-babel-result-regexp)
  1167. (match-string-no-properties 1)))))
  1168. (defun org-babel-set-current-result-hash (hash info)
  1169. "Set the current in-buffer hash to HASH."
  1170. (org-with-wide-buffer
  1171. (goto-char (org-babel-where-is-src-block-result nil info))
  1172. (looking-at org-babel-result-regexp)
  1173. (goto-char (match-beginning 1))
  1174. (mapc #'delete-overlay (overlays-at (point)))
  1175. (forward-char org-babel-hash-show)
  1176. (mapc #'delete-overlay (overlays-at (point)))
  1177. (replace-match hash nil nil nil 1)
  1178. (beginning-of-line)
  1179. (org-babel-hide-hash)))
  1180. (defun org-babel-hide-hash ()
  1181. "Hide the hash in the current results line.
  1182. Only the initial `org-babel-hash-show' characters of the hash
  1183. will remain visible."
  1184. (add-to-invisibility-spec '(org-babel-hide-hash . t))
  1185. (save-excursion
  1186. (when (and (re-search-forward org-babel-result-regexp nil t)
  1187. (match-string 1))
  1188. (let* ((start (match-beginning 1))
  1189. (hide-start (+ org-babel-hash-show start))
  1190. (end (match-end 1))
  1191. (hash (match-string 1))
  1192. ov1 ov2)
  1193. (setq ov1 (make-overlay start hide-start))
  1194. (setq ov2 (make-overlay hide-start end))
  1195. (overlay-put ov2 'invisible 'org-babel-hide-hash)
  1196. (overlay-put ov1 'babel-hash hash)))))
  1197. (defun org-babel-hide-all-hashes ()
  1198. "Hide the hash in the current buffer.
  1199. Only the initial `org-babel-hash-show' characters of each hash
  1200. will remain visible. This function should be called as part of
  1201. the `org-mode-hook'."
  1202. (save-excursion
  1203. (while (and (not org-babel-hash-show-time)
  1204. (re-search-forward org-babel-result-regexp nil t))
  1205. (goto-char (match-beginning 0))
  1206. (org-babel-hide-hash)
  1207. (goto-char (match-end 0)))))
  1208. (add-hook 'org-mode-hook 'org-babel-hide-all-hashes)
  1209. (defun org-babel-hash-at-point (&optional point)
  1210. "Return the value of the hash at POINT.
  1211. \\<org-mode-map>\
  1212. The hash is also added as the last element of the kill ring.
  1213. This can be called with `\\[org-ctrl-c-ctrl-c]'."
  1214. (interactive)
  1215. (let ((hash (car (delq nil (mapcar
  1216. (lambda (ol) (overlay-get ol 'babel-hash))
  1217. (overlays-at (or point (point))))))))
  1218. (when hash (kill-new hash) (message hash))))
  1219. (defun org-babel-result-hide-spec ()
  1220. "Hide portions of results lines.
  1221. Add `org-babel-hide-result' as an invisibility spec for hiding
  1222. portions of results lines."
  1223. (add-to-invisibility-spec '(org-babel-hide-result . t)))
  1224. (add-hook 'org-mode-hook 'org-babel-result-hide-spec)
  1225. (defvar org-babel-hide-result-overlays nil
  1226. "Overlays hiding results.")
  1227. (defun org-babel-result-hide-all ()
  1228. "Fold all results in the current buffer."
  1229. (interactive)
  1230. (org-babel-show-result-all)
  1231. (save-excursion
  1232. (while (re-search-forward org-babel-result-regexp nil t)
  1233. (save-excursion (goto-char (match-beginning 0))
  1234. (org-babel-hide-result-toggle-maybe)))))
  1235. (defun org-babel-show-result-all ()
  1236. "Unfold all results in the current buffer."
  1237. (mapc 'delete-overlay org-babel-hide-result-overlays)
  1238. (setq org-babel-hide-result-overlays nil))
  1239. ;;;###autoload
  1240. (defun org-babel-hide-result-toggle-maybe ()
  1241. "Toggle visibility of result at point."
  1242. (interactive)
  1243. (let ((case-fold-search t))
  1244. (if (save-excursion
  1245. (beginning-of-line 1)
  1246. (looking-at org-babel-result-regexp))
  1247. (progn (org-babel-hide-result-toggle)
  1248. t) ;; to signal that we took action
  1249. nil))) ;; to signal that we did not
  1250. (defun org-babel-hide-result-toggle (&optional force)
  1251. "Toggle the visibility of the current result."
  1252. (interactive)
  1253. (save-excursion
  1254. (beginning-of-line)
  1255. (if (re-search-forward org-babel-result-regexp nil t)
  1256. (let ((start (progn (beginning-of-line 2) (- (point) 1)))
  1257. (end (progn
  1258. (while (looking-at org-babel-multi-line-header-regexp)
  1259. (forward-line 1))
  1260. (goto-char (- (org-babel-result-end) 1)) (point)))
  1261. ov)
  1262. (if (memq t (mapcar (lambda (overlay)
  1263. (eq (overlay-get overlay 'invisible)
  1264. 'org-babel-hide-result))
  1265. (overlays-at start)))
  1266. (when (or (not force) (eq force 'off))
  1267. (mapc (lambda (ov)
  1268. (when (member ov org-babel-hide-result-overlays)
  1269. (setq org-babel-hide-result-overlays
  1270. (delq ov org-babel-hide-result-overlays)))
  1271. (when (eq (overlay-get ov 'invisible)
  1272. 'org-babel-hide-result)
  1273. (delete-overlay ov)))
  1274. (overlays-at start)))
  1275. (setq ov (make-overlay start end))
  1276. (overlay-put ov 'invisible 'org-babel-hide-result)
  1277. ;; make the block accessible to isearch
  1278. (overlay-put
  1279. ov 'isearch-open-invisible
  1280. (lambda (ov)
  1281. (when (member ov org-babel-hide-result-overlays)
  1282. (setq org-babel-hide-result-overlays
  1283. (delq ov org-babel-hide-result-overlays)))
  1284. (when (eq (overlay-get ov 'invisible)
  1285. 'org-babel-hide-result)
  1286. (delete-overlay ov))))
  1287. (push ov org-babel-hide-result-overlays)))
  1288. (error "Not looking at a result line"))))
  1289. ;; org-tab-after-check-for-cycling-hook
  1290. (add-hook 'org-tab-first-hook 'org-babel-hide-result-toggle-maybe)
  1291. ;; Remove overlays when changing major mode
  1292. (add-hook 'org-mode-hook
  1293. (lambda () (add-hook 'change-major-mode-hook
  1294. 'org-babel-show-result-all 'append 'local)))
  1295. (defvar org-file-properties)
  1296. (defun org-babel-params-from-properties (&optional lang)
  1297. "Retrieve parameters specified as properties.
  1298. Return a list of association lists of source block params
  1299. specified in the properties of the current outline entry."
  1300. (save-match-data
  1301. (list
  1302. ;; header arguments specified with the header-args property at
  1303. ;; point of call.
  1304. (org-babel-parse-header-arguments
  1305. (org-entry-get org-babel-current-src-block-location
  1306. "header-args"
  1307. 'inherit))
  1308. (and lang ; language-specific header arguments at point of call
  1309. (org-babel-parse-header-arguments
  1310. (org-entry-get org-babel-current-src-block-location
  1311. (concat "header-args:" lang)
  1312. 'inherit))))))
  1313. (defun org-babel-balanced-split (string alts)
  1314. "Split STRING on instances of ALTS.
  1315. ALTS is a character, or cons of two character options where each
  1316. option may be either the numeric code of a single character or
  1317. a list of character alternatives. For example, to split on
  1318. balanced instances of \"[ \t]:\", set ALTS to ((32 9) . 58)."
  1319. (with-temp-buffer
  1320. (insert string)
  1321. (goto-char (point-min))
  1322. (let ((splitp (lambda (past next)
  1323. ;; Non-nil when there should be a split after NEXT
  1324. ;; character. PAST is the character before NEXT.
  1325. (pcase alts
  1326. (`(,(and first (pred consp)) . ,(and second (pred consp)))
  1327. (and (memq past first) (memq next second)))
  1328. (`(,first . ,(and second (pred consp)))
  1329. (and (eq past first) (memq next second)))
  1330. (`(,(and first (pred consp)) . ,second)
  1331. (and (memq past first) (eq next second)))
  1332. (`(,first . ,second)
  1333. (and (eq past first) (eq next second)))
  1334. ((pred (eq next)) t)
  1335. (_ nil))))
  1336. (partial nil)
  1337. (result nil))
  1338. (while (not (eobp))
  1339. (cond
  1340. ((funcall splitp (char-before) (char-after))
  1341. ;; There is a split after point. If ALTS is two-folds,
  1342. ;; remove last parsed character as it belongs to ALTS.
  1343. (when (consp alts) (pop partial))
  1344. ;; Include elements parsed so far in RESULTS and flush
  1345. ;; partial parsing.
  1346. (when partial
  1347. (push (apply #'string (nreverse partial)) result)
  1348. (setq partial nil))
  1349. (forward-char))
  1350. ((memq (char-after) '(?\( ?\[))
  1351. ;; Include everything between balanced brackets.
  1352. (let* ((origin (point))
  1353. (after (char-after))
  1354. (openings (list after)))
  1355. (forward-char)
  1356. (while (and openings (re-search-forward "[]()]" nil t))
  1357. (pcase (char-before)
  1358. ((and match (or ?\[ ?\()) (push match openings))
  1359. (?\] (when (eq ?\[ (car openings)) (pop openings)))
  1360. (_ (when (eq ?\( (car openings)) (pop openings)))))
  1361. (if (null openings)
  1362. (setq partial
  1363. (nconc (nreverse (string-to-list
  1364. (buffer-substring origin (point))))
  1365. partial))
  1366. ;; Un-balanced bracket. Backtrack.
  1367. (push after partial)
  1368. (goto-char (1+ origin)))))
  1369. ((and (eq ?\" (char-after)) (not (eq ?\\ (char-before))))
  1370. ;; Include everything from current double quote to next
  1371. ;; non-escaped double quote.
  1372. (let ((origin (point)))
  1373. (if (re-search-forward "[^\\]\"" nil t)
  1374. (setq partial
  1375. (nconc (nreverse (string-to-list
  1376. (buffer-substring origin (point))))
  1377. partial))
  1378. ;; No closing double quote. Backtrack.
  1379. (push ?\" partial)
  1380. (forward-char))))
  1381. (t (push (char-after) partial)
  1382. (forward-char))))
  1383. ;; Add pending parsing and return result.
  1384. (when partial (push (apply #'string (nreverse partial)) result))
  1385. (nreverse result))))
  1386. (defun org-babel-join-splits-near-ch (ch list)
  1387. "Join splits where \"=\" is on either end of the split."
  1388. (let ((last= (lambda (str) (= ch (aref str (1- (length str))))))
  1389. (first= (lambda (str) (= ch (aref str 0)))))
  1390. (reverse
  1391. (cl-reduce (lambda (acc el)
  1392. (let ((head (car acc)))
  1393. (if (and head (or (funcall last= head) (funcall first= el)))
  1394. (cons (concat head el) (cdr acc))
  1395. (cons el acc))))
  1396. list :initial-value nil))))
  1397. (defun org-babel-parse-header-arguments (arg-string)
  1398. "Parse a string of header arguments returning an alist."
  1399. (when (> (length arg-string) 0)
  1400. (org-babel-parse-multiple-vars
  1401. (delq nil
  1402. (mapcar
  1403. (lambda (arg)
  1404. (if (string-match
  1405. "\\([^ \f\t\n\r\v]+\\)[ \f\t\n\r\v]+\\([^ \f\t\n\r\v]+.*\\)"
  1406. arg)
  1407. (cons (intern (match-string 1 arg))
  1408. (org-babel-read (org-babel-chomp (match-string 2 arg))))
  1409. (cons (intern (org-babel-chomp arg)) nil)))
  1410. (let ((raw (org-babel-balanced-split arg-string '((32 9) . 58))))
  1411. (cons (car raw) (mapcar (lambda (r) (concat ":" r)) (cdr raw)))))))))
  1412. (defun org-babel-parse-multiple-vars (header-arguments)
  1413. "Expand multiple variable assignments behind a single :var keyword.
  1414. This allows expression of multiple variables with one :var as
  1415. shown below.
  1416. #+PROPERTY: var foo=1, bar=2"
  1417. (let (results)
  1418. (mapc (lambda (pair)
  1419. (if (eq (car pair) :var)
  1420. (mapcar (lambda (v) (push (cons :var (org-trim v)) results))
  1421. (org-babel-join-splits-near-ch
  1422. 61 (org-babel-balanced-split (cdr pair) 32)))
  1423. (push pair results)))
  1424. header-arguments)
  1425. (nreverse results)))
  1426. (defun org-babel-process-params (params)
  1427. "Expand variables in PARAMS and add summary parameters."
  1428. (let* ((processed-vars (mapcar (lambda (el)
  1429. (if (consp el)
  1430. el
  1431. (org-babel-ref-parse el)))
  1432. (org-babel--get-vars params)))
  1433. (vars-and-names (if (and (assq :colname-names params)
  1434. (assq :rowname-names params))
  1435. (list processed-vars)
  1436. (org-babel-disassemble-tables
  1437. processed-vars
  1438. (cdr (assq :hlines params))
  1439. (cdr (assq :colnames params))
  1440. (cdr (assq :rownames params)))))
  1441. (raw-result (or (cdr (assq :results params)) ""))
  1442. (result-params (delete-dups
  1443. (append
  1444. (split-string (if (stringp raw-result)
  1445. raw-result
  1446. (eval raw-result t)))
  1447. (cdr (assq :result-params params))))))
  1448. (append
  1449. (mapcar (lambda (var) (cons :var var)) (car vars-and-names))
  1450. (list
  1451. (cons :colname-names (or (cdr (assq :colname-names params))
  1452. (cadr vars-and-names)))
  1453. (cons :rowname-names (or (cdr (assq :rowname-names params))
  1454. (cl-caddr vars-and-names)))
  1455. (cons :result-params result-params)
  1456. (cons :result-type (cond ((member "output" result-params) 'output)
  1457. ((member "value" result-params) 'value)
  1458. (t 'value))))
  1459. (cl-remove-if
  1460. (lambda (x) (memq (car x) '(:colname-names :rowname-names :result-params
  1461. :result-type :var)))
  1462. params))))
  1463. ;; row and column names
  1464. (defun org-babel-del-hlines (table)
  1465. "Remove all `hline's from TABLE."
  1466. (remq 'hline table))
  1467. (defun org-babel-get-colnames (table)
  1468. "Return the column names of TABLE.
  1469. Return a cons cell, the `car' of which contains the TABLE less
  1470. colnames, and the `cdr' of which contains a list of the column
  1471. names."
  1472. (if (eq 'hline (nth 1 table))
  1473. (cons (cddr table) (car table))
  1474. (cons (cdr table) (car table))))
  1475. (defun org-babel-get-rownames (table)
  1476. "Return the row names of TABLE.
  1477. Return a cons cell, the `car' of which contains the TABLE less
  1478. rownames, and the `cdr' of which contains a list of the rownames.
  1479. Note: this function removes any hlines in TABLE."
  1480. (let* ((table (org-babel-del-hlines table))
  1481. (rownames (funcall (lambda ()
  1482. (let ((tp table))
  1483. (mapcar
  1484. (lambda (_row)
  1485. (prog1
  1486. (pop (car tp))
  1487. (setq tp (cdr tp))))
  1488. table))))))
  1489. (cons table rownames)))
  1490. (defun org-babel-put-colnames (table colnames)
  1491. "Add COLNAMES to TABLE if they exist."
  1492. (if colnames (apply 'list colnames 'hline table) table))
  1493. (defun org-babel-put-rownames (table rownames)
  1494. "Add ROWNAMES to TABLE if they exist."
  1495. (if rownames
  1496. (mapcar (lambda (row)
  1497. (if (listp row)
  1498. (cons (or (pop rownames) "") row)
  1499. row)) table)
  1500. table))
  1501. (defun org-babel-pick-name (names selector)
  1502. "Select one out of an alist of row or column names.
  1503. SELECTOR can be either a list of names in which case those names
  1504. will be returned directly, or an index into the list NAMES in
  1505. which case the indexed names will be return."
  1506. (if (listp selector)
  1507. selector
  1508. (when names
  1509. (if (and selector (symbolp selector) (not (equal t selector)))
  1510. (cdr (assoc selector names))
  1511. (if (integerp selector)
  1512. (nth (- selector 1) names)
  1513. (cdr (car (last names))))))))
  1514. (defun org-babel-disassemble-tables (vars hlines colnames rownames)
  1515. "Parse tables for further processing.
  1516. Process the variables in VARS according to the HLINES,
  1517. ROWNAMES and COLNAMES header arguments. Return a list consisting
  1518. of the vars, cnames and rnames."
  1519. (let (cnames rnames)
  1520. (list
  1521. (mapcar
  1522. (lambda (var)
  1523. (when (listp (cdr var))
  1524. (when (and (not (equal colnames "no"))
  1525. (or colnames (and (eq (nth 1 (cdr var)) 'hline)
  1526. (not (member 'hline (cddr (cdr var)))))))
  1527. (let ((both (org-babel-get-colnames (cdr var))))
  1528. (setq cnames (cons (cons (car var) (cdr both))
  1529. cnames))
  1530. (setq var (cons (car var) (car both)))))
  1531. (when (and rownames (not (equal rownames "no")))
  1532. (let ((both (org-babel-get-rownames (cdr var))))
  1533. (setq rnames (cons (cons (car var) (cdr both))
  1534. rnames))
  1535. (setq var (cons (car var) (car both)))))
  1536. (when (and hlines (not (equal hlines "yes")))
  1537. (setq var (cons (car var) (org-babel-del-hlines (cdr var))))))
  1538. var)
  1539. vars)
  1540. (reverse cnames) (reverse rnames))))
  1541. (defun org-babel-reassemble-table (table colnames rownames)
  1542. "Add column and row names to a table.
  1543. Given a TABLE and set of COLNAMES and ROWNAMES add the names
  1544. to the table for reinsertion to org-mode."
  1545. (if (listp table)
  1546. (let ((table (if (and rownames (= (length table) (length rownames)))
  1547. (org-babel-put-rownames table rownames) table)))
  1548. (if (and colnames (listp (car table)) (= (length (car table))
  1549. (length colnames)))
  1550. (org-babel-put-colnames table colnames) table))
  1551. table))
  1552. (defun org-babel-where-is-src-block-head (&optional src-block)
  1553. "Find where the current source block begins.
  1554. If optional argument SRC-BLOCK is `src-block' type element, find
  1555. its current beginning instead.
  1556. Return the point at the beginning of the current source block.
  1557. Specifically at the beginning of the #+BEGIN_SRC line. Also set
  1558. match-data relatively to `org-babel-src-block-regexp', which see.
  1559. If the point is not on a source block then return nil."
  1560. (let ((element (or src-block (org-element-at-point))))
  1561. (when (eq (org-element-type element) 'src-block)
  1562. (let ((end (org-element-property :end element)))
  1563. (org-with-wide-buffer
  1564. ;; Ensure point is not on a blank line after the block.
  1565. (beginning-of-line)
  1566. (skip-chars-forward " \r\t\n" end)
  1567. (when (< (point) end)
  1568. (prog1 (goto-char (org-element-property :post-affiliated element))
  1569. (looking-at org-babel-src-block-regexp))))))))
  1570. ;;;###autoload
  1571. (defun org-babel-goto-src-block-head ()
  1572. "Go to the beginning of the current code block."
  1573. (interactive)
  1574. (let ((head (org-babel-where-is-src-block-head)))
  1575. (if head (goto-char head) (error "Not currently in a code block"))))
  1576. ;;;###autoload
  1577. (defun org-babel-goto-named-src-block (name)
  1578. "Go to a named source-code block."
  1579. (interactive
  1580. (let ((completion-ignore-case t)
  1581. (case-fold-search t)
  1582. (all-block-names (org-babel-src-block-names)))
  1583. (list (completing-read
  1584. "source-block name: " all-block-names nil t
  1585. (let* ((context (org-element-context))
  1586. (type (org-element-type context))
  1587. (noweb-ref
  1588. (and (memq type '(inline-src-block src-block))
  1589. (org-in-regexp (org-babel-noweb-wrap)))))
  1590. (cond
  1591. (noweb-ref
  1592. (buffer-substring
  1593. (+ (car noweb-ref) (length org-babel-noweb-wrap-start))
  1594. (- (cdr noweb-ref) (length org-babel-noweb-wrap-end))))
  1595. ((memq type '(babel-call inline-babel-call)) ;#+CALL:
  1596. (org-element-property :call context))
  1597. ((car (org-element-property :results context))) ;#+RESULTS:
  1598. ((let ((symbol (thing-at-point 'symbol))) ;Symbol.
  1599. (and symbol
  1600. (member-ignore-case symbol all-block-names)
  1601. symbol)))
  1602. (t "")))))))
  1603. (let ((point (org-babel-find-named-block name)))
  1604. (if point
  1605. ;; Taken from `org-open-at-point'.
  1606. (progn (org-mark-ring-push) (goto-char point) (org-show-context))
  1607. (message "source-code block `%s' not found in this buffer" name))))
  1608. (defun org-babel-find-named-block (name)
  1609. "Find a named source-code block.
  1610. Return the location of the source block identified by source
  1611. NAME, or nil if no such block exists. Set match data according
  1612. to `org-babel-named-src-block-regexp'."
  1613. (save-excursion
  1614. (goto-char (point-min))
  1615. (ignore-errors
  1616. (org-next-block 1 nil (org-babel-named-src-block-regexp-for-name name)))))
  1617. (defun org-babel-src-block-names (&optional file)
  1618. "Returns the names of source blocks in FILE or the current buffer."
  1619. (when file (find-file file))
  1620. (save-excursion
  1621. (goto-char (point-min))
  1622. (let ((re (org-babel-named-src-block-regexp-for-name))
  1623. names)
  1624. (while (ignore-errors (org-next-block 1 nil re))
  1625. (push (match-string-no-properties 9) names))
  1626. names)))
  1627. ;;;###autoload
  1628. (defun org-babel-goto-named-result (name)
  1629. "Go to a named result."
  1630. (interactive
  1631. (let ((completion-ignore-case t))
  1632. (list (completing-read "Source-block name: "
  1633. (org-babel-result-names) nil t))))
  1634. (let ((point (org-babel-find-named-result name)))
  1635. (if point
  1636. ;; taken from `org-open-at-point'
  1637. (progn (goto-char point) (org-show-context))
  1638. (message "result `%s' not found in this buffer" name))))
  1639. (defun org-babel-find-named-result (name)
  1640. "Find a named result.
  1641. Return the location of the result named NAME in the current
  1642. buffer or nil if no such result exists."
  1643. (save-excursion
  1644. (goto-char (point-min))
  1645. (let ((case-fold-search t)
  1646. (re (format "^[ \t]*#\\+%s.*?:[ \t]*%s[ \t]*$"
  1647. org-babel-results-keyword
  1648. (regexp-quote name))))
  1649. (catch :found
  1650. (while (re-search-forward re nil t)
  1651. (let ((element (org-element-at-point)))
  1652. (when (or (eq (org-element-type element) 'keyword)
  1653. (< (point)
  1654. (org-element-property :post-affiliated element)))
  1655. (throw :found (line-beginning-position)))))))))
  1656. (defun org-babel-result-names (&optional file)
  1657. "Returns the names of results in FILE or the current buffer."
  1658. (save-excursion
  1659. (when file (find-file file)) (goto-char (point-min))
  1660. (let ((case-fold-search t) names)
  1661. (while (re-search-forward org-babel-result-w-name-regexp nil t)
  1662. (setq names (cons (match-string-no-properties 9) names)))
  1663. names)))
  1664. ;;;###autoload
  1665. (defun org-babel-next-src-block (&optional arg)
  1666. "Jump to the next source block.
  1667. With optional prefix argument ARG, jump forward ARG many source blocks."
  1668. (interactive "p")
  1669. (org-next-block arg nil org-babel-src-block-regexp))
  1670. ;;;###autoload
  1671. (defun org-babel-previous-src-block (&optional arg)
  1672. "Jump to the previous source block.
  1673. With optional prefix argument ARG, jump backward ARG many source blocks."
  1674. (interactive "p")
  1675. (org-previous-block arg org-babel-src-block-regexp))
  1676. (defvar org-babel-load-languages)
  1677. ;;;###autoload
  1678. (defun org-babel-mark-block ()
  1679. "Mark current src block."
  1680. (interactive)
  1681. (let ((head (org-babel-where-is-src-block-head)))
  1682. (when head
  1683. (save-excursion
  1684. (goto-char head)
  1685. (looking-at org-babel-src-block-regexp))
  1686. (push-mark (match-end 5) nil t)
  1687. (goto-char (match-beginning 5)))))
  1688. (defun org-babel-demarcate-block (&optional arg)
  1689. "Wrap or split the code in the region or on the point.
  1690. When called from inside of a code block the current block is
  1691. split. When called from outside of a code block a new code block
  1692. is created. In both cases if the region is demarcated and if the
  1693. region is not active then the point is demarcated."
  1694. (interactive "P")
  1695. (let* ((info (org-babel-get-src-block-info 'light))
  1696. (start (org-babel-where-is-src-block-head))
  1697. (block (and start (match-string 0)))
  1698. (headers (and start (match-string 4)))
  1699. (stars (concat (make-string (or (org-current-level) 1) ?*) " "))
  1700. (lower-case-p (and block
  1701. (let (case-fold-search)
  1702. (string-match-p "#\\+begin_src" block)))))
  1703. (if info
  1704. (mapc
  1705. (lambda (place)
  1706. (save-excursion
  1707. (goto-char place)
  1708. (let ((lang (nth 0 info))
  1709. (indent (make-string (org-get-indentation) ?\s)))
  1710. (when (string-match "^[[:space:]]*$"
  1711. (buffer-substring (point-at-bol)
  1712. (point-at-eol)))
  1713. (delete-region (point-at-bol) (point-at-eol)))
  1714. (insert (concat
  1715. (if (looking-at "^") "" "\n")
  1716. indent (funcall (if lower-case-p 'downcase 'upcase) "#+end_src\n")
  1717. (if arg stars indent) "\n"
  1718. indent (funcall (if lower-case-p 'downcase 'upcase) "#+begin_src ")
  1719. lang
  1720. (if (> (length headers) 1)
  1721. (concat " " headers) headers)
  1722. (if (looking-at "[\n\r]")
  1723. ""
  1724. (concat "\n" (make-string (current-column) ? )))))))
  1725. (move-end-of-line 2))
  1726. (sort (if (org-region-active-p) (list (mark) (point)) (list (point))) #'>))
  1727. (let ((start (point))
  1728. (lang (completing-read
  1729. "Lang: "
  1730. (mapcar #'symbol-name
  1731. (delete-dups
  1732. (append (mapcar #'car org-babel-load-languages)
  1733. (mapcar (lambda (el) (intern (car el)))
  1734. org-src-lang-modes))))))
  1735. (body (delete-and-extract-region
  1736. (if (org-region-active-p) (mark) (point)) (point))))
  1737. (insert (concat (if (looking-at "^") "" "\n")
  1738. (if arg (concat stars "\n") "")
  1739. (funcall (if lower-case-p 'downcase 'upcase) "#+begin_src ")
  1740. lang "\n"
  1741. body
  1742. (if (or (= (length body) 0)
  1743. (string-suffix-p "\r" body)
  1744. (string-suffix-p "\n" body)) "" "\n")
  1745. (funcall (if lower-case-p 'downcase 'upcase) "#+end_src\n")))
  1746. (goto-char start) (move-end-of-line 1)))))
  1747. (defun org-babel--insert-results-keyword (name hash)
  1748. "Insert RESULTS keyword with NAME value at point.
  1749. If NAME is nil, results are anonymous. HASH is a string used as
  1750. the results hash, or nil. Leave point before the keyword."
  1751. (save-excursion (insert "\n")) ;open line to indent.
  1752. (org-indent-line)
  1753. (delete-char 1)
  1754. (insert (concat "#+" org-babel-results-keyword
  1755. (cond ((not hash) nil)
  1756. (org-babel-hash-show-time
  1757. (format "[%s %s]"
  1758. (format-time-string "<%F %T>")
  1759. hash))
  1760. (t (format "[%s]" hash)))
  1761. ":"
  1762. (when name (concat " " name))
  1763. "\n"))
  1764. ;; Make sure results are going to be followed by at least one blank
  1765. ;; line so they do not get merged with the next element, e.g.,
  1766. ;;
  1767. ;; #+results:
  1768. ;; : 1
  1769. ;;
  1770. ;; : fixed-width area, unrelated to the above.
  1771. (unless (looking-at "^[ \t]*$") (save-excursion (insert "\n")))
  1772. (beginning-of-line 0)
  1773. (when hash (org-babel-hide-hash)))
  1774. (defun org-babel--clear-results-maybe (hash)
  1775. "Clear results when hash doesn't match HASH.
  1776. When results hash does not match HASH, remove RESULTS keyword at
  1777. point, along with related contents. Do nothing if HASH is nil.
  1778. Return a non-nil value if results were cleared. In this case,
  1779. leave point where new results should be inserted."
  1780. (when hash
  1781. (looking-at org-babel-result-regexp)
  1782. (unless (string= (match-string 1) hash)
  1783. (let* ((e (org-element-at-point))
  1784. (post (copy-marker (org-element-property :post-affiliated e))))
  1785. ;; Delete contents.
  1786. (delete-region post
  1787. (save-excursion
  1788. (goto-char (org-element-property :end e))
  1789. (skip-chars-backward " \t\n")
  1790. (line-beginning-position 2)))
  1791. ;; Delete RESULT keyword. However, if RESULTS keyword is
  1792. ;; orphaned, ignore this part. The deletion above already
  1793. ;; took care of it.
  1794. (unless (= (point) post)
  1795. (delete-region (line-beginning-position)
  1796. (line-beginning-position 2)))
  1797. (goto-char post)
  1798. (set-marker post nil)
  1799. t))))
  1800. (defun org-babel-where-is-src-block-result (&optional insert _info hash)
  1801. "Find where the current source block results begin.
  1802. Return the point at the beginning of the result of the current
  1803. source block, specifically at the beginning of the results line.
  1804. If no result exists for this block return nil, unless optional
  1805. argument INSERT is non-nil. In this case, create a results line
  1806. following the source block and return the position at its
  1807. beginning. In the case of inline code, remove the results part
  1808. instead.
  1809. If optional argument HASH is a string, remove contents related to
  1810. RESULTS keyword if its hash is different. Then update the latter
  1811. to HASH."
  1812. (let ((context (org-element-context)))
  1813. (catch :found
  1814. (org-with-wide-buffer
  1815. (pcase (org-element-type context)
  1816. ((or `inline-babel-call `inline-src-block)
  1817. ;; Results for inline objects are located right after them.
  1818. ;; There is no RESULTS line to insert either.
  1819. (let ((limit (org-element-property
  1820. :contents-end (org-element-property :parent context))))
  1821. (goto-char (org-element-property :end context))
  1822. (skip-chars-forward " \t\n" limit)
  1823. (throw :found
  1824. (and
  1825. (< (point) limit)
  1826. (let ((result (org-element-context)))
  1827. (and (eq (org-element-type result) 'macro)
  1828. (string= (org-element-property :key result)
  1829. "results")
  1830. (if (not insert) (point)
  1831. (delete-region
  1832. (point)
  1833. (progn
  1834. (goto-char (org-element-property :end result))
  1835. (skip-chars-backward " \t")
  1836. (point)))
  1837. (point))))))))
  1838. ((or `babel-call `src-block)
  1839. (let* ((name (org-element-property :name context))
  1840. (named-results (and name (org-babel-find-named-result name))))
  1841. (goto-char (or named-results (org-element-property :end context)))
  1842. (cond
  1843. ;; Existing results named after the current source.
  1844. (named-results
  1845. (when (org-babel--clear-results-maybe hash)
  1846. (org-babel--insert-results-keyword name hash))
  1847. (throw :found (point)))
  1848. ;; Named results expect but none to be found.
  1849. (name)
  1850. ;; No possible anonymous results at the very end of
  1851. ;; buffer or outside CONTEXT parent.
  1852. ((eq (point)
  1853. (or (org-element-property
  1854. :contents-end (org-element-property :parent context))
  1855. (point-max))))
  1856. ;; Check if next element is an anonymous result below
  1857. ;; the current block.
  1858. ((let* ((next (org-element-at-point))
  1859. (end (save-excursion
  1860. (goto-char
  1861. (org-element-property :post-affiliated next))
  1862. (line-end-position)))
  1863. (empty-result-re (concat org-babel-result-regexp "$"))
  1864. (case-fold-search t))
  1865. (re-search-forward empty-result-re end t))
  1866. (beginning-of-line)
  1867. (when (org-babel--clear-results-maybe hash)
  1868. (org-babel--insert-results-keyword nil hash))
  1869. (throw :found (point))))))
  1870. ;; Ignore other elements.
  1871. (_ (throw :found nil))))
  1872. ;; No result found. Insert a RESULTS keyword below element, if
  1873. ;; appropriate. In this case, ensure there is an empty line
  1874. ;; after the previous element.
  1875. (when insert
  1876. (save-excursion
  1877. (goto-char (min (org-element-property :end context) (point-max)))
  1878. (skip-chars-backward " \t\n")
  1879. (forward-line)
  1880. (unless (bolp) (insert "\n"))
  1881. (insert "\n")
  1882. (org-babel--insert-results-keyword
  1883. (org-element-property :name context) hash)
  1884. (point))))))
  1885. (defun org-babel-read-element (element)
  1886. "Read ELEMENT into emacs-lisp.
  1887. Return nil if ELEMENT cannot be read."
  1888. (org-with-wide-buffer
  1889. (goto-char (org-element-property :post-affiliated element))
  1890. (pcase (org-element-type element)
  1891. (`fixed-width
  1892. (let ((v (org-trim (org-element-property :value element))))
  1893. (or (org-babel--string-to-number v) v)))
  1894. (`table (org-babel-read-table))
  1895. (`plain-list (org-babel-read-list))
  1896. (`example-block
  1897. (let ((v (org-element-property :value element)))
  1898. (if (or org-src-preserve-indentation
  1899. (org-element-property :preserve-indent element))
  1900. v
  1901. (org-remove-indentation v))))
  1902. (`export-block
  1903. (org-remove-indentation (org-element-property :value element)))
  1904. (`paragraph
  1905. ;; Treat paragraphs containing a single link specially.
  1906. (skip-chars-forward " \t")
  1907. (if (and (looking-at org-bracket-link-regexp)
  1908. (save-excursion
  1909. (goto-char (match-end 0))
  1910. (skip-chars-forward " \r\t\n")
  1911. (<= (org-element-property :end element)
  1912. (point))))
  1913. (org-babel-read-link)
  1914. (buffer-substring-no-properties
  1915. (org-element-property :contents-begin element)
  1916. (org-element-property :contents-end element))))
  1917. ((or `center-block `quote-block `verse-block `special-block)
  1918. (org-remove-indentation
  1919. (buffer-substring-no-properties
  1920. (org-element-property :contents-begin element)
  1921. (org-element-property :contents-end element))))
  1922. (_ nil))))
  1923. (defun org-babel-read-result ()
  1924. "Read the result at point into emacs-lisp."
  1925. (and (not (save-excursion
  1926. (beginning-of-line)
  1927. (looking-at-p "[ \t]*$")))
  1928. (org-babel-read-element (org-element-at-point))))
  1929. (defun org-babel-read-table ()
  1930. "Read the table at point into emacs-lisp."
  1931. (mapcar (lambda (row)
  1932. (if (and (symbolp row) (equal row 'hline)) row
  1933. (mapcar (lambda (el) (org-babel-read el 'inhibit-lisp-eval)) row)))
  1934. (org-table-to-lisp)))
  1935. (defun org-babel-read-list ()
  1936. "Read the list at point into emacs-lisp."
  1937. (mapcar (lambda (el) (org-babel-read el 'inhibit-lisp-eval))
  1938. (cdr (org-list-to-lisp))))
  1939. (defvar org-link-types-re)
  1940. (defun org-babel-read-link ()
  1941. "Read the link at point into emacs-lisp.
  1942. If the path of the link is a file path it is expanded using
  1943. `expand-file-name'."
  1944. (let* ((case-fold-search t)
  1945. (raw (and (looking-at org-bracket-link-regexp)
  1946. (org-no-properties (match-string 1))))
  1947. (type (and (string-match org-link-types-re raw)
  1948. (match-string 1 raw))))
  1949. (cond
  1950. ((not type) (expand-file-name raw))
  1951. ((string= type "file")
  1952. (and (string-match "file\\(.*\\):\\(.+\\)" raw)
  1953. (expand-file-name (match-string 2 raw))))
  1954. (t raw))))
  1955. (defun org-babel-format-result (result &optional sep)
  1956. "Format RESULT for writing to file."
  1957. (let ((echo-res (lambda (r) (if (stringp r) r (format "%S" r)))))
  1958. (if (listp result)
  1959. ;; table result
  1960. (orgtbl-to-generic
  1961. result (list :sep (or sep "\t") :fmt echo-res))
  1962. ;; scalar result
  1963. (funcall echo-res result))))
  1964. (defun org-babel-insert-result (result &optional result-params info hash lang)
  1965. "Insert RESULT into the current buffer.
  1966. By default RESULT is inserted after the end of the current source
  1967. block. The RESULT of an inline source block usually will be
  1968. wrapped inside a `results' macro and placed on the same line as
  1969. the inline source block. The macro is stripped upon export.
  1970. Multiline and non-scalar RESULTS from inline source blocks are
  1971. not allowed. With optional argument RESULT-PARAMS controls
  1972. insertion of results in the Org mode file. RESULT-PARAMS can
  1973. take the following values:
  1974. replace - (default option) insert results after the source block
  1975. or inline source block replacing any previously
  1976. inserted results.
  1977. silent -- no results are inserted into the Org buffer but
  1978. the results are echoed to the minibuffer and are
  1979. ingested by Emacs (a potentially time consuming
  1980. process).
  1981. file ---- the results are interpreted as a file path, and are
  1982. inserted into the buffer using the Org file syntax.
  1983. list ---- the results are interpreted as an Org list.
  1984. raw ----- results are added directly to the Org file. This is
  1985. a good option if you code block will output Org
  1986. formatted text.
  1987. drawer -- results are added directly to the Org file as with
  1988. \"raw\", but are wrapped in a RESULTS drawer or results
  1989. macro, allowing them to later be replaced or removed
  1990. automatically.
  1991. org ----- results are added inside of a \"src_org{}\" or \"#+BEGIN_SRC
  1992. org\" block depending on whether the current source block is
  1993. inline or not. They are not comma-escaped when inserted,
  1994. but Org syntax here will be discarded when exporting the
  1995. file.
  1996. html ---- results are added inside of a #+BEGIN_EXPORT HTML block
  1997. or html export snippet depending on whether the current
  1998. source block is inline or not. This is a good option
  1999. if your code block will output html formatted text.
  2000. latex --- results are added inside of a #+BEGIN_EXPORT LATEX
  2001. block or latex export snippet depending on whether the
  2002. current source block is inline or not. This is a good
  2003. option if your code block will output latex formatted
  2004. text.
  2005. code ---- the results are extracted in the syntax of the source
  2006. code of the language being evaluated and are added
  2007. inside of a source block with the source-code language
  2008. set appropriately. Also, source block inlining is
  2009. preserved in this case. Note this relies on the
  2010. optional LANG argument.
  2011. list ---- the results are rendered as a list. This option not
  2012. allowed for inline src blocks.
  2013. table --- the results are rendered as a table. This option not
  2014. allowed for inline src blocks.
  2015. INFO may provide the values of these header arguments (in the
  2016. `header-arguments-alist' see the docstring for
  2017. `org-babel-get-src-block-info'):
  2018. :file --- the name of the file to which output should be written.
  2019. :wrap --- the effect is similar to `latex' in RESULT-PARAMS but
  2020. using the argument supplied to specify the export block
  2021. or snippet type."
  2022. (cond ((stringp result)
  2023. (setq result (org-no-properties result))
  2024. (when (member "file" result-params)
  2025. (setq result (org-babel-result-to-file
  2026. result (when (assq :file-desc (nth 2 info))
  2027. (or (cdr (assq :file-desc (nth 2 info)))
  2028. result))))))
  2029. ((listp result))
  2030. (t (setq result (format "%S" result))))
  2031. (if (and result-params (member "silent" result-params))
  2032. (progn (message (replace-regexp-in-string "%" "%%" (format "%S" result)))
  2033. result)
  2034. (let ((inline (let ((context (org-element-context)))
  2035. (and (memq (org-element-type context)
  2036. '(inline-babel-call inline-src-block))
  2037. context))))
  2038. (when inline
  2039. (let ((warning
  2040. (or (and (member "table" result-params) "`:results table'")
  2041. (and (listp result) "list result")
  2042. (and (string-match-p "\n." result) "multiline result")
  2043. (and (member "list" result-params) "`:results list'"))))
  2044. (when warning
  2045. (user-error "Inline error: %s cannot be used" warning))))
  2046. (save-excursion
  2047. (let* ((visible-beg (point-min-marker))
  2048. (visible-end (copy-marker (point-max) t))
  2049. (inline (let ((context (org-element-context)))
  2050. (and (memq (org-element-type context)
  2051. '(inline-babel-call inline-src-block))
  2052. context)))
  2053. (existing-result (org-babel-where-is-src-block-result t nil hash))
  2054. (results-switches (cdr (assq :results_switches (nth 2 info))))
  2055. ;; When results exist outside of the current visible
  2056. ;; region of the buffer, be sure to widen buffer to
  2057. ;; update them.
  2058. (outside-scope (and existing-result
  2059. (buffer-narrowed-p)
  2060. (or (> visible-beg existing-result)
  2061. (<= visible-end existing-result))))
  2062. beg end indent)
  2063. ;; Ensure non-inline results end in a newline.
  2064. (when (and (org-string-nw-p result)
  2065. (not inline)
  2066. (not (string-equal (substring result -1) "\n")))
  2067. (setq result (concat result "\n")))
  2068. (unwind-protect
  2069. (progn
  2070. (when outside-scope (widen))
  2071. (if existing-result (goto-char existing-result)
  2072. (goto-char (org-element-property :end inline))
  2073. (skip-chars-backward " \t"))
  2074. (unless inline
  2075. (setq indent (org-get-indentation))
  2076. (forward-line 1))
  2077. (setq beg (point))
  2078. (cond
  2079. (inline
  2080. ;; Make sure new results are separated from the
  2081. ;; source code by one space.
  2082. (unless existing-result
  2083. (insert " ")
  2084. (setq beg (point))))
  2085. ((member "replace" result-params)
  2086. (delete-region (point) (org-babel-result-end)))
  2087. ((member "append" result-params)
  2088. (goto-char (org-babel-result-end)) (setq beg (point-marker)))
  2089. ((member "prepend" result-params))) ; already there
  2090. (setq results-switches
  2091. (if results-switches (concat " " results-switches) ""))
  2092. (let ((wrap (lambda (start finish &optional no-escape no-newlines
  2093. inline-start inline-finish)
  2094. (when inline
  2095. (setq start inline-start)
  2096. (setq finish inline-finish)
  2097. (setq no-newlines t))
  2098. (goto-char end)
  2099. (insert (concat finish (unless no-newlines "\n")))
  2100. (goto-char beg)
  2101. (insert (concat start (unless no-newlines "\n")))
  2102. (unless no-escape
  2103. (org-escape-code-in-region (min (point) end) end))
  2104. (goto-char end)
  2105. (unless no-newlines (goto-char (point-at-eol)))
  2106. (setq end (point-marker))))
  2107. (tabulablep
  2108. (lambda (r)
  2109. ;; Non-nil when result R can be turned into
  2110. ;; a table.
  2111. (and (listp r)
  2112. (null (cdr (last r)))
  2113. (cl-every
  2114. (lambda (e) (or (atom e) (null (cdr (last e)))))
  2115. result)))))
  2116. ;; insert results based on type
  2117. (cond
  2118. ;; Do nothing for an empty result.
  2119. ((null result))
  2120. ;; Insert a list if preferred.
  2121. ((member "list" result-params)
  2122. (insert
  2123. (org-trim
  2124. (org-list-to-generic
  2125. (cons 'unordered
  2126. (mapcar
  2127. (lambda (e)
  2128. (list (if (stringp e) e (format "%S" e))))
  2129. (if (listp result) result
  2130. (split-string result "\n" t))))
  2131. '(:splicep nil :istart "- " :iend "\n")))
  2132. "\n"))
  2133. ;; Try hard to print RESULT as a table. Give up if
  2134. ;; it contains an improper list.
  2135. ((funcall tabulablep result)
  2136. (goto-char beg)
  2137. (insert (concat (orgtbl-to-orgtbl
  2138. (if (cl-every
  2139. (lambda (e)
  2140. (or (eq e 'hline) (listp e)))
  2141. result)
  2142. result
  2143. (list result))
  2144. nil)
  2145. "\n"))
  2146. (goto-char beg)
  2147. (when (org-at-table-p) (org-table-align))
  2148. (goto-char (org-table-end)))
  2149. ;; Print verbatim a list that cannot be turned into
  2150. ;; a table.
  2151. ((listp result) (insert (format "%s\n" result)))
  2152. ((member "file" result-params)
  2153. (when inline
  2154. (setq result (org-macro-escape-arguments result)))
  2155. (insert result))
  2156. ((and inline (not (member "raw" result-params)))
  2157. (insert (org-macro-escape-arguments
  2158. (org-babel-chomp result "\n"))))
  2159. (t (goto-char beg) (insert result)))
  2160. (setq end (point-marker))
  2161. ;; possibly wrap result
  2162. (cond
  2163. ((assq :wrap (nth 2 info))
  2164. (let ((name (or (cdr (assq :wrap (nth 2 info))) "RESULTS")))
  2165. (funcall wrap (concat "#+BEGIN_" name)
  2166. (concat "#+END_" (car (org-split-string name)))
  2167. nil nil (concat "{{{results(@@" name ":") "@@)}}}")))
  2168. ((member "html" result-params)
  2169. (funcall wrap "#+BEGIN_EXPORT html" "#+END_EXPORT" nil nil
  2170. "{{{results(@@html:" "@@)}}}"))
  2171. ((member "latex" result-params)
  2172. (funcall wrap "#+BEGIN_EXPORT latex" "#+END_EXPORT" nil nil
  2173. "{{{results(@@latex:" "@@)}}}"))
  2174. ((member "org" result-params)
  2175. (goto-char beg) (when (org-at-table-p) (org-cycle))
  2176. (funcall wrap "#+BEGIN_SRC org" "#+END_SRC" nil nil
  2177. "{{{results(src_org{" "})}}}"))
  2178. ((member "code" result-params)
  2179. (let ((lang (or lang "none")))
  2180. (funcall wrap (format "#+BEGIN_SRC %s%s" lang results-switches)
  2181. "#+END_SRC" nil nil
  2182. (format "{{{results(src_%s[%s]{" lang results-switches)
  2183. "})}}}")))
  2184. ((member "raw" result-params)
  2185. (goto-char beg) (when (org-at-table-p) (org-cycle)))
  2186. ((or (member "drawer" result-params)
  2187. ;; Stay backward compatible with <7.9.2
  2188. (member "wrap" result-params))
  2189. (goto-char beg) (when (org-at-table-p) (org-cycle))
  2190. (funcall wrap ":RESULTS:" ":END:" 'no-escape nil
  2191. "{{{results(" ")}}}"))
  2192. ((and inline (member "file" result-params))
  2193. (funcall wrap nil nil nil nil "{{{results(" ")}}}"))
  2194. ((and (not (funcall tabulablep result))
  2195. (not (member "file" result-params)))
  2196. (let ((org-babel-inline-result-wrap
  2197. ;; Hard code {{{results(...)}}} on top of customization.
  2198. (format "{{{results(%s)}}}"
  2199. org-babel-inline-result-wrap)))
  2200. (org-babel-examplify-region beg end results-switches inline)
  2201. (setq end (point))))))
  2202. ;; Possibly indent results in par with #+results line.
  2203. (when (and (not inline) (numberp indent) (> indent 0)
  2204. ;; In this case `table-align' does the work
  2205. ;; for us.
  2206. (not (and (listp result)
  2207. (member "append" result-params))))
  2208. (indent-rigidly beg end indent))
  2209. (if (null result)
  2210. (if (member "value" result-params)
  2211. (message "Code block returned no value.")
  2212. (message "Code block produced no output."))
  2213. (message "Code block evaluation complete.")))
  2214. (when outside-scope (narrow-to-region visible-beg visible-end))
  2215. (set-marker visible-beg nil)
  2216. (set-marker visible-end nil)))))))
  2217. (defun org-babel-remove-result (&optional info keep-keyword)
  2218. "Remove the result of the current source block."
  2219. (interactive)
  2220. (let ((location (org-babel-where-is-src-block-result nil info)))
  2221. (when location
  2222. (save-excursion
  2223. (goto-char location)
  2224. (when (looking-at (concat org-babel-result-regexp ".*$"))
  2225. (delete-region
  2226. (if keep-keyword (1+ (match-end 0)) (1- (match-beginning 0)))
  2227. (progn (forward-line 1) (org-babel-result-end))))))))
  2228. (defun org-babel-remove-inline-result (&optional datum)
  2229. "Remove the result of the current inline-src-block or babel call.
  2230. The result must be wrapped in a `results' macro to be removed.
  2231. Leading white space is trimmed."
  2232. (interactive)
  2233. (let* ((el (or datum (org-element-context))))
  2234. (when (memq (org-element-type el) '(inline-src-block inline-babel-call))
  2235. (org-with-wide-buffer
  2236. (goto-char (org-element-property :end el))
  2237. (skip-chars-backward " \t")
  2238. (let ((result (save-excursion
  2239. (skip-chars-forward
  2240. " \t\n"
  2241. (org-element-property
  2242. :contents-end (org-element-property :parent el)))
  2243. (org-element-context))))
  2244. (when (and (eq (org-element-type result) 'macro)
  2245. (string= (org-element-property :key result) "results"))
  2246. (delete-region ; And leading whitespace.
  2247. (point)
  2248. (progn (goto-char (org-element-property :end result))
  2249. (skip-chars-backward " \t\n")
  2250. (point)))))))))
  2251. (defun org-babel-remove-result-one-or-many (x)
  2252. "Remove the result of the current source block.
  2253. If called with a prefix argument, remove all result blocks
  2254. in the buffer."
  2255. (interactive "P")
  2256. (if x
  2257. (org-babel-map-src-blocks nil (org-babel-remove-result))
  2258. (org-babel-remove-result)))
  2259. (defun org-babel-result-end ()
  2260. "Return the point at the end of the current set of results."
  2261. (save-excursion
  2262. (cond
  2263. ((org-at-table-p) (progn (goto-char (org-table-end)) (point)))
  2264. ((org-at-item-p) (let* ((struct (org-list-struct))
  2265. (prvs (org-list-prevs-alist struct)))
  2266. (org-list-get-list-end (point-at-bol) struct prvs)))
  2267. ((let ((case-fold-search t)) (looking-at "^\\([ \t]*\\):results:"))
  2268. (progn (re-search-forward (concat "^" (match-string 1) ":END:"))
  2269. (forward-char 1) (point)))
  2270. (t
  2271. (let ((case-fold-search t))
  2272. (if (looking-at (concat "[ \t]*#\\+begin_\\([^ \t\n\r]+\\)"))
  2273. (progn (re-search-forward (concat "[ \t]*#\\+end_" (match-string 1))
  2274. nil t)
  2275. (forward-char 1))
  2276. (while (looking-at "[ \t]*\\(: \\|:$\\|\\[\\[\\)")
  2277. (forward-line 1))))
  2278. (point)))))
  2279. (defun org-babel-result-to-file (result &optional description)
  2280. "Convert RESULT into an `org-mode' link with optional DESCRIPTION.
  2281. If the `default-directory' is different from the containing
  2282. file's directory then expand relative links."
  2283. (when (stringp result)
  2284. (format "[[file:%s]%s]"
  2285. (if (and default-directory
  2286. buffer-file-name
  2287. (not (string= (expand-file-name default-directory)
  2288. (expand-file-name
  2289. (file-name-directory buffer-file-name)))))
  2290. (expand-file-name result default-directory)
  2291. result)
  2292. (if description (concat "[" description "]") ""))))
  2293. (defvar org-babel-capitalize-example-region-markers nil
  2294. "Make true to capitalize begin/end example markers inserted by code blocks.")
  2295. (defun org-babel-examplify-region (beg end &optional results-switches inline)
  2296. "Comment out region using the inline `==' or `: ' org example quote."
  2297. (interactive "*r")
  2298. (let ((maybe-cap
  2299. (lambda (str)
  2300. (if org-babel-capitalize-example-region-markers (upcase str) str))))
  2301. (if inline
  2302. (save-excursion
  2303. (goto-char beg)
  2304. (insert (format org-babel-inline-result-wrap
  2305. (delete-and-extract-region beg end))))
  2306. (let ((size (count-lines beg end)))
  2307. (save-excursion
  2308. (cond ((= size 0)) ; do nothing for an empty result
  2309. ((< size org-babel-min-lines-for-block-output)
  2310. (goto-char beg)
  2311. (dotimes (_ size)
  2312. (beginning-of-line 1) (insert ": ") (forward-line 1)))
  2313. (t
  2314. (goto-char beg)
  2315. (insert (if results-switches
  2316. (format "%s%s\n"
  2317. (funcall maybe-cap "#+begin_example")
  2318. results-switches)
  2319. (funcall maybe-cap "#+begin_example\n")))
  2320. (let ((p (point)))
  2321. (if (markerp end) (goto-char end) (forward-char (- end beg)))
  2322. (org-escape-code-in-region p (point)))
  2323. (insert (funcall maybe-cap "#+end_example\n")))))))))
  2324. (defun org-babel-update-block-body (new-body)
  2325. "Update the body of the current code block to NEW-BODY."
  2326. (let ((element (org-element-at-point)))
  2327. (unless (eq (org-element-type element) 'src-block)
  2328. (error "Not in a source block"))
  2329. (goto-char (org-babel-where-is-src-block-head element))
  2330. (let* ((ind (org-get-indentation))
  2331. (body-start (line-beginning-position 2))
  2332. (body (org-element-normalize-string
  2333. (if (or org-src-preserve-indentation
  2334. (org-element-property :preserve-indent element))
  2335. new-body
  2336. (with-temp-buffer
  2337. (insert (org-remove-indentation new-body))
  2338. (indent-rigidly
  2339. (point-min)
  2340. (point-max)
  2341. (+ ind org-edit-src-content-indentation))
  2342. (buffer-string))))))
  2343. (delete-region body-start
  2344. (org-with-wide-buffer
  2345. (goto-char (org-element-property :end element))
  2346. (skip-chars-backward " \t\n")
  2347. (line-beginning-position)))
  2348. (goto-char body-start)
  2349. (insert body))))
  2350. (defun org-babel-merge-params (&rest plists)
  2351. "Combine all parameter association lists in PLISTS.
  2352. Later elements of PLISTS override the values of previous elements.
  2353. This takes into account some special considerations for certain
  2354. parameters when merging lists."
  2355. (let* ((results-exclusive-groups
  2356. (mapcar (lambda (group) (mapcar #'symbol-name group))
  2357. (cdr (assq 'results org-babel-common-header-args-w-values))))
  2358. (exports-exclusive-groups
  2359. (mapcar (lambda (group) (mapcar #'symbol-name group))
  2360. (cdr (assq 'exports org-babel-common-header-args-w-values))))
  2361. (merge
  2362. (lambda (exclusive-groups &rest result-params)
  2363. ;; Maintain exclusivity of mutually exclusive parameters,
  2364. ;; as defined in EXCLUSIVE-GROUPS while merging lists in
  2365. ;; RESULT-PARAMS.
  2366. (let (output)
  2367. (dolist (new-params result-params (delete-dups output))
  2368. (dolist (new-param new-params)
  2369. (dolist (exclusive-group exclusive-groups)
  2370. (when (member new-param exclusive-group)
  2371. (setq output (cl-remove-if
  2372. (lambda (o) (member o exclusive-group))
  2373. output))))
  2374. (push new-param output))))))
  2375. (variable-index 0) ;Handle positional arguments.
  2376. clearnames
  2377. params ;Final parameters list.
  2378. ;; Some keywords accept multiple values. We need to treat
  2379. ;; them specially.
  2380. vars results exports)
  2381. (dolist (plist plists)
  2382. (dolist (pair plist)
  2383. (pcase pair
  2384. (`(:var . ,value)
  2385. (let ((name (cond
  2386. ((listp value) (car value))
  2387. ((string-match "^\\([^= \f\t\n\r\v]+\\)[ \t]*=" value)
  2388. (intern (match-string 1 value)))
  2389. (t nil))))
  2390. (cond
  2391. (name
  2392. (setq vars
  2393. (append (if (not (assoc name vars)) vars
  2394. (push name clearnames)
  2395. (cl-remove-if (lambda (p) (equal name (car p)))
  2396. vars))
  2397. (list (cons name pair)))))
  2398. ((and vars (nth variable-index vars))
  2399. ;; If no name is given and we already have named
  2400. ;; variables then assign to named variables in order.
  2401. (let ((name (car (nth variable-index vars))))
  2402. ;; Clear out colnames and rownames for replace vars.
  2403. (push name clearnames)
  2404. (setf (cddr (nth variable-index vars))
  2405. (concat (symbol-name name) "=" value))
  2406. (cl-incf variable-index)))
  2407. (t (error "Variable \"%s\" must be assigned a default value"
  2408. (cdr pair))))))
  2409. (`(:results . ,value)
  2410. (setq results (funcall merge
  2411. results-exclusive-groups
  2412. results
  2413. (split-string
  2414. (if (stringp value) value (eval value t))))))
  2415. (`(,(or :file :file-ext) . ,value)
  2416. ;; `:file' and `:file-ext' are regular keywords but they
  2417. ;; imply a "file" `:results' and a "results" `:exports'.
  2418. (when value
  2419. (setq results
  2420. (funcall merge results-exclusive-groups results '("file")))
  2421. (unless (or (member "both" exports)
  2422. (member "none" exports)
  2423. (member "code" exports))
  2424. (setq exports
  2425. (funcall merge
  2426. exports-exclusive-groups exports '("results"))))
  2427. (push pair params)))
  2428. (`(:exports . ,value)
  2429. (setq exports (funcall merge
  2430. exports-exclusive-groups
  2431. exports
  2432. (split-string (or value "")))))
  2433. ;; Regular keywords: any value overwrites the previous one.
  2434. (_ (setq params (cons pair (assq-delete-all (car pair) params)))))))
  2435. ;; Handle `:var' and clear out colnames and rownames for replaced
  2436. ;; variables.
  2437. (setq params (nconc (mapcar (lambda (v) (cons :var (cddr v))) vars)
  2438. params))
  2439. (dolist (name clearnames)
  2440. (dolist (param '(:colname-names :rowname-names))
  2441. (when (assq param params)
  2442. (setf (cdr (assq param params))
  2443. (cl-remove-if (lambda (pair) (equal name (car pair)))
  2444. (cdr (assq param params))))
  2445. (setq params
  2446. (cl-remove-if (lambda (pair) (and (equal (car pair) param)
  2447. (null (cdr pair))))
  2448. params)))))
  2449. ;; Handle other special keywords, which accept multiple values.
  2450. (setq params (nconc (list (cons :results (mapconcat #'identity results " "))
  2451. (cons :exports (mapconcat #'identity exports " ")))
  2452. params))
  2453. ;; Return merged params.
  2454. params))
  2455. (defvar org-babel-use-quick-and-dirty-noweb-expansion nil
  2456. "Set to true to use regular expressions to expand noweb references.
  2457. This results in much faster noweb reference expansion but does
  2458. not properly allow code blocks to inherit the \":noweb-ref\"
  2459. header argument from buffer or subtree wide properties.")
  2460. (defun org-babel-noweb-p (params context)
  2461. "Check if PARAMS require expansion in CONTEXT.
  2462. CONTEXT may be one of :tangle, :export or :eval."
  2463. (let ((allowed-values (cl-case context
  2464. (:tangle '("yes" "tangle" "no-export" "strip-export"))
  2465. (:eval '("yes" "no-export" "strip-export" "eval"))
  2466. (:export '("yes")))))
  2467. (cl-some (lambda (v) (member v allowed-values))
  2468. (split-string (or (cdr (assq :noweb params)) "")))))
  2469. (defun org-babel-expand-noweb-references (&optional info parent-buffer)
  2470. "Expand Noweb references in the body of the current source code block.
  2471. For example the following reference would be replaced with the
  2472. body of the source-code block named `example-block'.
  2473. <<example-block>>
  2474. Note that any text preceding the <<foo>> construct on a line will
  2475. be interposed between the lines of the replacement text. So for
  2476. example if <<foo>> is placed behind a comment, then the entire
  2477. replacement text will also be commented.
  2478. This function must be called from inside of the buffer containing
  2479. the source-code block which holds BODY.
  2480. In addition the following syntax can be used to insert the
  2481. results of evaluating the source-code block named `example-block'.
  2482. <<example-block()>>
  2483. Any optional arguments can be passed to example-block by placing
  2484. the arguments inside the parenthesis following the convention
  2485. defined by `org-babel-lob'. For example
  2486. <<example-block(a=9)>>
  2487. would set the value of argument \"a\" equal to \"9\". Note that
  2488. these arguments are not evaluated in the current source-code
  2489. block but are passed literally to the \"example-block\"."
  2490. (let* ((parent-buffer (or parent-buffer (current-buffer)))
  2491. (info (or info (org-babel-get-src-block-info 'light)))
  2492. (lang (nth 0 info))
  2493. (body (nth 1 info))
  2494. (ob-nww-start org-babel-noweb-wrap-start)
  2495. (ob-nww-end org-babel-noweb-wrap-end)
  2496. (comment (string= "noweb" (cdr (assq :comments (nth 2 info)))))
  2497. (rx-prefix (concat "\\(" org-babel-src-name-regexp "\\|"
  2498. ":noweb-ref[ \t]+" "\\)"))
  2499. (new-body "")
  2500. (nb-add (lambda (text) (setq new-body (concat new-body text))))
  2501. (c-wrap (lambda (text)
  2502. (with-temp-buffer
  2503. (funcall (intern (concat lang "-mode")))
  2504. (comment-region (point) (progn (insert text) (point)))
  2505. (org-trim (buffer-string)))))
  2506. index source-name evaluate prefix)
  2507. (with-temp-buffer
  2508. (setq-local org-babel-noweb-wrap-start ob-nww-start)
  2509. (setq-local org-babel-noweb-wrap-end ob-nww-end)
  2510. (insert body) (goto-char (point-min))
  2511. (setq index (point))
  2512. (while (and (re-search-forward (org-babel-noweb-wrap) nil t))
  2513. (save-match-data (setf source-name (match-string 1)))
  2514. (save-match-data (setq evaluate (string-match "(.*)" source-name)))
  2515. (save-match-data
  2516. (setq prefix
  2517. (buffer-substring (match-beginning 0)
  2518. (save-excursion
  2519. (beginning-of-line 1) (point)))))
  2520. ;; add interval to new-body (removing noweb reference)
  2521. (goto-char (match-beginning 0))
  2522. (funcall nb-add (buffer-substring index (point)))
  2523. (goto-char (match-end 0))
  2524. (setq index (point))
  2525. (funcall
  2526. nb-add
  2527. (with-current-buffer parent-buffer
  2528. (save-restriction
  2529. (widen)
  2530. (mapconcat ;; Interpose PREFIX between every line.
  2531. #'identity
  2532. (split-string
  2533. (if evaluate
  2534. (let ((raw (org-babel-ref-resolve source-name)))
  2535. (if (stringp raw) raw (format "%S" raw)))
  2536. (or
  2537. ;; Retrieve from the library of babel.
  2538. (nth 2 (assoc (intern source-name)
  2539. org-babel-library-of-babel))
  2540. ;; Return the contents of headlines literally.
  2541. (save-excursion
  2542. (when (org-babel-ref-goto-headline-id source-name)
  2543. (org-babel-ref-headline-body)))
  2544. ;; Find the expansion of reference in this buffer.
  2545. (let ((rx (concat rx-prefix source-name "[ \t\n]"))
  2546. expansion)
  2547. (save-excursion
  2548. (goto-char (point-min))
  2549. (if org-babel-use-quick-and-dirty-noweb-expansion
  2550. (while (re-search-forward rx nil t)
  2551. (let* ((i (org-babel-get-src-block-info 'light))
  2552. (body (org-babel-expand-noweb-references i))
  2553. (sep (or (cdr (assq :noweb-sep (nth 2 i)))
  2554. "\n"))
  2555. (full (if comment
  2556. (let ((cs (org-babel-tangle-comment-links i)))
  2557. (concat (funcall c-wrap (car cs)) "\n"
  2558. body "\n"
  2559. (funcall c-wrap (cadr cs))))
  2560. body)))
  2561. (setq expansion (cons sep (cons full expansion)))))
  2562. (org-babel-map-src-blocks nil
  2563. (let ((i (org-babel-get-src-block-info 'light)))
  2564. (when (equal (or (cdr (assq :noweb-ref (nth 2 i)))
  2565. (nth 4 i))
  2566. source-name)
  2567. (let* ((body (org-babel-expand-noweb-references i))
  2568. (sep (or (cdr (assq :noweb-sep (nth 2 i)))
  2569. "\n"))
  2570. (full (if comment
  2571. (let ((cs (org-babel-tangle-comment-links i)))
  2572. (concat (funcall c-wrap (car cs)) "\n"
  2573. body "\n"
  2574. (funcall c-wrap (cadr cs))))
  2575. body)))
  2576. (setq expansion
  2577. (cons sep (cons full expansion)))))))))
  2578. (and expansion
  2579. (mapconcat #'identity (nreverse (cdr expansion)) "")))
  2580. ;; Possibly raise an error if named block doesn't exist.
  2581. (if (or org-babel-noweb-error-all-langs
  2582. (member lang org-babel-noweb-error-langs))
  2583. (error "%s" (concat
  2584. (org-babel-noweb-wrap source-name)
  2585. "could not be resolved (see "
  2586. "`org-babel-noweb-error-langs')"))
  2587. "")))
  2588. "[\n\r]") (concat "\n" prefix))))))
  2589. (funcall nb-add (buffer-substring index (point-max))))
  2590. new-body))
  2591. (defun org-babel--script-escape-inner (str)
  2592. (let (in-single in-double backslash out)
  2593. (mapc
  2594. (lambda (ch)
  2595. (setq
  2596. out
  2597. (if backslash
  2598. (progn
  2599. (setq backslash nil)
  2600. (cond
  2601. ((and in-single (eq ch ?'))
  2602. ;; Escaped single quote inside single quoted string:
  2603. ;; emit just a single quote, since we've changed the
  2604. ;; outer quotes to double.
  2605. (cons ch out))
  2606. ((eq ch ?\")
  2607. ;; Escaped double quote
  2608. (if in-single
  2609. ;; This should be interpreted as backslash+quote,
  2610. ;; not an escape. Emit a three backslashes
  2611. ;; followed by a quote (because one layer of
  2612. ;; quoting will be stripped by `org-babel-read').
  2613. (append (list ch ?\\ ?\\ ?\\) out)
  2614. ;; Otherwise we are in a double-quoted string. Emit
  2615. ;; a single escaped quote
  2616. (append (list ch ?\\) out)))
  2617. ((eq ch ?\\)
  2618. ;; Escaped backslash: emit a single escaped backslash
  2619. (append (list ?\\ ?\\) out))
  2620. ;; Other: emit a quoted backslash followed by whatever
  2621. ;; the character was (because one layer of quoting will
  2622. ;; be stripped by `org-babel-read').
  2623. (t (append (list ch ?\\ ?\\) out))))
  2624. (cl-case ch
  2625. (?\[ (if (or in-double in-single)
  2626. (cons ?\[ out)
  2627. (cons ?\( out)))
  2628. (?\] (if (or in-double in-single)
  2629. (cons ?\] out)
  2630. (cons ?\) out)))
  2631. (?\{ (if (or in-double in-single)
  2632. (cons ?\{ out)
  2633. (cons ?\( out)))
  2634. (?\} (if (or in-double in-single)
  2635. (cons ?\} out)
  2636. (cons ?\) out)))
  2637. (?, (if (or in-double in-single)
  2638. (cons ?, out) (cons ?\s out)))
  2639. (?\' (if in-double
  2640. (cons ?\' out)
  2641. (setq in-single (not in-single)) (cons ?\" out)))
  2642. (?\" (if in-single
  2643. (append (list ?\" ?\\) out)
  2644. (setq in-double (not in-double)) (cons ?\" out)))
  2645. (?\\ (unless (or in-single in-double)
  2646. (error "Can't handle backslash outside string in `org-babel-script-escape'"))
  2647. (setq backslash t)
  2648. out)
  2649. (t (cons ch out))))))
  2650. (string-to-list str))
  2651. (when (or in-single in-double)
  2652. (error "Unterminated string in `org-babel-script-escape'"))
  2653. (apply #'string (reverse out))))
  2654. (defun org-babel-script-escape (str &optional force)
  2655. "Safely convert tables into elisp lists."
  2656. (unless (stringp str)
  2657. (error "`org-babel-script-escape' expects a string"))
  2658. (let ((escaped
  2659. (cond
  2660. ((and (> (length str) 2)
  2661. (or (and (string-equal "[" (substring str 0 1))
  2662. (string-equal "]" (substring str -1)))
  2663. (and (string-equal "{" (substring str 0 1))
  2664. (string-equal "}" (substring str -1)))
  2665. (and (string-equal "(" (substring str 0 1))
  2666. (string-equal ")" (substring str -1)))))
  2667. (concat "'" (org-babel--script-escape-inner str)))
  2668. ((or force
  2669. (and (> (length str) 2)
  2670. (or (and (string-equal "'" (substring str 0 1))
  2671. (string-equal "'" (substring str -1)))
  2672. ;; We need to pass double-quoted strings
  2673. ;; through the backslash-twiddling bits, even
  2674. ;; though we don't need to change their
  2675. ;; delimiters.
  2676. (and (string-equal "\"" (substring str 0 1))
  2677. (string-equal "\"" (substring str -1))))))
  2678. (org-babel--script-escape-inner str))
  2679. (t str))))
  2680. (condition-case nil (org-babel-read escaped) (error escaped))))
  2681. (defun org-babel-read (cell &optional inhibit-lisp-eval)
  2682. "Convert the string value of CELL to a number if appropriate.
  2683. Otherwise if CELL looks like lisp (meaning it starts with a
  2684. \"(\", \"\\='\", \"\\=`\" or a \"[\") then read and evaluate it as
  2685. lisp, otherwise return it unmodified as a string. Optional
  2686. argument INHIBIT-LISP-EVAL inhibits lisp evaluation for
  2687. situations in which is it not appropriate."
  2688. (cond ((not (org-string-nw-p cell)) cell)
  2689. ((org-babel--string-to-number cell))
  2690. ((and (not inhibit-lisp-eval)
  2691. (or (memq (string-to-char cell) '(?\( ?' ?` ?\[))
  2692. (string= cell "*this*")))
  2693. (eval (read cell) t))
  2694. ((eq (string-to-char cell) ?\") (read cell))
  2695. (t (org-no-properties cell))))
  2696. (defun org-babel--string-to-number (string)
  2697. "If STRING represents a number return its value.
  2698. Otherwise return nil."
  2699. (and (string-match-p "\\`-?[0-9]*\\.?[0-9]*\\'" string)
  2700. (string-to-number string)))
  2701. (defun org-babel-import-elisp-from-file (file-name &optional separator)
  2702. "Read the results located at FILE-NAME into an elisp table.
  2703. If the table is trivial, then return it as a scalar."
  2704. (let (result)
  2705. (save-window-excursion
  2706. (with-temp-buffer
  2707. (condition-case err
  2708. (progn
  2709. (org-table-import file-name separator)
  2710. (delete-file file-name)
  2711. (setq result (mapcar (lambda (row)
  2712. (mapcar #'org-babel-string-read row))
  2713. (org-table-to-lisp))))
  2714. (error (message "Error reading results: %s" err) nil)))
  2715. (if (null (cdr result)) ;; if result is trivial vector, then scalarize it
  2716. (if (consp (car result))
  2717. (if (null (cdr (car result)))
  2718. (caar result)
  2719. result)
  2720. (car result))
  2721. result))))
  2722. (defun org-babel-string-read (cell)
  2723. "Strip nested \"s from around strings."
  2724. (org-babel-read (or (and (stringp cell)
  2725. (string-match "\\\"\\(.+\\)\\\"" cell)
  2726. (match-string 1 cell))
  2727. cell) t))
  2728. (defun org-babel-chomp (string &optional regexp)
  2729. "Strip a trailing space or carriage return from STRING.
  2730. The default regexp used is \"[ \\f\\t\\n\\r\\v]\" but another one
  2731. can be specified as the REGEXP argument."
  2732. (let ((regexp (or regexp "[ \f\t\n\r\v]")))
  2733. (while (and (> (length string) 0)
  2734. (string-match regexp (substring string -1)))
  2735. (setq string (substring string 0 -1)))
  2736. string))
  2737. (defun org-babel-process-file-name (name &optional no-quote-p)
  2738. "Prepare NAME to be used in an external process.
  2739. If NAME specifies a remote location, the remote portion of the
  2740. name is removed, since in that case the process will be executing
  2741. remotely. The file name is then processed by `expand-file-name'.
  2742. Unless second argument NO-QUOTE-P is non-nil, the file name is
  2743. additionally processed by `shell-quote-argument'"
  2744. (let ((f (org-babel-local-file-name (expand-file-name name))))
  2745. (if no-quote-p f (shell-quote-argument f))))
  2746. (defvar org-babel-temporary-directory)
  2747. (unless (or noninteractive (boundp 'org-babel-temporary-directory))
  2748. (defvar org-babel-temporary-directory
  2749. (or (and (boundp 'org-babel-temporary-directory)
  2750. (file-exists-p org-babel-temporary-directory)
  2751. org-babel-temporary-directory)
  2752. (make-temp-file "babel-" t))
  2753. "Directory to hold temporary files created to execute code blocks.
  2754. Used by `org-babel-temp-file'. This directory will be removed on
  2755. Emacs shutdown."))
  2756. (defcustom org-babel-remote-temporary-directory "/tmp/"
  2757. "Directory to hold temporary files on remote hosts."
  2758. :group 'org-babel
  2759. :type 'string)
  2760. (defmacro org-babel-result-cond (result-params scalar-form &rest table-forms)
  2761. "Call the code to parse raw string results according to RESULT-PARAMS."
  2762. (declare (indent 1)
  2763. (debug (form form &rest form)))
  2764. (org-with-gensyms (params)
  2765. `(let ((,params ,result-params))
  2766. (unless (member "none" ,params)
  2767. (if (or (member "scalar" ,params)
  2768. (member "verbatim" ,params)
  2769. (member "html" ,params)
  2770. (member "code" ,params)
  2771. (member "pp" ,params)
  2772. (member "file" ,params)
  2773. (and (or (member "output" ,params)
  2774. (member "raw" ,params)
  2775. (member "org" ,params)
  2776. (member "drawer" ,params))
  2777. (not (member "table" ,params))))
  2778. ,scalar-form
  2779. ,@table-forms)))))
  2780. (def-edebug-spec org-babel-result-cond (form form body))
  2781. (defun org-babel-temp-file (prefix &optional suffix)
  2782. "Create a temporary file in the `org-babel-temporary-directory'.
  2783. Passes PREFIX and SUFFIX directly to `make-temp-file' with the
  2784. value of `temporary-file-directory' temporarily set to the value
  2785. of `org-babel-temporary-directory'."
  2786. (if (file-remote-p default-directory)
  2787. (let ((prefix
  2788. (concat (file-remote-p default-directory)
  2789. (expand-file-name
  2790. prefix org-babel-remote-temporary-directory))))
  2791. (make-temp-file prefix nil suffix))
  2792. (let ((temporary-file-directory
  2793. (or (and (boundp 'org-babel-temporary-directory)
  2794. (file-exists-p org-babel-temporary-directory)
  2795. org-babel-temporary-directory)
  2796. temporary-file-directory)))
  2797. (make-temp-file prefix nil suffix))))
  2798. (defun org-babel-remove-temporary-directory ()
  2799. "Remove `org-babel-temporary-directory' on Emacs shutdown."
  2800. (when (and (boundp 'org-babel-temporary-directory)
  2801. (file-exists-p org-babel-temporary-directory))
  2802. ;; taken from `delete-directory' in files.el
  2803. (condition-case nil
  2804. (progn
  2805. (mapc (lambda (file)
  2806. ;; This test is equivalent to
  2807. ;; (and (file-directory-p fn) (not (file-symlink-p fn)))
  2808. ;; but more efficient
  2809. (if (eq t (car (file-attributes file)))
  2810. (delete-directory file)
  2811. (delete-file file)))
  2812. ;; We do not want to delete "." and "..".
  2813. (directory-files org-babel-temporary-directory 'full
  2814. "^\\([^.]\\|\\.\\([^.]\\|\\..\\)\\).*"))
  2815. (delete-directory org-babel-temporary-directory))
  2816. (error
  2817. (message "Failed to remove temporary Org-babel directory %s"
  2818. (if (boundp 'org-babel-temporary-directory)
  2819. org-babel-temporary-directory
  2820. "[directory not defined]"))))))
  2821. (add-hook 'kill-emacs-hook 'org-babel-remove-temporary-directory)
  2822. (defun org-babel-one-header-arg-safe-p (pair safe-list)
  2823. "Determine if the PAIR is a safe babel header arg according to SAFE-LIST.
  2824. For the format of SAFE-LIST, see `org-babel-safe-header-args'."
  2825. (and (consp pair)
  2826. (keywordp (car pair))
  2827. (stringp (cdr pair))
  2828. (or
  2829. (memq (car pair) safe-list)
  2830. (let ((entry (assq (car pair) safe-list)))
  2831. (and entry
  2832. (consp entry)
  2833. (cond ((functionp (cdr entry))
  2834. (funcall (cdr entry) (cdr pair)))
  2835. ((listp (cdr entry))
  2836. (member (cdr pair) (cdr entry)))
  2837. (t nil)))))))
  2838. (defun org-babel-generate-file-param (src-name params)
  2839. "Calculate the filename for source block results.
  2840. The directory is calculated from the :output-dir property of the
  2841. source block; if not specified, use the current directory.
  2842. If the source block has a #+NAME and the :file parameter does not
  2843. contain any period characters, then the :file parameter is
  2844. treated as an extension, and the output file name is the
  2845. concatenation of the directory (as calculated above), the block
  2846. name, a period, and the parameter value as a file extension.
  2847. Otherwise, the :file parameter is treated as a full file name,
  2848. and the output file name is the directory (as calculated above)
  2849. plus the parameter value."
  2850. (let* ((file-cons (assq :file params))
  2851. (file-ext-cons (assq :file-ext params))
  2852. (file-ext (cdr-safe file-ext-cons))
  2853. (dir (cdr-safe (assq :output-dir params)))
  2854. fname)
  2855. ;; create the output-dir if it does not exist
  2856. (when dir
  2857. (make-directory dir t))
  2858. (if file-cons
  2859. ;; :file given; add :output-dir if given
  2860. (when dir
  2861. (setcdr file-cons (concat (file-name-as-directory dir) (cdr file-cons))))
  2862. ;; :file not given; compute from name and :file-ext if possible
  2863. (when (and src-name file-ext)
  2864. (if dir
  2865. (setq fname (concat (file-name-as-directory (or dir ""))
  2866. src-name "." file-ext))
  2867. (setq fname (concat src-name "." file-ext)))
  2868. (setq params (cons (cons :file fname) params))))
  2869. params))
  2870. (defun org-babel-graphical-output-file (params)
  2871. "File where a babel block should send graphical output, per PARAMS.
  2872. Return nil if no graphical output is expected. Raise an error if
  2873. the output file is ill-defined."
  2874. (let ((file (cdr (assq :file params))))
  2875. (cond (file (and (member "graphics" (cdr (assq :result-params params)))
  2876. file))
  2877. ((assq :file-ext params)
  2878. (user-error ":file-ext given but no :file generated; did you forget \
  2879. to name a block?"))
  2880. (t (user-error "No :file header argument given; cannot create \
  2881. graphical result")))))
  2882. (defun org-babel-make-language-alias (new old)
  2883. "Make source blocks of type NEW aliases for those of type OLD.
  2884. NEW and OLD should be strings. This function should be called
  2885. after the babel API for OLD-type source blocks is fully defined.
  2886. Callers of this function will probably want to add an entry to
  2887. `org-src-lang-modes' as well."
  2888. (dolist (fn '("execute" "expand-body" "prep-session"
  2889. "variable-assignments" "load-session"))
  2890. (let ((sym (intern-soft (concat "org-babel-" fn ":" old))))
  2891. (when (and sym (fboundp sym))
  2892. (defalias (intern (concat "org-babel-" fn ":" new)) sym))))
  2893. ;; Technically we don't need a `dolist' for just one variable, but
  2894. ;; we keep it for symmetry/ease of future expansion.
  2895. (dolist (var '("default-header-args"))
  2896. (let ((sym (intern-soft (concat "org-babel-" var ":" old))))
  2897. (when (and sym (boundp sym))
  2898. (defvaralias (intern (concat "org-babel-" var ":" new)) sym)))))
  2899. (defun org-babel-strip-quotes (string)
  2900. "Strip \\\"s from around a string, if applicable."
  2901. (org-unbracket-string "\"" "\"" string))
  2902. (provide 'ob-core)
  2903. ;; Local variables:
  2904. ;; generated-autoload-file: "org-loaddefs.el"
  2905. ;; End:
  2906. ;;; ob-core.el ends here