27
27
#![ allow( non_camel_case_types) ]
28
28
29
29
use libc;
30
- use std:: cell:: RefCell ;
30
+ use std:: cell:: { RefCell , Cell } ;
31
31
use std:: fmt;
32
32
use std:: slice;
33
33
use std:: str;
34
34
use std:: collections:: HashMap ;
35
35
36
36
use html:: toc:: TocBuilder ;
37
37
use html:: highlight;
38
+ use html:: escape:: Escape ;
39
+ use test;
38
40
39
41
/// A unit struct which has the `fmt::Show` trait implemented. When
40
42
/// formatted, this struct will emit the HTML corresponding to the rendered
@@ -139,6 +141,9 @@ fn stripped_filtered_line<'a>(s: &'a str) -> Option<&'a str> {
139
141
}
140
142
141
143
local_data_key ! ( used_header_map: RefCell <HashMap <String , uint>>)
144
+ local_data_key ! ( test_idx: Cell <uint>)
145
+ // None == render an example, but there's no crate name
146
+ local_data_key ! ( pub playground_krate: Option <String >)
142
147
143
148
pub fn render ( w : & mut fmt:: Formatter , s : & str , print_toc : bool ) -> fmt:: Result {
144
149
extern fn block ( ob : * mut hoedown_buffer , text : * hoedown_buffer ,
@@ -149,9 +154,9 @@ pub fn render(w: &mut fmt::Formatter, s: &str, print_toc: bool) -> fmt::Result {
149
154
let opaque = opaque as * mut hoedown_html_renderer_state ;
150
155
let my_opaque: & MyOpaque = & * ( ( * opaque) . opaque as * MyOpaque ) ;
151
156
slice:: raw:: buf_as_slice ( ( * text) . data , ( * text) . size as uint , |text| {
152
- let text = str:: from_utf8 ( text) . unwrap ( ) ;
157
+ let origtext = str:: from_utf8 ( text) . unwrap ( ) ;
153
158
debug ! ( "docblock: ==============\n {}\n =======" , text) ;
154
- let mut lines = text . lines ( ) . filter ( |l| {
159
+ let mut lines = origtext . lines ( ) . filter ( |l| {
155
160
stripped_filtered_line ( * l) . is_none ( )
156
161
} ) ;
157
162
let text = lines. collect :: < Vec < & str > > ( ) . connect ( "\n " ) ;
@@ -180,9 +185,26 @@ pub fn render(w: &mut fmt::Formatter, s: &str, print_toc: bool) -> fmt::Result {
180
185
} ;
181
186
182
187
if !rendered {
183
- let output = highlight:: highlight ( text. as_slice ( ) ,
184
- None ) . as_slice ( )
185
- . to_c_str ( ) ;
188
+ let mut s = String :: new ( ) ;
189
+ let id = playground_krate. get ( ) . map ( |krate| {
190
+ let idx = test_idx. get ( ) . unwrap ( ) ;
191
+ let i = idx. get ( ) ;
192
+ idx. set ( i + 1 ) ;
193
+
194
+ let test = origtext. lines ( ) . map ( |l| {
195
+ stripped_filtered_line ( l) . unwrap_or ( l)
196
+ } ) . collect :: < Vec < & str > > ( ) . connect ( "\n " ) ;
197
+ let krate = krate. as_ref ( ) . map ( |s| s. as_slice ( ) ) ;
198
+ let test = test:: maketest ( test. as_slice ( ) , krate, false ) ;
199
+ s. push_str ( format ! ( "<span id='rust-example-raw-{}' \
200
+ class='rusttest'>{}</span>",
201
+ i, Escape ( test. as_slice( ) ) ) . as_slice ( ) ) ;
202
+ format ! ( "rust-example-rendered-{}" , i)
203
+ } ) ;
204
+ let id = id. as_ref ( ) . map ( |a| a. as_slice ( ) ) ;
205
+ s. push_str ( highlight:: highlight ( text. as_slice ( ) , None , id)
206
+ . as_slice ( ) ) ;
207
+ let output = s. to_c_str ( ) ;
186
208
output. with_ref ( |r| {
187
209
hoedown_buffer_puts ( ob, r)
188
210
} )
@@ -377,6 +399,7 @@ fn parse_lang_string(string: &str) -> (bool,bool,bool,bool) {
377
399
/// previous state (if any).
378
400
pub fn reset_headers ( ) {
379
401
used_header_map. replace ( Some ( RefCell :: new ( HashMap :: new ( ) ) ) ) ;
402
+ test_idx. replace ( Some ( Cell :: new ( 0 ) ) ) ;
380
403
}
381
404
382
405
impl < ' a > fmt:: Show for Markdown < ' a > {
0 commit comments