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

com.helger.schematron.pure.model.PSDiagnostic Maven / Gradle / Ivy

There is a newer version: 5.6.5
Show newest version
/**
 * Copyright (C) 2014-2017 Philip Helger (www.helger.com)
 * philip[at]helger[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.helger.schematron.pure.model;

import java.util.Map;

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

import com.helger.commons.ValueEnforcer;
import com.helger.commons.annotation.Nonempty;
import com.helger.commons.annotation.ReturnsMutableCopy;
import com.helger.commons.collection.CollectionHelper;
import com.helger.commons.collection.ext.CommonsArrayList;
import com.helger.commons.collection.ext.CommonsLinkedHashMap;
import com.helger.commons.collection.ext.ICommonsList;
import com.helger.commons.collection.ext.ICommonsOrderedMap;
import com.helger.commons.string.StringHelper;
import com.helger.commons.string.ToStringGenerator;
import com.helger.schematron.CSchematron;
import com.helger.schematron.CSchematronXML;
import com.helger.schematron.pure.errorhandler.IPSErrorHandler;
import com.helger.xml.microdom.IMicroElement;
import com.helger.xml.microdom.MicroElement;

/**
 * A single Schematron diagnostic-element.
* A natural-language message giving more specific details concerning a failed * assertion, such as found versus expected values and repair hints.
* NOTE: Diagnostics in multiple languages may be supported by using a different * diagnostic element for each language, with the appropriate xml:lang language * attribute, and referencing all the unique identifiers of the diagnostic * elements in the diagnostics attribute of the assertion. Annex G gives a * simple example of a multi-lingual schema.
* An implementation is not required to make use of this element. * * @author Philip Helger */ @NotThreadSafe public class PSDiagnostic implements IPSClonableElement , IPSOptionalElement, IPSHasID, IPSHasForeignElements, IPSHasMixedContent, IPSHasRichGroup { private String m_sID; private PSRichGroup m_aRich; private final ICommonsList m_aContent = new CommonsArrayList <> (); private ICommonsOrderedMap m_aForeignAttrs; private ICommonsList m_aForeignElements; public PSDiagnostic () {} public boolean isValid (@Nonnull final IPSErrorHandler aErrorHandler) { for (final Object aContent : m_aContent) if (aContent instanceof IPSElement) if (!((IPSElement) aContent).isValid (aErrorHandler)) return false; if (StringHelper.hasNoText (m_sID)) { aErrorHandler.error (this, " has no 'id'"); return false; } return true; } public void validateCompletely (@Nonnull final IPSErrorHandler aErrorHandler) { for (final Object aContent : m_aContent) if (aContent instanceof IPSElement) ((IPSElement) aContent).validateCompletely (aErrorHandler); if (StringHelper.hasNoText (m_sID)) aErrorHandler.error (this, " has no 'id'"); } public boolean isMinimal () { return false; } 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 CommonsArrayList <> (); m_aForeignElements.add (aForeignElement); } public boolean hasForeignElements () { return m_aForeignElements != null && m_aForeignElements.isNotEmpty (); } @Nonnull @ReturnsMutableCopy public ICommonsList getAllForeignElements () { return new CommonsArrayList <> (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 CommonsLinkedHashMap <> (); m_aForeignAttrs.put (sAttrName, sAttrValue); } public boolean hasForeignAttributes () { return m_aForeignAttrs != null && m_aForeignAttrs.isNotEmpty (); } @Nonnull @ReturnsMutableCopy public ICommonsOrderedMap getAllForeignAttributes () { return new CommonsLinkedHashMap <> (m_aForeignAttrs); } public void setID (@Nullable final String sID) { m_sID = sID; } @Nullable public String getID () { return m_sID; } public void setRich (@Nullable final PSRichGroup aRich) { m_aRich = aRich; } @Nullable public PSRichGroup getRich () { return m_aRich; } public void addText (@Nonnull @Nonempty final String sText) { ValueEnforcer.notEmpty (sText, "Text"); m_aContent.add (sText); } public boolean hasAnyText () { return m_aContent.containsAny (e -> e instanceof String); } @Nonnull @ReturnsMutableCopy public ICommonsList getAllTexts () { return m_aContent.getAllInstanceOf (String.class); } public void addValueOf (@Nonnull final PSValueOf aValueOf) { ValueEnforcer.notNull (aValueOf, "ValueOf"); m_aContent.add (aValueOf); } @Nonnull @ReturnsMutableCopy public ICommonsList getAllValueOfs () { return m_aContent.getAllInstanceOf (PSValueOf.class); } public void addEmph (@Nonnull final PSEmph aEmph) { ValueEnforcer.notNull (aEmph, "Emph"); m_aContent.add (aEmph); } @Nonnull @ReturnsMutableCopy public ICommonsList getAllEmphs () { return m_aContent.getAllInstanceOf (PSEmph.class); } public void addDir (@Nonnull final PSDir aDir) { ValueEnforcer.notNull (aDir, "Dir"); m_aContent.add (aDir); } @Nonnull @ReturnsMutableCopy public ICommonsList getAllDirs () { return m_aContent.getAllInstanceOf (PSDir.class); } public void addSpan (@Nonnull final PSSpan aSpan) { ValueEnforcer.notNull (aSpan, "Span"); m_aContent.add (aSpan); } @Nonnull @ReturnsMutableCopy public ICommonsList getAllSpans () { return m_aContent.getAllInstanceOf (PSSpan.class); } /** * @return A list of {@link String}, {@link PSValueOf}, {@link PSEmph}, * {@link PSDir} and {@link PSSpan} elements. */ @Nonnull @ReturnsMutableCopy public ICommonsList getAllContentElements () { return m_aContent.getClone (); } @Nonnull public IMicroElement getAsMicroElement () { final IMicroElement ret = new MicroElement (CSchematron.NAMESPACE_SCHEMATRON, CSchematronXML.ELEMENT_DIAGNOSTIC); ret.setAttribute (CSchematronXML.ATTR_ID, m_sID); if (m_aRich != null) m_aRich.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; } @Nonnull public PSDiagnostic getClone () { final PSDiagnostic ret = new PSDiagnostic (); ret.setID (m_sID); ret.setRich (getRichClone ()); for (final Object aContent : m_aContent) { if (aContent instanceof String) ret.addText ((String) aContent); else if (aContent instanceof PSValueOf) ret.addValueOf (((PSValueOf) aContent).getClone ()); else if (aContent instanceof PSEmph) ret.addEmph (((PSEmph) aContent).getClone ()); else if (aContent instanceof PSDir) ret.addDir (((PSDir) aContent).getClone ()); else if (aContent instanceof PSSpan) ret.addSpan (((PSSpan) aContent).getClone ()); else throw new IllegalStateException ("Unexpected content element: " + aContent); } if (hasForeignElements ()) ret.addForeignElements (m_aForeignElements); if (hasForeignAttributes ()) ret.addForeignAttributes (m_aForeignAttrs); return ret; } @Override public String toString () { return new ToStringGenerator (this).appendIfNotNull ("id", m_sID) .appendIfNotNull ("rich", m_aRich) .appendIf ("content", m_aContent, CollectionHelper::isNotEmpty) .appendIf ("foreignAttrs", m_aForeignAttrs, CollectionHelper::isNotEmpty) .appendIf ("foreignElements", m_aForeignElements, CollectionHelper::isNotEmpty) .getToString (); } }