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

com.android.ide.common.res2.StringResourceEscaperContentHandler Maven / Gradle / Ivy

/*
 * Copyright (C) 2016 The Android Open Source Project
 *
 * 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.android.ide.common.res2;

import com.google.common.escape.Escaper;

import org.xml.sax.Attributes;
import org.xml.sax.SAXException;
import org.xml.sax.ext.DefaultHandler2;

final class StringResourceEscaperContentHandler extends DefaultHandler2 {

    @SuppressWarnings("StringBufferField")
    private final StringBuilder mBuilder;

    private final Escaper mEscaper;

    private boolean mHandlingEntity;

    private boolean mHandlingCdata;

    /**
     * The builder's length at the end of startElement
     */
    private int mStartElementBuilderLength;

    StringResourceEscaperContentHandler(StringBuilder builder, Escaper escaper) {
        mBuilder = builder;
        mEscaper = escaper;
    }

    @Override
    public void characters(char[] chars, int offset, int length) throws SAXException {
        if (mHandlingEntity) {
            // I would reset this bit in endEntity but the SAX parser in tools/base/ calls
            // characters after endEntity. The one in tools/adt/idea/ calls it before.
            mHandlingEntity = false;
            return;
        }

        if (mHandlingCdata) {
            mBuilder.append(chars, offset, length);
        } else {
            mBuilder.append(mEscaper.escape(new String(chars, offset, length)));
        }
    }

    @Override
    public void startElement(String uri, String localName, String qualifiedName,
            Attributes attributes) throws SAXException {
        if (qualifiedName.equals(StringResourceEscaper.STRING_ELEMENT_NAME)) {
            return;
        }

        mBuilder
                .append('<')
                .append(qualifiedName);

        for (int i = 0, length = attributes.getLength(); i < length; i++) {
            mBuilder
                    .append(' ')
                    .append(attributes.getQName(i))
                    .append("=\"")
                    .append(attributes.getValue(i))
                    .append('"');
        }

        mBuilder.append('>');
        mStartElementBuilderLength = mBuilder.length();
    }

    @Override
    public void endElement(String uri, String localName, String qualifiedName) throws SAXException {
        if (qualifiedName.equals(StringResourceEscaper.STRING_ELEMENT_NAME)) {
            return;
        }

        if (mBuilder.length() == mStartElementBuilderLength) {
            // If the builder's length hasn't changed since the last startElement call, the element
            // is empty
            mBuilder.setCharAt(mBuilder.length() - 1, '/');
            mBuilder.append('>');
        } else {
            mBuilder
                    .append("');
        }
    }

    @Override
    public void startEntity(String name) throws SAXException {
        mBuilder
                .append('&')
                .append(name)
                .append(';');

        mHandlingEntity = true;
    }

    @Override
    public void startCDATA() throws SAXException {
        mBuilder.append("");
        mHandlingCdata = false;
    }

    @Override
    public void comment(char[] chars, int offset, int length) throws SAXException {
        mBuilder
                .append("");
    }

    @Override
    public void processingInstruction(String target, String data) throws SAXException {
        mBuilder
                .append("");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy