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

org.grails.encoder.StreamingEncoderEncodedAppender Maven / Gradle / Ivy

/*
 * Copyright 2014-2022 the original author or authors.
 *
 * 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
 *
 *      https://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 org.grails.encoder;

import java.io.IOException;

import org.grails.charsequences.CharSequences;

/**
 * EncodedAppender implementation used for piping / chaining several StreamingEncoders
 *
 */
public class StreamingEncoderEncodedAppender extends AbstractEncodedAppender {

    private final StreamingEncoder encoder;

    private final EncodedAppender target;

    public StreamingEncoderEncodedAppender(StreamingEncoder encoder, EncodedAppender target) {
        this.encoder = encoder;
        this.target = target;
    }

    @Override
    public void close() throws IOException {
        this.target.close();
    }

    @Override
    public void flush() throws IOException {
        this.target.flush();
    }

    @Override
    protected void write(EncodingState encodingState, char[] b, int off, int len) throws IOException {
        if (shouldEncode(this.encoder, encodingState)) {
            this.encoder.encodeToStream(this.encoder, CharSequences.createCharSequence(b), off, len, this.target,
                    createNewEncodingState(this.encoder, encodingState));
        }
        else {
            this.target.appendEncoded(null, encodingState, b, off, len);
        }
    }

    @Override
    protected void write(EncodingState encodingState, String str, int off, int len) throws IOException {
        if (shouldEncode(this.encoder, encodingState)) {
            this.encoder.encodeToStream(this.encoder, str, off, len, this.target, createNewEncodingState(this.encoder, encodingState));
        }
        else {
            this.target.appendEncoded(null, encodingState, str, off, len);
        }
    }

    @Override
    protected void appendCharSequence(EncodingState encodingState, CharSequence str, int start, int end)
            throws IOException {
        if (shouldEncode(this.encoder, encodingState.getPreviousEncodingState())) {
            this.encoder.encodeToStream(this.encoder, str, start, end - start, this.target, encodingState);
        }
        else {
            this.target.appendEncoded(null, encodingState, str, start, end - start);
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy