conciseformatvisitor.java
来自「Semantic Web Ontology Editor」· Java 代码 · 共 769 行 · 第 1/2 页
JAVA
769 行
//The MIT License//// Copyright (c) 2004 Mindswap Research Group, University of Maryland, College Park//// Permission is hereby granted, free of charge, to any person obtaining a copy// of this software and associated documentation files (the "Software"), to// deal in the Software without restriction, including without limitation the// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or// sell copies of the Software, and to permit persons to whom the Software is// furnished to do so, subject to the following conditions://// The above copyright notice and this permission notice shall be included in// all copies or substantial portions of the Software.//// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS// IN THE SOFTWARE.package org.mindswap.swoop.renderer.entity;import java.io.PrintWriter;import java.io.StringWriter;import java.net.URI;import java.util.HashMap;import java.util.HashSet;import java.util.Iterator;import java.util.Map;import java.util.Set;import org.apache.commons.lang.StringEscapeUtils;import org.mindswap.swoop.Swoop;import org.mindswap.swoop.SwoopModel;import org.mindswap.swoop.renderer.SwoopRenderingVisitor;import org.mindswap.swoop.utils.ui.SwoopIcons;import org.semanticweb.owl.impl.model.OWLInversePropertyAxiomImpl;import org.semanticweb.owl.io.ShortFormProvider;import org.semanticweb.owl.model.OWLAnd;import org.semanticweb.owl.model.OWLAnnotationProperty;import org.semanticweb.owl.model.OWLClass;import org.semanticweb.owl.model.OWLDataAllRestriction;import org.semanticweb.owl.model.OWLDataCardinalityRestriction;import org.semanticweb.owl.model.OWLDataEnumeration;import org.semanticweb.owl.model.OWLDataProperty;import org.semanticweb.owl.model.OWLDataPropertyInstance;import org.semanticweb.owl.model.OWLDataPropertyRangeAxiom;import org.semanticweb.owl.model.OWLDataSomeRestriction;import org.semanticweb.owl.model.OWLDataType;import org.semanticweb.owl.model.OWLDataValue;import org.semanticweb.owl.model.OWLDataValueRestriction;import org.semanticweb.owl.model.OWLDescription;import org.semanticweb.owl.model.OWLDifferentIndividualsAxiom;import org.semanticweb.owl.model.OWLDisjointClassesAxiom;import org.semanticweb.owl.model.OWLEnumeration;import org.semanticweb.owl.model.OWLEquivalentClassesAxiom;import org.semanticweb.owl.model.OWLEquivalentPropertiesAxiom;import org.semanticweb.owl.model.OWLException;import org.semanticweb.owl.model.OWLFunctionalPropertyAxiom;import org.semanticweb.owl.model.OWLIndividual;import org.semanticweb.owl.model.OWLIndividualTypeAssertion;import org.semanticweb.owl.model.OWLInverseFunctionalPropertyAxiom;import org.semanticweb.owl.model.OWLInversePropertyAxiom;import org.semanticweb.owl.model.OWLNot;import org.semanticweb.owl.model.OWLObjectAllRestriction;import org.semanticweb.owl.model.OWLObjectCardinalityRestriction;import org.semanticweb.owl.model.OWLObjectProperty;import org.semanticweb.owl.model.OWLObjectPropertyInstance;import org.semanticweb.owl.model.OWLObjectPropertyRangeAxiom;import org.semanticweb.owl.model.OWLObjectSomeRestriction;import org.semanticweb.owl.model.OWLObjectValueRestriction;import org.semanticweb.owl.model.OWLOr;import org.semanticweb.owl.model.OWLProperty;import org.semanticweb.owl.model.OWLPropertyDomainAxiom;import org.semanticweb.owl.model.OWLSameIndividualsAxiom;import org.semanticweb.owl.model.OWLSubClassAxiom;import org.semanticweb.owl.model.OWLSubPropertyAxiom;import org.semanticweb.owl.model.OWLSymmetricPropertyAxiom;import org.semanticweb.owl.model.OWLTransitivePropertyAxiom;import org.semanticweb.owl.model.helper.OWLObjectVisitorAdapter;/** * @author Evren Sirin */public class ConciseFormatVisitor extends OWLObjectVisitorAdapter implements SwoopRenderingVisitor// Uncomment for explanation// ,OWLExtendedObjectVisitor{ ShortFormProvider shortForms; StringWriter sw; PrintWriter pw; SwoopModel swoopModel; public Map highlightMap; public ConciseFormatVisitor( ShortFormProvider shortForms, SwoopModel swoopModel ) { this.shortForms = shortForms; this.swoopModel = swoopModel; this.highlightMap = new HashMap(); reset(); } /** * HTML-escape any object * @param object * @return */ private static String escape(Object object) { String escaped = "null"; if (object != null) { escaped = StringEscapeUtils.escapeHtml(object.toString()); } return escaped; } public String result() { return sw.toString(); } public void reset() { sw = new StringWriter(); pw = new PrintWriter( sw ); } public void visit( OWLClass clazz ) throws OWLException { String icon = ""; if (swoopModel.getSelectedOntology()!=null && swoopModel.getSelectedOntology().isForeign(clazz)) icon = "<img src=\""+SwoopIcons.getImageURL("ForeignClass.gif")+"\">"; else icon = "<img src=\""+SwoopIcons.getImageURL("Class.gif")+"\">"; if (swoopModel.getEnableDebugging()) { boolean isConsistent = swoopModel.getReasoner().isConsistent(clazz); System.out.println("isConsistent: "+isConsistent); if (!isConsistent) icon = "<img src=\""+SwoopIcons.getImageURL("InconsistentClass.gif")+"\">"; } if (swoopModel.getShowIcons() || (swoopModel.getEnableDebugging() && icon.indexOf("Inconsistent")>=0)) pw.print(icon); String highlight = ""; if (this.highlightMap.containsKey(clazz.getURI())) highlight = this.highlightMap.get(clazz.getURI()).toString(); pw.print(highlight); if (swoopModel.repairColor && swoopModel.repairSet.contains(clazz)) pw.print("<font color=\"red\">"); pw.print( "<a href=\"" + escape(clazz.getURI()) + "\">" + escape(shortForms.shortForm( clazz.getURI() )) + "</a>" ); if (highlight.indexOf("font")>=0 || (swoopModel.repairColor && swoopModel.repairSet.contains(clazz))) pw.print("</font>"); if (highlight.indexOf("strike")>=0) pw.print("</strike>"); } public void visit( OWLIndividual ind ) throws OWLException { //********************************************************* //Changed for Econnections //********************************************************* if(swoopModel.getSelectedOntology()!=null && swoopModel.getSelectedOntology().isForeign(ind)){ if (swoopModel.getShowIcons()) pw.print("<img src=\""+SwoopIcons.getImageURL("ForeignIndividual.gif")+"\">"); else{ if (swoopModel.getShowIcons()) pw.print("<img src=\""+SwoopIcons.getImageURL("Instance.gif")+"\">");} } if ( ind.isAnonymous() ) { pw.print( "<a href=\"" + StringEscapeUtils.escapeHtml(ind.getAnonId().toString()) + "\">" + ind.getAnonId().getFragment() + "</a>" ); } else { String highlight = ""; if (this.highlightMap.containsKey(ind.getURI())) highlight = this.highlightMap.get(ind.getURI()).toString(); pw.print(highlight); pw.print( "<a href=\"" + escape(ind.getURI()) + "\">" + escape(shortForms.shortForm( ind.getURI() )) + "</a>" ); if (highlight.indexOf("font")>=0) pw.print("</font>"); if (highlight.indexOf("strike")>=0) pw.print("</strike>"); } } public void visit( OWLObjectProperty prop ) throws OWLException {// ************************ //Changed for Econnections //************************ if(!swoopModel.getSelectedOntology().isForeign(prop)){ if(!prop.isLink()){ if (swoopModel.getShowIcons()) pw.print("<img src=\""+SwoopIcons.getImageURL("Property.gif")+"\">");} else{ if (swoopModel.getShowIcons()) pw.print("<img src=\""+SwoopIcons.getImageURL("LinkProperty.gif")+"\">"); } } else{ if (swoopModel.getShowIcons()) pw.print("<img src=\""+SwoopIcons.getImageURL("ForeignProperty.gif")+"\">"); } String highlight = ""; if (this.highlightMap.containsKey(prop.getURI())) highlight = this.highlightMap.get(prop.getURI()).toString(); pw.print(highlight); pw.print( "<a href=\"" + escape(prop.getURI()) + "\">" + escape(shortForms.shortForm( prop.getURI() )) + "</a>" ); if (highlight.indexOf("font")>=0) pw.print("</font>"); if (highlight.indexOf("strike")>=0) pw.print("</strike>"); } public void visit( OWLAnnotationProperty prop ) throws OWLException { if(!swoopModel.getSelectedOntology().isForeign(prop)){ if (swoopModel.getShowIcons()) pw.print("<img src=\""+SwoopIcons.getImageURL("DataProperty.gif")+"\">");} else{ if (swoopModel.getShowIcons()) pw.print("<img src=\""+SwoopIcons.getImageURL("ForeignProperty.gif")+"\">"); } pw.print( "<a href=\"" + escape(prop.getURI()) + "\">" + escape(shortForms.shortForm( prop.getURI() )) + "</a>" ); } public void visit( OWLDataProperty prop ) throws OWLException { if(!swoopModel.getSelectedOntology().isForeign(prop)){ if (swoopModel.getShowIcons()) pw.print("<img src=\""+SwoopIcons.getImageURL("DataProperty.gif")+"\">"); } else{ if (swoopModel.getShowIcons()) pw.print("<img src=\""+SwoopIcons.getImageURL("ForeignProperty.gif")+"\">"); } String highlight = ""; if (this.highlightMap.containsKey(prop.getURI())) highlight = this.highlightMap.get(prop.getURI()).toString(); pw.print(highlight); pw.print( "<a href=\"" + escape(prop.getURI()) + "\">" + escape(shortForms.shortForm( prop.getURI() )) + "</a>" ); if (highlight.indexOf("font")>=0) pw.print("</font>"); if (highlight.indexOf("strike")>=0) pw.print("</strike>"); } public void visit( OWLDataValue cd ) throws OWLException { pw.print( "\"" + escape( cd.getValue() ) + "\""); /* Only show it if it's not string */ URI dvdt = cd.getURI(); String dvlang = cd.getLang(); if ( dvdt!=null) { pw.print( "^^" + "<" + escape(shortForms.shortForm(dvdt)) + ">"); } else { if (dvlang!=null) { pw.print( "@" + escape(dvlang) ); } } } public void visit( OWLAnd and ) throws OWLException { pw.print("("); for ( Iterator it = and.getOperands().iterator(); it.hasNext(); ) { OWLDescription desc = (OWLDescription) it.next(); desc.accept( this ); if (it.hasNext()) { pw.print(" " + ConciseFormat.INTERSECTION + " "); } } pw.print(")"); } public void visit( OWLOr or ) throws OWLException { pw.print("("); for ( Iterator it = or.getOperands().iterator(); it.hasNext(); ) { OWLDescription desc = (OWLDescription) it.next(); desc.accept( this ); if (it.hasNext()) { pw.print(" " + ConciseFormat.UNION + " "); } } pw.print(")"); } public void visit( OWLNot not ) throws OWLException { pw.print("(" + ConciseFormat.COMPLEMENT); OWLDescription desc = not.getOperand(); desc.accept( this ); pw.print(")"); } public void visit( OWLEnumeration enumeration ) throws OWLException { pw.print("{"); for ( Iterator it = enumeration.getIndividuals().iterator(); it.hasNext(); ) { OWLIndividual desc = (OWLIndividual) it.next(); desc.accept( this ); if (it.hasNext()) { pw.print(", "); } } pw.print("}"); } public void visit( OWLObjectSomeRestriction restriction ) throws OWLException { pw.print("(" + ConciseFormat.EXISTS); OWLObjectProperty prop = restriction.getObjectProperty(); // if value of someValues restriction is not struck out // dont strike out property either OWLDescription desc = restriction.getDescription(); if (desc instanceof OWLClass) { OWLClass cla = (OWLClass) desc; if (this.highlightMap.containsKey(cla.getURI()) && this.highlightMap.get(cla.getURI()).toString().indexOf("<strike>")>=0) { // do nothing } else { this.highlightMap.remove(prop.getURI()); } } prop.accept( this ); pw.print(" "+ ConciseFormat.MEMBEROF + " "); // if property is struck out, strike out value as well boolean strike = false; if (this.highlightMap.containsKey(prop.getURI())) { String highlight = this.highlightMap.get(prop.getURI()).toString(); if (highlight.indexOf("<strike>")>=0) { strike = true; pw.print(highlight); } } desc.accept( this ); if (strike) { pw.print("</font></strike>"); } pw.print(")"); } public void visit( OWLObjectAllRestriction restriction ) throws OWLException { pw.print("(" + ConciseFormat.FORALL); // hack for highlighting // if value of object prop restriction is struck, strike out property as well OWLDescription desc = restriction.getDescription(); boolean strike = false; if (desc instanceof OWLClass) { OWLClass cla = (OWLClass) desc; if (this.highlightMap.containsKey(cla.getURI())) { String highlight = this.highlightMap.get(cla.getURI()).toString(); if (highlight.indexOf("<strike>")>=0) { strike = true; pw.print(highlight); } } } restriction.getObjectProperty().accept( this ); if (strike) { pw.print("</font></strike>"); } pw.print(" "+ ConciseFormat.MEMBEROF + " "); // if property is struck out, strike out value as well strike = false; OWLObjectProperty prop = restriction.getObjectProperty(); if (this.highlightMap.containsKey(prop.getURI())) { String highlight = this.highlightMap.get(prop.getURI()).toString(); if (highlight.indexOf("<strike>")>=0) { strike = true; pw.print(highlight); } } restriction.getDescription().accept( this ); if (strike) { pw.print("</font></strike>"); } pw.print(")"); } public void visit( OWLObjectValueRestriction restriction ) throws OWLException { pw.print("(" + ConciseFormat.EXISTS); restriction.getObjectProperty().accept( this ); /* Changed from hasValue */ pw.print(" "+ ConciseFormat.MEMBEROF + " {"); // if property is struck out, strike out value as well boolean strike = false; OWLObjectProperty prop = restriction.getObjectProperty(); if (this.highlightMap.containsKey(prop.getURI())) { String highlight = this.highlightMap.get(prop.getURI()).toString(); if (highlight.indexOf("<strike>")>=0) { strike = true; pw.print(highlight);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?