#include <iostream>
#include <string>
#include "boost/filesystem.hpp"
#include "boost/exception/diagnostic_information.hpp"
#include "boost/filesystem.hpp"
#include "boost/foreach.hpp"
#include "boost/program_options.hpp"
#include "factpp/Kernel.hpp"
namespace bpo = boost::program_options;
namespace bfs = boost::filesystem;
namespace ot = owlcpp::terms;
int main(
int argc,
char* argv[]) {
bpo::options_description od;
od.add_options()
("help,h", "help message")
("input-file", bpo::value<std::string>(), "input OWL file")
("include,i",
bpo::value<std::vector<std::string> >()->zero_tokens()->composing(),
"search paths")
("strict", bpo::bool_switch()->default_value(true), "strict parsing")
("return-success,S", bpo::bool_switch(),
"return 1 if ontology is not consistent")
;
bpo::positional_options_description pod;
pod.add("input-file", -1);
bpo::variables_map vm;
store(bpo::command_line_parser(argc, argv).options(od).positional(pod).run(), vm);
notify(vm);
if( ! vm.count("input-file") || vm.count("help") ) {
std::cout
<<
"Load OWL ontology file including imports found in the same folder "
"or in optional additional locations. "
"Check every class for satisfiability." "\n"
<< "Usage:" << '\n'
<< "satisfiable [-i[path]] [-c] <OWL_ontology_file.owl>" << '\n'
<< od << '\n';
return ! vm.count("help");
}
const bfs::path in = vm["input-file"].as<std::string>();
try {
if( vm.count("include") ) {
std::vector<std::string> const& vin = vm["include"].as<std::vector<std::string> >();
if( vin.empty() ) {
add(cat, in.parent_path(),
true);
} else {
BOOST_FOREACH(std::string
const& p, vin)
add(cat, p,
true);
}
} else {
}
ReasoningKernel kernel;
submit(store, kernel, vm[
"strict"].as<bool>());
if( ! kernel.isKBConsistent() ) {
std::cout << "inconsistent ontology";
return 1;
}
bool all_satisfiable = true;
if(
nid,
ot::rdf_type::id(),
ot::owl_Class::id(),
)
) {
if( ! kernel.isSatisfiable(ce) ) {
std::cout
<< to_string(nid, store) << '\t'
<< '"' << find_label(nid, store) << '"' << '\t'
<< "not satisfiable" << '\n'
;
all_satisfiable = false;
}
}
}
if( all_satisfiable ) {
std::cout << "all classes satisfiable";
return 0;
} else {
return 1;
}
} catch(...) {
std::cerr << boost::current_exception_diagnostic_information() << std::endl;
return 1;
}
return 0;
}