]> git.lizzy.rs Git - rust.git/blob - src/librustdoc/html/format.rs
50f25a0f8f1b9ddbcbfe8eda8864fdc9820aad58
[rust.git] / src / librustdoc / html / format.rs
1 // Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! HTML formatting module
12 //!
13 //! This module contains a large number of `fmt::Show` implementations for
14 //! various types in `rustdoc::clean`. These implementations all currently
15 //! assume that HTML output is desired, although it may be possible to redesign
16 //! them in the future to instead emit any format desired.
17
18 use std::fmt;
19 use std::string::String;
20
21 use syntax::ast;
22 use syntax::ast_util;
23
24 use clean;
25 use html::item_type;
26 use html::item_type::ItemType;
27 use html::render;
28 use html::render::{cache_key, current_location_key};
29
30 /// Helper to render an optional visibility with a space after it (if the
31 /// visibility is preset)
32 pub struct VisSpace(pub Option<ast::Visibility>);
33 /// Similarly to VisSpace, this structure is used to render a function style with a
34 /// space after it.
35 pub struct FnStyleSpace(pub ast::FnStyle);
36 /// Wrapper struct for properly emitting a method declaration.
37 pub struct Method<'a>(pub &'a clean::SelfTy, pub &'a clean::FnDecl);
38
39 impl VisSpace {
40     pub fn get(&self) -> Option<ast::Visibility> {
41         let VisSpace(v) = *self; v
42     }
43 }
44
45 impl FnStyleSpace {
46     pub fn get(&self) -> ast::FnStyle {
47         let FnStyleSpace(v) = *self; v
48     }
49 }
50
51 impl fmt::Show for clean::Generics {
52     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
53         if self.lifetimes.len() == 0 && self.type_params.len() == 0 { return Ok(()) }
54         try!(f.write("&lt;".as_bytes()));
55
56         for (i, life) in self.lifetimes.iter().enumerate() {
57             if i > 0 {
58                 try!(f.write(", ".as_bytes()));
59             }
60             try!(write!(f, "{}", *life));
61         }
62
63         if self.type_params.len() > 0 {
64             if self.lifetimes.len() > 0 {
65                 try!(f.write(", ".as_bytes()));
66             }
67
68             for (i, tp) in self.type_params.iter().enumerate() {
69                 if i > 0 {
70                     try!(f.write(", ".as_bytes()))
71                 }
72                 try!(f.write(tp.name.as_bytes()));
73
74                 if tp.bounds.len() > 0 {
75                     try!(f.write(": ".as_bytes()));
76                     for (i, bound) in tp.bounds.iter().enumerate() {
77                         if i > 0 {
78                             try!(f.write(" + ".as_bytes()));
79                         }
80                         try!(write!(f, "{}", *bound));
81                     }
82                 }
83             }
84         }
85         try!(f.write("&gt;".as_bytes()));
86         Ok(())
87     }
88 }
89
90 impl fmt::Show for clean::Lifetime {
91     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
92         try!(f.write("'".as_bytes()));
93         try!(f.write(self.get_ref().as_bytes()));
94         Ok(())
95     }
96 }
97
98 impl fmt::Show for clean::TyParamBound {
99     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
100         match *self {
101             clean::RegionBound => {
102                 f.write("'static".as_bytes())
103             }
104             clean::TraitBound(ref ty) => {
105                 write!(f, "{}", *ty)
106             }
107         }
108     }
109 }
110
111 impl fmt::Show for clean::Path {
112     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
113         if self.global {
114             try!(f.write("::".as_bytes()))
115         }
116
117         for (i, seg) in self.segments.iter().enumerate() {
118             if i > 0 {
119                 try!(f.write("::".as_bytes()))
120             }
121             try!(f.write(seg.name.as_bytes()));
122
123             if seg.lifetimes.len() > 0 || seg.types.len() > 0 {
124                 try!(f.write("&lt;".as_bytes()));
125                 let mut comma = false;
126                 for lifetime in seg.lifetimes.iter() {
127                     if comma {
128                         try!(f.write(", ".as_bytes()));
129                     }
130                     comma = true;
131                     try!(write!(f, "{}", *lifetime));
132                 }
133                 for ty in seg.types.iter() {
134                     if comma {
135                         try!(f.write(", ".as_bytes()));
136                     }
137                     comma = true;
138                     try!(write!(f, "{}", *ty));
139                 }
140                 try!(f.write("&gt;".as_bytes()));
141             }
142         }
143         Ok(())
144     }
145 }
146
147 /// Used when rendering a `ResolvedPath` structure. This invokes the `path`
148 /// rendering function with the necessary arguments for linking to a local path.
149 fn resolved_path(w: &mut fmt::Formatter, did: ast::DefId, p: &clean::Path,
150                  print_all: bool) -> fmt::Result {
151     path(w, p, print_all,
152         |cache, loc| {
153             if ast_util::is_local(did) || cache.inlined.contains(&did) {
154                 Some(("../".repeat(loc.len())).to_string())
155             } else {
156                 match *cache.extern_locations.get(&did.krate) {
157                     render::Remote(ref s) => Some(s.to_string()),
158                     render::Local => {
159                         Some(("../".repeat(loc.len())).to_string())
160                     }
161                     render::Unknown => None,
162                 }
163             }
164         },
165         |cache| {
166             match cache.paths.find(&did) {
167                 None => None,
168                 Some(&(ref fqp, shortty)) => Some((fqp.clone(), shortty))
169             }
170         })
171 }
172
173 fn path(w: &mut fmt::Formatter, path: &clean::Path, print_all: bool,
174         root: |&render::Cache, &[String]| -> Option<String>,
175         info: |&render::Cache| -> Option<(Vec<String> , ItemType)>)
176     -> fmt::Result
177 {
178     // The generics will get written to both the title and link
179     let mut generics = String::new();
180     let last = path.segments.last().unwrap();
181     if last.lifetimes.len() > 0 || last.types.len() > 0 {
182         let mut counter = 0;
183         generics.push_str("&lt;");
184         for lifetime in last.lifetimes.iter() {
185             if counter > 0 { generics.push_str(", "); }
186             counter += 1;
187             generics.push_str(format!("{}", *lifetime).as_slice());
188         }
189         for ty in last.types.iter() {
190             if counter > 0 { generics.push_str(", "); }
191             counter += 1;
192             generics.push_str(format!("{}", *ty).as_slice());
193         }
194         generics.push_str("&gt;");
195     }
196
197     let loc = current_location_key.get().unwrap();
198     let cache = cache_key.get().unwrap();
199     let abs_root = root(&**cache, loc.as_slice());
200     let rel_root = match path.segments.get(0).name.as_slice() {
201         "self" => Some("./".to_string()),
202         _ => None,
203     };
204
205     if print_all {
206         let amt = path.segments.len() - 1;
207         match rel_root {
208             Some(root) => {
209                 let mut root = String::from_str(root.as_slice());
210                 for seg in path.segments.slice_to(amt).iter() {
211                     if "super" == seg.name.as_slice() ||
212                             "self" == seg.name.as_slice() {
213                         try!(write!(w, "{}::", seg.name));
214                     } else {
215                         root.push_str(seg.name.as_slice());
216                         root.push_str("/");
217                         try!(write!(w, "<a class='mod'
218                                             href='{}index.html'>{}</a>::",
219                                       root.as_slice(),
220                                       seg.name));
221                     }
222                 }
223             }
224             None => {
225                 for seg in path.segments.slice_to(amt).iter() {
226                     try!(write!(w, "{}::", seg.name));
227                 }
228             }
229         }
230     }
231
232     match info(&**cache) {
233         // This is a documented path, link to it!
234         Some((ref fqp, shortty)) if abs_root.is_some() => {
235             let mut url = String::from_str(abs_root.unwrap().as_slice());
236             let to_link = fqp.slice_to(fqp.len() - 1);
237             for component in to_link.iter() {
238                 url.push_str(component.as_slice());
239                 url.push_str("/");
240             }
241             match shortty {
242                 item_type::Module => {
243                     url.push_str(fqp.last().unwrap().as_slice());
244                     url.push_str("/index.html");
245                 }
246                 _ => {
247                     url.push_str(shortty.to_static_str());
248                     url.push_str(".");
249                     url.push_str(fqp.last().unwrap().as_slice());
250                     url.push_str(".html");
251                 }
252             }
253
254             try!(write!(w, "<a class='{}' href='{}' title='{}'>{}</a>",
255                           shortty, url, fqp.connect("::"), last.name));
256         }
257
258         _ => {
259             try!(write!(w, "{}", last.name));
260         }
261     }
262     try!(write!(w, "{}", generics.as_slice()));
263     Ok(())
264 }
265
266 fn primitive_link(f: &mut fmt::Formatter,
267                   prim: clean::Primitive,
268                   name: &str) -> fmt::Result {
269     let m = cache_key.get().unwrap();
270     let mut needs_termination = false;
271     match m.primitive_locations.find(&prim) {
272         Some(&ast::LOCAL_CRATE) => {
273             let loc = current_location_key.get().unwrap();
274             let len = if loc.len() == 0 {0} else {loc.len() - 1};
275             try!(write!(f, "<a href='{}primitive.{}.html'>",
276                         "../".repeat(len),
277                         prim.to_url_str()));
278             needs_termination = true;
279         }
280         Some(&cnum) => {
281             let loc = match *m.extern_locations.get(&cnum) {
282                 render::Remote(ref s) => Some(s.to_string()),
283                 render::Local => {
284                     let loc = current_location_key.get().unwrap();
285                     Some(("../".repeat(loc.len())).to_string())
286                 }
287                 render::Unknown => None,
288             };
289             match loc {
290                 Some(s) => {
291                     try!(write!(f, "<a href='{}/primitive.{}.html'>",
292                                 s, prim.to_url_str()));
293                     needs_termination = true;
294                 }
295                 None => {}
296             }
297         }
298         None => {}
299     }
300     try!(write!(f, "{}", name));
301     if needs_termination {
302         try!(write!(f, "</a>"));
303     }
304     Ok(())
305 }
306
307 /// Helper to render type parameters
308 fn tybounds(w: &mut fmt::Formatter,
309             typarams: &Option<Vec<clean::TyParamBound> >) -> fmt::Result {
310     match *typarams {
311         Some(ref params) => {
312             try!(write!(w, ":"));
313             for (i, param) in params.iter().enumerate() {
314                 if i > 0 {
315                     try!(write!(w, " + "));
316                 }
317                 try!(write!(w, "{}", *param));
318             }
319             Ok(())
320         }
321         None => Ok(())
322     }
323 }
324
325 impl fmt::Show for clean::Type {
326     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
327         match *self {
328             clean::TyParamBinder(id) => {
329                 let m = cache_key.get().unwrap();
330                 f.write(m.typarams.get(&ast_util::local_def(id)).as_bytes())
331             }
332             clean::Generic(did) => {
333                 let m = cache_key.get().unwrap();
334                 f.write(m.typarams.get(&did).as_bytes())
335             }
336             clean::ResolvedPath{ did, ref typarams, ref path } => {
337                 try!(resolved_path(f, did, path, false));
338                 tybounds(f, typarams)
339             }
340             clean::Self(..) => f.write("Self".as_bytes()),
341             clean::Primitive(prim) => primitive_link(f, prim, prim.to_str()),
342             clean::Closure(ref decl, ref region) => {
343                 write!(f, "{style}{lifetimes}|{args}|{bounds}\
344                            {arrow, select, yes{ -&gt; {ret}} other{}}",
345                        style = FnStyleSpace(decl.fn_style),
346                        lifetimes = if decl.lifetimes.len() == 0 {
347                            "".to_string()
348                        } else {
349                            format!("&lt;{:#}&gt;", decl.lifetimes)
350                        },
351                        args = decl.decl.inputs,
352                        arrow = match decl.decl.output {
353                            clean::Primitive(clean::Nil) => "no",
354                            _ => "yes",
355                        },
356                        ret = decl.decl.output,
357                        bounds = {
358                            let mut ret = String::new();
359                            match *region {
360                                Some(ref lt) => {
361                                    ret.push_str(format!(": {}",
362                                                         *lt).as_slice());
363                                }
364                                None => {}
365                            }
366                            for bound in decl.bounds.iter() {
367                                 match *bound {
368                                     clean::RegionBound => {}
369                                     clean::TraitBound(ref t) => {
370                                         if ret.len() == 0 {
371                                             ret.push_str(": ");
372                                         } else {
373                                             ret.push_str(" + ");
374                                         }
375                                         ret.push_str(format!("{}",
376                                                              *t).as_slice());
377                                     }
378                                 }
379                            }
380                            ret
381                        })
382             }
383             clean::Proc(ref decl) => {
384                 write!(f, "{style}{lifetimes}proc({args}){bounds}\
385                            {arrow, select, yes{ -&gt; {ret}} other{}}",
386                        style = FnStyleSpace(decl.fn_style),
387                        lifetimes = if decl.lifetimes.len() == 0 {
388                            "".to_string()
389                        } else {
390                            format!("&lt;{:#}&gt;", decl.lifetimes)
391                        },
392                        args = decl.decl.inputs,
393                        bounds = if decl.bounds.len() == 0 {
394                            "".to_string()
395                        } else {
396                            let mut m = decl.bounds
397                                            .iter()
398                                            .map(|s| s.to_str().to_string());
399                            format!(
400                                ": {}",
401                                m.collect::<Vec<String>>().connect(" + "))
402                        },
403                        arrow = match decl.decl.output {
404                            clean::Primitive(clean::Nil) => "no",
405                            _ => "yes",
406                        },
407                        ret = decl.decl.output)
408             }
409             clean::BareFunction(ref decl) => {
410                 write!(f, "{}{}fn{}{}",
411                        FnStyleSpace(decl.fn_style),
412                        match decl.abi.as_slice() {
413                            "" => " extern ".to_string(),
414                            "\"Rust\"" => "".to_string(),
415                            s => format!(" extern {} ", s)
416                        },
417                        decl.generics,
418                        decl.decl)
419             }
420             clean::Tuple(ref typs) => {
421                 try!(f.write("(".as_bytes()));
422                 for (i, typ) in typs.iter().enumerate() {
423                     if i > 0 {
424                         try!(f.write(", ".as_bytes()))
425                     }
426                     try!(write!(f, "{}", *typ));
427                 }
428                 f.write(")".as_bytes())
429             }
430             clean::Vector(ref t) => {
431                 primitive_link(f, clean::Slice, format!("[{}]", **t).as_slice())
432             }
433             clean::FixedVector(ref t, ref s) => {
434                 primitive_link(f, clean::Slice,
435                                format!("[{}, ..{}]", **t, *s).as_slice())
436             }
437             clean::Bottom => f.write("!".as_bytes()),
438             clean::Unique(ref t) => write!(f, "~{}", **t),
439             clean::Managed(ref t) => write!(f, "@{}", **t),
440             clean::RawPointer(m, ref t) => {
441                 write!(f, "*{}{}",
442                        match m {
443                            clean::Mutable => "mut ",
444                            clean::Immutable => "",
445                        }, **t)
446             }
447             clean::BorrowedRef{ lifetime: ref l, mutability, type_: ref ty} => {
448                 let lt = match *l {
449                     Some(ref l) => format!("{} ", *l),
450                     _ => "".to_string(),
451                 };
452                 write!(f, "&amp;{}{}{}",
453                        lt,
454                        match mutability {
455                            clean::Mutable => "mut ",
456                            clean::Immutable => "",
457                        },
458                        **ty)
459             }
460         }
461     }
462 }
463
464 impl fmt::Show for clean::Arguments {
465     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
466         for (i, input) in self.values.iter().enumerate() {
467             if i > 0 { try!(write!(f, ", ")); }
468             if input.name.len() > 0 {
469                 try!(write!(f, "{}: ", input.name));
470             }
471             try!(write!(f, "{}", input.type_));
472         }
473         Ok(())
474     }
475 }
476
477 impl fmt::Show for clean::FnDecl {
478     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
479         write!(f, "({args}){arrow, select, yes{ -&gt; {ret}} other{}}",
480                args = self.inputs,
481                arrow = match self.output {
482                    clean::Primitive(clean::Nil) => "no",
483                    _ => "yes"
484                },
485                ret = self.output)
486     }
487 }
488
489 impl<'a> fmt::Show for Method<'a> {
490     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
491         let Method(selfty, d) = *self;
492         let mut args = String::new();
493         match *selfty {
494             clean::SelfStatic => {},
495             clean::SelfValue => args.push_str("self"),
496             clean::SelfOwned => args.push_str("~self"),
497             clean::SelfBorrowed(Some(ref lt), clean::Immutable) => {
498                 args.push_str(format!("&amp;{} self", *lt).as_slice());
499             }
500             clean::SelfBorrowed(Some(ref lt), clean::Mutable) => {
501                 args.push_str(format!("&amp;{} mut self", *lt).as_slice());
502             }
503             clean::SelfBorrowed(None, clean::Mutable) => {
504                 args.push_str("&amp;mut self");
505             }
506             clean::SelfBorrowed(None, clean::Immutable) => {
507                 args.push_str("&amp;self");
508             }
509         }
510         for (i, input) in d.inputs.values.iter().enumerate() {
511             if i > 0 || args.len() > 0 { args.push_str(", "); }
512             if input.name.len() > 0 {
513                 args.push_str(format!("{}: ", input.name).as_slice());
514             }
515             args.push_str(format!("{}", input.type_).as_slice());
516         }
517         write!(f,
518                "({args}){arrow, select, yes{ -&gt; {ret}} other{}}",
519                args = args,
520                arrow = match d.output {
521                    clean::Primitive(clean::Nil) => "no",
522                    _ => "yes"
523                },
524                ret = d.output)
525     }
526 }
527
528 impl fmt::Show for VisSpace {
529     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
530         match self.get() {
531             Some(ast::Public) => write!(f, "pub "),
532             Some(ast::Inherited) | None => Ok(())
533         }
534     }
535 }
536
537 impl fmt::Show for FnStyleSpace {
538     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
539         match self.get() {
540             ast::UnsafeFn => write!(f, "unsafe "),
541             ast::NormalFn => Ok(())
542         }
543     }
544 }
545
546 impl fmt::Show for clean::ViewPath {
547     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
548         match *self {
549             clean::SimpleImport(ref name, ref src) => {
550                 if *name == src.path.segments.last().unwrap().name {
551                     write!(f, "use {};", *src)
552                 } else {
553                     write!(f, "use {} = {};", *name, *src)
554                 }
555             }
556             clean::GlobImport(ref src) => {
557                 write!(f, "use {}::*;", *src)
558             }
559             clean::ImportList(ref src, ref names) => {
560                 try!(write!(f, "use {}::\\{", *src));
561                 for (i, n) in names.iter().enumerate() {
562                     if i > 0 {
563                         try!(write!(f, ", "));
564                     }
565                     try!(write!(f, "{}", *n));
566                 }
567                 write!(f, "\\};")
568             }
569         }
570     }
571 }
572
573 impl fmt::Show for clean::ImportSource {
574     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
575         match self.did {
576             Some(did) => resolved_path(f, did, &self.path, true),
577             _ => {
578                 for (i, seg) in self.path.segments.iter().enumerate() {
579                     if i > 0 {
580                         try!(write!(f, "::"))
581                     }
582                     try!(write!(f, "{}", seg.name));
583                 }
584                 Ok(())
585             }
586         }
587     }
588 }
589
590 impl fmt::Show for clean::ViewListIdent {
591     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
592         match self.source {
593             Some(did) => {
594                 let path = clean::Path {
595                     global: false,
596                     segments: vec!(clean::PathSegment {
597                         name: self.name.clone(),
598                         lifetimes: Vec::new(),
599                         types: Vec::new(),
600                     })
601                 };
602                 resolved_path(f, did, &path, false)
603             }
604             _ => write!(f, "{}", self.name),
605         }
606     }
607 }