All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.phloc.schematron.pure.model.PSAssertReport Maven / Gradle / Ivy

There is a newer version: 2.7.1
Show newest version
/**
 * Copyright (C) 2014 phloc systems
 * http://www.phloc.com
 * office[at]phloc[dot]com
 *
 * Licensed 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 com.phloc.schematron.pure.model;

import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;

import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import javax.annotation.concurrent.NotThreadSafe;

import com.phloc.commons.ValueEnforcer;
import com.phloc.commons.annotations.Nonempty;
import com.phloc.commons.annotations.ReturnsMutableCopy;
import com.phloc.commons.collections.ContainerHelper;
import com.phloc.commons.log.InMemoryLogger;
import com.phloc.commons.microdom.IMicroElement;
import com.phloc.commons.microdom.impl.MicroElement;
import com.phloc.commons.regex.RegExHelper;
import com.phloc.commons.string.StringHelper;
import com.phloc.commons.string.ToStringGenerator;
import com.phloc.schematron.CSchematron;
import com.phloc.schematron.CSchematronXML;

/**
 * A single Schematron assert- or report-element.
* An assertion made about the context nodes. The data content is a * natural-language assertion. The required test attribute is an assertion test * evaluated in the current context. If the test evaluates positive, the * assertion succeeds. The optional diagnostics attribute is a reference to * further diagnostic information.
* The natural-language assertion shall be a positive statement of a constraint. * NOTE: The natural-language assertion may contain information about actual * values in addition to expected values and may contain diagnostic information. * Users should note, however, that the diagnostic element is provided for such * information to encourage clear statement of the natural-language assertion.
* The icon, see and fpi attributes allow rich interfaces and documentation.
* The flag attribute allows more detailed outcomes.
* The role and subject attributes allow explicit identification of some part of * a pattern.
* * @author Philip Helger */ @NotThreadSafe public class PSAssertReport implements IPSElement, IPSHasFlag, IPSHasForeignElements, IPSHasMixedContent, IPSHasID, IPSHasRichGroup, IPSHasLinkableGroup { private final boolean m_bIsAssert; private String m_sTest; private String m_sFlag; private String m_sID; private List m_aDiagnostics; private PSRichGroup m_aRich; private PSLinkableGroup m_aLinkable; private final List m_aContent = new ArrayList (); private Map m_aForeignAttrs; private List m_aForeignElements; public PSAssertReport (final boolean bIsAssert) { m_bIsAssert = bIsAssert; } public boolean isValid (@Nonnull final InMemoryLogger aLogger) { for (final Object aContent : m_aContent) if (aContent instanceof IPSElement) if (!((IPSElement) aContent).isValid (aLogger)) return false; if (StringHelper.hasNoText (m_sTest)) { aLogger.error ((m_bIsAssert ? "" : "") + " has no 'test'"); return false; } return true; } public boolean isMinimal () { if (!m_bIsAssert) return false; for (final Object aContent : m_aContent) if (aContent instanceof IPSElement) if (!((IPSElement) aContent).isMinimal ()) return false; return true; } public void addForeignElement (@Nonnull final IMicroElement aForeignElement) { ValueEnforcer.notNull (aForeignElement, "ForeignElement"); if (aForeignElement.hasParent ()) throw new IllegalArgumentException ("ForeignElement already has a parent!"); if (m_aForeignElements == null) m_aForeignElements = new ArrayList (); m_aForeignElements.add (aForeignElement); } public void addForeignElements (@Nonnull final List aForeignElements) { ValueEnforcer.notNull (aForeignElements, "ForeignElements"); for (final IMicroElement aForeignElement : aForeignElements) addForeignElement (aForeignElement); } public boolean hasForeignElements () { return m_aForeignElements != null && !m_aForeignElements.isEmpty (); } @Nonnull @ReturnsMutableCopy public List getAllForeignElements () { return ContainerHelper.newList (m_aForeignElements); } public void addForeignAttribute (@Nonnull final String sAttrName, @Nonnull final String sAttrValue) { ValueEnforcer.notNull (sAttrName, "AttrName"); ValueEnforcer.notNull (sAttrValue, "AttrValue"); if (m_aForeignAttrs == null) m_aForeignAttrs = new LinkedHashMap (); m_aForeignAttrs.put (sAttrName, sAttrValue); } public void addForeignAttributes (@Nonnull final Map aForeignAttrs) { ValueEnforcer.notNull (aForeignAttrs, "ForeignAttrs"); for (final Map.Entry aEntry : aForeignAttrs.entrySet ()) addForeignAttribute (aEntry.getKey (), aEntry.getValue ()); } public boolean hasForeignAttributes () { return m_aForeignAttrs != null && !m_aForeignAttrs.isEmpty (); } @Nonnull @ReturnsMutableCopy public Map getAllForeignAttributes () { return ContainerHelper.newOrderedMap (m_aForeignAttrs); } public boolean isAssert () { return m_bIsAssert; } public boolean isReport () { return !m_bIsAssert; } public void setTest (@Nullable final String sTest) { m_sTest = sTest; } @Nullable public String getTest () { return m_sTest; } public void setFlag (@Nullable final String sFlag) { m_sFlag = sFlag; } @Nullable public String getFlag () { return m_sFlag; } public void setID (@Nullable final String sID) { m_sID = sID; } public boolean hasID () { return m_sID != null; } @Nullable public String getID () { return m_sID; } /** * Set the diagnostics, as an IDREFS value (multiple IDREF values separated by * spaces) * * @param sDiagnostics * The value to be set. May be null. */ public void setDiagnostics (@Nullable final String sDiagnostics) { if (StringHelper.hasText (sDiagnostics)) setDiagnostics (RegExHelper.getSplitToList (sDiagnostics.trim (), "\\s+")); else m_aDiagnostics = null; } /** * Set the diagnostics, as an IDREFS value (multiple IDREF values separated by * spaces) * * @param aDiagnostics * The value to be set. May be null. */ public void setDiagnostics (@Nullable final List aDiagnostics) { m_aDiagnostics = aDiagnostics; } /** * @return List of references to {@link PSDiagnostic} elements. */ @Nonnull @ReturnsMutableCopy public List getAllDiagnostics () { return ContainerHelper.newList (m_aDiagnostics); } public void setRich (@Nullable final PSRichGroup aRich) { m_aRich = aRich; } public boolean hasRich () { return m_aRich != null; } @Nullable public PSRichGroup getRich () { return m_aRich; } @Nullable public PSRichGroup getRichClone () { return m_aRich == null ? null : m_aRich.getClone (); } public void setLinkable (@Nullable final PSLinkableGroup aLinkable) { m_aLinkable = aLinkable; } public boolean hasLinkable () { return m_aLinkable != null; } @Nullable public PSLinkableGroup getLinkable () { return m_aLinkable; } @Nullable public PSLinkableGroup getLinkableClone () { return m_aLinkable == null ? null : m_aLinkable.getClone (); } public void addText (@Nonnull @Nonempty final String sText) { ValueEnforcer.notEmpty (sText, "Text"); m_aContent.add (sText); } public boolean hasAnyText () { for (final Object aElement : m_aContent) if (aElement instanceof String) return true; return false; } @Nonnull @ReturnsMutableCopy public List getAllTexts () { final List ret = new ArrayList (); for (final Object aElement : m_aContent) if (aElement instanceof String) ret.add ((String) aElement); return ret; } public void addName (@Nonnull final PSName aName) { ValueEnforcer.notNull (aName, "Name"); m_aContent.add (aName); } @Nonnull @ReturnsMutableCopy public List getAllNames () { final List ret = new ArrayList (); for (final Object aElement : m_aContent) if (aElement instanceof PSName) ret.add ((PSName) aElement); return ret; } public void addValueOf (@Nonnull final PSValueOf aValueOf) { ValueEnforcer.notNull (aValueOf, "ValueOf"); m_aContent.add (aValueOf); } @Nonnull @ReturnsMutableCopy public List getAllValueOfs () { final List ret = new ArrayList (); for (final Object aElement : m_aContent) if (aElement instanceof PSValueOf) ret.add ((PSValueOf) aElement); return ret; } public void addEmph (@Nonnull final PSEmph aEmph) { ValueEnforcer.notNull (aEmph, "Emph"); m_aContent.add (aEmph); } @Nonnull @ReturnsMutableCopy public List getAllEmphs () { final List ret = new ArrayList (); for (final Object aElement : m_aContent) if (aElement instanceof PSEmph) ret.add ((PSEmph) aElement); return ret; } public void addDir (@Nonnull final PSDir aDir) { ValueEnforcer.notNull (aDir, "Dir"); m_aContent.add (aDir); } @Nonnull @ReturnsMutableCopy public List getAllDirs () { final List ret = new ArrayList (); for (final Object aElement : m_aContent) if (aElement instanceof PSDir) ret.add ((PSDir) aElement); return ret; } public void addSpan (@Nonnull final PSSpan aSpan) { ValueEnforcer.notNull (aSpan, "Span"); m_aContent.add (aSpan); } @Nonnull @ReturnsMutableCopy public List getAllSpans () { final List ret = new ArrayList (); for (final Object aElement : m_aContent) if (aElement instanceof PSSpan) ret.add ((PSSpan) aElement); return ret; } /** * @return A list of {@link String}, {@link PSName}, {@link PSValueOf}, * {@link PSEmph}, {@link PSDir} and {@link PSSpan} elements. */ @Nonnull @ReturnsMutableCopy public List getAllContentElements () { return ContainerHelper.newList (m_aContent); } @Nonnull public IMicroElement getAsMicroElement () { final IMicroElement ret = new MicroElement (CSchematron.NAMESPACE_SCHEMATRON, m_bIsAssert ? CSchematronXML.ELEMENT_ASSERT : CSchematronXML.ELEMENT_REPORT); ret.setAttribute (CSchematronXML.ATTR_ID, m_sID); ret.setAttribute (CSchematronXML.ATTR_FLAG, m_sFlag); ret.setAttribute (CSchematronXML.ATTR_TEST, m_sTest); if (ContainerHelper.isNotEmpty (m_aDiagnostics)) ret.setAttribute (CSchematronXML.ATTR_DIAGNOSTICS, StringHelper.getImploded (' ', m_aDiagnostics)); if (m_aRich != null) m_aRich.fillMicroElement (ret); if (m_aLinkable != null) m_aLinkable.fillMicroElement (ret); if (m_aForeignElements != null) for (final IMicroElement aForeignElement : m_aForeignElements) ret.appendChild (aForeignElement.getClone ()); for (final Object aContent : m_aContent) if (aContent instanceof String) ret.appendText ((String) aContent); else ret.appendChild (((IPSElement) aContent).getAsMicroElement ()); if (m_aForeignAttrs != null) for (final Map.Entry aEntry : m_aForeignAttrs.entrySet ()) ret.setAttribute (aEntry.getKey (), aEntry.getValue ()); return ret; } @Override public String toString () { return new ToStringGenerator (this).append ("isAssert", m_bIsAssert) .appendIfNotNull ("test", m_sTest) .appendIfNotNull ("flag", m_sFlag) .appendIfNotNull ("id", m_sID) .appendIfNotNull ("diagnostics", m_aDiagnostics) .appendIfNotNull ("rich", m_aRich) .appendIfNotNull ("linkable", m_aLinkable) .append ("content", m_aContent) .appendIfNotNull ("foreignAttrs", m_aForeignAttrs) .appendIfNotNull ("foreignElements", m_aForeignElements) .toString (); } }