solana/src/bin/client-demo.rs

91 lines
3.0 KiB
Rust
Raw Normal View History

extern crate rayon;
extern crate serde_json;
2018-03-27 15:24:05 -07:00
extern crate solana;
2018-02-28 09:07:54 -08:00
2018-03-27 15:24:05 -07:00
use solana::accountant_stub::AccountantStub;
use solana::mint::Mint;
use solana::signature::{KeyPair, KeyPairUtil};
use solana::transaction::Transaction;
use std::io::stdin;
use std::net::{TcpStream, UdpSocket};
use std::time::Instant;
use rayon::prelude::*;
2018-02-28 09:07:54 -08:00
fn main() {
2018-02-28 13:16:50 -08:00
let addr = "127.0.0.1:8000";
let send_addr = "127.0.0.1:8001";
let mint: Mint = serde_json::from_reader(stdin()).unwrap();
let mint_keypair = mint.keypair();
let mint_pubkey = mint.pubkey();
2018-02-28 09:07:54 -08:00
let socket = UdpSocket::bind(send_addr).unwrap();
2018-03-28 13:40:58 -07:00
let stream = TcpStream::connect(addr).unwrap();
stream.set_nonblocking(true).expect("nonblocking");
let acc = AccountantStub::new(addr, socket, stream);
let last_id = acc.get_last_id().unwrap();
2018-03-28 13:40:58 -07:00
let mint_balance = acc.get_balance(&mint_pubkey).unwrap().unwrap();
println!("Mint's Initial Balance {}", mint_balance);
println!("Signing transactions...");
let txs = 10_000;
let now = Instant::now();
let transactions: Vec<_> = (0..txs)
.into_par_iter()
.map(|_| {
let rando_pubkey = KeyPair::new().pubkey();
Transaction::new(&mint_keypair, rando_pubkey, 1, last_id)
})
.collect();
let duration = now.elapsed();
2018-03-22 13:15:29 -07:00
let ns = duration.as_secs() * 1_000_000_000 + u64::from(duration.subsec_nanos());
let bsps = txs as f64 / ns as f64;
let nsps = ns as f64 / txs as f64;
println!(
2018-03-03 10:52:46 -08:00
"Done. {} thousand signatures per second, {}us per signature",
bsps * 1_000_000_f64,
nsps / 1_000_f64
);
println!("Verify signatures...");
let now = Instant::now();
transactions.par_iter().for_each(|tr| assert!(tr.verify()));
let duration = now.elapsed();
2018-03-22 13:15:29 -07:00
let ns = duration.as_secs() * 1_000_000_000 + u64::from(duration.subsec_nanos());
let bsvps = txs as f64 / ns as f64;
let nspsv = ns as f64 / txs as f64;
println!(
"Done. {} thousand signature verifications per second, {}us per signature verification",
bsvps * 1_000_000_f64,
nspsv / 1_000_f64
);
println!("Transferring 1 unit {} times...", txs);
let now = Instant::now();
let mut _sig = Default::default();
for tr in transactions {
_sig = tr.sig;
acc.transfer_signed(tr).unwrap();
}
println!("Waiting for last transaction to be confirmed...",);
let mut val = mint_balance;
while val > mint_balance - txs {
val = acc.get_balance(&mint_pubkey).unwrap().unwrap();
2018-03-28 13:40:58 -07:00
}
//if txs > 0 {
// acc.wait_on_signature(&sig, &last_id).unwrap();
//}
2018-02-28 09:07:54 -08:00
let duration = now.elapsed();
2018-03-22 13:15:29 -07:00
let ns = duration.as_secs() * 1_000_000_000 + u64::from(duration.subsec_nanos());
let tps = (txs * 1_000_000_000) as f64 / ns as f64;
println!("Done. {} tps!", tps);
println!("Mint's Final Balance {}", val);
2018-03-28 13:40:58 -07:00
assert_eq!(val, mint_balance - txs);
// Force the ledger to print on the server.
acc.get_last_id().unwrap();
2018-02-28 09:07:54 -08:00
}