]> git.donarmstrong.com Git - ikiwiki_plugins.git/blob - sweavealike.pm
more work on the figures
[ikiwiki_plugins.git] / sweavealike.pm
1 #!/usr/bin/perl
2 # Ikiwiki Sweave-alike plugin
3 # under the terms of the GPL version 2, or any later version at your
4 # option.
5 # Copyright 2012 by Don Armstrong <don@donarmstrong.com>.
6
7
8 package IkiWiki::Plugin::sweavealike;
9
10 =head1 NAME
11
12 sweavealike -- A Sweave-alike plugin which allows for embedding R code in IkiWiki
13
14 =head1 SYNOPSIS
15
16 sweavealike allows you to embed R code in IkiWiki.
17
18
19 [[!sweavealike code='''
20 a <- 1
21 a <- a*a+10
22 print(a)
23 ''']]
24
25
26 =head1 DESCRIPTION
27
28 =head2 Available options
29
30 =over
31
32 =item code
33
34 R code to execute. Required to be present. [If you didn't want to
35 execute R code, why would you use this directive?]
36
37 =item echo
38
39 Echo the R code. [Basically, this escapes the code with >, and then
40 adds spaces so that the output is interpreted as a code fragment.]
41
42 =item nooutput
43
44 Suppress all non-figure output
45
46 =item results
47
48 Defaults to show the results (what R wrote to stdout) of a particular
49 piece of code
50
51 =item fig
52
53 If present, code is assumed to produce a figure which is automatically
54 included inline
55
56 =item width
57
58 Integer width of included figure; defaults to 400
59
60 =item height
61
62 Integer height of included figure; defaults to 400
63
64 =back
65
66
67 =head1 BUGS
68
69 R is a complete language, and no attempt is made to control what you
70 can do. Reading and writing arbitrary files, as well as exhausting
71 available memory and CPU are all trivially possible. Thus, you should
72 NEVER use this plugin on a publicly editable IkiWiki instance.
73
74 You should be able to refer to previously created figures without
75 rerunning the code.
76
77 =cut
78
79 use warnings;
80 use strict;
81
82 use Statistics::R;
83
84 use IkiWiki '3.00';
85
86 use Encode qw(decode);
87 use Digest::MD5 qw(md5_hex);
88
89 my $id = "sweavealike";
90 sub import {
91     hook(type => "getsetup", id => $id, call => \&getsetup);
92     hook(type => "preprocess", id => $id, call => \&preprocess);
93     hook(type => "htmlize", id => $id, call => \&htmlize);
94     hook(type => "savestate", id => $id, call => \&savestate);
95 }
96
97 sub getsetup {
98     return(plugin => {safe => 0,
99                       rebuild => 1,
100                       section => "misc",
101                       link => "http://git.donarmstrong.com/?p=ikiwiki_plugins.git;a=blob;f=sweavealike.pm;hb=HEAD",
102                       description => "sweavealike plugin",
103                      },
104           );
105 }
106
107 sub code_md5 {
108     return(md5_hex(map {decode('utf8',$_)} @_));
109 }
110
111 sub preprocess {
112     my %param = @_;
113
114     if (not defined $pagestate{$param{page}}{$id}{R}) {
115         $pagestate{$param{page}}{$id}{R} = Statistics::R->new(shared => 1)
116             or error("Unable to create an R process");
117     }
118     # we currently don't bother to support anything but outputing the
119     # entire segment of code and its R output
120
121     if (not exists $param{code}
122         or not defined $param{code}
123         or not length $param{code}) {
124         error("There wasn't any R code supplied");
125     }
126
127     my $image_loc
128     if (exists $param{fig}) {
129         $pagestate{$param{page}}{$id}{fignum}++;
130         $param{width} = '400' unless exists $param{width} and defined $param{width};
131         $param{height} = '400' unless exists $param{height} and defined $param{height};
132         for (qw(width height)) {
133             if ($param{$_} !~ /^\d+$/) {
134                 error("invalid $_; must be an integer: $param{$_}");
135             }
136         }
137         # because even if the code is duplicated, the figure could still be the same.
138         my $md5 = code_md5($param{code},$param{width},$param{height},$pagestate{$param{page}}{$id}{fignum});
139         $image_loc = "$param{page}/${md5}.png";
140         my $image_loc_esc = $image_loc;
141         $image_loc_esc =~ s/"/\\"/g;
142         will_render($param{page},$image_loc);
143         eval {
144             $pagestate{$param{page}}{$id}{R}->run(qq{png(filename="$image_loc_esc",width=$param{width},height=$param{height});});
145         };
146         if ($@) {
147             error("code 'png(filename="$image_loc_esc",width=$param{width},height=$param{height});' (from internal figure handling) produced error '$@'");
148         }
149     }
150     my $code_result;
151     eval {
152         $code_result = $pagestate{$param{page}}{$id}{R}->run($param{code});
153     };
154     if ($@) {
155         error("code '$param{code}' produced error '$@'");
156     }
157     my $output = '';
158     my $fig_output = '';
159     if (exists $param{fig}) {
160         eval {
161             $pagestate{$param{page}}{$id}{R}->run(qq{dev.off();});
162         };
163         if ($@) {
164             error("code 'dev.off()' (from internal figure handling) produced error '$@'");
165         }
166         $fig_output = qq(\n<img class="sweavealike" src=").urlto($image_loc,$param{destpage}).qq(" />);
167     }
168     if (exists $param{nooutput}) {
169         return($output.$fig_output);
170     }
171     if (exists $param{echo}) {
172         $output .= $param{code};
173         $output =~ s/^/> /mg;
174         $output .= "\n";
175     }
176     if (not exists $param{results} or
177         (defined $param{results} and
178          $param{results} !~ /^(hide|false)$/i;)) {
179         $output .= $code_result;
180     }
181     if (exists $param{echo} or
182         exists $param{results}) {
183         $output =~ s/^/    /mg;
184     }
185     return($output);
186 }
187
188 # stop any started R processes here
189 sub htmlize {
190     my %param = @_;
191     if (exists $pagestate{$param{page}} and
192         exists $pagestate{$param{page}}{$id} and
193         exists $pagestate{$param{page}}{$id}{R}) {
194         if (defined $pagestate{$param{page}}{$id}{R}
195             and $pagestate{$param{page}}{$id}{R}->is_started()) {
196             $pagestate{$param{page}}{$id}{R}->stop();
197         }
198         delete $pagestate{$param{page}}{$id}{R};
199     }
200 }
201
202 sub savestate {
203     # make sure we never try to save an R process
204     for my $page (keys %pagestate) {
205         next unless exists $pagestate{$page}{$id};
206         next unless exists $pagestate{$page}{$id}{R};
207         if (defined $pagestate{$page}{$id}{R}
208             and $pagestate{$page}{$id}{R}->is_started()) {
209             $pagestate{$page}{$id}{R}->stop;
210         }
211         delete $pagestate{$page}{$id}{R};
212     }
213 }
214
215
216
217
218
219 1;
220
221
222 __END__
223
224
225
226
227
228
229
230