]> git.lizzy.rs Git - rust.git/blob - src/utils.rs
Merge pull request #615 from JanLikar/version
[rust.git] / src / utils.rs
1 // Copyright 2015 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 use std::cmp::Ordering;
12
13 use syntax::ast::{self, Visibility, Attribute, MetaItem, MetaItem_};
14 use syntax::codemap::{CodeMap, Span, BytePos};
15 use syntax::abi;
16
17 use Indent;
18 use comment::FindUncommented;
19 use rewrite::{Rewrite, RewriteContext};
20
21 use SKIP_ANNOTATION;
22
23 // Computes the length of a string's last line, minus offset.
24 #[inline]
25 pub fn extra_offset(text: &str, offset: Indent) -> usize {
26     match text.rfind('\n') {
27         // 1 for newline character
28         Some(idx) => text.len() - idx - 1 - offset.width(),
29         None => text.len(),
30     }
31 }
32
33 #[inline]
34 pub fn span_after(original: Span, needle: &str, codemap: &CodeMap) -> BytePos {
35     let snippet = codemap.span_to_snippet(original).unwrap();
36     let offset = snippet.find_uncommented(needle).unwrap() + needle.len();
37
38     original.lo + BytePos(offset as u32)
39 }
40
41 #[inline]
42 pub fn format_visibility(vis: Visibility) -> &'static str {
43     match vis {
44         Visibility::Public => "pub ",
45         Visibility::Inherited => "",
46     }
47 }
48
49 #[inline]
50 pub fn format_unsafety(unsafety: ast::Unsafety) -> &'static str {
51     match unsafety {
52         ast::Unsafety::Unsafe => "unsafe ",
53         ast::Unsafety::Normal => "",
54     }
55 }
56
57 #[inline]
58 pub fn format_mutability(mutability: ast::Mutability) -> &'static str {
59     match mutability {
60         ast::Mutability::MutMutable => "mut ",
61         ast::Mutability::MutImmutable => "",
62     }
63 }
64
65 #[inline]
66 // FIXME(#451): include "C"?
67 pub fn format_abi(abi: abi::Abi) -> String {
68     format!("extern {} ", abi)
69 }
70
71 // The width of the first line in s.
72 #[inline]
73 pub fn first_line_width(s: &str) -> usize {
74     match s.find('\n') {
75         Some(n) => n,
76         None => s.len(),
77     }
78 }
79
80 // The width of the last line in s.
81 #[inline]
82 pub fn last_line_width(s: &str) -> usize {
83     match s.rfind('\n') {
84         Some(n) => s.len() - n - 1,
85         None => s.len(),
86     }
87 }
88
89 #[inline]
90 fn is_skip(meta_item: &MetaItem) -> bool {
91     match meta_item.node {
92         MetaItem_::MetaWord(ref s) => *s == SKIP_ANNOTATION,
93         MetaItem_::MetaList(ref s, ref l) => *s == "cfg_attr" && l.len() == 2 && is_skip(&l[1]),
94         _ => false,
95     }
96 }
97
98 #[inline]
99 pub fn contains_skip(attrs: &[Attribute]) -> bool {
100     attrs.iter().any(|a| is_skip(&a.node.value))
101 }
102
103 // Find the end of a TyParam
104 #[inline]
105 pub fn end_typaram(typaram: &ast::TyParam) -> BytePos {
106     typaram.bounds
107            .last()
108            .map(|bound| {
109                match *bound {
110                    ast::RegionTyParamBound(ref lt) => lt.span,
111                    ast::TraitTyParamBound(ref prt, _) => prt.span,
112                }
113            })
114            .unwrap_or(typaram.span)
115            .hi
116 }
117
118 #[inline]
119 pub fn semicolon_for_expr(expr: &ast::Expr) -> bool {
120     match expr.node {
121         ast::Expr_::ExprRet(..) |
122         ast::Expr_::ExprAgain(..) |
123         ast::Expr_::ExprBreak(..) => true,
124         _ => false,
125     }
126 }
127
128 #[inline]
129 pub fn semicolon_for_stmt(stmt: &ast::Stmt) -> bool {
130     match stmt.node {
131         ast::Stmt_::StmtSemi(ref expr, _) => {
132             match expr.node {
133                 ast::Expr_::ExprWhile(..) |
134                 ast::Expr_::ExprWhileLet(..) |
135                 ast::Expr_::ExprLoop(..) |
136                 ast::Expr_::ExprForLoop(..) => false,
137                 _ => true,
138             }
139         }
140         ast::Stmt_::StmtExpr(..) => false,
141         _ => true,
142     }
143 }
144
145 #[inline]
146 pub fn trim_newlines(input: &str) -> &str {
147     match input.find(|c| c != '\n' && c != '\r') {
148         Some(start) => {
149             let end = input.rfind(|c| c != '\n' && c != '\r').unwrap_or(0) + 1;
150             &input[start..end]
151         }
152         None => "",
153     }
154 }
155
156 #[inline]
157 #[cfg(target_pointer_width="64")]
158 // Based on the trick layed out at
159 // http://graphics.stanford.edu/~seander/bithacks.html#RoundUpPowerOf2
160 pub fn round_up_to_power_of_two(mut x: usize) -> usize {
161     x = x.wrapping_sub(1);
162     x |= x >> 1;
163     x |= x >> 2;
164     x |= x >> 4;
165     x |= x >> 8;
166     x |= x >> 16;
167     x |= x >> 32;
168     x.wrapping_add(1)
169 }
170
171 #[inline]
172 #[cfg(target_pointer_width="32")]
173 pub fn round_up_to_power_of_two(mut x: usize) -> usize {
174     x = x.wrapping_sub(1);
175     x |= x >> 1;
176     x |= x >> 2;
177     x |= x >> 4;
178     x |= x >> 8;
179     x |= x >> 16;
180     x.wrapping_add(1)
181 }
182
183 // Macro for deriving implementations of Decodable for enums
184 #[macro_export]
185 macro_rules! impl_enum_decodable {
186     ( $e:ident, $( $x:ident ),* ) => {
187         impl ::rustc_serialize::Decodable for $e {
188             fn decode<D: ::rustc_serialize::Decoder>(d: &mut D) -> Result<Self, D::Error> {
189                 let s = try!(d.read_str());
190                 match &*s {
191                     $(
192                         stringify!($x) => Ok($e::$x),
193                     )*
194                     _ => Err(d.error("Bad variant")),
195                 }
196             }
197         }
198
199         impl ::std::str::FromStr for $e {
200             type Err = &'static str;
201
202             fn from_str(s: &str) -> Result<Self, Self::Err> {
203                 match &*s {
204                     $(
205                         stringify!($x) => Ok($e::$x),
206                     )*
207                     _ => Err("Bad variant"),
208                 }
209             }
210         }
211
212         impl ::config::ConfigType for $e {
213             fn get_variant_names() -> String {
214                 let mut variants = Vec::new();
215                 $(
216                     variants.push(stringify!($x));
217                 )*
218                 format!("[{}]", variants.join("|"))
219             }
220         }
221     };
222 }
223
224 // Same as try!, but for Option
225 #[macro_export]
226 macro_rules! try_opt {
227     ($expr:expr) => (match $expr {
228         Some(val) => val,
229         None => { return None; }
230     })
231 }
232
233 // Wraps string-like values in an Option. Returns Some when the string adheres
234 // to the Rewrite constraints defined for the Rewrite trait and else otherwise.
235 pub fn wrap_str<S: AsRef<str>>(s: S, max_width: usize, width: usize, offset: Indent) -> Option<S> {
236     {
237         let snippet = s.as_ref();
238
239         if !snippet.contains('\n') && snippet.len() > width {
240             return None;
241         } else {
242             let mut lines = snippet.lines();
243
244             // The caller of this function has already placed `offset`
245             // characters on the first line.
246             let first_line_max_len = try_opt!(max_width.checked_sub(offset.width()));
247             if lines.next().unwrap().len() > first_line_max_len {
248                 return None;
249             }
250
251             // The other lines must fit within the maximum width.
252             if lines.find(|line| line.len() > max_width).is_some() {
253                 return None;
254             }
255
256             // `width` is the maximum length of the last line, excluding
257             // indentation.
258             // A special check for the last line, since the caller may
259             // place trailing characters on this line.
260             if snippet.lines().rev().next().unwrap().len() > offset.width() + width {
261                 return None;
262             }
263         }
264     }
265
266     Some(s)
267 }
268
269 impl Rewrite for String {
270     fn rewrite(&self, context: &RewriteContext, width: usize, offset: Indent) -> Option<String> {
271         wrap_str(self, context.config.max_width, width, offset).map(ToOwned::to_owned)
272     }
273 }
274
275 // Binary search in integer range. Returns the first Ok value returned by the
276 // callback.
277 // The callback takes an integer and returns either an Ok, or an Err indicating
278 // whether the `guess' was too high (Ordering::Less), or too low.
279 // This function is guaranteed to try to the hi value first.
280 pub fn binary_search<C, T>(mut lo: usize, mut hi: usize, callback: C) -> Option<T>
281     where C: Fn(usize) -> Result<T, Ordering>
282 {
283     let mut middle = hi;
284
285     while lo <= hi {
286         match callback(middle) {
287             Ok(val) => return Some(val),
288             Err(Ordering::Less) => {
289                 hi = middle - 1;
290             }
291             Err(..) => {
292                 lo = middle + 1;
293             }
294         }
295         middle = (hi + lo) / 2;
296     }
297
298     None
299 }
300
301 #[test]
302 fn bin_search_test() {
303     let closure = |i| {
304         match i {
305             4 => Ok(()),
306             j if j > 4 => Err(Ordering::Less),
307             j if j < 4 => Err(Ordering::Greater),
308             _ => unreachable!(),
309         }
310     };
311
312     assert_eq!(Some(()), binary_search(1, 10, &closure));
313     assert_eq!(None, binary_search(1, 3, &closure));
314     assert_eq!(Some(()), binary_search(0, 44, &closure));
315     assert_eq!(Some(()), binary_search(4, 125, &closure));
316     assert_eq!(None, binary_search(6, 100, &closure));
317 }
318
319 #[test]
320 fn power_rounding() {
321     assert_eq!(0, round_up_to_power_of_two(0));
322     assert_eq!(1, round_up_to_power_of_two(1));
323     assert_eq!(64, round_up_to_power_of_two(33));
324     assert_eq!(256, round_up_to_power_of_two(256));
325 }