Package org.jboss.xb.binding.sunday.unmarshalling

Source Code of org.jboss.xb.binding.sunday.unmarshalling.XsdBinderTerminatingErrorHandler

/**
*
*/
package org.jboss.xb.binding.sunday.unmarshalling;

import org.jboss.xb.binding.JBossXBRuntimeException;
import org.w3c.dom.DOMError;
import org.w3c.dom.DOMErrorHandler;
import org.w3c.dom.DOMLocator;

public class XsdBinderTerminatingErrorHandler implements DOMErrorHandler
{
   private static XsdBinderTerminatingErrorHandler errorHandler;

   // Hide constructor
   private XsdBinderTerminatingErrorHandler()
   {
   }
  
   public static XsdBinderTerminatingErrorHandler newInstance()
   {
      if (errorHandler == null)
      {
         errorHandler = new XsdBinderTerminatingErrorHandler();
      }
      return errorHandler;
   }

   public boolean handleError(DOMError error)
   {
      // todo: i do throw exceptions here instead of returning false to stop parsing immediately
      // since returning false seems to be no different from true (a bug in the parser?)
      // Although, throwing an exception reports the same error twice but the second time with
      // location -1:-1
      switch(error.getSeverity())
      {
         case DOMError.SEVERITY_ERROR:
            throw new JBossXBRuntimeException(formatMessage(error));
         case DOMError.SEVERITY_FATAL_ERROR:
            throw new JBossXBRuntimeException(formatMessage(error));
         case DOMError.SEVERITY_WARNING:
            XsdBinder.log.warn(formatMessage(error));
            break;
      }
      return false;
   }

   String formatMessage(DOMError error)
   {
      StringBuffer buf = new StringBuffer();
      DOMLocator location = error.getLocation();
      if(location != null)
      {
         buf.append(location.getLineNumber())
            .append(':')
            .append(location.getColumnNumber());
      }
      else
      {
         buf.append("[location unavailable]");
      }

      buf.append(' ').append(error.getMessage());
      return buf.toString();
   }
}
TOP

Related Classes of org.jboss.xb.binding.sunday.unmarshalling.XsdBinderTerminatingErrorHandler

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.