blob: e1b5925504c956e6d6d079e8152802aba9ef488b [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 org.apache.jena.shacl.parser;
import java.io.BufferedOutputStream;
import java.io.OutputStream;
import java.util.Collection;
import java.util.List;
import org.apache.jena.atlas.io.IndentedWriter;
import org.apache.jena.graph.Graph;
import org.apache.jena.graph.Node;
import org.apache.jena.shacl.engine.Target;
import org.apache.jena.shacl.engine.TargetOps;
import org.apache.jena.shacl.validation.Severity;
public abstract class Shape {
protected final Graph shapeGraph;
protected final Node shapeNode;
protected final boolean deactivated;
protected final Severity severity;
protected final Collection<Node> messages;
protected final Collection<Target> targets;
protected final List<Constraint> constraints;
protected final List<PropertyShape> propertyShapes;
public Shape(Graph shapeGraph, Node shapeNode, boolean deactivated, Severity severity, List<Node> messages, Collection<Target> targets,
List<Constraint> constraints, List<PropertyShape> propertyShapes) {
super();
this.shapeGraph = shapeGraph;
this.shapeNode = shapeNode;
this.deactivated = deactivated;
this.severity = severity;
this.messages = messages;
this.targets = targets;
this.constraints = constraints;
this.propertyShapes = propertyShapes;
}
public abstract void visit(ShapeVisitor visitor);
public Graph getShapeGraph() {
return shapeGraph;
}
public Node getShapeNode() {
return shapeNode;
}
public Severity getSeverity() {
return severity;
}
public Collection<Node> getMessages() {
return messages;
}
public Collection<Target> getTargets() {
return targets;
}
public List<Constraint> getConstraints() {
return constraints;
}
public List<PropertyShape> getPropertyShapes() {
return propertyShapes;
}
public boolean deactivated() {
return deactivated;
}
@Override
public abstract String toString();
public void print(OutputStream out) {
if ( !(out instanceof BufferedOutputStream) )
out = new BufferedOutputStream(out, 128 * 1024);
IndentedWriter w = new IndentedWriter(out);
try {
print(w);
}
finally {
// w.flush();
}
}
protected abstract void printHeader(IndentedWriter out);
public void print(IndentedWriter out) {
printHeader(out);
if ( deactivated() )
out.print(" deactivated");
if ( !targets.isEmpty() ) {
out.print(" :: ");
out.print(TargetOps.strTargets(targets));
}
out.println();
out.incIndent();
try {
for ( Constraint c : constraints ) {
c.print(out);
out.println();
}
for ( PropertyShape ps : getPropertyShapes() ) {
ps.print(out);
}
}
finally {
out.decIndent();
}
}
}