View Javadoc

1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *   http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package org.apache.myfaces.shared.util.xml;
20  
21  import java.util.logging.Level;
22  import java.util.logging.Logger;
23  
24  import org.xml.sax.ErrorHandler;
25  import org.xml.sax.SAXParseException;
26  
27  /**
28   * Convenient error handler for xml sax parsing.
29   */
30  public class MyFacesErrorHandler
31          implements ErrorHandler
32  {
33      private Logger _log;
34  
35      public MyFacesErrorHandler(Logger log)
36      {
37          _log = log;
38      }
39  
40      public void warning(SAXParseException exception)
41      {
42          if (_log.isLoggable(Level.WARNING))
43          {
44              _log.log(Level.WARNING, getMessage(exception), exception);
45          }
46      }
47  
48      public void error(SAXParseException exception)
49      {
50          _log.log(Level.SEVERE, getMessage(exception), exception);
51      }
52  
53      public void fatalError(SAXParseException exception)
54      {
55          _log.log(Level.SEVERE, getMessage(exception), exception);
56      }
57  
58      private String getMessage(SAXParseException exception)
59      {
60          StringBuilder buf = new StringBuilder();
61          buf.append("SAXParseException at");
62          buf.append(" URI=");
63          buf.append(exception.getSystemId());
64          buf.append(" Line=");
65          buf.append(exception.getLineNumber());
66          buf.append(" Column=");
67          buf.append(exception.getColumnNumber());
68          return buf.toString();
69      }
70  
71  }