com.papteco.client.netty.ObjectEchoBuilder.java Source code

Java tutorial

Introduction

Here is the source code for com.papteco.client.netty.ObjectEchoBuilder.java

Source

/*
 * Copyright 2012 The Netty Project
 *
 * The Netty Project licenses this file to you 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.papteco.client.netty;

import io.netty.bootstrap.Bootstrap;
import io.netty.channel.ChannelInitializer;
import io.netty.channel.EventLoopGroup;
import io.netty.channel.nio.NioEventLoopGroup;
import io.netty.channel.socket.SocketChannel;
import io.netty.channel.socket.nio.NioSocketChannel;
import io.netty.handler.codec.serialization.ClassResolvers;
import io.netty.handler.codec.serialization.ObjectEncoder;

import com.papteco.client.ui.SharedBoard;
import com.papteco.web.beans.QueueItem;

public class ObjectEchoBuilder extends BasicBuilder {

    private String inPrjCde;
    private QueueItem qItem = new QueueItem();
    private String username;
    private String mailfile;

    public ObjectEchoBuilder() {
    }

    public ObjectEchoBuilder(String inPrjCde) {
        this.inPrjCde = inPrjCde;
    }

    public ObjectEchoBuilder(String username, String flag) {
        this.username = username;
    }

    public ObjectEchoBuilder(String username, String mailfile, String flag) {
        this.username = username;
        this.mailfile = mailfile;
    }

    public ObjectEchoBuilder(QueueItem qItem) {
        this.qItem = qItem;
    }

    public void runInitinal() throws Exception {
        EventLoopGroup group = new NioEventLoopGroup();
        try {
            Bootstrap b = new Bootstrap();
            b.group(group).channel(NioSocketChannel.class).handler(new ChannelInitializer<SocketChannel>() {
                @Override
                public void initChannel(SocketChannel ch) throws Exception {
                    ch.pipeline().addLast(new ObjectEncoder(),
                            new NewObjectDecoder(ClassResolvers.cacheDisabled(null)),
                            new InitinalClientHandler(username));
                }
            });
            b.connect(envsetting.getProperty("pims_ip"), PortTranslater(envsetting.getProperty("comm_nett_port")))
                    .sync().channel().closeFuture().sync();
        } finally {
            group.shutdownGracefully();
        }
    }

    public void runSelProjectEcho() throws InterruptedException {
        EventLoopGroup group = new NioEventLoopGroup();
        try {
            Bootstrap b = new Bootstrap();
            b.group(group).channel(NioSocketChannel.class).handler(new ChannelInitializer<SocketChannel>() {
                @Override
                public void initChannel(SocketChannel ch) throws Exception {
                    ch.pipeline().addLast(new ObjectEncoder(),
                            new NewObjectDecoder(ClassResolvers.cacheDisabled(null)),
                            new SelProjectClientHandler(inPrjCde, SharedBoard.LOGIN_USER));
                }
            });
            b.connect(envsetting.getProperty("pims_ip"), PortTranslater(envsetting.getProperty("comm_nett_port")))
                    .sync().channel().closeFuture().sync();
        } finally {
            group.shutdownGracefully();
        }
    }

    public void runDownFileEcho() throws Exception {
        EventLoopGroup group = new NioEventLoopGroup();
        try {
            Bootstrap b = new Bootstrap();
            b.group(group).channel(NioSocketChannel.class).handler(new ChannelInitializer<SocketChannel>() {
                @Override
                public void initChannel(SocketChannel ch) throws Exception {
                    ch.pipeline().addLast(new ObjectEncoder(),
                            new NewObjectDecoder(ClassResolvers.cacheDisabled(null)),
                            new DownFileClientHandler(qItem));
                }
            });
            b.connect(envsetting.getProperty("pims_ip"), PortTranslater(envsetting.getProperty("comm_nett_port")))
                    .sync().channel().closeFuture().sync();
        } catch (Throwable e) {
            e.printStackTrace();
        } finally {
            group.shutdownGracefully();
        }
    }

    public void getMailsList() throws Exception {
        EventLoopGroup group = new NioEventLoopGroup();
        try {
            Bootstrap b = new Bootstrap();
            b.group(group).channel(NioSocketChannel.class).handler(new ChannelInitializer<SocketChannel>() {
                @Override
                public void initChannel(SocketChannel ch) throws Exception {
                    ch.pipeline().addLast(new ObjectEncoder(),
                            new NewObjectDecoder(ClassResolvers.cacheDisabled(null)),
                            new LoadMailslistClientHandler(username));
                }
            });
            b.connect(envsetting.getProperty("pims_ip"), PortTranslater(envsetting.getProperty("comm_nett_port")))
                    .sync().channel().closeFuture().sync();
        } finally {
            group.shutdownGracefully();
        }
    }

    public void downMailFile() throws Exception {
        EventLoopGroup group = new NioEventLoopGroup();
        try {
            Bootstrap b = new Bootstrap();
            b.group(group).channel(NioSocketChannel.class).handler(new ChannelInitializer<SocketChannel>() {
                @Override
                public void initChannel(SocketChannel ch) throws Exception {
                    ch.pipeline().addLast(new ObjectEncoder(),
                            new NewObjectDecoder(ClassResolvers.cacheDisabled(null)),
                            new DownMailClientHandler(username, mailfile));
                }
            });
            b.connect(envsetting.getProperty("pims_ip"), PortTranslater(envsetting.getProperty("comm_nett_port")))
                    .sync().channel().closeFuture().sync();
        } finally {
            group.shutdownGracefully();
        }
    }
}