blob: 8b86837993d5e38916e8d0c08a76b02ba55ecd94 [file] [log] [blame]
/*
* 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 shacl;
import jena.cmd.ArgDecl;
import jena.cmd.CmdException;
import jena.cmd.CmdGeneral;
import org.apache.jena.atlas.logging.LogCtl;
import org.apache.jena.graph.Graph;
import org.apache.jena.riot.Lang;
import org.apache.jena.riot.RDFDataMgr;
import org.apache.jena.shacl.ValidationReport;
import org.apache.jena.shacl.lib.ShLib;
import org.apache.jena.shacl.validation.ValidationProc;
import org.apache.jena.sys.JenaSystem;
/** SHACL validation.
* <p>
* Usage: <code>shacl validate [--text] --shapes SHAPES --data DATA</code>
*/
public class shacl_validate extends CmdGeneral {
static {
LogCtl.setCmdLogging();
JenaSystem.init();
}
private ArgDecl argOutputText = new ArgDecl(false, "--text");
//private ArgDecl argOutputRDF = new ArgDecl(false, "--rdf");
private ArgDecl argData = new ArgDecl(true, "--data", "--datafile", "-d");
private ArgDecl argShapes = new ArgDecl(true, "--shapes", "--shapesfile", "-s");
private String datafile = null;
private String shapesfile = null;
private boolean textOutput = false;
public static void main (String... argv) {
new shacl_validate(argv).mainRun() ;
}
public shacl_validate(String[] argv) {
super(argv) ;
// Includes -datafile myfile.ttl -shapesfile myshapes.ttl
super.add(argShapes, "--shapes", "Shapes file");
super.add(argData, "--data", "Data file");
super.add(argOutputText, "--text", "Output in concise text format");
//super.add(argOutputRDF, "--rdf", "Output in RDF (Turtle) format");
}
@Override
protected String getSummary() {
return getCommandName()+" --shapes shapesFile --data dataFile";
}
@Override
protected void processModulesAndArgs() {
super.processModulesAndArgs();
datafile = super.getValue(argData);
shapesfile = super.getValue(argShapes);
if ( datafile == null )
throw new CmdException("Usage: "+getSummary());
if ( shapesfile == null )
shapesfile = datafile;
textOutput = super.hasArg(argOutputText);
}
@Override
protected void exec() {
Graph shapesGraph = RDFDataMgr.loadGraph(shapesfile);
Graph dataGraph;
if ( datafile.equals(shapesfile) )
dataGraph = shapesGraph;
else
dataGraph = RDFDataMgr.loadGraph(datafile);
ValidationReport report = ValidationProc.simpleValidation(shapesGraph, dataGraph, isVerbose());
if ( textOutput )
ShLib.printReport(report);
else
RDFDataMgr.write(System.out, report.getGraph(), Lang.TTL);
}
@Override
protected String getCommandName() {
return "shacl_validate";
}
}