org.opendope.conditions.Condition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docx4j-core Show documentation
Show all versions of docx4j-core Show documentation
docx4j is a library which helps you to work with the Office Open
XML file format as used in docx
documents, pptx presentations, and xlsx spreadsheets.
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.6
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2012.09.27 at 06:57:43 PM EST
//
package org.opendope.conditions;
import java.util.List;
import java.util.Map;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElements;
import javax.xml.bind.annotation.XmlID;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlTransient;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import org.docx4j.XmlUtils;
import org.docx4j.model.datastorage.DomToXPathMap;
import org.docx4j.model.datastorage.OpenDoPEHandler;
import org.docx4j.openpackaging.packages.WordprocessingMLPackage;
import org.docx4j.openpackaging.parts.CustomXmlPart;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <choice>
* <element ref="{http://opendope.org/conditions}xpathref"/>
* <element ref="{http://opendope.org/conditions}and"/>
* <element ref="{http://opendope.org/conditions}or"/>
* <element ref="{http://opendope.org/conditions}not"/>
* </choice>
* <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}ID" />
* <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="description" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="comments" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="source" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"particle"
})
@XmlRootElement(name = "condition")
public class Condition implements Evaluable {
private static Logger log = LoggerFactory.getLogger(Condition.class);
@XmlElements({
@XmlElement(name = "xpathref", type = Xpathref.class),
@XmlElement(name = "and", type = And.class),
@XmlElement(name = "or", type = Or.class),
@XmlElement(name = "not", type = Not.class)
})
protected Evaluable particle;
@XmlAttribute(name = "id", required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlID
@XmlSchemaType(name = "ID")
protected String id;
@XmlAttribute(name = "name")
protected String name;
@XmlAttribute(name = "description")
protected String description;
@XmlAttribute(name = "comments")
protected String comments;
@XmlAttribute(name = "source")
protected String source;
/**
* Gets the value of the particle property.
*
* @return
* possible object is
* {@link Xpathref }
* {@link And }
* {@link Or }
* {@link Not }
*
*/
public Evaluable getParticle() {
return particle;
}
/**
* Sets the value of the particle property.
*
* @param value
* allowed object is
* {@link Xpathref }
* {@link And }
* {@link Or }
* {@link Not }
*
*/
public void setParticle(Evaluable value) {
this.particle = value;
}
public boolean evaluate(WordprocessingMLPackage pkg,
Map customXmlDataStorageParts,
Map conditionsMap,
Map xpathsMap) {
if (OpenDoPEHandler.ENABLE_XPATH_CACHE
&& domToXPathMap != null
&& particle instanceof Xpathref) {
Xpathref xpRef = (Xpathref)particle;
String xpath = xpRef.toString(conditionsMap, xpathsMap);
/*
* Examples:
*
* string(/project[1]/phases[1]/phase[1][1]/finding[3][1]/rating[1])='Info'
count(/project[1]/phases[1]/phase[1][1]/finding[3][1]/examples[1]/example[1][1])>0
*/
if (xpath.startsWith("string") ) {
// maybe we can handle this
// clean it
String tmpPath = xpath.replace("][1]", "]"); // replace segment eg phase[1][1] to match map
String path = extractPath(tmpPath);
// can we re-assemble?
if (tmpPath.startsWith("string(" + path + ")='")) {
String val = domToXPathMap.getPathMap().get(path);
if (val==null) {
log.info("Couldn't find " + val + " in domToXPathMap path map; reverting to default handling");
// so fall through to default handling
} else /* use the cached value */ {
boolean result = (tmpPath.equals("string(" + path + ")='"+val +"'"));
if (result==false) {
// try again ignoring whitespace (treat it as insignificant, matching particle.evaluate
result = (tmpPath.equals("string(" + path + ")='"+val.trim() +"'"));
}
if (log.isDebugEnabled()) {
boolean tmpCheck = particle.evaluate(pkg, customXmlDataStorageParts, conditionsMap, xpathsMap);
if (result==tmpCheck) {
// System.out.println("Manual string calc worked");
} else {
String message ="PANIC! Manual string calc doesn't match XPath eval!\n"
+ xpath
+ "\nstring(" + path + ")='"+val +"'\n";
log.error(message);
throw new RuntimeException(message);
}
}
return result;
}
}
} else if ( xpath.startsWith("count")) {
// maybe we can handle this; currently we handle >0
// clean it
String tmpPath = xpath.replace("][1]", "]"); // replace segment eg phase[1][1] to match map
String path = extractPath(tmpPath);
// can we re-assemble?
if (tmpPath.equals("count(" + path + ")>0")) {
// match!
Integer val = domToXPathMap.getCountMap().get(path);
if (val==null) {
// to be expected only if count is zero OR if there were a mixture of element names,
// so we didn't count it for repeat purposes.
// So check the PREFIX_ALL_NODES entry.
val = domToXPathMap.getCountMap().get(DomToXPathMap.PREFIX_ALL_NODES + path);
}
if (val==null /* still */) {
if ( log.isDebugEnabled()) {
boolean tmpCheck = particle.evaluate(pkg, customXmlDataStorageParts, conditionsMap, xpathsMap);
if (tmpCheck) {
String message ="FIXME. Expected map entry facilitating manual eval of " + path;
log.error(message);
throw new RuntimeException(message);
} else {
System.out.println("Manual count calc worked for null case");
}
return tmpCheck;
} else {
return false; // no entry, ,so count is zero
}
} else {
boolean result = (val>0);
if ( log.isDebugEnabled()) {
boolean tmpCheck = particle.evaluate(pkg, customXmlDataStorageParts, conditionsMap, xpathsMap);
if (result==tmpCheck) {
System.out.println("Manual count calc worked");
} else {
String message ="PANIC! Manual count calc doesn't match XPath eval!\n"
+ xpath
+ "\ncount(" + path + ")>0\n" + val;
log.error(message);
throw new RuntimeException(message);
}
}
return result;
}
} else {
log.debug("No manual count eval coded for: " + tmpPath); // so perform slow full eval
}
}
}
return particle.evaluate(pkg, customXmlDataStorageParts, conditionsMap, xpathsMap);
}
private String extractPath(String xpath) {
int firstBracket = xpath.indexOf("(");
int lastBracket = xpath.indexOf(")");
try {
return xpath.substring(firstBracket+1, lastBracket);
} catch (java.lang.StringIndexOutOfBoundsException e) {
log.error(xpath + ".substring(" + firstBracket+1 +", " + lastBracket + ")");
throw e;
}
}
@XmlTransient
private DomToXPathMap domToXPathMap = null;
public void setDomToXPathMap(DomToXPathMap domToXPathMap) {
this.domToXPathMap = domToXPathMap;
}
public void listXPaths( List theList,
Map conditionsMap,
Map xpathsMap) {
particle.listXPaths(theList, conditionsMap, xpathsMap);
}
/**
* Map the IDs used in this condition to new values; useful for merging ConditionParts.
*
* @param xpathIdMap
* @param conditionIdMap
* @since 3.0.0
*/
public void mapIds(Map xpathIdMap, Map conditionIdMap) {
particle.mapIds(xpathIdMap, conditionIdMap);
}
public String toString(Map conditionsMap,
Map xpathsMap) {
return particle.toString(conditionsMap, xpathsMap);
}
public Condition repeat(String xpathBase,
int index,
Map conditionsMap,
Map xpathsMap) {
Condition newCondition;
/* Avoid deepCopy for common simple cases:
*
*/
if (this.getParticle() instanceof Xpathref)
{
newCondition = new Condition();
// copy the xpathref
Xpathref xpathref = new Xpathref();
xpathref.setId( ((Xpathref)this.getParticle()).getId());
newCondition.setParticle(xpathref);
} else if ( (this.getParticle() instanceof Not)
&& (((Not)this.getParticle()).getParticle() instanceof Xpathref) ) {
newCondition = new Condition();
Not notParticle = new Not();
newCondition.setParticle(notParticle);
// copy the xpathref
Xpathref xpathref = new Xpathref();
xpathref.setId( ((Xpathref)((Not)this.getParticle()).getParticle()).getId());
notParticle.setParticle(xpathref);
} else {
// Create and add new condition
newCondition = XmlUtils.deepCopy(this);
}
String newConditionId = id + "_" + index;
newCondition.setId(newConditionId);
// Add it
Condition preExistingSanity = conditionsMap.put(newCondition.getId(), newCondition);
//conditions.getCondition().add(newCondition);
if (preExistingSanity!=null) {
String preExisting = XmlUtils.marshaltoString(preExistingSanity);
String newC = XmlUtils.marshaltoString(newCondition);
if (preExisting.equals(newC)) {
log.debug("Duplicate identical Condition being added: " + newCondition.getId());
} else {
log.error("Duplicate Condition " + newCondition.getId() + ": "
+ "\n"+ newC + " overwriting "
+ "\n"+ preExisting);
}
}
// Fix its particles
newCondition.getParticle().repeat(xpathBase, index, conditionsMap, xpathsMap);
return newCondition;
}
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setId(String value) {
this.id = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the description property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDescription() {
return description;
}
/**
* Sets the value of the description property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDescription(String value) {
this.description = value;
}
/**
* Gets the value of the comments property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getComments() {
return comments;
}
/**
* Sets the value of the comments property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setComments(String value) {
this.comments = value;
}
/**
* Gets the value of the source property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSource() {
return source;
}
/**
* Sets the value of the source property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSource(String value) {
this.source = value;
}
// public static void main(String[] args) throws Exception {
//
// System.out.println(extractPath("string(/project[1]/phases[1]/phase[1][1]/finding[3][1])='Info'"));
// }
}