Revert "making :results replace the default"
[rgr-org-mode.git] / org-babel.org
blob52ee3ea796a579be1dfd78028af4a67b65802670
1 #+TITLE: org-babel --- facilitating communication between programming languages and people
2 #+SEQ_TODO: TODO PROPOSED STARTED | DONE DEFERRED REJECTED
3 #+OPTIONS: H:3 num:nil toc:t
4 #+STARTUP: oddeven hideblocks
6 Through Org-Babel Org-Mode can communicate with programming languages.
7 Code contained in source-code blocks can be evaluated and data can
8 pass seamlessly between different programming languages, Org-Mode
9 constructs (tables, file links, example text) and interactive comint
10 buffers.
12 In this document:
13 - The [[* Introduction][Introduction]] :: provides a brief overview of the design and use
14      of Org-Babel including tutorials and examples.
15 - In [[* Getting started][Getting Started]] :: find instructions for installing org-babel
16      into your emacs configuration.
17 - The [[* Tasks][Tasks]] :: section contains current and past tasks roughly ordered
18      by TODO state, then importance or date-completed.  This would be
19      a good place to suggest ideas for development.
20 - The [[* Bugs][Bugs]] :: section contains bug reports.
21 - The [[* Tests][Tests]] :: section consists of a large table which can be
22      evaluated to run Org-Babel's functional test suite.  This
23      provides a good overview of the current functionality with
24      pointers to example source blocks.
25 - The [[* Sandbox][Sandbox]] :: demonstrates much of the early/basic functionality
26      through commented source-code blocks.
28 Also see the [[file:library-of-babel.org][Library of Babel]] an extensible collection of ready-made
29 and easily-shortcut-callable source-code blocks for handling common
30 tasks.
33 * Introduction
35 Org-Babel enables *communication* between programming languages and
36 between people.
38 Org-Babel provides:
39 - communication between programs :: Data passes seamlessly between
40      different programming languages, Org-Mode constructs (tables,
41      file links, example text) and interactive comint buffers.
42 - communication between people :: Data and calculations are embedded
43      in the same document as notes explanations and reports.
45 ** communication between programs
47 Org-Mode supports embedded blocks of source code (in any language)
48 inside of Org documents.  Org-Babel allows these blocks of code to be
49 executed from within Org-Mode with natural handling of their inputs
50 and outputs.
52 *** simple execution
53 with both scalar, file, and table output
55 *** reading information from tables
57 *** reading information from other source blocks (disk usage in your home directory)
59 This will work for Linux and Mac users, not so sure about shell
60 commands for windows users.
62 To run place the cursor on the =#+begin_src= line of the source block
63 labeled directory-pie and press =\C-c\C-c=.
65 #+srcname: directories
66 #+begin_src bash :results replace
67 cd ~ && du -sc * |grep -v total
68 #+end_src
70 #+resname: directories
71 |       64 | "Desktop"   |
72 | 11882808 | "Documents" |
73 |  8210024 | "Downloads" |
74 |   879800 | "Library"   |
75 |    57344 | "Movies"    |
76 |  7590248 | "Music"     |
77 |  5307664 | "Pictures"  |
78 |        0 | "Public"    |
79 |      152 | "Sites"     |
80 |        8 | "System"    |
81 |       56 | "bin"       |
82 |  3274848 | "mail"      |
83 |  5282032 | "src"       |
84 |     1264 | "tools"     |
86 #+srcname: directory-pie
87 #+begin_src R :var dirs = directories
88 pie(dirs[,1], labels = dirs[,2])
89 #+end_src
91 *** operations in/on tables
93 #+tblname: grades-table
94 | student | grade | letter |
95 |---------+-------+--------|
96 |       1 |    99 | A      |
97 |       2 |    59 | F      |
98 |       3 |    75 | C      |
99 |       4 |    15 | F      |
100 |       5 |     7 | F      |
101 |       6 |    13 | F      |
102 #+TBLFM: $2='(sbe random-score-generator)::$3='(sbe assign-grade (score $2))
104 #+srcname: assign-grade
105 #+begin_src ruby :var score=99
106 case score
107    when 0..59: "F"
108    when 60..69: "D"
109    when 70..79: "C"
110    when 80..89: "B"
111    when 90..100: "A"
112    else "Invalid Score"
114 #+end_src
116 #+srcname: random-score-generator
117 #+begin_src ruby 
118 rand(100)
119 #+end_src
121 #+srcname: show-distribution
122 #+begin_src R :var grades=grades-table
123 hist(grades[,2])
124 #+end_src
127 ** communication between people
128 Quick overview of Org-Mode's exportation abilities, with links to the
129 online Org-Mode documentation, a focus on source-code blocks, and the
130 exportation options provided by Org-Babel.
132 *** Interactive tutorial
133 This would demonstrate applicability to Reproducible Research, and
134 Literate Programming.
136 *** Tests embedded in documentation
137 org-babels own functional tests are contained in a large org-mode
138 table, allowing the test suite to be run be evaluation of the table
139 and the results to be collected in the same table.
141 *** Emacs initialization files stored in Org-Mode buffers
142 Once org-babel-tangle is completed this could be a very compelling use case.
145 ** features
147 *** code evaluation (comint buffer sessions and external processes)
148 There are two main ways to evaluate source blocks with org-babel.
150 - external :: By default (if the =:session= header argument is not
151               present) all source code blocks are evaluated in
152               external processes.  In these cases an external process
153               is used to evaluate the source-code blocks.
154 - session :: Session based evaluation uses persistent sessions in
155              comint buffers.  Sessions can be used across multiple
156              source blocks setting and accessing variables in the
157              global environment.
159              Evaluating source blocks in sessions also allows for
160              interaction with the code.  To jump to the session of a
161              source block use the `org-babel-pop-to-session' command
162              or press =M-[down]= while inside of a source code block.
163              When called with a prefix argument
164              `org-babel-pop-to-session' will evaluate all header
165              arguments before jumping to the source-code block.
167 *** results (values and outputs)
168 Either the *value* or the *output* of source code blocks can be
169 collected after evaluation.
171 - value :: The default way to collect results from a source-code block
172            is to return the value of the last statement in the block.
173            This can be thought of as the return value of the block.
174            In this case any printed output of the block is ignored.
175            This can be though of a similar to a "functional" value of
176            evaluation.
177 - output :: Another way of generating results from a source-code block
178             is to collect the output generated by the execution of the
179             block.  In this case all printed output is collected
180             throughout the execution of the block.  This can be
181             thought of as similar to a "script" style of evaluation.
184 * Getting started
185 Add the following lines to your .emacs, replacing the path as
186 appropriate. A good place to check that things are up and running
187 would then be [[#sandbox][the sandbox]].
188 #+begin_src emacs-lisp
189   (add-to-list 'load-path "/path/to/org-babel/lisp")
190   (require 'org-babel-init)
191 #+end_src
194 * Tasks [27/42]
195 ** TODO support for working with =*Org Edit Src Example*= buffers [2/4]
196 *** TODO optionally evaluate header references when we switch to =*Org Edit Src*= buffer
197 That seems to imply that the header references need to be evaluated
198 and transformed into the target language object when we hit C-c ' to
199 enter the *Org Edit Src* buffer [DED]
201 Good point, I heartily agree that this should be supported [Eric]
203 (or at least before the first time we attempt to evaluate code in that
204 buffer -- I suppose there might be an argument for lazy evaluation, in
205 case someone hits C-c ' but is "just looking" and not actually
206 evaluating anything.) Of course if evaluating the reference is
207 computationally intensive then the user might have to wait before they
208 get the *Org Edit Src* buffer. [DED]
210 I fear that it may be hard to anticipate when the references will be
211 needed, some major-modes do on-the-fly evaluation while the buffer is
212 being edited.  I think that we should either do this before the buffer
213 is opened or not at all, specifically I think we should resolve
214 references if the user calls C-c ' with a prefix argument.  Does that
215 sound reasonable? [Eric]
217 Yes [Dan]
219 [Dan] So now that we have org-src-mode and org-src-mode-hook, I guess
220 org-babel should do this by using the hook to make sure that, when C-c
221 C-' is issued on a source block, any references are resolved and
222 assignments are made in the appropriate session.
223 *** TODO set buffer-local-process variables appropriately [DED]
224     I think something like this would be great. You've probably
225 already thought of this, but just to note it down: it would be really
226 nice if org-babel's notion of a buffer's 'session/process' played
227 nicely with ESS's notion of the buffer's session/process. ESS keeps
228 the current process name for a buffer in a buffer-local variable
229 ess-local-process-name. So one thing we will probably want to do is
230 make sure that the *Org Edit Src Example* buffer sets that variable
231 appropriately. [DED]
233 I had not thought of that, but I agree whole heartedly. [Eric]
235 Once this is done every variable should be able to dump regions into
236 their inferior-process buffer using major-mode functions.
237 *** DEFERRED send code to inferior process
238 Another thought on this topic: I think we will want users to send
239 chunks of code to the interpreter from within the *Org Edit Src*
240 buffer, and I think that's what you have in mind already. In ESS that
241 is done using the ess-eval-* functions. [DED]
243 I think we can leave this up to the major-mode in the source code
244 buffer, as almost every source-code major mode will have functions for
245 doing things like sending regions to the inferior process.  If
246 anything we might need to set the value of the buffer local inferior
247 process variable. [Eric]
249 *** DONE some possible requests/proposed changes for Carsten [4/4]
250     While I remember, some possible requests/proposed changes for Carsten
251     come to mind in that regard:
253 **** DONE Remap C-x C-s to save the source to the org buffer?
254      I've done this personally and I find it essential. I'm using 
255 #+begin_src emacs-lisp
256 (defun org-edit-src-save ()
257   "Update the parent org buffer with the edited source code, save
258 the parent org-buffer, and return to the source code edit
259 buffer."
260   (interactive)
261   (let ((p (point)))
262     (org-edit-src-exit)
263     (save-buffer)
264     (org-edit-src-code)
265     (goto-char p)))
267 (define-key org-exit-edit-mode-map "\C-x\C-s" 'org-edit-src-save)
268 #+end_src     
269     which seems to work.
271 I think this is great, but I think it should be implemented in the
272 org-mode core
274 **** DEFERRED Rename buffer and minor mode?
275      Something shorter than *Org Edit Src Example* for the buffer
276      name. org-babel is bringing org's source code interaction to a
277      level of maturity where the 'example' is no longer
278      appropriate. And if further keybindings are going to be added to
279      the minor mode then maybe org-edit-src-mode is a better name than
280      org-exit-edit-mode.
282      Maybe we should name the buffer with a combination of the source
283      code and the session.  I think that makes sense.
285      [ES] Are you also suggesting a new org-edit-src minor mode?
286      [DED] org-exit-edit-mode is a minor mode that already exists:
288      Minor mode installing a single key binding, "C-c '" to exit special edit.
290      org-edit-src-save now has a binding in that mode, so I guess all
291      I'm saying at this stage is that it's a bit of a misnomer. But
292      perhaps we will also have more functionality to add to that minor
293      mode, making it even more of a misnomer. Perhaps something like
294      org-src-mode would be better.
295 **** DONE Changed minor mode name and added hooks
296      
297 **** DEFERRED a hook called when the src edit buffer is created
298      This should be implemented in the org-mode core
300 ** TODO resolve references to other org buffers/files
301    This would allow source blocks to call upon tables, source-blocks,
302    and results in other org buffers/files.
303    
304    See...
305    - [[file:lisp/org-babel-ref.el::TODO%20allow%20searching%20for%20names%20in%20other%20buffers][org-babel-ref.el:searching-in-other-buffers]]
306    - [[file:lisp/org-babel.el::defun%20org-babel%20find%20named%20result%20name][org-babel.el#org-babel-find-named-result]]
307 ** TODO resolve references to other non-org files
308    - tabular data in .csv, .tsv etc format
309    - files of interpreted code: anything stopping us giving such files
310      similar status to a source code block?
311    - Would be nice to allow org and non-org files to be remote
312 ** TODO figure out how to handle errors during evaluation
313    R has a try function, with error handling, along the lines of
314    python. I bet ruby does too. Maybe more of an issue for functional
315    style; in my proposed scripting style the error just gets dumped to
316    the org buffer and the user is thus alerted.
317 ** TODO figure out how to handle graphic output
318 This is listed under [[* graphical output][graphical output]] in out objectives.
320 This should take advantage of the =:results file= option, and
321 languages which almost always produce graphical output should set
322 =:results file= to true by default.  That would handle placing these
323 results in the buffer.  Then if there is a combination of =silent= and
324 =file= =:results= headers we could drop the results to a temp buffer
325 and pop open that buffer...
327 ** TODO Finalise behaviour regarding vector/scalar output
328 *** DONE Stop spaces causing vector output
329 This simple example of multilingual chaining produces vector output if
330 there are spaces in the message and scalar otherwise.
332 [Not any more]
334 #+begin_src R :var msg=msg-from-python
335 paste(msg, "und R", sep=" ")
336 #+end_src
338 #+resname:
339 : org-babel speaks elisp y python und R
341 #+srcname: msg-from-python
342 #+begin_src python :var msg=msg-from-elisp
343 msg + " y python"
344 #+end_src
346 #+srcname: msg-from-elisp
347 #+begin_src emacs-lisp :var msg="org-babel speaks"
348 (concat msg " elisp")
349 #+end_src
350 ** STARTED share org-babel [1/4]
351 how should we share org-babel?
353 *** DONE post to org-mode
354 *** TODO post to ess mailing list
355 *** TODO create a org-babel page on worg
356 *** TODO create a short screencast demonstrating org-babel in action
358 *** examples
359 we need to think up some good examples
361 **** interactive tutorials
362 This could be a place to use [[* org-babel assertions][org-babel assertions]].
364 for example the first step of a tutorial could assert that the version
365 of the software-package (or whatever) is equal to some value, then
366 source-code blocks could be used with confidence (and executed
367 directly from) the rest of the tutorial.
369 **** answering a text-book question w/code example
370 org-babel is an ideal environment enabling both the development and
371 demonstrationg of the code snippets required as answers to many
372 text-book questions.
374 **** something using tables
375 maybe something along the lines of calculations from collected grades
377 **** file sizes
378 Maybe something like the following which outputs sizes of directories
379 under the home directory, and then instead of the trivial =emacs-lisp=
380 block we could use an R block to create a nice pie chart of the
381 results.
383 #+srcname: sizes
384 #+begin_src bash :results replace
385 du -sc ~/*
386 #+end_src
388 #+begin_src emacs-lisp :var sizes=sizes :results replace
389 (mapcar #'car sizes)
390 #+end_src
392 ** TODO command line execution
393 Allow source code blocks to be called form the command line.  This
394 will be easy using the =sbe= function in [[file:lisp/org-babel-table.el][org-babel-table.el]].
396 This will rely upon [[* resolve references to other buffers][resolve references to other buffers]].
398 ** TODO inline source code blocks [3/5]
399    Like the =\R{ code }= blocks
401    not sure what the format should be, maybe just something simple
402    like =src_lang[]{}= where lang is the name of the source code
403    language to be evaluated, =[]= is optional and contains any header
404    arguments and ={}= contains the code.
406    (see [[* (sandbox) inline source blocks][the-sandbox]])
408 *** DONE evaluation with \C-c\C-c
409 Putting aside the header argument issue for now we can just run these
410 with the following default header arguments
411 - =:results= :: silent
412 - =:exports= :: results
414 *** DONE inline exportation
415 Need to add an interblock hook (or some such) through org-exp-blocks
416 *** DONE header arguments
417 We should make it possible to use header arguments.
419 *** TODO fontification
420 we should color these blocks differently
422 *** TODO refine html exportation
423 should use a span class, and should show original source in tool-tip
425 ** TODO formulate general rules for handling vectors and tables / matrices with names
426    This is non-trivial, but may be worth doing, in particular to
427    develop a nice framework for sending data to/from R.
428 *** Notes
429     In R, indexing vector elements, and rows and columns, using
430     strings rather than integers is an important part of the
431     language.
432  - elements of a vector may have names
433  - matrices and data.frames may have "column names" and "row names"
434    which can be used for indexing
435  - In a data frame, row names *must* be unique
436 Examples
437 #+begin_example
438 > # a named vector
439 > vec <- c(a=1, b=2)
440 > vec["b"]
443 > mat <- matrix(1:4, nrow=2, ncol=2, dimnames=list(c("r1","r2"), c("c1","c2")))
444 > mat
445    c1 c2
446 r1  1  3
447 r2  2  4
448 > # The names are separate from the data: they do not interfere with operations on the data
449 > mat * 3
450    c1 c2
451 r1  3  9
452 r2  6 12
453 > mat["r1","c2"]
454 [1] 3
455 > df <- data.frame(var1=1:26, var2=26:1, row.names=letters)
456 > df$var2
457  [1] 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10  9  8  7  6  5  4  3  2  1
458 > df["g",]
459   var1 var2
460 g    7   20
461 #+end_example
463  So it's tempting to try to provide support for this in org-babel. For example
464  - allow R to refer to columns of a :var reference by their names
465  - When appropriate, results from R appear in the org buffer with "named
466    columns (and rows)"
468    However none (?) of the other languages we are currently supporting
469    really have a native matrix type, let alone "column names" or "row
470    names". Names are used in e.g. python and perl to refer to entries
471    in dicts / hashes.
473    It currently seems to me that support for this in org-babel would
474    require setting rules about when org tables are considered to have
475    named columns/fields, and ensuring that (a) languages with a notion
476    of named columns/fields use them appropriately and (b) languages
477    with no such notion do not treat then as data.
479  - Org allows something that *looks* like column names to be separated
480    by a hline
481  - Org also allows a row to *function* as column names when special
482    markers are placed in the first column. An hline is unnecessary
483    (indeed hlines are purely cosmetic in org [correct?]
484  - Org does not have a notion of "row names" [correct?]
485     
486    The full org table functionality exeplified [[http://orgmode.org/manual/Advanced-features.html#Advanced-features][here]] has features that
487    we would not support in e.g. R (like names for the row below).
488    
489 *** Initial statement: allow tables with hline to be passed as args into R
490    This doesn't seem to work at the moment (example below). It would
491    also be nice to have a natural way for the column names of the org
492    table to become the column names of the R data frame, and to have
493    the option to specify that the first column is to be used as row
494    names in R (these must be unique). But this might require a bit of
495    thinking about.
498 #+TBLNAME: egtable
499 | col1 | col2    | col3 |
500 |------+---------+------|
501 |    1 | 2       |    3 |
502 |    4 | schulte |    6 |
504 #+TBLNAME: egtable2
505 | 1 |         2 | 3 |
506 | 4 | schulte   | 6 |
508 #+begin_src R var tabel=egtable
509 tabel
510 #+end_src
512 #+resname:
513 | "col1" | "col2"    | "col3" |
514 |--------+-----------+--------|
515 |      1 | 2         |      3 |
516 |      4 | "schulte" |      6 |
519 Another example is in the [[*operations%20in%20on%20tables][grades example]].
521 ** TODO re-implement helper functions from org-R
522 *** Initial statement [Eric]
523     Much of the power of org-R seems to be in it's helper functions for
524     the quick graphing of tables.  Should we try to re-implement these
525     functions on top of org-babel?
527     I'm thinking this may be useful both to add features to org-babel-R and
528     also to potentially suggest extensions of the framework.  For example
529     one that comes to mind is the ability to treat a source-code block
530     like a function which accepts arguments and returns results. Actually
531     this can be it's own TODO (see [[* source blocks as functions][source blocks as functions]]).
532 *** Objectives [Dan]
533     - We want to provide convenient off-the-shelf actions
534       (e.g. plotting data) that make use of our new code evaluation
535       environment but do not require any actual coding.
536 *** Initial Design proposal [Dan]
537     - *Input data* will be specified using the same mechanism as :var
538       references, thus the input data may come from a table, or
539       another source block, and it is initially available as an elisp
540       data structure.
541     - We introduce a new #+ line, e.g.  #+BABELDO. C-c C-c on that
542       line will apply an *action* to the referenced data.
543     - *Actions correspond to source blocks*: our library of available
544       actions will be a library of org-babel source blocks. Thus the
545       code for executing an action, and the code for dealing with the
546       output of the action will be the same code as for executing
547       source blocks in general
548     - Optionally, the user can have the relevant source block inserted
549       into the org buffer after the (say) #+BABELDO line. This will
550       allow the user to fine tune the action by modifying the code
551       (especially useful for plots).
552     - So maybe a #+BABELDO line will have header args
553       - :data (a reference to a table or source code block)
554       - :action (or should that be :srcname?) which will be something
555         like :action pie-chart, referring to a source block which will
556         be executed with the :data referent passed in using a :var arg.
557       - :showcode or something controlling whether to show the code
558       
559 *** Modification to design
560     I'm implementing this, at least initially, as a new interpreter
561     named 'babel', which has an empty body. 'babel' blocks take
562     a :srcname header arg, and look for the source-code block with
563     that name. They then execute the referenced block, after first
564     appending their own header args on to the target block's header
565     args.
567     If the target block is in the library of babel (a.o.t. e.g. the
568     current buffer), then the code in the block will refer to the
569     input data with a name dictated by convention (e.g. __data__
570     (something which is syntactically legal in all languages...). Thus
571     the babel block will use a :var __data__ = whatever header arg to
572     reference the data to be plotted.
574 *** Current design
575     This is covered by the [[file:library-of-babel.org][Library of Babel]], which will contain
576     ready-made source blocks designed to carry out useful common tasks.
578 ** PROPOSED Are we happy with current behaviour regarding vector/scalar output?
579 This simple example of multilingual chaining produces vector output if
580 there are spaces in the message and scalar otherwise.
582 #+begin_src R :var msg=msg-from-python
583 paste(msg, "und_R", sep="_")
584 #+end_src
586 #+srcname: msg-from-python
587 #+begin_src python :var msg=msg-from-elisp
588 msg + "_y_python"
589 #+end_src
591 #+srcname: msg-from-elisp
592 #+begin_src emacs-lisp :var msg="org-babel_speaks"
593 (concat msg "_elisp")
594 #+end_src
596 ** PROPOSED conversion between org-babel and noweb (e.g. .Rnw) format
597    I haven't thought about this properly. Just noting it down. What
598    Sweave uses is called "R noweb" (.Rnw).
599    
600    I found a good description of noweb in the following article (see
601    the [[http://www.cs.tufts.edu/~nr/pubs/lpsimp.pdf][pdf]]).
602    
603    I think there are two parts to noweb, the construction of
604    documentation and the extraction of source-code (with notangle).
606    *documentation*: org-mode handles all of our documentation needs in
607    a manner that I believe is superior to noweb.
608    
609    *source extraction* At this point I don't see anyone writing large
610    applications with 100% of the source code contained in org-babel
611    files, rather I see org-babel files containing things like
612    - notes with active code chunks
613    - interactive tutorials
614    - requirements documents with code running test suites
615    - and of course experimental reports with the code to run the
616      experiment, and perform analysis
618    Basically I think the scope of the programs written in org-babel
619    (at least initially) will be small enough that it wont require the
620    addition of a tangle type program to extract all of the source code
621    into a running application.
623    On the other hand, since we already have named blocks of source
624    code which reference other blocks on which they rely, this
625    shouldn't be too hard to implement either on our own, or possibly
626    relying on something like noweb/notangle.
628 ** PROPOSED support for passing paths to files between source blocks
629 Maybe this should be it's own result type (in addition to scalars and
630 vectors).  The reason being that some source-code blocks (for example
631 ditaa or anything that results in the creation of a file) may want to
632 pass a file path back to org-mode which could then be inserted into
633 the org-mode buffer as a link to the file...
635 This would allow for display of images upon export providing
636 functionality similar to =org-exp-blocks= only in a more general
637 manner.
639 ** DEFERRED use textConnection to pass tsv to R?
640    When passing args from the org buffer to R, the following route is
641    used: arg in buffer -> elisp -> tsv on file -> data frame in R. I
642    think it would be possible to avoid having to write to file by
643    constructing an R expression in org-babel-R-assign-elisp, something
644    like this
646 #+begin_src emacs-lisp
647 (org-babel-R-input-command
648  (format  "%s <- read.table(textConnection(\"%s\"), sep=\"\\t\", as.is=TRUE)"
649           name (orgtbl-to-tsv value '(:sep "\t" :fmt org-babel-R-quote-tsv-field))))
650 #+end_src
652    I haven't tried to implement this yet as it's basically just
653    fiddling with something that works. The only reason for it I can
654    think of would be efficiency and I haven't tested that.
656    This Didn't work after an initial test.  I still think this is a
657    good idea (I also think we should try to do something similar when
658    writing out results frmo R to elisp) however as it wouldn't result
659    in any functional changes I'm bumping it down to deferred for
660    now. [Eric]
662 for quick tests
664 #+tblname: quick-test
665 | 1 | 2 | 3 |
667 #+srcname: quick-test-src-blk
668 #+begin_src R :var vec=quick-test
669 mean(mean(vec))
670 #+end_src
672 : 2
674 ** DEFERRED re-implement R evaluation using ess-command or ess-execute
675    I don't have any complaints with the current R evaluation code or
676    behaviour, but I think it would be good to use the ESS functions
677    from a political point of view. Plus of course it has the normal
678    benefits of an API (insulates us from any underlying changes etc). [DED]
680    I'll look into this.  I believe that I looked at and rejected these
681    functions initially but now I can't remember why.  I agree with
682    your overall point about using API's where available.  I will take
683    a look back at these and either switch to using the ess commands,
684    or at least articulate under this TODO the reasons for using our
685    custom R-interaction commands. [Eric]
687    ess-execute
689    Lets just replace =org-babel-R-input-command= with =ess-execute=.
691    I tried this, and although it works in some situations, I find that
692    =ess-command= will often just hang indefinitely without returning
693    results.  Also =ess-execute= will occasionally hang, and pops up
694    the buffer containing the results of the command's execution, which
695    is undesirable.  For now these functions can not be used.  Maybe
696    someone more familiar with the ESS code can recommend proper usage
697    of =ess-command= or some other lower-level function which could be
698    used in place of [[file:lisp/org-babel-R.el::defun%20org-babel%20R%20input%20command%20command][org-babel-R-input-command]].
700 *** ess functions
701    
702 #+begin_quote ess-command
703 (ess-command COM &optional BUF SLEEP NO-PROMPT-CHECK)
705 Send the ESS process command COM and delete the output
706 from the ESS process buffer.  If an optional second argument BUF exists
707 save the output in that buffer. BUF is erased before use.
708 COM should have a terminating newline.
709 Guarantees that the value of .Last.value will be preserved.
710 When optional third arg SLEEP is non-nil, `(sleep-for (* a SLEEP))'
711 will be used in a few places where `a' is proportional to `ess-cmd-delay'.
712 #+end_quote
714 #+begin_quote ess-execute
715 (ess-execute COMMAND &optional INVERT BUFF MESSAGE)
717 Send a command to the ESS process.
718 A newline is automatically added to COMMAND.  Prefix arg (or second arg
719 INVERT) means invert the meaning of
720 `ess-execute-in-process-buffer'.  If INVERT is 'buffer, output is
721 forced to go to the process buffer.  If the output is going to a
722 buffer, name it *BUFF*.  This buffer is erased before use.  Optional
723 fourth arg MESSAGE is text to print at the top of the buffer (defaults
724 to the command if BUFF is not given.)
725 #+end_quote
727 *** out current setup
729     1) The body of the R source code block is wrapped in a function
730     2) The function is called inside of a =write.table= function call
731        writing the results to a table
732     3) The table is read using =org-table-import=
734 ** DEFERRED Rework Interaction with Running Processes [2/5]
735 *** DONE robust to errors interrupting execution
737 #+srcname: long-runner-ruby
738 #+begin_src ruby :results silent
739   sleep(10)
740   :patton_is_an_grumpy
741 #+end_src
743 *** DEFERRED use =C-g= keyboard-quit to push processing into the background
744 This may be possible using the `run-with-timer' command.
746 I have no idea how this could work...
748 #+srcname: long-runner-ruby
749 #+begin_src ruby :results silent
750   sleep(10)
751   :patton_is_an_grumpy
752 #+end_src
754 *** TODO ability to select which of multiple sessions is being used
755     Increasingly it is looking like we're going to want to run all
756     source code blocks in comint buffer (sessions).  Which will have
757     the benefits of
758     1) allowing background execution
759     2) maintaining state between source-blocks
760        - allowing inline blocks w/o header arguments 
762 **** R sessions
763      (like ess-switch-process in .R buffers)
764      
765      Maybe this could be packaged into a header argument, something
766      like =:R_session= which could accept either the name of the
767      session to use, or the string =prompt=, in which case we could use
768      the =ess-switch-process= command to select a new process.
769      
770 *** TODO evaluation of shell code as background process? 
771     After C-c C-c on an R code block, the process may appear to
772     block, but C-g can be used to reclaim control of the .org buffer,
773     without interrupting the R evalution. However I believe this is not
774     true of bash/sh evaluation. [Haven't tried other languages] Perhaps
775     a solution is just to background the individual shell commands.
777     The other languages (aside from emacs lisp) are run through the
778     shell, so if we find a shell solution it should work for them as
779     well.
780     
781     Adding an ampersand seems to be a supported way to run commands in
782     the background (see [[http://www.emacswiki.org/emacs/ExecuteExternalCommand#toc4][external-commands]]).  Although a more extensible
783     solution may involve the use of the [[elisp:(progn (describe-function 'call-process-region) nil)][call-process-region]] function.
784     
785     Going to try this out in a new file [[file:lisp/org-babel-proc.el][org-babel-proc.el]].  This should
786     contain functions for asynchronously running generic shell commands
787     in the background, and then returning their input.
789 **** partial update of org-mode buffer
790     The sleekest solution to this may be using a comint buffer, and
791     then defining a filter function which would incrementally interpret
792     the results as they are returned, including insertion into the
793     org-mode buffer.  This may actually cause more problems than it is
794     worth, what with the complexities of identifying the types of
795     incrementally returned results, and the need for maintenance of a
796     process marker in the org buffer.
798 **** 'working' spinner
799      It may be nice and not too difficult to place a spinner on/near the
800      evaluating source code block
802 *** TODO conversion of output from interactive shell, R (and python) sessions to org-babel buffers
803     [DED] This would be a nice feature I think. Although an org-babel
804     purist would say that it's working the wrong way round... After
805     some interactive work in a *R* buffer, you save the buffer, maybe
806     edit out some lines, and then convert it to org-babel format for
807     posterity. Same for a shell session either in a *shell* buffer, or
808     pasted from another terminal emulator. And python of course.
810 ** DEFERRED improve the source-block snippet
811 any real improvement seems somewhat beyond the ability of yasnippet
812 for now.
814 [[file:~/src/emacs-starter-kit/src/snippets/text-mode/rst-mode/chap::name%20Chapter%20title][file:~/src/emacs-starter-kit/src/snippets/text-mode/rst-mode/chap::name Chapter title]]
815 #+begin_example
816 ,#name : Chapter title
817 ,# --
818 ${1:Chapter}
819 ${1:$(make-string (string-width text) ?\=)}
822 #+end_example
824 [[file:snippets/org-mode/sb][sb -- snippet]]
826 waiting for guidance from those more familiar with yasnippets
827 ** DONE add a function to jump to a source-block by name
828    I've had an initial stab at that in org-babel-find-named-block
829    (library-of-babel branch).
831    At the same time I introduced org-babel-named-src-block-regexp, to
832    match src-blocks with srcname.
834    This is now working with the command
835    `org-babel-goto-named-source-block', all we need is a good key
836    binding.
838 ** DONE add =:none= session argument (for purely functional execution) [4/4]
839 This would allow source blocks to be run in their own new process
841 - These blocks could then also be run in the background (since we can
842   detach and just wait for the process to signal that it has terminated)
843 - We wouldn't be drowning in session buffers after running the tests
844 - we can re-use much of the session code to run in a more /functional/
845   mode
847 While session provide a lot of cool features, like persistent
848 environments, [[* DONE function to bring up inferior-process buffer][pop-to-session]], and hints at exportation for
849 org-babel-tangle, they also have some down sides and I'm thinking that
850 session-based execution maybe shouldn't be the default behavior.
852 Down-sides to sessions
853 - *much* more complicated than functional evaluation
854   - maintaining the state of the session has weird issues
855   - waiting for evaluation to finish
856   - prompt issues like [[* TODO weird escaped characters in shell prompt break shell evaluation][shell-prompt-escapes-bug]]
857 - can't run in background
858 - litter emacs with session buffers
860 *** DONE ruby
862 #+srcname: ruby-task-no-session
863 #+begin_src ruby :results replace output
864 puts :eric
865 puts :schulte
866 [1, 2, 3]
867 #+end_src
869 #+resname: ruby-task-no-session
870 | "eric"    |
871 | "schulte" |
872 *** DONE python
874 #+srcname: task-python-none-session
875 #+begin_src python :session none :results replace value
876 print 'something'
877 print 'output'
878 [1, 2, 3]
879 #+end_src
881 #+resname: task-python-none-session
882 | 1 | 2 | 3 |
884 *** DONE sh
886 #+srcname: task-session-none-sh
887 #+begin_src sh :results replace
888 echo "first"
889 echo "second"
890 #+end_src
892 #+resname: task-session-none-sh
893 | "first"  |
894 | "second" |
896 *** DONE R
898 #+srcname: task-no-session-R
899 #+begin_src R :results replace output
900 a <- 8
901 b <- 9
902 a + b
903 b - a
904 #+end_src
906 #+resname: task-no-session-R
907 | "[1]" | 17 |
908 | "[1]" |  1 |
910 ** DONE fully purge org-babel-R of direct comint interaction
911 try to remove all code under the [[file:lisp/org-babel-R.el::functions%20for%20evaluation%20of%20R%20code][;; functions for evaluation of R code]] line
913 ** DONE Create objects in top level (global) environment [5/5]
914 *sessions*
916 *** initial requirement statement [DED]
917    At the moment, objects created by computations performed in the
918    code block are evaluated in the scope of the
919    code-block-function-body and therefore disappear when the code
920    block is evaluated {unless you employ some extra trickery like
921    assign('name', object, env=globalenv()) }. I think it will be
922    desirable to also allow for a style wherein objects that are
923    created in one code block persist in the R global environment and
924    can be re-used in a separate block.
926    This is what Sweave does, and while I'm not saying we have to be
927    the same as Sweave, it wouldn't be hard for us to provide the same
928    behaviour in this case; if we don't, we risk undeservedly being
929    written off as an oddity by some.
931    IOW one aspect of org-babel is that of a sort of functional
932    meta-programming language. This is crazy, in a very good
933    way. Nevertheless, wrt R I think there's going to be a lot of value
934    in providing for a working style in which the objects are stored in
935    the R session, rather than elisp/org buffer. This will be a very
936    familiar working style to lots of people.
938    There are no doubt a number of different ways of accomplishing
939    this, the simplest being a hack like adding
941 #+begin_src R
942 for(objname in ls())
943     assign(objname, get(objname), envir=globalenv())
944 #+end_src
946 to the source code block function body. (Maybe wrap it in an on.exit() call).
948 However this may deserve to be thought about more carefully, perhaps
949 with a view to having a uniform approach across languages. E.g. shell
950 code blocks have the same semantics at the moment (no persistence of
951 variables across code blocks), because the body is evaluated in a new
952 bash shell process rather than a running shell. And I guess the same
953 is true for python. However, in both these cases, you could imagine
954 implementing the alternative in which the body is evaluated in a
955 persistent interactive session. It's just that it's particularly
956 natural for R, seeing as both ESS and org-babel evaluate commands in a
957 single persistent R session.
959 *** sessions [Eric]
961 Thanks for bringing this up.  I think you are absolutely correct that we
962 should provide support for a persistent environment (maybe called a
963 *session*) in which to evaluate code blocks.  I think the current setup
964 demonstrates my personal bias for a functional style of programming
965 which is certainly not ideal in all contexts.
967 While the R function you mention does look like an elegant solution, I
968 think we should choose an implementation that would be the same across
969 all source code types.  Specifically I think we should allow the user to
970 specify an optional *session* as a header variable (when not present we
971 assume a default session for each language).  The session name could be
972 used to name a comint buffer (like the *R* buffer) in which all
973 evaluation would take place (within which variables would retain their
974 values --at least once I remove some of the functional method wrappings
975 currently in place-- ).
977 This would allow multiple environments to be used in the same buffer,
978 and once this setup was implemented we should be able to fairly easily
979 implement commands for jumping between source code blocks and the
980 related session buffers, as well as for dumping the last N commands from
981 a session into a new or existing source code block.
983 Please let me know if you foresee any problems with this proposed setup,
984 or if you think any parts might be confusing for people coming from
985 Sweave.  I'll hopefully find some time to work on this later in the
986 week.
988 *** can functional and interpreted/interactive models coexist?
990 Even though both of these use the same =*R*= buffer the value of =a=
991 is not preserved because it is assigned inside of a functional
992 wrapper.
994 #+srcname: task-R-sessions
995 #+begin_src R 
996 a <- 9
997 b <- 21
998 a + b
999 #+end_src
1001 #+srcname: task-R-same-session
1002 #+begin_src R 
1004 #+end_src
1006 This functional wrapper was implemented in order to efficiently return
1007 the results of the execution of the entire source code block.  However
1008 it inhibits the evaluation of source code blocks in the top level,
1009 which would allow for persistence of variable assignment across
1010 evaluations.  How can we allow *both* evaluation in the top level, and
1011 efficient capture of the return value of an entire source code block
1012 in a language independent manner?
1014 Possible solutions...
1015 1) we can't so we will have to implement two types of evaluation
1016    depending on which is appropriate (functional or imperative)
1017 2) we remove the functional wrapper and parse the source code block
1018    into it's top level statements (most often but not always on line
1019    breaks) so that we can isolate the final segment which is our
1020    return value.
1021 3) we add some sort of "#+return" line to the code block
1022 4) we take advantage of each languages support for meta-programming
1023    through =eval= type functions, and use said to evaluate the entire
1024    blocks in such a way that their environment can be combined with the
1025    global environment, and their results are still captured.
1026 5) I believe that most modern languages which support interactive
1027    sessions have support for a =last_result= type function, which
1028    returns the result of the last input without re-calculation.  If
1029    widely enough present this would be the ideal solution to a
1030    combination of functional and imperative styles.
1032 None of these solutions seem very desirable, but for now I don't see
1033 what else would be possible.
1035 Of these options I was leaning towards (1) and (4) but now believe
1036 that if it is possible option (5) will be ideal.
1038 **** (1) both functional and imperative evaluation
1039 Pros
1040 - can take advantage of built in functions for sending regions to the
1041   inferior process
1042 - retains the proven tested and working functional wrappers
1044 Cons
1045 - introduces the complication of keeping track of which type of
1046   evaluation is best suited to a particular context
1047 - the current functional wrappers may require some changes in order to
1048   include the existing global context
1050 **** (4) exploit language meta-programming constructs to explicitly evaluate code
1051 Pros
1052 - only one type of evaluation
1054 Cons
1055 - some languages may not have sufficient meta-programming constructs
1057 **** (5) exploit some =last_value= functionality if present
1059 Need to ensure that most languages have such a function, those without
1060 will simply have to implement their own similar solution...
1062 | language   | =last_value= function       |
1063 |------------+-----------------------------|
1064 | R          | .Last.value                 |
1065 | ruby       | _                           |
1066 | python     | _                           |
1067 | shell      | see [[* last command for shells][last command for shells]] |
1068 | emacs-lisp | see [[* emacs-lisp will be a special case][special-case]]            |
1070 #+srcname: task-last-value
1071 #+begin_src ruby
1072 82 + 18
1073 #+end_src
1075 ***** last command for shells
1076 Do this using the =tee= shell command, and continually pipe the output
1077 to a file.
1079 Got this idea from the following [[http://linux.derkeiler.com/Mailing-Lists/Fedora/2004-01/0898.html][email-thread]].
1081 suggested from mailing list
1083 #+srcname: bash-save-last-output-to-file
1084 #+begin_src sh 
1085 while read line 
1086 do 
1087   bash -c "$line" | tee /tmp/last.out1 
1088   mv /tmp/last.out1 /tmp/last.out 
1089 done
1090 #+end_src
1092 another proposed solution from the above thread
1094 #+srcname: bash-save-in-variable
1095 #+begin_src sh 
1096 #!/bin/bash 
1097 # so - Save Output. Saves output of command in OUT shell variable. 
1098 OUT=`$*` 
1099 echo $OUT 
1100 #+end_src
1102 and another
1104 #+begin_quote
1105 .inputrc: 
1106 "^[k": accept-line 
1107 "^M": " | tee /tmp/h_lastcmd.out ^[k" 
1109 .bash_profile: 
1110 export __=/tmp/h_lastcmd.out 
1112 If you try it, Alt-k will stand for the old Enter; use "command $__" to 
1113 access the last output. 
1115 Best, 
1119 Herculano de Lima Einloft Neto
1120 #+end_quote
1122 ***** emacs-lisp will be a special case
1123 While it is possible for emacs-lisp to be run in a console type
1124 environment (see the =elim= function) it is *not* possible to run
1125 emacs-lisp in a different *session*.  Meaning any variable set top
1126 level of the console environment will be set *everywhere* inside
1127 emacs.  For this reason I think that it doesn't make any sense to
1128 worry about session support for emacs-lisp.
1130 *** Further thoughts on 'scripting' vs. functional approaches
1132     These are just thoughts, I don't know how sure I am about this.
1133     And again, perhaps I'm not saying anything very radical, just that
1134     it would be nice to have some options supporting things like
1135     receiving text output in the org buffer.
1137     I can see that you've already gone some way down the road towards
1138     the 'last value' approach, so sorry if my comments come rather
1139     late. I am concerned that we are not giving sufficient attention
1140     to stdout / the text that is returned by the interpreters. In
1141     contrast, many of our potential users will be accustomed to a
1142     'scripting' approach, where they are outputting text at various
1143     points in the code block, not just at the end. I am leaning
1144     towards thinking that we should have 2 modes of evaluation:
1145     'script' mode, and 'functional' mode.
1147     In script mode, evaluation of a code block would result in *all*
1148     text output from that code block appearing as output in the org
1149     buffer, presumably as an #+begin_example...#+end_example. There
1150     could be an :echo option controlling whether the input commands
1151     also appear in the output. [This is like Sweave].
1153     In functional mode, the *result* of the code block is available as
1154     an elisp object, and may appear in the org buffer as an org
1155     table/string, via the mechanisms you have developed already.
1157     One thing I'm wondering about is whether, in script mode, there
1158     simply should not be a return value. Perhaps this is not so
1159     different from what exists: script mode would be new, and what
1160     exists currently would be functional mode.
1162     I think it's likely that, while code evaluation will be exciting
1163     to people, a large majority of our users in a large majority of
1164     their usage will not attempt to actually use the return value from
1165     a source code block in any meaningful way. In that case, it seems
1166     rather restrictive to only allow them to see output from the end
1167     of the code block.
1169     Instead I think the most accessible way to introduce org-babel to
1170     people, at least while they are learning it, is as an immensely
1171     powerful environment in which to embed their 'scripts', which now
1172     also allows them to 'run' their 'scripts'. Especially as such
1173     people are likely to be the least capable of the user-base, a
1174     possible design-rule would be to make the scripting style of usage
1175     easy (default?), perhaps requiring a special option to enable a
1176     functional style. Those who will use the functional style won't
1177     have a problem understanding what's going on, whereas the 'skript
1178     kiddies' might not even know the syntax for defining a function in
1179     their language of choice. And of course we can allow the user to
1180     set a variable in their .emacs controlling the preference, so that
1181     functional users are not inconveniennced by having to provide
1182     header args the whole time.
1184     Please don't get the impression that I am down-valuing the
1185     functional style of org-babel. I am constantly horrified at the
1186     messy 'scripts' that my colleagues produce in perl or R or
1187     whatever! Nevertheless that seems to be how a lot of people work.
1188     
1189     I think you were leaning towards the last-value approach because
1190     it offered the possibility of unified code supporting both the
1191     single evaluation environment and the functional style. If you
1192     agree with any of the above then perhaps it will impact upon this
1193     and mean that the code in the two branches has to differ a bit. In
1194     that case, functional mode could perhaps after all evaluate each
1195     code block in its own environment, thus (re)approaching 'true'
1196     functional programming (side-effects are hard to achieve).
1198 #+begin_src sh
1199 ls > files
1200 echo "There are `wc -l files` files in this directory"
1202 #+end_src
1204 *** even more thoughts on evaluation, results, models and options
1206 Thanks Dan, These comments are invaluable.
1208 What do you think about this as a new list of priorities/requirements
1209 for the execution of source-code blocks.
1211 - Sessions
1212    1)  we want the evaluation of the source code block to take place in a
1213        session which can persist state (variables, current directory,
1214        etc...).
1215    2)  source code blocks can specify their session with a header argument
1216    3)  each session should correspond to an Emacs comint buffer so that the
1217        user can drop into the session and experiment with live code
1218        evaluation.
1219 - Results
1220   1) each source-code block generates some form of results which (as
1221      we have already implemented) is transfered into emacs-lisp
1222      after which it can be inserted into the org-mode buffer, or
1223      used by other source-code blocks
1224   2) when the results are translated into emacs-lisp, forced to be
1225      interpreted as a scalar (dumping their raw values into the
1226      org-mode buffer), as a vector (which is often desirable with R
1227      code blocks), or interpreted on the fly (the default option).
1228      Note that this is very nearly currently implemented through the
1229      [[* DONE results-type header (vector/file)][results-type-header]].
1230   3) there should be *two* means of collecting results from the
1231      execution of a source code block.  *Either* the value of the
1232      last statement of the source code block, or the collection of
1233      all that has been passed to STDOUT during the evaluation.
1235 **** header argument or return line (*header argument*)
1237    Rather than using a header argument to specify how the return value
1238    should be passed back, I'm leaning towards the use of a =#+RETURN=
1239    line inside the block.  If such a line *is not present* then we
1240    default to using STDOUT to collect results, but if such a line *is
1241    present* then we use it's value as the results of the block.  I
1242    think this will allow for the most elegant specification between
1243    functional and script execution.  This also cleans up some issues
1244    of implementation and finding which statement is the last
1245    statement.
1247    Having given this more thought, I think a header argument is
1248    preferable.  The =#+return:= line adds new complicating syntax for
1249    something that does little more than we would accomplish through
1250    the addition of a header argument.  The only benefit being that we
1251    know where the final statement starts, which is not an issue in
1252    those languages which contain 'last value' operators.
1254    new header =:results= arguments
1255    - script :: explicitly states that we want to use STDOUT to
1256                initialize our results
1257    - return_last :: stdout is ignored instead the *value* of the final
1258                     statement in the block is returned
1259    - echo :: means echo the contents of the source-code block along
1260              with the results (this implies the *script* =:results=
1261              argument as well)
1263 *** DONE rework evaluation lang-by-lang [4/4]
1265 This should include...
1266 - functional results working with the comint buffer
1267 - results headers
1268   - script :: return the output of STDOUT
1269     - write a macro which runs the first redirection, executes the
1270       body, then runs the second redirection
1271   - last :: return the value of the last statement
1272     - 
1274 - sessions in comint buffers
1276 **** DONE Ruby [4/4]
1277 - [X] functional results working with comint
1278 - [X] script results
1279 - [X] ensure scalar/vector results args are taken into consideration
1280 - [X] ensure callable by other source block
1282 #+srcname: ruby-use-last-output
1283 #+begin_src ruby :results replace
1284 a = 2
1285 b = 4
1286 c = a + b
1287 [a, b, c, 78]
1288 #+end_src
1290 #+resname: ruby-use-last-output
1291 | 2 | 4 | 6 | 78 |
1293 #+srcname: task-call-use-last-output
1294 #+begin_src ruby :var last=ruby-use-last-output :results replace
1295 last.flatten.size + 1
1296 #+end_src
1298 #+resname: task-call-use-last-output
1299 : 5
1301 ***** ruby sessions
1303 #+srcname: first-ruby-session-task
1304 #+begin_src ruby :session schulte :results silent
1305 schulte = 27
1306 #+end_src
1308 #+srcname: second-ruby-session-task
1309 #+begin_src ruby :session schulte :results silent
1310 schulte + 3
1311 #+end_src
1313 #+srcname: without-the-right-session
1314 #+begin_src ruby :results silent
1315 schulte
1316 #+end_src
1318 **** DONE R [4/4]
1320 - [X] functional results working with comint
1321 - [X] script results
1322 - [X] ensure scalar/vector results args are taken into consideration
1323 - [X] ensure callable by other source block
1325 To redirect output to a file, you can use the =sink()= command.
1327 #+srcname: task_R_B
1328 #+begin_src R :results value vector silent
1329 a <- 9
1330 b <- 10
1331 b - a
1332 a + b
1333 #+end_src
1335 #+srcname: task-R-use-other-output
1336 #+begin_src R :var twoentyseven=task_R_B() :results replace value
1338 twoentyseven + 9
1339 #+end_src
1341 #+resname: task-R-use-other-output
1342 : 28
1344 **** DONE Python [4/4]
1345 - [X] functional results working with comint
1346 - [X] script results
1347 - [X] ensure scalar/vector results args are taken into consideration
1348 - [X] ensure callable by other source block
1350 #+srcname: task-new-eval-for-python
1351 #+begin_src python :results silent output scalar
1355 #+end_src
1357 #+srcname: task-use-new-eval
1358 #+begin_src python :var tasking=task-new-eval-for-python() :results replace
1359 tasking + 2
1360 #+end_src
1362 #+resname: task-use-new-eval
1363 : 12
1365 **** DONE Shells [4/4]
1366 - [X] functional results working with comint
1367 - [X] script results
1368 - [X] ensure scalar/vector results args are taken into consideration
1369 - [X] ensure callable by other source block
1371 #+srcname: task-shell-new-evaluation
1372 #+begin_src sh :results silent value scalar
1373 echo 'eric'
1374 date
1375 #+end_src
1377 #+srcname: task-call-other-shell
1378 #+begin_src sh :var other=task-shell-new-evaluation() :results replace  scalar
1379 echo $other ' is the old date'
1380 #+end_src
1382 #+resname: task-call-other-shell
1383 : $ Fri Jun 12 13:08:37 PDT 2009  is the old date
1385 *** DONE implement a *session* header argument [4/4]
1386 =:session= header argument to override the default *session* buffer
1388 **** DONE ruby
1390 #+srcname: task-ruby-named-session
1391 #+begin_src ruby :session schulte :results replace
1392 schulte = :in_schulte
1393 #+end_src
1395 #+resname: task-ruby-named-session
1396 : :in_schulte
1398 #+srcname: another-in-schulte
1399 #+begin_src ruby :session schulte 
1400 schulte
1401 #+end_src
1403 #+resname: another-in-schulte
1404 : :in_schulte
1405 : :in_schulte
1406 : :in_schulte
1408 **** DONE python
1410 #+srcname: python-session-task
1411 #+begin_src python :session what :results silent
1412 what = 98
1413 #+end_src
1415 #+srcname: python-get-from-session
1416 #+begin_src python :session what :results replace
1417 what
1418 #+end_src
1420 #+resname: python-get-from-session
1421 : 98
1423 **** DONE shell
1425 #+srcname: task-shell-sessions
1426 #+begin_src sh :session what
1427 WHAT='patton'
1428 #+end_src
1430 #+srcname: task-shell-sessions-what
1431 #+begin_src sh :session what :results replace
1432 echo $WHAT
1433 #+end_src
1435 #+resname: task-shell-sessions-what
1436 : patton
1438 **** DONE R
1440 #+srcname: task-R-session
1441 #+begin_src R :session what :results replace
1442 a <- 9
1443 b <- 8
1444 a + b
1445 #+end_src
1447 #+resname: task-R-session
1448 : 17
1450 #+srcname: another-task-R-session
1451 #+begin_src R :session what :results replace
1452 a + b
1453 #+end_src
1455 *** DONE function to bring up inferior-process buffer [4/4]
1457 This should be callable from inside of a source-code block in an
1458 org-mode buffer.  It should evaluate the header arguments, then bring
1459 up the inf-proc buffer using =pop-to-buffer=.
1461 For lack of a better place, lets add this to the `org-metadown-hook'
1462 hook.
1464 To give this a try, place the cursor on a source block with variables,
1465 (optionally git a prefix argument) then hold meta and press down.
1467 **** DONE ruby
1469 #+srcname: task-ruby-pop-to-session
1470 #+begin_src ruby :var num=9 :var another="something else"
1471 num.times{|n| puts another}
1472 #+end_src
1474 **** DONE python
1476 #+srcname: task-python-pop-to-session
1477 #+begin_src python :var num=9 :var another="something else"
1478 another * num
1479 #+end_src
1480 **** DONE R
1482 #+srcname: task-R-pop-to-session
1483 #+begin_src R :var a=9 :var b=8
1484 a * b
1485 #+end_src
1487 **** DONE shell
1489 #+srcname: task-shell-pop-sessions
1490 #+begin_src sh :var NAME="eric"
1491 echo $NAME
1492 #+end_src
1494 *** DEFERRED function to dump last N lines from inf-proc buffer into the current source block
1496 Callable with a prefix argument to specify how many lines should be
1497 dumped into the source-code buffer.
1499 *** REJECTED comint notes
1501 Implementing comint integration in [[file:lisp/org-babel-comint.el][org-babel-comint.el]].
1503 Need to have...
1504 - handling of outputs
1505   - split raw output from process by prompts
1506   - a ring of the outputs, buffer-local, `org-babel-comint-output-ring'
1507   - a switch for dumping all outputs to a buffer
1508 - inputting commands
1510 Lets drop all this language specific stuff, and just use
1511 org-babel-comint to split up our outputs, and return either the last
1512 value of an execution or the combination of values from the
1513 executions.
1515 **** comint filter functions
1516 : ;;  comint-input-filter-functions     hook    process-in-a-buffer
1517 : ;;  comint-output-filter-functions    hook    function modes.
1518 : ;;  comint-preoutput-filter-functions   hook
1519 : ;;  comint-input-filter                       function ...
1521 #+srcname: obc-filter-ruby
1522 #+begin_src ruby :results last
1528 #+end_src
1530 ** DONE Remove protective commas from # comments before evaluating
1531    org inserts protective commas in front of ## comments in language
1532    modes that use them. We need to remove them prior to sending code
1533    to the interpreter.
1535 #+srcname: testing-removal-of-protective-comas
1536 #+begin_src ruby
1537 ,# this one might break it??
1538 :comma_protection
1539 #+end_src
1541 ** DONE pass multiple reference arguments into R
1542    Can we do this? I wasn't sure how to supply multiple 'var' header
1543    args. Just delete this if I'm being dense.
1545    This should be working, see the following example...
1547 #+srcname: two-arg-example
1548 #+begin_src R :var n=2 :var m=8
1549 n + m
1550 #+end_src
1552 #+resname: two-arg-example
1553 : 10
1555 ** DONE ensure that table ranges work
1556 when a table range is passed to org-babel as an argument, it should be
1557 interpreted as a vector.
1559 | 1 | 2 | simple       |
1560 | 2 | 3 | Fixnum:1     |
1561 | 3 | 4 | Array:123456 |
1562 | 4 | 5 |              |
1563 | 5 | 6 |              |
1564 | 6 | 7 |              |
1565 #+TBLFM: @1$3='(sbe simple-sbe-example (n 4))::@2$3='(sbe task-table-range (n @1$1..@6$1))::@3$3='(sbe task-table-range (n (@1$1..@6$1)))
1567 #+srcname: simple-sbe-example
1568 #+begin_src emacs-lisp 
1569 "simple"
1570 #+end_src
1572 #+srcname: task-table-range
1573 #+begin_src ruby :var n=simple-sbe-example
1574 "#{n.class}:#{n}"
1575 #+end_src
1577 #+srcname: simple-results
1578 #+begin_src emacs-lisp :var n=task-table-range(n=(1 2 3))
1580 #+end_src
1582 #+resname: simple-results
1583 : Array:123
1585 #+srcname: task-arr-referent
1586 #+begin_src ruby :var ar=(1 2 3)
1587 ar.size
1588 #+end_src
1590 #+resname: task-arr-referent
1591 : 3
1593 ** DONE global variable indicating default to vector output
1594 how about an alist... =org-babel-default-header-args= this may already
1595 exist... just execute the following and all source blocks will default
1596 to vector output
1598 #+begin_src emacs-lisp 
1599 (setq org-babel-default-header-args '((:results . "vector")))
1600 #+end_src
1602 ** DONE name named results if source block is named
1603 currently this isn't happening although it should be
1605 #+srcname: test-naming-named-source-blocks
1606 #+begin_src emacs-lisp 
1607 :namer
1608 #+end_src
1610 #+resname: test-naming-named-source-blocks
1611 : :namer
1612 ** DONE (simple caching) check for named results before source blocks
1613 see the TODO comment in [[file:lisp/org-babel-ref.el::TODO%20This%20should%20explicitly%20look%20for%20resname%20lines%20before][org-babel-ref.el#org-babel-ref-resolve-reference]]
1614 ** DONE set =:results silent= when eval with prefix argument
1616 #+begin_src emacs-lisp
1617 'silentp
1618 #+end_src
1619 ** DONE results-type header (vector/file) [3/3]
1620    In response to a point in Dan's email.  We should allow the user to
1621    force scalar or vector results.  This could be done with a header
1622    argument, and the default behavior could be controlled through a
1623    configuration variable.
1624    
1625 #+srcname: task-trivial-vector
1626 #+begin_src ruby :results replace vector
1627 :scalar
1628 #+end_src
1630 #+resname:
1631 | ":scalar" |
1633    since it doesn't make sense to turn a vector into a scalar, lets
1634    just add a two values...
1635    
1636    - vector :: forces the results to be a vector (potentially 1 dimensional)
1637    - file :: this throws an error if the result isn't a string, and
1638              tries to treat it as a path to a file.
1640    I'm just going to cram all of these into the =:results= header
1641    argument.  Then if we allow multiple header arguments it should
1642    work out, for example one possible header argument string could be
1643    =:results replace vector file=, which would *replace* any existing
1644    results forcing the results into an org-mode table, and
1645    interpreting any strings as file paths.
1647 *** DONE multiple =:results= headers
1649 #+srcname: multiple-result-headers
1650 #+begin_src ruby :results replace silent
1651 :schulte
1652 #+end_src
1654 #+resname:
1656 *** DONE file result types
1657 When inserting into an org-mode buffer create a link with the path
1658 being the value, and optionally the display being the
1659 =file-name-nondirectory= if it exists.
1661 #+srcname: task-file-result
1662 #+begin_src python :results replace file
1663 "something"
1664 #+end_src
1666 #+resname:
1667 [[something][something]]
1670 This will be useful because blocks like =ditaa= and =dot= can return
1671 the string path of their files, and can add =file= to their results
1672 header.
1674 *** DONE vector result types
1676 #+srcname: task-force-results
1677 #+begin_src emacs-lisp :results vector
1679 #+end_src
1681 #+resname:
1682 | 8 |
1684 ** DONE results name
1685     In order to do this we will need to start naming our results.
1686     Since the source blocks are named with =#+srcname:= lines we can
1687     name results with =#+resname:= lines (if the source block has no
1688     name then no name is given to the =#+resname:= line on creation,
1689     otherwise the name of the source block is used).
1691     This will have the additional benefit of allowing results and
1692     source blocks to be located in different places in a buffer (and
1693     eventually in different buffers entirely).
1695 #+srcname: developing-resnames
1696 #+begin_src emacs-lisp  :results silent
1697 'schulte
1698 #+end_src
1700     Once source blocks are able to find their own =#+resname:= lines
1701     we then need to...
1703 #+srcname: sbe-w-new-results
1704 #+begin_src emacs-lisp :results replace
1705 (sbe "developing-resnames")
1706 #+end_src
1708 #+resname:
1709 : schulte
1711 *** TODO change the results insertion functions to use these lines
1713 *** TODO teach references to resolve =#+resname= lines.
1715 ** DONE org-babel tests org-babel [1/1]
1716 since we are accumulating this nice collection of source-code blocks
1717 in the sandbox section we should make use of them as unit tests.
1718 What's more, we should be able to actually use org-babel to run these
1719 tests.
1721 We would just need to cycle over every source code block under the
1722 sandbox, run it, and assert that the return value is equal to what we
1723 expect.
1725 I have the feeling that this should be possible using only org-babel
1726 functions with minimal or no additional elisp.  It would be very cool
1727 for org-babel to be able to test itself.
1729 This is now done, see [[* Tests]].
1731 *** DEFERRED org-babel assertions (may not be necessary)
1732 These could be used to make assertions about the results of a
1733 source-code block.  If the assertion fails then the point could be
1734 moved to the block, and error messages and highlighting etc... could
1735 ensue
1737 ** DONE make C-c C-c work anywhere within source code block?
1738    This seems like it would be nice to me, but perhaps it would be
1739    inefficient or ugly in implementation? I suppose you could search
1740    forward, and if you find #+end_src before you find #+begin_src,
1741    then you're inside one. [DED]
1743    Agreed, I think inside of the =#+srcname: line= would be useful as
1744    well.
1746 #+srcname: testing-out-cc
1747 #+begin_src emacs-lisp
1748 'schulte
1749 #+end_src
1751 ** DONE integration with org tables
1752 We should make it easy to call org-babel source blocks from org-mode
1753 table formulas.  This is practical now that it is possible to pass
1754 arguments to org-babel source blocks.
1756 See the related [[* (sandbox) integration w/org tables][sandbox]] header for tests/examples.
1758 *** digging in org-table.el
1759 In the past [[file:~/src/org/lisp/org-table.el::org%20table%20el%20The%20table%20editor%20for%20Org%20mode][org-table.el]] has proven difficult to work with.
1761 Should be a hook in [[file:~/src/org/lisp/org-table.el::defun%20org%20table%20eval%20formula%20optional%20arg%20equation][org-table-eval-formula]].
1763 Looks like I need to change this [[file:~/src/org/lisp/org-table.el::if%20lispp][if statement]] (line 2239) into a cond
1764 expression.
1766 ** DONE source blocks as functions
1768 Allow source code blocks to be called like functions, with arguments
1769 specified.  We are already able to call a source-code block and assign
1770 it's return result to a variable.  This would just add the ability to
1771 specify the values of the arguments to the source code block assuming
1772 any exist.  For an example see 
1774 When a variable appears in a header argument, how do we differentiate
1775 between it's value being a reference or a literal value?  I guess this
1776 could work just like a programming language.  If it's escaped or in
1777 quotes, then we count it as a literal, otherwise we try to look it up
1778 and evaluate it.
1780 ** DONE folding of code blocks? [2/2]
1781    [DED] In similar way to using outline-minor-mode for folding function
1782    bodies, can we fold code blocks?  #+begin whatever statements are
1783    pretty ugly, and in any case when you're thinking about the overall
1784    game plan you don't necessarily want to see the code for each Step.
1786 *** DONE folding of source code block
1787     Sounds good, and wasn't too hard to implement.  Code blocks should
1788     now be fold-able in the same manner as headlines (by pressing TAB
1789     on the first line).
1791 *** REJECTED folding of results
1792     So, lets do a three-stage tab cycle... First fold the src block,
1793     then fold the results, then unfold.
1794     
1795     There's no way to tell if the results are a table or not w/o
1796     actually executing the block which would be too expensive of an
1797     operation.
1799 ** DONE selective export of text, code, figures
1800    [DED] The org-babel buffer contains everything (code, headings and
1801    notes/prose describing what you're up to, textual/numeric/graphical
1802    code output, etc). However on export to html / LaTeX one might want
1803    to include only a subset of that content. For example you might
1804    want to create a presentation of what you've done which omits the
1805    code.
1807    [EMS] So I think this should be implemented as a property which can
1808    be set globally or on the outline header level (I need to review
1809    the mechanics of org-mode properties).  And then as a source block
1810    header argument which will apply only to a specific source code
1811    block.  A header argument of =:export= with values of
1812    
1813    - =code= :: just show the code in the source code block
1814    - =none= :: don't show the code or the results of the evaluation
1815    - =results= :: just show the results of the code evaluation (don't
1816                   show the actual code)
1817    - =both= :: show both the source code, and the results
1819 this will be done in [[* (sandbox) selective export][(sandbox) selective export]].
1821 ** DONE a header argument specifying silent evaluation (no output)
1822 This would be useful across all types of source block.  Currently
1823 there is a =:replace t= option to control output, this could be
1824 generalized to an =:output= option which could take the following
1825 options (maybe more)
1827 - =t= :: this would be the default, and would simply insert the
1828          results after the source block
1829 - =replace= :: to replace any results which may already be there
1830 - =silent= :: this would inhibit any insertion of the results
1832 This is now implemented see the example in the [[* silent evaluation][sandbox]]
1834 ** DONE assign variables from tables in R
1835 This is now working (see [[* (sandbox table) R][(sandbox-table)-R]]).  Although it's not that
1836 impressive until we are able to print table results from R.
1838 ** DONE insert 2-D R results as tables
1839 everything is working but R and shell
1841 *** DONE shells
1843 *** DONE R
1845 This has already been tackled by Dan in [[file:existing_tools/org-R.el::defconst%20org%20R%20write%20org%20table%20def][org-R:check-dimensions]].  The
1846 functions there should be useful in combination with [[http://cran.r-project.org/doc/manuals/R-data.html#Export-to-text-files][R-export-to-csv]]
1847 as a means of converting multidimensional R objects to emacs lisp.
1849 It may be as simple as first checking if the data is multidimensional,
1850 and then, if so using =write= to write the data out to a temporary
1851 file from which emacs can read the data in using =org-table-import=.
1853 Looking into this further, is seems that there is no such thing as a
1854 scalar in R [[http://tolstoy.newcastle.edu.au/R/help/03a/3733.html][R-scalar-vs-vector]]  In that light I am not sure how to
1855 deal with trivial vectors (scalars) in R.  I'm tempted to just treat
1856 them as vectors, but then that would lead to a proliferation of
1857 trivial 1-cell tables...
1859 ** DONE allow variable initialization from source blocks
1860 Currently it is possible to initialize a variable from an org-mode
1861 table with a block argument like =table=sandbox= (note that the
1862 variable doesn't have to named =table=) as in the following example
1864 #+TBLNAME: sandbox
1865 | 1 |       2 | 3 |
1866 | 4 | schulte | 6 |
1868 #+begin_src emacs-lisp :var table=sandbox :results replace
1869 (message (format "table = %S" table))
1870 #+end_src
1872 : "table = ((1 2 3) (4 \"schulte\" 6))"
1874 It would be good to allow initialization of variables from the results
1875 of other source blocks in the same manner.  This would probably
1876 require the addition of =#+SRCNAME: example= lines for the naming of
1877 source blocks, also the =table=sandbox= syntax may have to be expanded
1878 to specify whether the target is a source code block or a table
1879 (alternately we could just match the first one with the given name
1880 whether it's a table or a source code block).
1882 At least initially I'll try to implement this so that there is no need
1883 to specify whether the reference is to a table or a source-code block.
1884 That seems to be simpler both in terms of use and implementation.
1886 This is now working for emacs-lisp, ruby and python (and mixtures of
1887 the three) source blocks.  See the examples in the [[* (sandbox) referencing other source blocks][sandbox]].
1889 This is currently working only with emacs lisp as in the following
1890 example in the [[* emacs lisp source reference][emacs lisp source reference]].
1893 ** TODO Add languages [0/5]
1894 I'm sure there are many more that aren't listed here.  Please add
1895 them, and bubble any that you particularly care about up to the top.
1897 Any new language should be implemented in a org-babel-lang.el file.
1898 Follow the pattern set by [[file:lisp/org-babel-script.el][org-babel-script.el]], [[file:lisp/org-babel-shell.el][org-babel-shell.el]] and
1899 [[file:lisp/org-babel-R.el][org-babel-R.el]].
1901 *** TODO perl
1902 This could probably be added to [[file:lisp/org-babel-script.el][org-babel-script.el]]
1904 *** TODO java
1906 *** TODO ditaa
1907 (see [[* file result types][file result types]])
1909 *** TODO dot
1910 (see [[* file result types][file result types]])
1912 *** TODO asymptote
1913 (see [[* file result types][file result types]])
1916 * Bugs [17/23]
1917 ** TODO Allow source blocks to be recognised when #+ are not first characters on the line
1918    I think Carsten has recently altered the core so that #+ can have
1919    preceding whitespace, at least for literal/code examples. org-babel
1920    should support this.
1921 ** PROPOSED make :results replace the default?
1922    I'm tending to think that appending results to pre-existing results
1923    creates mess, and that the cleaner `replace' option should be the
1924    default. E.g. when a source block creates an image, we would want
1925    that to be updated, rather than have a new one be added.
1926 ** PROPOSED external shell execution can't isolate return values
1927 I have no idea how to do this as of yet.  The result is that when
1928 shell functions are run w/o a session there is no difference between
1929 the =output= and =value= result arguments.
1931 ** TODO non-orgtbl formatted lists
1932 for example
1934 #+srcname: this-doesn't-match-orgtbl
1935 #+begin_src emacs-lisp :results replace
1936 '((:results . "replace"))
1937 #+end_src
1939 #+resname: this-doesn't-match-orgtbl
1941 ** TODO collapsing consecutive newlines in string output
1943 #+srcname: multi-line-string-output
1944 #+begin_src ruby :results replace
1945 "the first line ends here
1948      and this is the second one
1950 even a third"
1951 #+end_src
1953 #+resname:
1954 : the first line ends here
1955 :            and this is the second one
1956 :       return even a third
1958 ** TODO cursor movement when evaluating source blocks
1959    E.g. the pie chart example. Despite the save-window-excursion in
1960    org-babel-execute:R. (I never learned how to do this properly: org-R
1961    jumps all over the place...)
1963 ** DEFERRED weird escaped characters in shell prompt break shell evaluation
1964    E.g. this doesn't work. Should the shell sessions set a sane prompt
1965    when they start up? Or is it a question of altering
1966    comint-prompt-regexp? Or altering org-babel regexps?
1967    
1968 #+begin_src sh   
1969    black=30 ; red=31 ; green=32 ; yellow=33 ; blue=34 ; magenta=35 ; cyan=36 ; white=37
1970    prompt_col=$red
1971    prompt_char='>'
1972    export PS1="\[\033[${prompt_col}m\]\w${prompt_char} \[\033[0m\]"
1973 #+end_src
1975    I just pushed a good amount of changes, could you see if your shell
1976    problems still exist?
1978    The problem's still there. Specifically, aIui, at [[file:lisp/langs/org-babel-sh.el::raw%20org%20babel%20comint%20with%20output%20buffer%20org%20babel%20sh%20eoe%20output%20nil%20insert%20full%20body%20comint%20send%20input%20nil%20t][this line]] of
1979    org-babel-sh.el, raw gets the value
1981 ("" "\e[0m Sun Jun 14 19:26:24 EDT 2009\n" "\e[0m org_babel_sh_eoe\n" "\e[0m ")
1983    and therefore (member org-babel-sh-eoe-output ...) fails
1985    I think that `comint-prompt-regexp' needs to be altered to match
1986    the shell prompt.  This shouldn't be too difficult to do by hand,
1987    using the `regexp-builder' command and should probably be part of
1988    the user's regular emacs init.  I can't think of a way for us to
1989    set this automatically, and we are SOL without a regexp to match
1990    the prompt.
1991 ** DONE ruby evaluation not working under ubuntu emacs 23
1992    With emacs 23.0.91.1 on ubuntu, for C-h f run-ruby I have the
1993    following, which seems to conflict with [[file:lisp/langs/org-babel-ruby.el::let%20session%20buffer%20save%20window%20excursion%20run%20ruby%20nil%20session%20current%20buffer][this line]] in org-babel-ruby.el.
1995 #+begin_example
1996 run-ruby is an interactive compiled Lisp function.
1998 (run-ruby cmd)
2000 Run an inferior Ruby process, input and output via buffer *ruby*.
2001 If there is a process already running in `*ruby*', switch to that buffer.
2002 With argument, allows you to edit the command line (default is value
2003 of `ruby-program-name').  Runs the hooks `inferior-ruby-mode-hook'
2004 (after the `comint-mode-hook' is run).
2005 (Type C-h m in the process buffer for a list of commands.)
2006 #+end_example
2008    So, I may have a non-standard inf-ruby.el.  Here's my version of
2009    run-ruby.
2011 #+begin_example 
2012 run-ruby is an interactive Lisp function in `inf-ruby.el'.
2014 (run-ruby &optional COMMAND NAME)
2016 Run an inferior Ruby process, input and output via buffer *ruby*.
2017 If there is a process already running in `*ruby*', switch to that buffer.
2018 With argument, allows you to edit the command line (default is value
2019 of `ruby-program-name').  Runs the hooks `inferior-ruby-mode-hook'
2020 (after the `comint-mode-hook' is run).
2021 (Type C-h m in the process buffer for a list of commands.)
2022 #+end_example
2024    It seems we could either bundle my version of inf-ruby.el (as it's
2025    the newest).  Or we could change the use of `run-ruby' so that it
2026    is robust across multiple distributions.  I think I'd prefer the
2027    former, unless the older version of inf-ruby is actually bundled
2028    with emacs, in which case maybe we should go out of our way to
2029    support it.  Thoughts?
2031    I think for now I'll just include the latest [[file:util/inf-ruby.el][inf-ruby.el]] in the
2032    newly created utility directory.  I doubt anyone would have a
2033    problem using the latest version of this file.
2034 ** DONE test failing forcing vector results with =test-forced-vector-results= ruby code block
2035 Note that this only seems to happen the *second* time the test table
2036 is evaluated
2038 #+srcname: bug-trivial-vector
2039 #+begin_src emacs-lisp :results vector silent
2041 #+end_src
2043 #+srcname: bug-forced-vector-results
2044 #+begin_src ruby :var triv=test-trivial-vector :results silent
2045 triv.class.name
2046 #+end_src
2048 mysteriously this seems to be fixed...
2049 ** DONE defunct R sessions
2050 Sometimes an old R session will turn defunct, and newly inserted code
2051 will not be evaluated (leading to a hang).
2053 This seems to be fixed by using `inferior-ess-send-input' rather than `comint-send-input'.
2054 ** DONE ruby fails on first call to non-default session
2056 #+srcname: bug-new-session
2057 #+begin_src ruby :session is-new
2058 :patton
2059 #+end_src
2061 ** DONE when reading results from =#+resname= line
2063 Errors when trying to read from resname lines.
2065 #+resname: bug-in-resname
2066 : 8
2068 #+srcname: bug-in-resname-reader
2069 #+begin_src emacs-lisp :var buggy=bug-in-resname() :results silent
2070 buggy
2071 #+end_src
2073 ** DONE R-code broke on "org-babel" rename
2075 #+srcname: bug-R-babels
2076 #+begin_src R 
2077 8 * 2
2078 #+end_src
2080 ** DONE error on trivial R results
2082 So I know it's generally not a good idea to squash error without
2083 handling them, but in this case the error almost always means that
2084 there was no file contents to be read by =org-table-import=, so I
2085 think it's ok.
2087 #+srcname: bug-trivial-r1
2088 #+begin_src R :results replace
2089 pie(c(1, 2, 3), labels = c(1, 2, 3))
2090 #+end_src
2092 #+srcname: bug-trivial-r2
2093 #+begin_src R :results replace
2095 #+end_src
2097 #+resname: bug-trivial-r2
2098 : 8
2100 #+srcname: bug-trivial-r3
2101 #+begin_src R :results replace
2102 c(1,2,3)
2103 #+end_src
2105 #+resname: bug-trivial-r3
2106 | 1 |
2107 | 2 |
2108 | 3 |
2110 ** DONE ruby new variable creation (multi-line ruby blocks)
2111 Actually it looks like we were dropping all but the last line.
2113 #+srcname: multi-line-ruby-test
2114 #+begin_src ruby :var table=bug-numerical-table :results replace
2115 total = 0
2116 table.each{|n| total += n}
2117 total/table.size
2118 #+end_src
2120 #+resname:
2121 : 2
2123 ** DONE R code execution seems to choke on certain inputs
2124 Currently the R code seems to work on vertical (but not landscape)
2125 tables
2127 #+srcname: little-fake
2128 #+begin_src emacs-lisp 
2129 "schulte"
2130 #+end_src
2132 #+begin_src R :var num=little-fake
2134 #+end_src
2136 #+resname:
2137 : schulte
2138 : 11
2139 : 11
2140 : 11
2141 : schulte
2142 : 9
2143 : 9
2144 : 11
2146 #+srcname: set-debug-on-error
2147 #+begin_src emacs-lisp :results silent
2148 (setq debug-on-error t)
2149 #+end_src
2151 #+srcname: bug-numerical-table
2152 #+begin_src emacs-lisp :results silent
2153 '(1 2 3)
2154 #+end_src
2156 #+srcname: bug-R-number-evaluation
2157 #+begin_src R :var table=bug-numerical-table :results replace
2158 mean(mean(table))
2159 #+end_src
2161 #+resname:
2162 : 2
2164 #+tblname: bug-vert-table
2165 | 1 |
2166 | 2 |
2167 | 3 |
2169 #+srcname: bug-R-vertical-table
2170 #+begin_src R :var table=bug-vert-table :results silent
2171 mean(table)
2172 #+end_src
2174 ** DONE org bug/request: prevent certain org behaviour within code blocks
2175    E.g. [[]] gets recognised as a link (when there's text inside the
2176    brackets). This is bad for R code at least, and more generally
2177    could be argued to be inappropriate. Is it difficult to get org to
2178    ignore text in code blocks? [DED]
2179    
2180    I believe Carsten addressed this recently on the mailing list with
2181    the comment that it was indeed a difficult issue.  I believe this
2182    may be one area where we could wait for an upstream (org-mode) fix.
2184    [Dan] Carsten has fixed this now in the core.
2186 ** DONE with :results replace, non-table output doesn't replace table output
2187    And vice versa. E.g. Try this first with table and then with len(table) [DED]
2188 #+begin_src python :var table=sandbox :results replace
2189 table
2190 #+end_src
2192 | 1 |         2 | 3 |
2193 | 4 | "schulte" | 6 |
2194 : 2
2196 Yes, this is certainly a problem.  I fear that if we begin replacing
2197 anything immediately following a source block (regardless of whether
2198 it matches the type of our current results) we may accidentally delete
2199 hand written portions of the user's org-mode buffer.
2201 I think that the best solution here would be to actually start
2202 labeling results with a line that looks something like...
2204 #+results: name
2206 This would have a couple of benefits...
2207 1) we wouldn't have to worry about possibly deleting non-results
2208    (which is currently an issue)
2209 2) we could reliably replace results even if there are different types
2210 3) we could reference the results of a source-code block in variable
2211    definitions, which would be useful if for example we don't wish to
2212    re-run a source-block every time because it is long-running.
2214 Thoughts?  If no-one objects, I believe I will implement the labeling
2215 of results.
2217 ** DONE extra quotes for nested string
2218 Well R appears to be reading the tables without issue...
2220 these *should* be quoted
2221 #+srcname: ls
2222 #+begin_src sh :results replace
2224 #+end_src
2226 | "COPYING"          |
2227 | "README.markdown"  |
2228 | "block"            |
2229 | "examples.org"     |
2230 | "existing_tools"   |
2231 | "intro.org"        |
2232 | "org-babel"          |
2233 | "rorg.org"         |
2234 | "test-export.html" |
2235 | "test-export.org"  |
2237 #+srcname: test-quotes
2238 #+begin_src ruby :var tab=ls
2239 tab[1][0]
2240 #+end_src
2242 : README.markdown
2244 #+srcname: test-quotes
2245 #+begin_src R :var tab=ls
2246 as.matrix(tab[2,])
2247 #+end_src
2249 : README.markdown
2251 ** DONE simple ruby arrays not working
2253 As an example eval the following.  Adding a line to test
2255 #+tblname: simple-ruby-array
2256 | 3 | 4 | 5 |
2258 #+srcname: ruby-array-test
2259 #+begin_src ruby :var ar = simple-ruby-array :results silent
2260 ar.first.first
2261 #+end_src
2263 ** DONE space trailing language name
2264 fix regexp so it works when there's a space trailing the language name
2266 #+srcname: test-trailing-space
2267 #+begin_src ruby 
2268 :schulte
2269 #+end_src
2271 ** DONE Args out of range error
2272    
2273 The following block resulted in the error below [DED]. It ran without
2274 error directly in the shell.
2275 #+begin_src sh
2276 cd ~/work/genopca
2277 for platf in ill aff ; do
2278     for pop in CEU YRI ASI ; do
2279         rm -f $platf/hapmap-genos-$pop-all $platf/hapmap-rs-all
2280         cat $platf/hapmap-genos-$pop-* > $platf/hapmap-genos-$pop-all
2281         cat $platf/hapmap-rs-* > $platf/hapmap-rs-all
2282     done
2283 done
2284 #+end_src
2285   
2286  executing source block with sh...
2287 finished executing source block
2288 string-equal: Args out of range: "", -1, 0
2290 the error =string-equal: Args out of range: "", -1, 0= looks like what
2291 used to be output when the block returned an empty results string.
2292 This should be fixed in the current version, you should now see the
2293 following message =no result returned by source block=.
2295 ** DONE ruby arrays not recognized as such
2297 Something is wrong in [[file:lisp/org-babel-script.el]] related to the
2298 recognition of ruby arrays as such.
2300 #+begin_src ruby :results replace
2301 [1, 2, 3, 4]
2302 #+end_src
2304 | 1 | 2 | 3 | 4 |
2306 #+begin_src python :results replace
2307 [1, 2, 3, 4]
2308 #+end_src
2310 | 1 | 2 | 3 | 4 |
2313 * Tests
2314 Evaluate all the cells in this table for a comprehensive test of the
2315 org-babel functionality.
2317 *Note*: if you have customized =org-babel-default-header-args= then some
2318 of these tests may fail.
2320 #+TBLNAME: org-babel-tests
2321 | functionality           | block                      | arg |    expected |     results | pass |
2322 |-------------------------+----------------------------+-----+-------------+-------------+------|
2323 | basic evaluation        |                            |     |             |             |      |
2324 |-------------------------+----------------------------+-----+-------------+-------------+------|
2325 | emacs lisp              | basic-elisp                |     |           5 |             |      |
2326 | shell                   | basic-shell                |     |           6 |             |      |
2327 | ruby                    | basic-ruby                 |     |   org-babel |             |      |
2328 | python                  | basic-python               |     | hello world |             |      |
2329 | R                       | basic-R                    |     |          13 |             |      |
2330 |-------------------------+----------------------------+-----+-------------+-------------+------|
2331 | tables                  |                            |     |             |             |      |
2332 |-------------------------+----------------------------+-----+-------------+-------------+------|
2333 | emacs lisp              | table-elisp                |     |           3 |             |      |
2334 | ruby                    | table-ruby                 |     |       1-2-3 |             |      |
2335 | python                  | table-python               |     |           5 |             |      |
2336 | R                       | table-R                    |     |         3.5 |             |      |
2337 |-------------------------+----------------------------+-----+-------------+-------------+------|
2338 | source block references |                            |     |             |             |      |
2339 |-------------------------+----------------------------+-----+-------------+-------------+------|
2340 | all languages           | chained-ref-last           |     |       Array |             |      |
2341 |-------------------------+----------------------------+-----+-------------+-------------+------|
2342 | source block functions  |                            |     |             |             |      |
2343 |-------------------------+----------------------------+-----+-------------+-------------+------|
2344 | emacs lisp              | defun-fibb                 |     |       fibbd |             |      |
2345 | run over                | Fibonacci                  |   0 |           1 |             |      |
2346 | a                       | Fibonacci                  |   1 |           1 |             |      |
2347 | variety                 | Fibonacci                  |   2 |           2 |             |      |
2348 | of                      | Fibonacci                  |   3 |           3 |             |      |
2349 | different               | Fibonacci                  |   4 |           5 |             |      |
2350 | arguments               | Fibonacci                  |   5 |           8 |             |      |
2351 |-------------------------+----------------------------+-----+-------------+-------------+------|
2352 | bugs and tasks          |                            |     |             |             |      |
2353 |-------------------------+----------------------------+-----+-------------+-------------+------|
2354 | simple ruby arrays      | ruby-array-test            |     |           3 |             |      |
2355 | R number evaluation     | bug-R-number-evaluation    |     |           2 |             |      |
2356 | multi-line ruby blocks  | multi-line-ruby-test       |     |           2 |             |      |
2357 | forcing vector results  | test-forced-vector-results |     |       Array |             |      |
2358 |-------------------------+----------------------------+-----+-------------+-------------+------|
2359 | sessions                |                            |     |             |             |      |
2360 |-------------------------+----------------------------+-----+-------------+-------------+------|
2361 | set ruby session        | set-ruby-session-var       |     |        :set |             |      |
2362 | get from ruby session   | get-ruby-session-var       |     |           3 |             |      |
2363 | set python session      | set-python-session-var     |     |         set |             |      |
2364 | get from python session | get-python-session-var     |     |           4 |             |      |
2365 | set R session           | set-R-session-var          |     |         set |             |      |
2366 | get from R session      | get-R-session-var          |     |           5 |             |      |
2367 #+TBLFM: $5='(if (= (length $3) 1) (progn (message (format "running %S" '(sbe $2 (n $3)))) (sbe $2 (n $3))) (sbe $2))::$6='(if (string= $4 $5) "pass" (format "expected %S but was %S" $4 $5))
2369 ** basic tests
2371 #+srcname: basic-elisp
2372 #+begin_src emacs-lisp :results silent
2373 (+ 1 4)
2374 #+end_src
2376 #+srcname: basic-shell
2377 #+begin_src sh :results silent
2378 expr 1 + 5
2379 #+end_src
2381 #+srcname: date-simple
2382 #+begin_src sh :results silent
2383 date
2384 #+end_src
2386 #+srcname: basic-ruby
2387 #+begin_src ruby :results silent
2388 "org-babel"
2389 #+end_src
2391 #+srcname: basic-python
2392 #+begin_src python :results silent
2393 'hello world'
2394 #+end_src
2396 #+srcname: basic-R
2397 #+begin_src R :results silent
2398 b <- 9
2399 b + 4
2400 #+end_src
2402 ** read tables
2404 #+tblname: test-table
2405 | 1 | 2 | 3 |
2406 | 4 | 5 | 6 |
2408 #+srcname: table-elisp
2409 #+begin_src emacs-lisp :results silent :var table=test-table
2410 (length (car table))
2411 #+end_src
2413 #+srcname: table-ruby
2414 #+begin_src ruby :results silent :var table=test-table
2415 table.first.join("-")
2416 #+end_src
2418 #+srcname: table-python
2419 #+begin_src python :var table=test-table
2420 table[1][1]
2421 #+end_src
2423 #+srcname: table-R
2424 #+begin_src R :var table=test-table
2425 mean(mean(table))
2426 #+end_src
2428 ** references
2430 Lets pass a references through all of our languages...
2432 Lets start by reversing the table from the previous examples
2434 #+srcname: chained-ref-first
2435 #+begin_src python :var table = test-table
2436 table.reverse()
2437 table
2438 #+end_src
2440 #+resname: chained-ref-first
2441 | 4 | 5 | 6 |
2442 | 1 | 2 | 3 |
2444 Take the first part of the list
2446 #+srcname: chained-ref-second
2447 #+begin_src R :var table = chained-ref-first
2448 table[1]
2449 #+end_src
2451 #+resname: chained-ref-second
2452 | 4 |
2453 | 1 |
2455 Turn the numbers into string
2457 #+srcname: chained-ref-third
2458 #+begin_src emacs-lisp :var table = chained-ref-second
2459 (mapcar (lambda (el) (format "%S" el)) table)
2460 #+end_src
2462 #+resname: chained-ref-third
2463 | "(4)" | "(1)" |
2465 and Check that it is still a list
2467 #+srcname: chained-ref-last
2468 #+begin_src ruby :var table=chained-ref-third
2469 table.class.name
2470 #+end_src
2472 ** source blocks as functions
2474 #+srcname: defun-fibb
2475 #+begin_src emacs-lisp :results silent
2476 (defun fibbd (n) (if (< n 2) 1 (+ (fibbd (- n 1)) (fibbd (- n 2)))))
2477 #+end_src
2479 #+srcname: fibonacci
2480 #+begin_src emacs-lisp :results silent :var n=7
2481 (fibbd n)
2482 #+end_src
2484 ** sbe tests (these don't seem to be working...)
2485 Testing the insertion of results into org-mode tables.
2487 #+srcname: multi-line-output
2488 #+begin_src ruby :results replace
2489 "the first line ends here
2492      and this is the second one
2494 even a third"
2495 #+end_src
2497 #+resname:
2498 : the first line ends here\n\n\n     and this is the second one\n\neven a third
2500 #+srcname: multi-line-error
2501 #+begin_src ruby :results replace
2502 raise "oh nooooooooooo"
2503 #+end_src
2505 #+resname:
2506 : oh nooooooooooo
2508 | the first line ends here... | -:5: warning: parenthesize argument(s) for future version... |
2509 #+TBLFM: $1='(sbe "multi-line-output")::$2='(sbe "multi-line-error")
2511 ** forcing results types tests
2513 #+srcname: test-trivial-vector
2514 #+begin_src emacs-lisp :results vector silent
2516 #+end_src
2518 #+srcname: test-forced-vector-results
2519 #+begin_src ruby :var triv=test-trivial-vector :results silent
2520 triv.class.name
2521 #+end_src
2523 ** sessions
2525 #+srcname: set-ruby-session-var
2526 #+begin_src ruby :session :results silent
2527 var = [1, 2, 3]
2528 :set
2529 #+end_src
2531 #+srcname: get-ruby-session-var
2532 #+begin_src ruby :session :results silent
2533 var.size
2534 #+end_src
2536 #+srcname: set-python-session-var
2537 #+begin_src python :session
2538 var=4
2539 'set'
2540 #+end_src
2542 #+srcname: get-python-session-var
2543 #+begin_src python :session
2545 #+end_src
2547 #+srcname: set-R-session-var
2548 #+begin_src R :session
2549 a <- 5
2550 'set'
2551 #+end_src
2553 #+srcname: get-R-session-var
2554 #+begin_src R :session
2556 #+end_src
2559 * Sandbox
2560   :PROPERTIES:
2561   :CUSTOM_ID: sandbox
2562   :END:
2563 To run these examples evaluate [[file:lisp/org-babel-init.el][org-babel-init.el]]
2565 ** org-babel.el beginning functionality
2567 #+begin_src sh  :results replace
2568 date
2569 #+end_src
2571 #+resname:
2572 : Sun Jul  5 18:54:39 EDT 2009
2574 #+begin_src ruby
2575 Time.now
2576 #+end_src
2578 #+resname:
2579 : Sun Jul 05 18:54:35 -0400 2009
2581 #+begin_src python
2582 "Hello World"
2583 #+end_src
2585 #+resname:
2586 : Hello World
2589 ** org-babel-R
2591 #+begin_src R :results replace
2592 a <- 9
2593 b <- 16
2594 a + b
2595 #+end_src
2597 #+resname:
2598 : 25
2600 #+begin_src R
2601 hist(rgamma(20,3,3))
2602 #+end_src
2604 ** org-babel plays with tables
2605 Alright, this should demonstrate both the ability of org-babel to read
2606 tables into a lisp source code block, and to then convert the results
2607 of the source code block into an org table.  It's using the classic
2608 "lisp is elegant" demonstration transpose function.  To try this
2609 out...
2611 1. evaluate [[file:lisp/org-babel-init.el]] to load org-babel and friends
2612 2. evaluate the transpose definition =\C-c\\C-c= on the beginning of
2613    the source block
2614 3. evaluate the next source code block, this should read in the table
2615    because of the =:var table=previous=, then transpose the table, and
2616    finally it should insert the transposed table into the buffer
2617    immediately following the block
2619 *** Emacs lisp
2621 #+begin_src emacs-lisp :results silent
2622 (defun transpose (table)
2623   (apply #'mapcar* #'list table))
2624 #+end_src
2627 #+TBLNAME: sandbox
2628 | 1 |       2 | 3 |
2629 | 4 | schulte | 6 |
2631 #+begin_src emacs-lisp :var table=sandbox :results replace
2632 (transpose table)
2633 #+end_src
2636 #+begin_src emacs-lisp
2637 '(1 2 3 4 5)
2638 #+end_src
2640 #+resname:
2641 | 1 | 2 | 3 | 4 | 5 |
2643 *** Ruby and Python
2645 #+begin_src ruby :var table=sandbox :results replace
2646 table.first.join(" - ")
2647 #+end_src
2649 #+resname:
2650 : 1 - 2 - 3
2652 #+begin_src python :var table=sandbox
2653 table[0]
2654 #+end_src
2656 #+resname:
2657 : [1, 2, 3]
2662 | 1 | 2 | 3 |
2664 #+begin_src ruby :var table=sandbox :results replace
2665 table
2666 #+end_src
2668 #+resname:
2669 : [[1, 2, 3], [4, "schulte", 6]]
2672 | 1 |         2 | 3 |
2673 | 4 | "schulte" | 6 |
2675 #+begin_src python :var table=sandbox :results replace
2676 len(table)
2677 #+end_src
2679 : 2
2681 | "__add__" | "__class__" | "__contains__" | "__delattr__" | "__delitem__" | "__delslice__" | "__doc__" | "__eq__" | "__format__" | "__ge__" | "__getattribute__" | "__getitem__" | "__getslice__" | "__gt__" | "__hash__" | "__iadd__" | "__imul__" | "__init__" | "__iter__" | "__le__" | "__len__" | "__lt__" | "__mul__" | "__ne__" | "__new__" | "__reduce__" | "__reduce_ex__" | "__repr__" | "__reversed__" | "__rmul__" | "__setattr__" | "__setitem__" | "__setslice__" | "__sizeof__" | "__str__" | "__subclasshook__" | "append" | "count" | "extend" | "index" | "insert" | "pop" | "remove" | "reverse" | "sort" |
2683 *** (sandbox table) R
2685 #+TBLNAME: sandbox_r
2686 | 1 |       2 | 3 |
2687 | 4 | schulte | 6 |
2689 #+begin_src R :results replace
2690 x <- c(rnorm(10, mean=-3, sd=1), rnorm(10, mean=3, sd=1))
2692 #+end_src
2694 | -3.35473133869346 |
2695 |    -2.45714878661 |
2696 | -3.32819924928633 |
2697 | -2.97310212756194 |
2698 | -2.09640758369576 |
2699 | -5.06054014378736 |
2700 | -2.20713700711221 |
2701 | -1.37618039712037 |
2702 | -1.95839385821742 |
2703 | -3.90407396475502 |
2704 |  2.51168071590226 |
2705 |  3.96753011570494 |
2706 |  3.31793212627865 |
2707 |  1.99829753972341 |
2708 |  4.00403686419829 |
2709 |  4.63723764452927 |
2710 |  3.94636744261313 |
2711 |  3.58355906547775 |
2712 |  3.01563442274226 |
2713 |   1.7634976849927 |
2715 #+begin_src R var tabel=sandbox_r :results replace
2716 tabel
2717 #+end_src
2719 | 1 |         2 | 3 |
2720 | 4 | "schulte" | 6 |
2722 *** shell
2723 Now shell commands are converted to tables using =org-table-import=
2724 and if these tables are non-trivial (i.e. have multiple elements) then
2725 they are imported as org-mode tables...
2727 #+begin_src sh :results replace
2728 ls -l
2729 #+end_src
2731 | "total"      | 208 | ""    | ""    |    "" |   "" | "" | ""                |
2732 | "-rw-r--r--" |   1 | "dan" | "dan" |    57 | 2009 | 15 | "block"           |
2733 | "-rw-r--r--" |   1 | "dan" | "dan" | 35147 | 2009 | 15 | "COPYING"         |
2734 | "-rw-r--r--" |   1 | "dan" | "dan" |   722 | 2009 | 18 | "examples.org"    |
2735 | "drwxr-xr-x" |   4 | "dan" | "dan" |  4096 | 2009 | 19 | "existing_tools"  |
2736 | "-rw-r--r--" |   1 | "dan" | "dan" |  2207 | 2009 | 14 | "intro.org"       |
2737 | "drwxr-xr-x" |   2 | "dan" | "dan" |  4096 | 2009 | 18 | "org-babel"         |
2738 | "-rw-r--r--" |   1 | "dan" | "dan" |   277 | 2009 | 20 | "README.markdown" |
2739 | "-rw-r--r--" |   1 | "dan" | "dan" | 11837 | 2009 | 18 | "rorg.html"       |
2740 | "-rw-r--r--" |   1 | "dan" | "dan" | 61829 | 2009 | 19 | "#rorg.org#"      |
2741 | "-rw-r--r--" |   1 | "dan" | "dan" | 60190 | 2009 | 19 | "rorg.org"        |
2742 | "-rw-r--r--" |   1 | "dan" | "dan" |   972 | 2009 | 11 | "test-export.org" |
2745 ** silent evaluation
2747 #+begin_src ruby
2748 :im_the_results
2749 #+end_src
2751 : :im_the_results
2753 #+begin_src ruby :results silent
2754 :im_the_results
2755 #+end_src
2757 #+begin_src ruby :results replace
2758 :im_the_results_
2759 #+end_src
2761 : :im_the_results_
2764 ** (sandbox) referencing other source blocks
2765 Doing this in emacs-lisp first because it's trivial to convert
2766 emacs-lisp results to and from emacs-lisp.
2768 *** emacs lisp source reference
2769 This first example performs a calculation in the first source block
2770 named =top=, the results of this calculation are then saved into the
2771 variable =first= by the header argument =:var first=top=, and it is
2772 used in the calculations of the second source block.
2774 #+SRCNAME: top
2775 #+begin_src emacs-lisp
2776 (+ 4 2)
2777 #+end_src
2779 #+begin_src emacs-lisp :var first=top :results replace
2780 (* first 3)
2781 #+end_src
2783 : 18
2785 This example is the same as the previous only the variable being
2786 passed through is a table rather than a number.
2788 #+begin_src emacs-lisp :results silent
2789 (defun transpose (table)
2790   (apply #'mapcar* #'list table))
2791 #+end_src
2793 #+TBLNAME: top_table
2794 | 1 |       2 | 3 |
2795 | 4 | schulte | 6 |
2797 #+SRCNAME: second_src_example
2798 #+begin_src emacs-lisp :var table=top_table
2799 (transpose table)
2800 #+end_src
2802 #+begin_src emacs-lisp :var table=second_src_example :results replace
2803 (transpose table)
2804 #+end_src
2806 | 1 |         2 | 3 |
2807 | 4 | "schulte" | 6 |
2808 *** ruby python
2809 Now working for ruby
2811 #+srcname: start
2812 #+begin_src ruby
2814 #+end_src
2816 #+begin_src ruby :var other=start :results replace
2817 2 * other
2818 #+end_src
2820 and for python
2822 #+SRCNAME: start_two
2823 #+begin_src python
2825 #+end_src
2827 #+begin_src python :var another=start_two :results replace
2828 another*3
2829 #+end_src
2831 *** mixed languages
2832 Since all variables are converted into Emacs Lisp it is no problem to
2833 reference variables specified in another language.
2835 #+SRCNAME: ruby-block
2836 #+begin_src ruby
2838 #+end_src
2840 #+SRCNAME: lisp_block
2841 #+begin_src emacs-lisp :var ruby-variable=ruby-block
2842 (* ruby-variable 8)
2843 #+end_src
2845 #+begin_src python :var lisp_var=lisp_block
2846 lisp_var + 4
2847 #+end_src
2849 : 20
2851 *** R
2853 #+srcname: first_r
2854 #+begin_src R :results replace
2855 a <- 9
2857 #+end_src
2859 : 9
2861 #+begin_src R :var other=first_r :results replace
2862 other + 2
2863 #+end_src
2865 : 11
2868 ** (sandbox) selective export
2870 For exportation tests and examples see (including exportation of
2871 inline source code blocks) [[file:test-export.org]]
2874 ** (sandbox) source blocks as functions
2876 #+srcname: default
2877 #+begin_src emacs-lisp :results silent
2879 #+end_src
2881 #+srcname: triple
2882 #+begin_src emacs-lisp :var n=default :results replace
2883 (* 3 n)
2884 #+end_src
2886 : 15
2888 #+begin_src emacs-lisp :var result=triple(n=3, m=98) :results replace
2889 result
2890 #+end_src
2892 : 294
2894 The following just demonstrates the ability to assign variables to
2895 literal values, which was not implemented until recently.
2897 #+begin_src ruby :var num="eric" :results replace
2898 num+" schulte "
2899 #+end_src
2901 : "eric schulte "
2904 ** (sandbox) inline source blocks
2906 This is an inline source code block src_ruby{1 + 6}.  And another
2907 source block with text output src_emacs-lisp{"eric"}.
2909 This is an inline source code block with header
2910 arguments.  src_ruby[:var n=fibbd( n = 0 )]{n}
2913 ** (sandbox) integration w/org tables
2915 #+begin_src emacs-lisp :results silent
2916 (defun fibbd (n) (if (< n 2) 1 (+ (fibbd (- n 1)) (fibbd (- n 2)))))
2917 #+end_src
2919 #+srcname: fibbd
2920 #+begin_src emacs-lisp :var n=4 :results silent
2921 (fibbd n)
2922 #+end_src
2924 #+begin_src emacs-lisp :results silent
2925 (mapcar #'fibbd '(0 1 2 3 4 5 6 7 8))
2926 #+end_src
2928 Something is not working here.  The function `sbe ' works fine when
2929 called from outside of the table (see the source block below), but
2930 produces an error when called from inside the table.  I think there
2931 must be some narrowing going on during intra-table emacs-lisp
2932 evaluation.
2934 | original | fibbd |
2935 |----------+-------|
2936 |        0 |     1 |
2937 |        1 |     1 |
2938 |        2 |     2 |
2939 |        3 |     3 |
2940 |        4 |     5 |
2941 |        5 |     8 |
2942 |        6 |    13 |
2943 |        7 |    21 |
2944 |        8 |    34 |
2945 |        9 |    55 |
2946 #+TBLFM: $2='(sbe "fibbd" (n $1))
2948 silent-result
2950 #+begin_src emacs-lisp :results silent
2951 (sbe 'fibbd (n "8"))
2952 #+end_src
2955 * Buffer Dictionary
2956  LocalWords:  DBlocks dblocks org-babel el eric fontification