it.unibz.inf.ontop.sesame.SesameClassicInMemoryRepo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ontop-quest-sesame Show documentation
Show all versions of ontop-quest-sesame Show documentation
This is the Sesame API implementation based on Quest
package it.unibz.inf.ontop.sesame;
/*
* #%L
* ontop-quest-sesame
* %%
* Copyright (C) 2009 - 2014 Free University of Bozen-Bolzano
* %%
* Licensed 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.
* #L%
*/
import it.unibz.inf.ontop.owlrefplatform.core.QuestConstants;
import it.unibz.inf.ontop.owlrefplatform.core.QuestPreferences;
import java.io.File;
import java.io.FileInputStream;
import java.net.URI;
import org.openrdf.query.Dataset;
public class SesameClassicInMemoryRepo extends SesameClassicRepo {
private static QuestPreferences p = new QuestPreferences();
public SesameClassicInMemoryRepo(String name, String tboxFile, boolean existential, String rewriting) throws Exception {
super();
p.setCurrentValueOf(QuestPreferences.ABOX_MODE, QuestConstants.CLASSIC);
p.setCurrentValueOf(QuestPreferences.OPTIMIZE_EQUIVALENCES, "true");
p.setCurrentValueOf(QuestPreferences.OBTAIN_FROM_MAPPINGS, "false");
p.setCurrentValueOf(QuestPreferences.OBTAIN_FROM_ONTOLOGY, "false");
p.setCurrentValueOf(QuestPreferences.DBTYPE, QuestConstants.SEMANTIC_INDEX);
p.setCurrentValueOf(QuestPreferences.STORAGE_LOCATION, QuestConstants.INMEMORY);
if (existential) {
p.setCurrentValueOf(QuestPreferences.REWRITE, "true");
} else {
p.setCurrentValueOf(QuestPreferences.REWRITE, "false");
}
if (rewriting.equals("TreeWitness")) {
p.setCurrentValueOf(QuestPreferences.REFORMULATION_TECHNIQUE, QuestConstants.TW);
} else if (rewriting.equals("Default")) {
p.setCurrentValueOf(QuestPreferences.REFORMULATION_TECHNIQUE, QuestConstants.UCQBASED);
}
createStore(name, tboxFile, p);
}
public SesameClassicInMemoryRepo(String name, Dataset data) throws Exception {
super();
p.setCurrentValueOf(QuestPreferences.ABOX_MODE, QuestConstants.CLASSIC);
p.setCurrentValueOf(QuestPreferences.OPTIMIZE_EQUIVALENCES, "true");
p.setCurrentValueOf(QuestPreferences.OBTAIN_FROM_MAPPINGS, "false");
p.setCurrentValueOf(QuestPreferences.OBTAIN_FROM_ONTOLOGY, "false");
p.setCurrentValueOf(QuestPreferences.DBTYPE, QuestConstants.SEMANTIC_INDEX);
p.setCurrentValueOf(QuestPreferences.STORAGE_LOCATION, QuestConstants.INMEMORY);
createStore(name, data, p);
}
public SesameClassicInMemoryRepo(String name, String tboxFilePath, String configFilePath) throws Exception {
super();
File configFile = new File(URI.create(configFilePath));
p.readDefaultPropertiesFile(new FileInputStream(configFile));
createStore(name, tboxFilePath, p);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy