ob-tangle.el 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519
  1. ;;; ob-tangle.el --- extract source code from org-mode files
  2. ;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
  3. ;; Author: Eric Schulte
  4. ;; Keywords: literate programming, reproducible research
  5. ;; Homepage: http://orgmode.org
  6. ;; This file is part of GNU Emacs.
  7. ;; GNU Emacs is free software: you can redistribute it and/or modify
  8. ;; it under the terms of the GNU General Public License as published by
  9. ;; the Free Software Foundation, either version 3 of the License, or
  10. ;; (at your option) any later version.
  11. ;; GNU Emacs is distributed in the hope that it will be useful,
  12. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. ;; GNU General Public License for more details.
  15. ;; You should have received a copy of the GNU General Public License
  16. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  17. ;;; Commentary:
  18. ;; Extract the code from source blocks out into raw source-code files.
  19. ;;; Code:
  20. (require 'org-src)
  21. (eval-when-compile
  22. (require 'cl))
  23. (declare-function org-link-escape "org" (text &optional table))
  24. (declare-function org-heading-components "org" ())
  25. (declare-function org-back-to-heading "org" (invisible-ok))
  26. (declare-function org-fill-template "org" (template alist))
  27. (declare-function org-babel-update-block-body "org" (new-body))
  28. (declare-function make-directory "files" (dir &optional parents))
  29. (defcustom org-babel-tangle-lang-exts
  30. '(("emacs-lisp" . "el"))
  31. "Alist mapping languages to their file extensions.
  32. The key is the language name, the value is the string that should
  33. be inserted as the extension commonly used to identify files
  34. written in this language. If no entry is found in this list,
  35. then the name of the language is used."
  36. :group 'org-babel-tangle
  37. :version "24.1"
  38. :type '(repeat
  39. (cons
  40. (string "Language name")
  41. (string "File Extension"))))
  42. (defcustom org-babel-post-tangle-hook nil
  43. "Hook run in code files tangled by `org-babel-tangle'."
  44. :group 'org-babel
  45. :version "24.1"
  46. :type 'hook)
  47. (defcustom org-babel-pre-tangle-hook '(save-buffer)
  48. "Hook run at the beginning of `org-babel-tangle'."
  49. :group 'org-babel
  50. :version "24.1"
  51. :type 'hook)
  52. (defcustom org-babel-tangle-body-hook nil
  53. "Hook run over the contents of each code block body."
  54. :group 'org-babel
  55. :version "24.1"
  56. :type 'hook)
  57. (defcustom org-babel-tangle-comment-format-beg "[[%link][%source-name]]"
  58. "Format of inserted comments in tangled code files.
  59. The following format strings can be used to insert special
  60. information into the output using `org-fill-template'.
  61. %start-line --- the line number at the start of the code block
  62. %file --------- the file from which the code block was tangled
  63. %link --------- Org-mode style link to the code block
  64. %source-name -- name of the code block
  65. Whether or not comments are inserted during tangling is
  66. controlled by the :comments header argument."
  67. :group 'org-babel
  68. :version "24.1"
  69. :type 'string)
  70. (defcustom org-babel-tangle-comment-format-end "%source-name ends here"
  71. "Format of inserted comments in tangled code files.
  72. The following format strings can be used to insert special
  73. information into the output using `org-fill-template'.
  74. %start-line --- the line number at the start of the code block
  75. %file --------- the file from which the code block was tangled
  76. %link --------- Org-mode style link to the code block
  77. %source-name -- name of the code block
  78. Whether or not comments are inserted during tangling is
  79. controlled by the :comments header argument."
  80. :group 'org-babel
  81. :version "24.1"
  82. :type 'string)
  83. (defcustom org-babel-process-comment-text #'org-babel-trim
  84. "Function called to process raw Org-mode text collected to be
  85. inserted as comments in tangled source-code files. The function
  86. should take a single string argument and return a string
  87. result. The default value is `org-babel-trim'."
  88. :group 'org-babel
  89. :version "24.1"
  90. :type 'function)
  91. (defun org-babel-find-file-noselect-refresh (file)
  92. "Find file ensuring that the latest changes on disk are
  93. represented in the file."
  94. (find-file-noselect file)
  95. (with-current-buffer (get-file-buffer file)
  96. (revert-buffer t t t)))
  97. (defmacro org-babel-with-temp-filebuffer (file &rest body)
  98. "Open FILE into a temporary buffer execute BODY there like
  99. `progn', then kill the FILE buffer returning the result of
  100. evaluating BODY."
  101. (declare (indent 1))
  102. (let ((temp-path (make-symbol "temp-path"))
  103. (temp-result (make-symbol "temp-result"))
  104. (temp-file (make-symbol "temp-file"))
  105. (visited-p (make-symbol "visited-p")))
  106. `(let* ((,temp-path ,file)
  107. (,visited-p (get-file-buffer ,temp-path))
  108. ,temp-result ,temp-file)
  109. (org-babel-find-file-noselect-refresh ,temp-path)
  110. (setf ,temp-file (get-file-buffer ,temp-path))
  111. (with-current-buffer ,temp-file
  112. (setf ,temp-result (progn ,@body)))
  113. (unless ,visited-p (kill-buffer ,temp-file))
  114. ,temp-result)))
  115. (def-edebug-spec org-babel-with-temp-filebuffer (form body))
  116. ;;;###autoload
  117. (defun org-babel-load-file (file)
  118. "Load Emacs Lisp source code blocks in the Org-mode FILE.
  119. This function exports the source code using
  120. `org-babel-tangle' and then loads the resulting file using
  121. `load-file'."
  122. (interactive "fFile to load: ")
  123. (let* ((age (lambda (file)
  124. (float-time
  125. (time-subtract (current-time)
  126. (nth 5 (or (file-attributes (file-truename file))
  127. (file-attributes file)))))))
  128. (base-name (file-name-sans-extension file))
  129. (exported-file (concat base-name ".el")))
  130. ;; tangle if the org-mode file is newer than the elisp file
  131. (unless (and (file-exists-p exported-file)
  132. (> (funcall age file) (funcall age exported-file)))
  133. (org-babel-tangle-file file exported-file "emacs-lisp"))
  134. (load-file exported-file)
  135. (message "Loaded %s" exported-file)))
  136. ;;;###autoload
  137. (defun org-babel-tangle-file (file &optional target-file lang)
  138. "Extract the bodies of source code blocks in FILE.
  139. Source code blocks are extracted with `org-babel-tangle'.
  140. Optional argument TARGET-FILE can be used to specify a default
  141. export file for all source blocks. Optional argument LANG can be
  142. used to limit the exported source code blocks by language."
  143. (interactive "fFile to tangle: \nP")
  144. (let ((visited-p (get-file-buffer (expand-file-name file)))
  145. to-be-removed)
  146. (save-window-excursion
  147. (find-file file)
  148. (setq to-be-removed (current-buffer))
  149. (org-babel-tangle nil target-file lang))
  150. (unless visited-p
  151. (kill-buffer to-be-removed))))
  152. (defun org-babel-tangle-publish (_ filename pub-dir)
  153. "Tangle FILENAME and place the results in PUB-DIR."
  154. (mapc (lambda (el) (copy-file el pub-dir t)) (org-babel-tangle-file filename)))
  155. ;;;###autoload
  156. (defun org-babel-tangle (&optional only-this-block target-file lang)
  157. "Write code blocks to source-specific files.
  158. Extract the bodies of all source code blocks from the current
  159. file into their own source-specific files. Optional argument
  160. TARGET-FILE can be used to specify a default export file for all
  161. source blocks. Optional argument LANG can be used to limit the
  162. exported source code blocks by language."
  163. (interactive "P")
  164. (run-hooks 'org-babel-pre-tangle-hook)
  165. ;; possibly restrict the buffer to the current code block
  166. (save-restriction
  167. (when only-this-block
  168. (unless (org-babel-where-is-src-block-head)
  169. (error "Point is not currently inside of a code block"))
  170. (save-match-data
  171. (unless (or (cdr (assoc :tangle (nth 2 (org-babel-get-src-block-info))))
  172. target-file)
  173. (setq target-file
  174. (read-from-minibuffer "Tangle to: " (buffer-file-name)))))
  175. (narrow-to-region (match-beginning 0) (match-end 0)))
  176. (save-excursion
  177. (let ((block-counter 0)
  178. (org-babel-default-header-args
  179. (if target-file
  180. (org-babel-merge-params org-babel-default-header-args
  181. (list (cons :tangle target-file)))
  182. org-babel-default-header-args))
  183. path-collector)
  184. (mapc ;; map over all languages
  185. (lambda (by-lang)
  186. (let* ((lang (car by-lang))
  187. (specs (cdr by-lang))
  188. (ext (or (cdr (assoc lang org-babel-tangle-lang-exts)) lang))
  189. (lang-f (intern
  190. (concat
  191. (or (and (cdr (assoc lang org-src-lang-modes))
  192. (symbol-name
  193. (cdr (assoc lang org-src-lang-modes))))
  194. lang)
  195. "-mode")))
  196. she-banged)
  197. (mapc
  198. (lambda (spec)
  199. (let ((get-spec (lambda (name) (cdr (assoc name (nth 4 spec))))))
  200. (let* ((tangle (funcall get-spec :tangle))
  201. (she-bang ((lambda (sheb) (when (> (length sheb) 0) sheb))
  202. (funcall get-spec :shebang)))
  203. (base-name (cond
  204. ((string= "yes" tangle)
  205. (file-name-sans-extension
  206. (buffer-file-name)))
  207. ((string= "no" tangle) nil)
  208. ((> (length tangle) 0) tangle)))
  209. (file-name (when base-name
  210. ;; decide if we want to add ext to base-name
  211. (if (and ext (string= "yes" tangle))
  212. (concat base-name "." ext) base-name))))
  213. (when file-name
  214. ;; possibly create the parent directories for file
  215. (when ((lambda (m) (and m (not (string= m "no"))))
  216. (funcall get-spec :mkdirp))
  217. (make-directory (file-name-directory file-name) 'parents))
  218. ;; delete any old versions of file
  219. (when (and (file-exists-p file-name)
  220. (not (member file-name path-collector)))
  221. (delete-file file-name))
  222. ;; drop source-block to file
  223. (with-temp-buffer
  224. (when (fboundp lang-f) (ignore-errors (funcall lang-f)))
  225. (when (and she-bang (not (member file-name she-banged)))
  226. (insert (concat she-bang "\n"))
  227. (setq she-banged (cons file-name she-banged)))
  228. (org-babel-spec-to-string spec)
  229. ;; We avoid append-to-file as it does not work with tramp.
  230. (let ((content (buffer-string)))
  231. (with-temp-buffer
  232. (if (file-exists-p file-name)
  233. (insert-file-contents file-name))
  234. (goto-char (point-max))
  235. (insert content)
  236. (write-region nil nil file-name))))
  237. ;; if files contain she-bangs, then make the executable
  238. (when she-bang (set-file-modes file-name #o755))
  239. ;; update counter
  240. (setq block-counter (+ 1 block-counter))
  241. (add-to-list 'path-collector file-name)))))
  242. specs)))
  243. (org-babel-tangle-collect-blocks lang))
  244. (message "Tangled %d code block%s from %s" block-counter
  245. (if (= block-counter 1) "" "s")
  246. (file-name-nondirectory
  247. (buffer-file-name (or (buffer-base-buffer) (current-buffer)))))
  248. ;; run `org-babel-post-tangle-hook' in all tangled files
  249. (when org-babel-post-tangle-hook
  250. (mapc
  251. (lambda (file)
  252. (org-babel-with-temp-filebuffer file
  253. (run-hooks 'org-babel-post-tangle-hook)))
  254. path-collector))
  255. path-collector))))
  256. (defun org-babel-tangle-clean ()
  257. "Remove comments inserted by `org-babel-tangle'.
  258. Call this function inside of a source-code file generated by
  259. `org-babel-tangle' to remove all comments inserted automatically
  260. by `org-babel-tangle'. Warning, this comment removes any lines
  261. containing constructs which resemble org-mode file links or noweb
  262. references."
  263. (interactive)
  264. (goto-char (point-min))
  265. (while (or (re-search-forward "\\[\\[file:.*\\]\\[.*\\]\\]" nil t)
  266. (re-search-forward (org-babel-noweb-wrap) nil t))
  267. (delete-region (save-excursion (beginning-of-line 1) (point))
  268. (save-excursion (end-of-line 1) (forward-char 1) (point)))))
  269. (defvar org-stored-links)
  270. (defvar org-bracket-link-regexp)
  271. (defun org-babel-spec-to-string (spec)
  272. "Insert SPEC into the current file.
  273. Insert the source-code specified by SPEC into the current
  274. source code file. This function uses `comment-region' which
  275. assumes that the appropriate major-mode is set. SPEC has the
  276. form
  277. (start-line file link source-name params body comment)"
  278. (let* ((start-line (nth 0 spec))
  279. (file (nth 1 spec))
  280. (link (nth 2 spec))
  281. (source-name (nth 3 spec))
  282. (body (nth 5 spec))
  283. (comment (nth 6 spec))
  284. (comments (cdr (assoc :comments (nth 4 spec))))
  285. (padline (not (string= "no" (cdr (assoc :padline (nth 4 spec))))))
  286. (link-p (or (string= comments "both") (string= comments "link")
  287. (string= comments "yes") (string= comments "noweb")))
  288. (link-data (mapcar (lambda (el)
  289. (cons (symbol-name el)
  290. ((lambda (le)
  291. (if (stringp le) le (format "%S" le)))
  292. (eval el))))
  293. '(start-line file link source-name)))
  294. (insert-comment (lambda (text)
  295. (when (and comments (not (string= comments "no"))
  296. (> (length text) 0))
  297. (when padline (insert "\n"))
  298. (comment-region (point) (progn (insert text) (point)))
  299. (end-of-line nil) (insert "\n")))))
  300. (when comment (funcall insert-comment comment))
  301. (when link-p
  302. (funcall
  303. insert-comment
  304. (org-fill-template org-babel-tangle-comment-format-beg link-data)))
  305. (when padline (insert "\n"))
  306. (insert
  307. (format
  308. "%s\n"
  309. (replace-regexp-in-string
  310. "^," ""
  311. (org-babel-trim body (if org-src-preserve-indentation "[\f\n\r\v]")))))
  312. (when link-p
  313. (funcall
  314. insert-comment
  315. (org-fill-template org-babel-tangle-comment-format-end link-data)))))
  316. (defun org-babel-tangle-collect-blocks (&optional language)
  317. "Collect source blocks in the current Org-mode file.
  318. Return an association list of source-code block specifications of
  319. the form used by `org-babel-spec-to-string' grouped by language.
  320. Optional argument LANG can be used to limit the collected source
  321. code blocks by language."
  322. (let ((block-counter 1) (current-heading "") blocks)
  323. (org-babel-map-src-blocks (buffer-file-name)
  324. ((lambda (new-heading)
  325. (if (not (string= new-heading current-heading))
  326. (progn
  327. (setq block-counter 1)
  328. (setq current-heading new-heading))
  329. (setq block-counter (+ 1 block-counter))))
  330. (replace-regexp-in-string "[ \t]" "-"
  331. (condition-case nil
  332. (or (nth 4 (org-heading-components))
  333. "(dummy for heading without text)")
  334. (error (buffer-file-name)))))
  335. (let* ((start-line (save-restriction (widen)
  336. (+ 1 (line-number-at-pos (point)))))
  337. (file (buffer-file-name))
  338. (info (org-babel-get-src-block-info 'light))
  339. (src-lang (nth 0 info)))
  340. (unless (string= (cdr (assoc :tangle (nth 2 info))) "no")
  341. (unless (and language (not (string= language src-lang)))
  342. (let* ((info (org-babel-get-src-block-info))
  343. (params (nth 2 info))
  344. (link ((lambda (link)
  345. (and (string-match org-bracket-link-regexp link)
  346. (match-string 1 link)))
  347. (org-no-properties
  348. (org-store-link nil))))
  349. (source-name
  350. (intern (or (nth 4 info)
  351. (format "%s:%d"
  352. current-heading block-counter))))
  353. (expand-cmd
  354. (intern (concat "org-babel-expand-body:" src-lang)))
  355. (assignments-cmd
  356. (intern (concat "org-babel-variable-assignments:" src-lang)))
  357. (body
  358. ((lambda (body) ;; run the tangle-body-hook
  359. (with-temp-buffer
  360. (insert body)
  361. (run-hooks 'org-babel-tangle-body-hook)
  362. (buffer-string)))
  363. ((lambda (body) ;; expand the body in language specific manner
  364. (if (assoc :no-expand params)
  365. body
  366. (if (fboundp expand-cmd)
  367. (funcall expand-cmd body params)
  368. (org-babel-expand-body:generic
  369. body params
  370. (and (fboundp assignments-cmd)
  371. (funcall assignments-cmd params))))))
  372. (if (org-babel-noweb-p params :tangle)
  373. (org-babel-expand-noweb-references info)
  374. (nth 1 info)))))
  375. (comment
  376. (when (or (string= "both" (cdr (assoc :comments params)))
  377. (string= "org" (cdr (assoc :comments params))))
  378. ;; from the previous heading or code-block end
  379. (funcall
  380. org-babel-process-comment-text
  381. (buffer-substring
  382. (max (condition-case nil
  383. (save-excursion
  384. (org-back-to-heading t) ; sets match data
  385. (match-end 0))
  386. (error (point-min)))
  387. (save-excursion
  388. (if (re-search-backward
  389. org-babel-src-block-regexp nil t)
  390. (match-end 0)
  391. (point-min))))
  392. (point)))))
  393. by-lang)
  394. ;; add the spec for this block to blocks under it's language
  395. (setq by-lang (cdr (assoc src-lang blocks)))
  396. (setq blocks (delq (assoc src-lang blocks) blocks))
  397. (setq blocks (cons
  398. (cons src-lang
  399. (cons (list start-line file link
  400. source-name params body comment)
  401. by-lang)) blocks)))))))
  402. ;; ensure blocks in the correct order
  403. (setq blocks
  404. (mapcar
  405. (lambda (by-lang) (cons (car by-lang) (reverse (cdr by-lang))))
  406. blocks))
  407. blocks))
  408. (defun org-babel-tangle-comment-links ( &optional info)
  409. "Return a list of begin and end link comments for the code block at point."
  410. (let* ((start-line (org-babel-where-is-src-block-head))
  411. (file (buffer-file-name))
  412. (link (org-link-escape (progn (call-interactively 'org-store-link)
  413. (org-no-properties
  414. (car (pop org-stored-links))))))
  415. (source-name (nth 4 (or info (org-babel-get-src-block-info 'light))))
  416. (link-data (mapcar (lambda (el)
  417. (cons (symbol-name el)
  418. ((lambda (le)
  419. (if (stringp le) le (format "%S" le)))
  420. (eval el))))
  421. '(start-line file link source-name))))
  422. (list (org-fill-template org-babel-tangle-comment-format-beg link-data)
  423. (org-fill-template org-babel-tangle-comment-format-end link-data))))
  424. ;; de-tangling functions
  425. (defvar org-bracket-link-analytic-regexp)
  426. (defun org-babel-detangle (&optional source-code-file)
  427. "Propagate changes in source file back original to Org-mode file.
  428. This requires that code blocks were tangled with link comments
  429. which enable the original code blocks to be found."
  430. (interactive)
  431. (save-excursion
  432. (when source-code-file (find-file source-code-file))
  433. (goto-char (point-min))
  434. (let ((counter 0) new-body end)
  435. (while (re-search-forward org-bracket-link-analytic-regexp nil t)
  436. (when (re-search-forward
  437. (concat " " (regexp-quote (match-string 5)) " ends here"))
  438. (setq end (match-end 0))
  439. (forward-line -1)
  440. (save-excursion
  441. (when (setq new-body (org-babel-tangle-jump-to-org))
  442. (org-babel-update-block-body new-body)))
  443. (setq counter (+ 1 counter)))
  444. (goto-char end))
  445. (prog1 counter (message "Detangled %d code blocks" counter)))))
  446. (defun org-babel-tangle-jump-to-org ()
  447. "Jump from a tangled code file to the related Org-mode file."
  448. (interactive)
  449. (let ((mid (point))
  450. start end done
  451. target-buffer target-char link path block-name body)
  452. (save-window-excursion
  453. (save-excursion
  454. (while (and (re-search-backward org-bracket-link-analytic-regexp nil t)
  455. (not ; ever wider searches until matching block comments
  456. (and (setq start (point-at-eol))
  457. (setq link (match-string 0))
  458. (setq path (match-string 3))
  459. (setq block-name (match-string 5))
  460. (save-excursion
  461. (save-match-data
  462. (re-search-forward
  463. (concat " " (regexp-quote block-name)
  464. " ends here") nil t)
  465. (setq end (point-at-bol))))))))
  466. (unless (and start (< start mid) (< mid end))
  467. (error "Not in tangled code"))
  468. (setq body (org-babel-trim (buffer-substring start end))))
  469. (when (string-match "::" path)
  470. (setq path (substring path 0 (match-beginning 0))))
  471. (find-file path) (setq target-buffer (current-buffer))
  472. (goto-char start) (org-open-link-from-string link)
  473. (if (string-match "[^ \t\n\r]:\\([[:digit:]]+\\)" block-name)
  474. (org-babel-next-src-block
  475. (string-to-number (match-string 1 block-name)))
  476. (org-babel-goto-named-src-block block-name))
  477. (setq target-char (point)))
  478. (pop-to-buffer target-buffer)
  479. (prog1 body (goto-char target-char))))
  480. (provide 'ob-tangle)
  481. ;; Local variables:
  482. ;; generated-autoload-file: "org-loaddefs.el"
  483. ;; End:
  484. ;;; ob-tangle.el ends here