001/*
002 * This library is part of OpenCms -
003 * the Open Source Content Management System
004 *
005 * Copyright (c) Alkacon Software GmbH & Co. KG (http://www.alkacon.com)
006 *
007 * This library is free software; you can redistribute it and/or
008 * modify it under the terms of the GNU Lesser General Public
009 * License as published by the Free Software Foundation; either
010 * version 2.1 of the License, or (at your option) any later version.
011 *
012 * This library is distributed in the hope that it will be useful,
013 * but WITHOUT ANY WARRANTY; without even the implied warranty of
014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
015 * Lesser General Public License for more details.
016 *
017 * For further information about Alkacon Software, please see the
018 * company website: http://www.alkacon.com
019 *
020 * For further information about OpenCms, please see the
021 * project website: http://www.opencms.org
022 *
023 * You should have received a copy of the GNU Lesser General Public
024 * License along with this library; if not, write to the Free Software
025 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
026 */
027
028package org.opencms.pdftools.dtds;
029
030import java.io.IOException;
031import java.net.URL;
032
033import org.xml.sax.EntityResolver;
034import org.xml.sax.InputSource;
035import org.xml.sax.SAXException;
036
037/**
038 * Entity resolver for XHTML entities.<p>
039 */
040public class XhtmlEntityResolver implements EntityResolver {
041
042    /** The XHTML prefix. */
043    static final String XHTML_PREFIX = "http://www.w3.org/TR/xhtml1/DTD/";
044
045    /** The next entity resolver. */
046    private final EntityResolver m_next;
047
048    /**
049     * Constructor.<p>
050     **/
051    public XhtmlEntityResolver() {
052        this(null);
053    }
054
055    /**
056     * Constructor.<p>
057     *
058     * @param next the next entity resolver.<p>
059     */
060    public XhtmlEntityResolver(EntityResolver next) {
061        m_next = next;
062    }
063
064    /**
065     * @see org.xml.sax.EntityResolver#resolveEntity(java.lang.String, java.lang.String)
066     */
067    @Override
068    public InputSource resolveEntity(String publicId, String systemId) throws SAXException, IOException {
069
070        if (systemId.startsWith(XHTML_PREFIX)) {
071            String name = systemId.substring(XHTML_PREFIX.length());
072            //final InputStream resourceAsStream = getClass().getResourceAsStream(name);
073            URL resource = getClass().getResource(name);
074            if (resource != null) {
075                InputSource inputSource = new InputSource(resource.toExternalForm());
076                inputSource.setPublicId(publicId);
077                //inputSource.setByteStream(resourceAsStream);
078                return inputSource;
079            }
080        }
081
082        // Let file: URLs just get loaded using the default mechanism
083        if (systemId.startsWith("file:") || systemId.startsWith("jar:")) {
084            return null;
085        }
086        if (m_next != null) {
087            return m_next.resolveEntity(publicId, systemId);
088        } else {
089            return null;
090        }
091    }
092}