use of com.generallycloud.baseio.component.IoEventHandleAdaptor in project baseio by generallycloud.
the class SimpleTestFIxedLengthBroadcastServer method main.
public static void main(String[] args) throws Exception {
IoEventHandleAdaptor eventHandleAdaptor = new IoEventHandleAdaptor() {
@Override
public void accept(SocketSession session, Future future) throws Exception {
future.write("yes server already accept your message:");
future.write(future.getReadText());
session.flush(future);
}
};
SocketChannelContext context = new NioSocketChannelContext(new ServerConfiguration(8300));
SocketChannelAcceptor acceptor = new SocketChannelAcceptor(context);
context.addSessionEventListener(new LoggerSocketSEListener());
context.addSessionEventListener(new SetOptionListener());
context.setIoEventHandleAdaptor(eventHandleAdaptor);
context.setProtocolFactory(new FixedLengthProtocolFactory());
acceptor.bind();
ThreadUtil.execute(new Runnable() {
@Override
public void run() {
for (; ; ) {
ThreadUtil.sleep(1000);
FixedLengthFuture future = new FixedLengthFutureImpl(context);
future.write("broadcast msg .........................");
try {
acceptor.broadcast(future);
} catch (IOException e) {
e.printStackTrace();
}
}
}
});
}
use of com.generallycloud.baseio.component.IoEventHandleAdaptor in project baseio by generallycloud.
the class SimpleTestFIxedLengthClient method main.
public static void main(String[] args) throws Exception {
IoEventHandleAdaptor eventHandleAdaptor = new IoEventHandleAdaptor() {
@Override
public void accept(SocketSession session, Future future) throws Exception {
System.out.println();
System.out.println("____________________" + future.getReadText());
System.out.println();
}
};
SocketChannelContext context = new NioSocketChannelContext(new ServerConfiguration("localhost", 8300));
SocketChannelConnector connector = new SocketChannelConnector(context);
context.setIoEventHandleAdaptor(eventHandleAdaptor);
context.addSessionEventListener(new LoggerSocketSEListener());
context.setProtocolFactory(new FixedLengthProtocolFactory());
SocketSession session = connector.connect();
FixedLengthFuture future = new FixedLengthFutureImpl(context);
future.write("hello server!");
session.flush(future);
ThreadUtil.sleep(100);
CloseUtil.close(connector);
}
use of com.generallycloud.baseio.component.IoEventHandleAdaptor in project baseio by generallycloud.
the class TestUpload method main.
public static void main(String[] args) throws Exception {
String serviceName = "/test-upload";
IoEventHandleAdaptor eventHandle = new IoEventHandleAdaptor() {
@Override
public void accept(SocketSession session, Future future) throws Exception {
ProtobaseFuture f = (ProtobaseFuture) future;
System.out.println();
System.out.println(f.getReadText());
System.out.println();
CloseUtil.close(connector);
}
};
LoggerFactory.configure();
ServerConfiguration configuration = new ServerConfiguration(8300);
SocketChannelContext context = new NioSocketChannelContext(configuration);
connector = new SocketChannelConnector(context);
context.setIoEventHandleAdaptor(eventHandle);
context.setProtocolFactory(new ProtobaseProtocolFactory());
context.addSessionEventListener(new LoggerSocketSEListener());
SocketSession session = connector.connect();
String fileName = "lantern-installer-beta.exe";
fileName = "content.rar";
// fileName = "jdk-8u102-windows-x64.exe";
File file = new File("c:/ryms/" + fileName);
FileSendUtil fileSendUtil = new FileSendUtil();
fileSendUtil.sendFile(session, serviceName, file, 1024 * 800);
ThreadUtil.sleep(10000000);
}
use of com.generallycloud.baseio.component.IoEventHandleAdaptor in project baseio by generallycloud.
the class TestProtobufServer method main.
public static void main(String[] args) throws Exception {
ProtobufUtil protobufUtil = new ProtobufUtil();
protobufUtil.regist(SearchRequest.getDefaultInstance());
IoEventHandleAdaptor eventHandleAdaptor = new IoEventHandleAdaptor() {
@Override
public void accept(SocketSession session, Future future) throws Exception {
ProtobaseFuture f = (ProtobaseFuture) future;
SearchRequest req = (SearchRequest) protobufUtil.getMessage(f);
String message = "yes server already accept your message:\n" + req;
System.out.println(message);
SearchRequest res = SearchRequest.newBuilder().mergeFrom(req).setQuery("query_______").build();
protobufUtil.writeProtobuf(res.getClass().getName(), res, f);
session.flush(future);
}
};
SocketChannelContext context = new NioSocketChannelContext(new ServerConfiguration(18300));
SocketChannelAcceptor acceptor = new SocketChannelAcceptor(context);
context.addSessionEventListener(new LoggerSocketSEListener());
// context.addSessionEventListener(new SessionAliveSEListener());
context.setIoEventHandleAdaptor(eventHandleAdaptor);
// context.setBeatFutureFactory(new NIOBeatFutureFactory());
context.setProtocolFactory(new ProtobaseProtocolFactory());
acceptor.bind();
}
Aggregations