]> git.lizzy.rs Git - rust.git/blob - src/test/bench/shootout-fasta.rs
Merge pull request #20510 from tshepang/patch-6
[rust.git] / src / test / bench / shootout-fasta.rs
1 // The Computer Language Benchmarks Game
2 // http://benchmarksgame.alioth.debian.org/
3 //
4 // contributed by the Rust Project Developers
5
6 // Copyright (c) 2012-2014 The Rust Project Developers
7 //
8 // All rights reserved.
9 //
10 // Redistribution and use in source and binary forms, with or without
11 // modification, are permitted provided that the following conditions
12 // are met:
13 //
14 // - Redistributions of source code must retain the above copyright
15 //   notice, this list of conditions and the following disclaimer.
16 //
17 // - Redistributions in binary form must reproduce the above copyright
18 //   notice, this list of conditions and the following disclaimer in
19 //   the documentation and/or other materials provided with the
20 //   distribution.
21 //
22 // - Neither the name of "The Computer Language Benchmarks Game" nor
23 //   the name of "The Computer Language Shootout Benchmarks" nor the
24 //   names of its contributors may be used to endorse or promote
25 //   products derived from this software without specific prior
26 //   written permission.
27 //
28 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
31 // FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
32 // COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
33 // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
34 // (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
35 // SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
36 // HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
37 // STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
38 // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
39 // OF THE POSSIBILITY OF SUCH DAMAGE.
40
41 #![feature(associated_types, slicing_syntax)]
42
43 use std::cmp::min;
44 use std::io::{BufferedWriter, File};
45 use std::io;
46 use std::num::Float;
47 use std::os;
48
49 const LINE_LENGTH: uint = 60;
50 const IM: u32 = 139968;
51
52 struct MyRandom {
53     last: u32
54 }
55 impl MyRandom {
56     fn new() -> MyRandom { MyRandom { last: 42 } }
57     fn normalize(p: f32) -> u32 {(p * IM as f32).floor() as u32}
58     fn gen(&mut self) -> u32 {
59         self.last = (self.last * 3877 + 29573) % IM;
60         self.last
61     }
62 }
63
64 struct AAGen<'a> {
65     rng: &'a mut MyRandom,
66     data: Vec<(u32, u8)>
67 }
68 impl<'a> AAGen<'a> {
69     fn new<'b>(rng: &'b mut MyRandom, aa: &[(char, f32)]) -> AAGen<'b> {
70         let mut cum = 0.;
71         let data = aa.iter()
72             .map(|&(ch, p)| { cum += p; (MyRandom::normalize(cum), ch as u8) })
73             .collect();
74         AAGen { rng: rng, data: data }
75     }
76 }
77 impl<'a> Iterator for AAGen<'a> {
78     type Item = u8;
79
80     fn next(&mut self) -> Option<u8> {
81         let r = self.rng.gen();
82         self.data.iter()
83             .skip_while(|pc| pc.0 < r)
84             .map(|&(_, c)| c)
85             .next()
86     }
87 }
88
89 fn make_fasta<W: Writer, I: Iterator<Item=u8>>(
90     wr: &mut W, header: &str, mut it: I, mut n: uint)
91     -> std::io::IoResult<()>
92 {
93     try!(wr.write(header.as_bytes()));
94     let mut line = [0u8; LINE_LENGTH + 1];
95     while n > 0 {
96         let nb = min(LINE_LENGTH, n);
97         for i in range(0, nb) {
98             line[i] = it.next().unwrap();
99         }
100         n -= nb;
101         line[nb] = '\n' as u8;
102         try!(wr.write(line[..nb+1]));
103     }
104     Ok(())
105 }
106
107 fn run<W: Writer>(writer: &mut W) -> std::io::IoResult<()> {
108     let args = os::args();
109     let args = args.as_slice();
110     let n = if os::getenv("RUST_BENCH").is_some() {
111         25000000
112     } else if args.len() <= 1u {
113         1000
114     } else {
115         args[1].parse().unwrap()
116     };
117
118     let rng = &mut MyRandom::new();
119     let alu =
120         "GGCCGGGCGCGGTGGCTCACGCCTGTAATCCCAGCACTTTGG\
121         GAGGCCGAGGCGGGCGGATCACCTGAGGTCAGGAGTTCGAGA\
122         CCAGCCTGGCCAACATGGTGAAACCCCGTCTCTACTAAAAAT\
123         ACAAAAATTAGCCGGGCGTGGTGGCGCGCGCCTGTAATCCCA\
124         GCTACTCGGGAGGCTGAGGCAGGAGAATCGCTTGAACCCGGG\
125         AGGCGGAGGTTGCAGTGAGCCGAGATCGCGCCACTGCACTCC\
126         AGCCTGGGCGACAGAGCGAGACTCCGTCTCAAAAA";
127     let iub = &[('a', 0.27), ('c', 0.12), ('g', 0.12),
128                 ('t', 0.27), ('B', 0.02), ('D', 0.02),
129                 ('H', 0.02), ('K', 0.02), ('M', 0.02),
130                 ('N', 0.02), ('R', 0.02), ('S', 0.02),
131                 ('V', 0.02), ('W', 0.02), ('Y', 0.02)];
132     let homosapiens = &[('a', 0.3029549426680),
133                         ('c', 0.1979883004921),
134                         ('g', 0.1975473066391),
135                         ('t', 0.3015094502008)];
136
137     try!(make_fasta(writer, ">ONE Homo sapiens alu\n",
138                     alu.as_bytes().iter().cycle().map(|c| *c), n * 2));
139     try!(make_fasta(writer, ">TWO IUB ambiguity codes\n",
140                     AAGen::new(rng, iub), n * 3));
141     try!(make_fasta(writer, ">THREE Homo sapiens frequency\n",
142                     AAGen::new(rng, homosapiens), n * 5));
143
144     writer.flush()
145 }
146
147 fn main() {
148     let res = if os::getenv("RUST_BENCH").is_some() {
149         let mut file = BufferedWriter::new(File::create(&Path::new("./shootout-fasta.data")));
150         run(&mut file)
151     } else {
152         run(&mut io::stdout())
153     };
154     res.unwrap()
155 }