/* * (c) Copyright 2004, 2005, 2006, 2007 Hewlett-Packard Development Company, LP * [See end of file] */ package arqo; import java.io.BufferedReader; import java.io.FileNotFoundException; import java.io.FileReader; import java.io.IOException; import com.hp.hpl.jena.query.Query; import com.hp.hpl.jena.query.QueryFactory; import com.hp.hpl.jena.query.QueryExecution; import com.hp.hpl.jena.query.QueryExecutionFactory; import com.hp.hpl.jena.query.ResultSet; import com.hp.hpl.jena.rdf.model.Model; import com.hp.hpl.jena.rdf.model.ModelFactory; import com.hp.hpl.jena.rdf.model.StmtIterator; import com.hp.hpl.jena.reasoner.ReasonerRegistry; import com.hp.hpl.jena.util.FileManager; /** * * * @author Markus Stocker * @version $Id$ */ public class stats { private static String inGraphFileName = null ; private static String inSchemaFileName = null ; private static String inQueryFileName = null ; private static String inQueryString = null ; private static String reasoner = null ; private static Model model = null ; /** * Main program * * @param args */ public static void main(String[] args) { int count = 0 ; try { readCmdParams(args) ; System.out.println("Schema ontology: " + inSchemaFileName) ; System.out.println("Data ontology: " + inGraphFileName) ; System.out.println("Query: " + inQueryFileName) ; System.out.println("Reasoner: " + reasoner) ; readInQueryFileName() ; loadModel() ; Query query = QueryFactory.create(inQueryString) ; QueryExecution exec = QueryExecutionFactory.create(query, model) ; try { ResultSet rs = exec.execSelect() ; for ( ; rs.hasNext() ; ) { rs.next() ; count++ ; } } finally { exec.close() ; } int modelSize = getModelSize(model) ; double selectivity = count / modelSize ; System.out.println("Result set size: " + count) ; System.out.println("Model size: " + modelSize) ; System.out.println("Selectivity: " + selectivity) ; } catch (Exception e) { e.printStackTrace() ; } } private static int getModelSize(Model model) { int size = 0 ; StmtIterator stmtIter = model.listStatements() ; while (stmtIter.hasNext()) { stmtIter.next() ; size++ ; } return size ; } // Load the model with RDFS inferencing if schema is provided private static void loadModel() { System.out.println("Loading model ...") ; if (inSchemaFileName != null) { if (reasoner.equals("Transitive")) model = ModelFactory.createInfModel(ReasonerRegistry.getTransitiveReasoner(), FileManager.get().loadModel(inSchemaFileName), FileManager.get().loadModel(inGraphFileName)) ; else model = ModelFactory.createInfModel(ReasonerRegistry.getRDFSReasoner(), FileManager.get().loadModel(inSchemaFileName), FileManager.get().loadModel(inGraphFileName)) ; } else model = FileManager.get().loadModel(inGraphFileName) ; } // Read the query file into a string private static void readInQueryFileName() { String line = null ; BufferedReader br = null ; try { br = new BufferedReader(new FileReader(inQueryFileName)) ; inQueryString = new String() ; while ((line = br.readLine()) != null) { inQueryString += line + "\n" ; } br.close() ; } catch (FileNotFoundException e) { e.printStackTrace() ; } catch (IOException e) { e.printStackTrace() ; } } // Read the command line params private static void readCmdParams(String[] args) throws Exception { for (int i = 0; i < args.length; i++) { if (args[i].equals("--graph")) inGraphFileName = args[i+1] ; else if (args[i].equals("--schema")) inSchemaFileName = args[i+1] ; else if (args[i].equals("--query")) inQueryFileName = args[i+1] ; else if (args[i].equals("--reasoner")) reasoner = args[i+1] ; else if (args[i].equals("--help")) usage() ; } if (inGraphFileName == null) usage() ; if (inQueryFileName == null) usage() ; } // Print the usage of the main program private static void usage() { String usage = "arqo.stats [options]\n" ; usage += "--graph\n" ; usage += "--schema (optional)\n" ; usage += "--query\n" ; usage += "--reasoner (optional, default RDFS if schema is provided) [RDFS | Transitive]\n" ; System.out.println(usage) ; System.exit(0) ; } } /* * (c) Copyright 2004, 2005, 2006, 2007 Hewlett-Packard Development Company, LP * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */