1

私はNettyが初めてです。「Netty 3.6.2.Final」を使用しています。リモート サーバーと通信する Netty クライアント (MyClient) を作成しました (サーバーは TCP に基づくカスタム プロトコルを実装しています)。(コンストラクター内で) MyClient インスタンスごとに新しい ClientBootstrap インスタンスを作成します。私の質問は、「NioClientSocketChannelFactory」ファクトリ オブジェクトを MyClient のすべてのインスタンス間で共有する場合、「NioClientSocketChannelFactory」に関連付けられているすべてのリソースをいつどのように解放するのですか?

つまり、私の Netty クライアントは 24 時間年中無休で実行されている JBOSS コンテナー内で実行されるため、「bootstrap.releaseExternalResources();」を呼び出してすべてのリソースを解放する必要があります。いつ/どこでそうするべきですか?

詳細情報: 私の Netty クライアントは、JBOSS コンテナー内の 2 つのシナリオから呼び出されます。まず、リモートサーバーに送信する必要がある文字列を毎回渡す無限 for ループで (実質的には以下のコードと同様)

for( ; ; ){
    //Prepare the stringToSend
    //Send a string and receive a string
String returnedString=new MyClient().handle(stringToSend);
}

もう 1 つのシナリオは、各スレッドが「new MyClient().handle(stringToSend);」を呼び出す同時スレッド内で Netty クライアントが呼び出される場合です。

以下にスケルトンコードを示します。これは、Netty Web サイトの TelnetClient の例と非常によく似ています。

私の顧客

import org.jboss.netty.bootstrap.ClientBootstrap;
import org.jboss.netty.channel.socket.nio.NioClientSocketChannelFactory;
public class MyClient {
    //Instantiate this only once per application
    private final static Timer timer = new HashedWheelTimer();

    //All below must come from configuration
    private final String host ="127.0.0.1";
    private final int port =9699; 
    private final InetSocketAddress address = new InetSocketAddress(host, port);
    private ClientBootstrap bootstrap;

    //Timeout when the server sends nothing for n seconds.
        static final int READ_TIMEOUT = 5;

        public MyClient(){
            bootstrap = new ClientBootstrap(NioClientSocketFactorySingleton.getInstance());
        }

    public String handle(String messageToSend){
        bootstrap.setOption("connectTimeoutMillis", 20000);
            bootstrap.setOption("tcpNoDelay", true);
            bootstrap.setOption("keepAlive", true);
            bootstrap.setOption("remoteAddress", address);
        bootstrap.setPipelineFactory(new MyClientPipelineFactory(messageToSend,bootstrap,timer));

         // Start the connection attempt.
            ChannelFuture future = bootstrap.connect();

            // Wait until the connection attempt succeeds or fails.
            channel = future.awaitUninterruptibly().getChannel();


            if (!future.isSuccess()) { 
                return null;  
            }

            // Wait until the connection is closed or the connection attempt fails.
            channel.getCloseFuture().awaitUninterruptibly();

            MyClientHandler myClientHandler=(MyClientHandler)channel.getPipeline().getLast();
            String messageReceived=myClientHandler.getMessageReceived();
        return messageReceived;
    }
}

シングルトン NioClientSocketChannelFactory

public class NioClientSocketFactorySingleton {
private static NioClientSocketChannelFactory nioClientSocketChannelFactory;

private NioClientSocketFactorySingleton() {
}

public static synchronized NioClientSocketChannelFactory getInstance() {
    if ( nioClientSocketChannelFactory == null) {
        nioClientSocketChannelFactory=new NioClientSocketChannelFactory(
            Executors.newCachedThreadPool(),
            Executors.newCachedThreadPool());
    }
    return  nioClientSocketChannelFactory;
 }

  protected void finalize() throws Throwable {
    try{
    if(nioClientSocketChannelFactory!=null){    
        // Shut down thread pools to exit.
        nioClientSocketChannelFactory.releaseExternalResources();
    } 
    }catch(Exception e){
    //Can't do anything much
    }
  }
} 

MyClientPipelineFactory

public class MyClientPipelineFactory implements ChannelPipelineFactory {

    private String messageToSend;
    private ClientBootstrap bootstrap;
    private Timer timer;
    public MyClientPipelineFactory(){

    }
    public MyClientPipelineFactory(String messageToSend){
        this.messageToSend=messageToSend;
    }

    public MyClientPipelineFactory(String messageToSend,ClientBootstrap bootstrap, Timer timer){
        this.messageToSend=messageToSend;
        this.bootstrap=bootstrap;
        this.timer=timer;
    }

        public ChannelPipeline getPipeline() throws Exception {

            // Create a default pipeline implementation.
            ChannelPipeline pipeline = pipeline();

            // Add the text line codec combination first,
            //pipeline.addLast("framer", new DelimiterBasedFrameDecoder(8192, Delimiters.lineDelimiter()));
            pipeline.addLast("decoder", new StringDecoder());
            pipeline.addLast("encoder", new StringEncoder());

            //Add readtimeout
            pipeline.addLast("timeout", new ReadTimeoutHandler(timer, MyClient.READ_TIMEOUT));

            // and then business logic.
            pipeline.addLast("handler", new MyClientHandler(messageToSend,bootstrap));


            return pipeline;
        }
}

MyClientHandler

public class MyClientHandler extends SimpleChannelUpstreamHandler { 

    private String messageToSend="";
    private String messageReceived="";


    public MyClientHandler(String messageToSend,ClientBootstrap bootstrap) {
        this.messageToSend=messageToSend;
        this.bootstrap=bootstrap;
    }

    @Override
    public void channelConnected(ChannelHandlerContext ctx, ChannelStateEvent e){
        e.getChannel().write(messageToSend);
    }

    @Override
    public void messageReceived(ChannelHandlerContext ctx, MessageEvent e){
        messageReceived=e.getMessage().toString();
    //This take the control back to the MyClient
    e.getChannel().close();
    }

    @Override
    public void exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e) {
        // Close the connection when an exception is raised.
        e.getChannel().close();

    }


}
4

1 に答える 1