/* Program which times SQL communiation latency by firing off a number of simple SQL statements which don't perform I/O. Versioning: $Id: LatencyTester.java 419 2010-05-21 22:46:23Z troels $ */ import java.sql.*; import java.io.*; import java.util.Random; public class LatencyTester { // some "global" variables, to save code static String dbname; static String servername; static String username; static String sqlprofile; static int nStatements = 10000; public static void usage() { echo("Usage:"); echo("LatencyTester [ ]"); echo(""); echo("The type parameter may be one of:"); echo(" short - short pieces of data are being used"); echo(" long - long pieces of data are being used"); } public static void err(String message) { System.err.println("Error: "+message); System.err.println("Provide the -h argument for help"); System.exit(1); } // To save typing: public static void echo(String message) { System.out.println(message); } public static Connection getConn() throws SQLException, ClassNotFoundException, InstantiationException, IllegalAccessException { Connection conn = null; if (null == servername) { echo("Using local IPC connection"); Class.forName("COM.ibm.db2.jdbc.app.DB2Driver").newInstance(); conn = DriverManager.getConnection("jdbc:db2:"+dbname); } else { echo("Using TCP connection"); Console cons = System.console(); echo("Please enter password:"); String password = new String(cons.readPassword()); Class.forName("com.ibm.db2.jcc.DB2Driver").newInstance(); String options = ":user="+username+";password="+password+";"; String url = "jdbc:db2://"+servername+":50000/"+dbname+options; conn = DriverManager.getConnection(url); } return conn; } public static void runQueries(Connection conn, String sqlprofile) throws SQLException { ResultSet resSet; echo("Running "+nStatements+" statements; profile='"+sqlprofile+"'"); if (sqlprofile.equals("short")) { // +1 enables prepareStatement to deduce ?'s type String sql = "VALUES(? + 1)"; PreparedStatement pstmt = conn.prepareStatement(sql); // Shouldn't be blocked by lack of entropy; verified // by noticing that strace doesn't open /dev/random // (in contrast to what SecureRandom seems to do). Random rand = new Random(); int inVal; for (int i=0; i