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

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

There is a newer version: 5.6.5
Show newest version
/**
 * Copyright (C) 2014-2020 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.impl.CommonsArrayList;
import com.helger.commons.collection.impl.CommonsLinkedHashMap;
import com.helger.commons.collection.impl.ICommonsList;
import com.helger.commons.collection.impl.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 active-element.
* The required pattern attribute is a reference to a pattern that is active in * the current phase.
* {@link PSActive} elements are only references from {@link PSPhase} elements. * * @author Philip Helger */ @NotThreadSafe public class PSActive implements IPSClonableElement , IPSHasForeignElements, IPSHasMixedContent { private String m_sPattern; private final ICommonsList m_aContent = new CommonsArrayList <> (); private ICommonsOrderedMap m_aForeignAttrs; public PSActive () {} 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_sPattern)) { aErrorHandler.error (this, " has no 'pattern'"); 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_sPattern)) aErrorHandler.error (this, " has no 'pattern'"); } public boolean isMinimal () { 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!"); m_aContent.add (aForeignElement); } public boolean hasForeignElements () { return m_aContent.containsAny (x -> x instanceof IMicroElement); } @Nonnull @ReturnsMutableCopy public ICommonsList getAllForeignElements () { return m_aContent.getAllInstanceOf (IMicroElement.class); } 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); } /** * @param sPattern * The ID of the pattern to set active. */ public void setPattern (@Nullable final String sPattern) { m_sPattern = sPattern; } /** * @return ID of the {@link PSPattern} to be marked active. May be * null. */ @Nullable public String getPattern () { return m_sPattern; } 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 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 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 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 PSDir}, {@link PSEmph} 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_ACTIVE); ret.setAttribute (CSchematronXML.ATTR_PATTERN, m_sPattern); for (final Object aContent : m_aContent) if (aContent instanceof IMicroElement) ret.appendChild (((IMicroElement) aContent).getClone ()); else 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 PSActive getClone () { final PSActive ret = new PSActive (); ret.setPattern (m_sPattern); for (final Object aContent : m_aContent) { if (aContent instanceof String) ret.addText ((String) aContent); else if (aContent instanceof PSDir) ret.addDir (((PSDir) aContent).getClone ()); else if (aContent instanceof PSEmph) ret.addEmph (((PSEmph) aContent).getClone ()); else if (aContent instanceof PSSpan) ret.addSpan (((PSSpan) aContent).getClone ()); else if (aContent instanceof IMicroElement) ret.addForeignElement (((IMicroElement) aContent).getClone ()); } if (hasForeignAttributes ()) ret.addForeignAttributes (m_aForeignAttrs); return ret; } @Override public String toString () { return new ToStringGenerator (this).appendIfNotNull ("pattern", m_sPattern) .appendIf ("content", m_aContent, CollectionHelper::isNotEmpty) .appendIf ("foreignAttrs", m_aForeignAttrs, CollectionHelper::isNotEmpty) .getToString (); } }