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

net.hasor.rsf.protocol.rsf.RsfEncoder Maven / Gradle / Ivy

There is a newer version: 4.2.5
Show newest version
/*
 * Copyright 2008-2009 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
 *
 *      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 net.hasor.rsf.protocol.rsf;
import io.netty.buffer.ByteBuf;
import io.netty.channel.ChannelHandlerContext;
import io.netty.handler.codec.MessageToByteEncoder;
import net.hasor.rsf.RsfEnvironment;
import net.hasor.rsf.domain.RequestInfo;
import net.hasor.rsf.domain.ResponseInfo;
import net.hasor.rsf.protocol.rsf.v1.PoolBlock;
import net.hasor.rsf.protocol.rsf.v1.RequestBlock;
import net.hasor.rsf.protocol.rsf.v1.ResponseBlock;

/**
 * RSF 编码器,支持将{@link RequestInfo}、{@link RequestBlock}或者{@link ResponseInfo}、{@link ResponseBlock}编码写入Socket
 * @version : 2014年10月10日
 * @author 赵永春 ([email protected])
 */
public class RsfEncoder extends MessageToByteEncoder implements ProtocolConstants {
    private RsfEnvironment rsfEnvironment;
    private ClassLoader    classLoader;

    public RsfEncoder(RsfEnvironment rsfEnvironment, ClassLoader classLoader) {
        this.rsfEnvironment = rsfEnvironment;
        this.classLoader = classLoader;
    }

    protected void encode(ChannelHandlerContext ctx, Object msg, ByteBuf out) throws Exception {
        PoolBlock block = null;
        try {
            CodecAdapter factory = CodecAdapterFactory.getCodecAdapterByVersion(this.rsfEnvironment, this.classLoader, Version_1);
            if (msg instanceof RequestInfo) {
                RequestInfo info = (RequestInfo) msg;
                block = factory.buildRequestBlock(info);
                factory.wirteRequestBlock((RequestBlock) block, out);
                return;
            }
            if (msg instanceof ResponseInfo) {
                ResponseInfo info = (ResponseInfo) msg;
                block = factory.buildResponseBlock(info);
                factory.wirteResponseBlock((ResponseBlock) block, out);
                return;
            }
            if (msg instanceof RequestBlock) {
                /*=这个可有可无*/
                block = (RequestBlock) msg;
                factory.wirteRequestBlock((RequestBlock) block, out);
                return;
            }
            if (msg instanceof ResponseBlock) {
                /*=这个可有可无*/
                block = (ResponseBlock) msg;
                factory.wirteResponseBlock((ResponseBlock) block, out);
                return;
            }
        } catch (Exception e) {
            ctx.fireExceptionCaught(e);
        } finally {
            ctx.flush();
            if (block != null) {
                block.release();
            }
        }
    }
}