java aio 客户端_JAVA AIO 服务器与客户端实现示例

AIO用于文件处理还是比较快乐的,但用AIO来写网络消息处理服务器端与客户端是比较麻烦的事情,当然这只是我个人意见,主要是有几点原因:一是AIO需要操作系统支

AIO用于文件处理还是比较快乐的,但用AIO来写网络消息处理服务器端与客户端是比较麻烦的事情,当然这只是我个人意见,主要是有几点原因:

一是AIO需要操作系统支持,还好Windows与Linux(模拟)都支持;

二是AIO同时使用递归调用和异步调用容易把程序员搞晕,代码容易出错;

三是CompletionHandler会使用单独的线程跑,容易出现多线程问题,频繁线程上下文切换比较消耗资源;

四是异步写要创建队列来缓存需要写入的数据,否则肯定会遇到WritePendingException。

相对来说,NIO比较清楚直白,容易控制。

另外,笔者使用多线程模拟多个客户场景失败,代码在run方法中调用AsynchronousSocketChannel.connect()没返回,没连接上服务器,不知道为何,请大侠指教,最后只好使用多个进程模拟多个客户端,写个类似下面代码的bat文件,同时运行多个。java -classpath .\ com.stevex.app.aio.Client 1

java -classpath .\ com.stevex.app.aio.Client 1

pause

服务器代码:package com.stevex.app.aio;

import java.io.IOException;

import java.net.InetSocketAddress;

import java.net.StandardSocketOptions;

import java.nio.ByteBuffer;

import java.nio.CharBuffer;

import java.nio.channels.AsynchronousChannelGroup;

import java.nio.channels.AsynchronousServerSocketChannel;

import java.nio.channels.AsynchronousSocketChannel;

import java.nio.channels.CompletionHandler;

//import java.nio.channels.WritePendingException;

import java.nio.charset.CharacterCodingException;

import java.nio.charset.Charset;

import java.util.LinkedList;

import java.util.Queue;

import java.util.concurrent.Executors;

public class XiaoNa {

private final AsynchronousServerSocketChannel server;

//写队列,,因为当前一个异步写调用还没完成之前,调用异步写会抛WritePendingException

//所以需要一个写队列来缓存要写入的数据,这是AIO比较坑的地方

private final Queue queue = new LinkedList();

private boolean writing = false;

public static void main(String[] args) throws IOException{

XiaoNa xiaona = new XiaoNa();

xiaona.listen();

}

public XiaoNa() throws IOException{

//设置线程数为CPU核数

AsynchronousChannelGroup channelGroup = AsynchronousChannelGroup.withFixedThreadPool(Runtime.getRuntime().availableProcessors(), Executors.defaultThreadFactory());

server = AsynchronousServerSocketChannel.open(channelGroup);

//重用端口

server.setOption(StandardSocketOptions.SO_REUSEADDR, true);

//绑定端口并设置连接请求队列长度

server.bind(new InetSocketAddress(8383), 80);

}

public void listen() {

System.out.println(Thread.currentThread().getName() + ": run in listen method" );

//开始接受第一个连接请求

server.accept(null, new CompletionHandler(){

@Override

public void completed(AsynchronousSocketChannel channel,

Object attachment) {

System.out.println(Thread.currentThread().getName() + ": run in accept completed method" );

//先安排处理下一个连接请求,异步非阻塞调用,所以不用担心挂住了

//这里传入this是个地雷,小心多线程

server.accept(null, this);

//处理连接读写

handle(channel);

}

private void handle(final AsynchronousSocketChannel channel) {

System.out.println(Thread.currentThread().getName() + ": run in handle method" );

//每个AsynchronousSocketChannel,分配一个缓冲区

final ByteBuffer readBuffer = ByteBuffer.allocateDirect(1024);

readBuffer.clear();

channel.read(readBuffer, null, new CompletionHandler(){

@Override

public void completed(Integer count, Object attachment) {

System.out.println(Thread.currentThread().getName() + ": run in read completed method" );

if(count > 0){

try{

readBuffer.flip();

//CharBuffer charBuffer = CharsetHelper.decode(readBuffer);

CharBuffer charBuffer = Charset.forName("UTF-8").newDecoder().decode(readBuffer);

String question = charBuffer.toString();

String answer = Helper.getAnswer(question);

/*//写入也是异步调用,也可以使用传入CompletionHandler对象的方式来处理写入结果

//channel.write(CharsetHelper.encode(CharBuffer.wrap(answer)));

try{

channel.write(Charset.forName("UTF-8").newEncoder().encode(CharBuffer.wrap(answer)));

}

//Unchecked exception thrown when an attempt is made to write to an asynchronous socket channel and a previous write has not completed.

//看来操作系统也不可靠

catch(WritePendingException wpe){

//休息一秒再重试,如果失败就不管了

Helper.sleep(1);

channel.write(Charset.forName("UTF-8").newEncoder().encode(CharBuffer.wrap(answer)));

}*/

writeStringMessage(channel, answer);

readBuffer.clear();

}

catch(IOException e){

e.printStackTrace();

}

}

else{

try {

//如果客户端关闭socket,那么服务器也需要关闭,否则浪费CPU

channel.close();

} catch (IOException e) {

e.printStackTrace();

}

}

//异步调用OS处理下个读取请求

//这里传入this是个地雷,小心多线程

channel.read(readBuffer, null, this);

}

/**

* 服务器读失败处理

* @param exc

* @param attachment

*/

@Override

public void failed(Throwable exc, Object attachment) {

System.out.println("server read failed: " + exc);

if(channel != null){

try {

channel.close();

} catch (IOException e) {

e.printStackTrace();

}

}

}

});

}

/**

* 服务器接受连接失败处理

* @param exc

* @param attachment

*/

@Override

public void failed(Throwable exc, Object attachment) {

System.out.println("server accept failed: " + exc);

}

});

}

/**

* Enqueues a write of the buffer to the channel.

* The call is asynchronous so the buffer is not safe to modify after

* passing the buffer here.

*

* @param buffer the buffer to send to the channel

*/

private void writeMessage(final AsynchronousSocketChannel channel, final ByteBuffer buffer) {

boolean threadShouldWrite = false;

synchronized(queue) {

queue.add(buffer);

// Currently no thread writing, make this thread dispatch a write

if (!writing) {

writing = true;

threadShouldWrite = true;

}

}

if (threadShouldWrite) {

writeFromQueue(channel);

}

}

private void writeFromQueue(final AsynchronousSocketChannel channel) {

ByteBuffer buffer;

synchronized (queue) {

buffer = queue.poll();

if (buffer == null) {

writing = false;

}

}

// No new data in buffer to write

if (writing) {

writeBuffer(channel, buffer);

}

}

private void writeBuffer(final AsynchronousSocketChannel channel, ByteBuffer buffer) {

channel.write(buffer, buffer, new CompletionHandler() {

@Override

public void completed(Integer result, ByteBuffer buffer) {

if (buffer.hasRemaining()) {

channel.write(buffer, buffer, this);

} else {

// Go back and check if there is new data to write

writeFromQueue(channel);

}

}

@Override

public void failed(Throwable exc, ByteBuffer attachment) {

System.out.println("server write failed: " + exc);

}

});

}

/**

* Sends a message

* @param string the message

* @throws CharacterCodingException

*/

private void writeStringMessage(final AsynchronousSocketChannel channel, String msg) throws CharacterCodingException {

writeMessage(channel, Charset.forName("UTF-8").newEncoder().encode(CharBuffer.wrap(msg)));

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值