com.helger.xml.sax.CollectingSAXErrorHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ph-xml Show documentation
Show all versions of ph-xml Show documentation
Java 1.8+ Library with XML handling routines
/**
* Copyright (C) 2014-2016 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.xml.sax;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import javax.annotation.concurrent.GuardedBy;
import javax.annotation.concurrent.ThreadSafe;
import org.xml.sax.ErrorHandler;
import org.xml.sax.SAXParseException;
import com.helger.commons.annotation.ReturnsMutableCopy;
import com.helger.commons.concurrent.SimpleReadWriteLock;
import com.helger.commons.error.IErrorLevel;
import com.helger.commons.error.IHasResourceErrorGroup;
import com.helger.commons.error.IResourceErrorGroup;
import com.helger.commons.error.ResourceErrorGroup;
import com.helger.commons.state.EChange;
import com.helger.commons.string.ToStringGenerator;
/**
* An error handler implementation that stores all warnings, errors and fatal
* errors.
*
* @author Philip Helger
*/
@ThreadSafe
public class CollectingSAXErrorHandler extends AbstractSAXErrorHandler implements IHasResourceErrorGroup
{
protected final SimpleReadWriteLock m_aRWLock = new SimpleReadWriteLock ();
@GuardedBy ("m_aRWLock")
private final ResourceErrorGroup m_aErrors = new ResourceErrorGroup ();
public CollectingSAXErrorHandler ()
{}
public CollectingSAXErrorHandler (@Nullable final ErrorHandler aWrappedErrorHandler)
{
super (aWrappedErrorHandler);
}
@Override
protected void internalLog (@Nonnull final IErrorLevel aErrorLevel, final SAXParseException aException)
{
m_aRWLock.writeLocked ( () -> m_aErrors.addResourceError (getSaxParseError (aErrorLevel, aException)));
}
@Nonnull
@ReturnsMutableCopy
public IResourceErrorGroup getResourceErrors ()
{
return m_aRWLock.readLocked ( () -> m_aErrors.getClone ());
}
public boolean containsAtLeastOneError ()
{
return m_aRWLock.readLocked ( () -> m_aErrors.containsAtLeastOneError ());
}
/**
* Clear all currently stored errors.
*
* @return {@link EChange#CHANGED} if at least one item was cleared.
*/
@Nonnull
public EChange clearResourceErrors ()
{
return m_aRWLock.writeLocked ( () -> m_aErrors.clear ());
}
@Override
public String toString ()
{
return ToStringGenerator.getDerived (super.toString ()).append ("errors", m_aErrors).toString ();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy