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

com.generallycloud.baseio.codec.http2.hpack.DefaultHttp2HeadersEncoder Maven / Gradle / Ivy

There is a newer version: 3.2.9-BETA-2
Show newest version
/*
 * Copyright 2015-2017 GenerallyCloud.com
 *  
 * 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.generallycloud.baseio.codec.http2.hpack;

import static com.generallycloud.baseio.codec.http2.hpack.Http2Error.COMPRESSION_ERROR;
import static com.generallycloud.baseio.codec.http2.hpack.Http2Exception.connectionError;

import com.generallycloud.baseio.buffer.ByteBuf;
import com.generallycloud.baseio.buffer.UnpooledByteBufAllocator;

public class DefaultHttp2HeadersEncoder implements Http2HeadersEncoder, Http2HeadersEncoder.Configuration {
	    private final Encoder encoder;
	    private final SensitivityDetector sensitivityDetector;
	    private final Http2HeaderTable headerTable;
	    private final ByteBuf tableSizeChangeOutput = UnpooledByteBufAllocator.getHeapInstance().allocate(1024 * 8);

	    public DefaultHttp2HeadersEncoder() {
	        this(NEVER_SENSITIVE);
	    }

	    public DefaultHttp2HeadersEncoder(SensitivityDetector sensitivityDetector) {
	        this(sensitivityDetector, new Encoder());
	    }

	    public DefaultHttp2HeadersEncoder(SensitivityDetector sensitivityDetector, boolean ignoreMaxHeaderListSize) {
	        this(sensitivityDetector, new Encoder(ignoreMaxHeaderListSize));
	    }

	    public DefaultHttp2HeadersEncoder(SensitivityDetector sensitivityDetector, boolean ignoreMaxHeaderListSize,
	                                      int dynamicTableArraySizeHint) {
	        this(sensitivityDetector, new Encoder(ignoreMaxHeaderListSize, dynamicTableArraySizeHint));
	    }

	    /**
	     * Exposed Used for testing only! Default values used in the initial settings frame are overriden intentionally
	     * for testing but violate the RFC if used outside the scope of testing.
	     */
	    DefaultHttp2HeadersEncoder(SensitivityDetector sensitivityDetector, Encoder encoder) {
	        this.sensitivityDetector = sensitivityDetector;
	        this.encoder = encoder;
	        headerTable = new Http2HeaderTableEncoder();
	    }

	    @Override
	    public void encodeHeaders(Http2Headers headers, ByteBuf buffer) throws Http2Exception {
	        try {
	            // If there was a change in the table size, serialize the output from the encoder
	            // resulting from that change.
	            if (tableSizeChangeOutput.hasRemaining()) {
	                buffer.read(tableSizeChangeOutput);
	                tableSizeChangeOutput.clear();
	            }

	            encoder.encodeHeaders(buffer, headers, sensitivityDetector);
	        } catch (Http2Exception e) {
	            throw e;
	        } catch (Throwable t) {
	            throw connectionError(COMPRESSION_ERROR, t, "Failed encoding headers block: %s", t.getMessage());
	        }
	    }

	    @Override
	    public Http2HeaderTable headerTable() {
	        return headerTable;
	    }

	    @Override
	    public Configuration configuration() {
	        return this;
	    }

	    /**
	     * {@link Http2HeaderTable} implementation to support {@link Http2HeadersEncoder}
	     */
	    private final class Http2HeaderTableEncoder implements Http2HeaderTable {
	        @Override
	        public void maxHeaderTableSize(long max) throws Http2Exception {
	            encoder.setMaxHeaderTableSize(tableSizeChangeOutput, max);
	        }

	        @Override
	        public long maxHeaderTableSize() {
	            return encoder.getMaxHeaderTableSize();
	        }

	        @Override
	        public void maxHeaderListSize(long max) throws Http2Exception {
	            encoder.setMaxHeaderListSize(max);
	        }

	        @Override
	        public long maxHeaderListSize() {
	            return encoder.getMaxHeaderListSize();
	        }
	    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy