ob-core.el 115 KB

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