sdb.cmd.CmdArgsDB Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jena-sdb Show documentation
Show all versions of jena-sdb Show documentation
SDB is a persistence layer for use with Apache Jena that uses an SQL database to store triples/quads.
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package sdb.cmd;
import java.util.List ;
import org.apache.jena.Jena ;
import org.apache.jena.query.ARQ ;
import org.apache.jena.sdb.SDB ;
import org.apache.jena.sdb.Store ;
import org.apache.jena.sdb.StoreDesc ;
import org.apache.jena.sdb.assembler.AssemblerVocab ;
import arq.cmdline.CmdARQ ;
import arq.cmdline.ModTime ;
public abstract class CmdArgsDB extends CmdARQ
{
private ModStore modStore = new ModStore() ;
private ModTime modTime = new ModTime() ;
private ModLogSQL modLogSQL = new ModLogSQL() ;
protected CmdArgsDB(String argv[])
{
super(argv) ;
addModule(modStore) ;
addModule(modLogSQL) ;
addModule(modTime) ;
modVersion.addClass(Jena.class) ;
modVersion.addClass(ARQ.class) ;
modVersion.addClass(SDB.class) ;
}
protected void setModStore(ModStore modStore) { this.modStore = modStore ; }
protected ModStore getModStore() { return modStore ; }
protected ModTime getModTime() { return modTime ; }
protected ModLogSQL getModDBlog() { return modLogSQL ; }
protected StoreDesc getStoreDesc() { return modStore.getStoreDesc() ; }
protected Store getStore() { return modStore.getStore() ; }
protected abstract void execCmd(List positionalArgs) ;
@Override
final
protected void exec()
{
SDB.init() ; // Gets called anyway by Store assembler processing.
AssemblerVocab.init() ; // Call to install the assemblers
List positionalArgs = super.getPositional() ;
try {
execCmd(positionalArgs) ;
}
finally {
if ( getModStore().hasStore() )
getModStore().getStore().close();
else
{
if ( getModStore().isConnected() )
getModStore().getConnection().close();
}
}
}
}