com.hp.hpl.jena.sdb.layout1.FormatterSimpleDerby Maven / Gradle / Ivy
/*
* (c) Copyright 2006, 2007, 2008, 2009 Hewlett-Packard Development Company, LP
* All rights reserved.
* [See end of file]
*/
package com.hp.hpl.jena.sdb.layout1;
import static com.hp.hpl.jena.sdb.sql.SQLUtils.sqlStr;
import java.sql.SQLException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.hp.hpl.jena.sdb.SDBException;
import com.hp.hpl.jena.sdb.layout2.TablePrefixes;
import com.hp.hpl.jena.sdb.sql.SDBConnection;
import com.hp.hpl.jena.sdb.sql.TableUtils;
public class FormatterSimpleDerby extends FormatterSimple
{
private static Logger log = LoggerFactory.getLogger(FormatterSimpleDerby.class) ;
private static final String colDecl = "VARCHAR("+UriWidth+")" ;
public FormatterSimpleDerby(SDBConnection connection)
{
super(connection) ;
}
public void truncate()
{
try {
connection().exec("DELETE FROM Triples") ;
} catch (SQLException ex)
{
log.warn("Exception truncating tables") ;
throw new SDBException("SQLException truncating tables",ex) ;
}
}
public void format()
{
reformatPrefixesWorker(false) ;
reformatDataWorker() ;
}
private void reformatPrefixesWorker() { reformatPrefixesWorker(false) ; }
private void reformatPrefixesWorker(boolean loadPrefixes)
{
try {
dropTable("Prefixes") ;
connection().exec(sqlStr(
"CREATE TABLE Prefixes (",
" prefix VARCHAR("+TablePrefixes.prefixColWidth+") NOT NULL ,",
" uri VARCHAR("+TablePrefixes.uriColWidth+") NOT NULL ,",
" PRIMARY KEY(prefix)",
")"
)) ;
if ( loadPrefixes )
{
connection().execUpdate("INSERT INTO Prefixes VALUES ('x', 'http://example/')") ;
connection().execUpdate("INSERT INTO Prefixes VALUES ('ex', 'http://example.org/')") ;
connection().execUpdate("INSERT INTO Prefixes VALUES ('rdf', 'http://www.w3.org/1999/02/22-rdf-syntax-ns#')") ;
connection().execUpdate("INSERT INTO Prefixes VALUES ('rdfs', 'http://www.w3.org/2000/01/rdf-schema#')") ;
connection().execUpdate("INSERT INTO Prefixes VALUES ('xsd', 'http://www.w3.org/2001/XMLSchema#')") ;
connection().execUpdate("INSERT INTO Prefixes VALUES ('owl' , 'http://www.w3.org/2002/07/owl#')") ;
connection().execUpdate("INSERT INTO Prefixes VALUES ('foaf', 'http://xmlns.com/foaf/0.1/')") ;
connection().execUpdate("INSERT INTO Prefixes VALUES ('dc', 'http://purl.org/dc/elements/1.1/')") ;
connection().execUpdate("INSERT INTO Prefixes VALUES ('dcterms', 'http://purl.org/dc/terms/')") ;
}
} catch (SQLException ex)
{
log.warn("Exception resetting table 'Prefixes'") ;
throw new SDBException("SQLException resetting table 'Prefixes'",ex) ;
}
}
private void reformatDataWorker()
{
try {
dropTable("Triples") ;
connection().exec(sqlStr(
"CREATE TABLE Triples",
"(",
" s "+colDecl+" ,",
" p "+colDecl+" ,",
" o "+colDecl+" ,",
" PRIMARY KEY (s,p,o)",
")"
)) ;
} catch (SQLException ex)
{
throw new SDBException("SQLException resetting table 'Triples'",ex) ;
}
}
protected void dropTable(String tableName)
{
TableUtils.dropTable(connection(), tableName) ;
}
}
/*
* (c) Copyright 2006, 2007, 2008, 2009 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.
*/
© 2015 - 2025 Weber Informatics LLC | Privacy Policy