use of com.generallycloud.baseio.acceptor.SocketChannelAcceptor in project baseio by generallycloud.
the class SimpleTestProtobaseServer method main.
public static void main(String[] args) throws Exception {
DebugUtil.setEnableDebug(true);
IoEventHandleAdaptor eventHandleAdaptor = new IoEventHandleAdaptor() {
@Override
public void accept(SocketSession session, Future future) throws Exception {
DebugUtil.debug("receive:" + future.getReadText());
future.write("yes server already accept your message:");
future.write(future.getReadText());
session.flush(future);
}
};
SocketChannelContext context = new NioSocketChannelContext(new ServerConfiguration(18300));
context.getServerConfiguration().setSERVER_ENABLE_MEMORY_POOL_DIRECT(true);
context.getServerConfiguration().setSERVER_SESSION_IDLE_TIME(60 * 60 * 1000);
SocketChannelAcceptor acceptor = new SocketChannelAcceptor(context);
context.addSessionEventListener(new LoggerSocketSEListener());
context.setBeatFutureFactory(new ProtobaseBeatFutureFactory());
context.addSessionIdleEventListener(new SocketSessionAliveSEListener());
context.setIoEventHandleAdaptor(eventHandleAdaptor);
context.setProtocolFactory(new ProtobaseProtocolFactory());
acceptor.bind();
}
use of com.generallycloud.baseio.acceptor.SocketChannelAcceptor in project baseio by generallycloud.
the class SimpleTestFIxedLengthServerPush method main.
public static void main(String[] args) throws Exception {
IoEventHandleAdaptor eventHandleAdaptor = new IoEventHandleAdaptor() {
@Override
public void accept(SocketSession session, Future future) throws Exception {
SocketSessionManager sessionManager = session.getContext().getSessionManager();
Map<Integer, SocketSession> sessions = sessionManager.getManagedSessions();
String msg = future.getReadText();
String[] arr = msg.split(" ");
String cmd = arr[0];
logger.info("msg received: {}", msg);
if ("list".equals(cmd)) {
String keys = sessions.keySet().toString();
future.write(keys);
} else if ("id".equals(cmd)) {
future.write(String.valueOf(session.getSessionId()));
} else if ("push".equals(cmd)) {
Integer id = Integer.valueOf(arr[1]);
SocketSession target = sessions.get(id);
if (target == null) {
future.write("offline id: " + id);
} else {
future.write("from [");
future.write(String.valueOf(session.getSessionId()));
future.write("] push msg>");
future.write(arr[2]);
target.flush(future);
return;
}
} else if ("broadcast".equals(cmd)) {
future.write("from [");
future.write(String.valueOf(session.getSessionId()));
future.write("] broadcast msg>");
future.write(arr[1]);
sessionManager.broadcast(future);
return;
} else {
future.write("no cmd: " + cmd);
}
session.flush(future);
}
};
SocketChannelContext context = new NioSocketChannelContext(new ServerConfiguration(18300));
SocketChannelAcceptor acceptor = new SocketChannelAcceptor(context);
context.addSessionEventListener(new LoggerSocketSEListener());
context.addSessionEventListener(new SocketSessionEventListener() {
@Override
public void sessionOpened(SocketSession session) throws Exception {
}
@Override
public void sessionClosed(SocketSession session) {
SocketSessionManager sessionManager = session.getContext().getSessionManager();
FixedLengthFuture future = new FixedLengthFutureImpl(session.getContext());
future.write("client left: " + session.getSessionId());
try {
sessionManager.broadcast(future);
} catch (IOException e) {
logger.error(e.getMessage(), e);
}
}
});
context.setIoEventHandleAdaptor(eventHandleAdaptor);
context.setProtocolFactory(new FixedLengthProtocolFactory());
acceptor.bind();
}
use of com.generallycloud.baseio.acceptor.SocketChannelAcceptor in project baseio by generallycloud.
the class TestFIxedLengthServer 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(18300));
SocketChannelAcceptor acceptor = new SocketChannelAcceptor(context);
context.addSessionEventListener(new LoggerSocketSEListener());
// context.addSessionEventListener(new SocketSessionAliveSEListener());
context.setIoEventHandleAdaptor(eventHandleAdaptor);
context.setBeatFutureFactory(new FLBeatFutureFactory());
context.setProtocolFactory(new FixedLengthProtocolFactory());
File certificate = FileUtil.readFileByCls("generallycloud.com.crt");
File privateKey = FileUtil.readFileByCls("generallycloud.com.key");
SslContext sslContext = SSLUtil.initServer(privateKey, certificate);
context.setSslContext(sslContext);
acceptor.bind();
}
use of com.generallycloud.baseio.acceptor.SocketChannelAcceptor in project baseio by generallycloud.
the class TestLoadServer method main.
public static void main(String[] args) throws Exception {
LoggerFactory.configure();
final AtomicInteger res = new AtomicInteger();
final AtomicInteger req = new AtomicInteger();
IoEventHandleAdaptor eventHandleAdaptor = new IoEventHandleAdaptor() {
@Override
public void accept(SocketSession session, Future future) throws Exception {
FixedLengthFuture f = (FixedLengthFuture) future;
String res = "yes server already accept your message" + f.getReadText();
f.write(res);
session.flush(future);
// System.out.println("req======================"+req.getAndIncrement());
}
};
ServerConfiguration c = new ServerConfiguration(8300);
c.setSERVER_MEMORY_POOL_CAPACITY(2560000);
c.setSERVER_MEMORY_POOL_UNIT(128);
c.setSERVER_MEMORY_POOL_CAPACITY_RATE(0.5);
c.setSERVER_ENABLE_MEMORY_POOL_DIRECT(true);
c.setSERVER_CORE_SIZE(6);
SocketChannelContext context = new NioSocketChannelContext(c);
SocketChannelAcceptor acceptor = new SocketChannelAcceptor(context);
context.setProtocolFactory(new FixedLengthProtocolFactory());
context.setIoEventHandleAdaptor(eventHandleAdaptor);
context.addSessionEventListener(new LoggerSocketSEListener());
// context.addSessionEventListener(new SetOptionListener());
acceptor.bind();
}
use of com.generallycloud.baseio.acceptor.SocketChannelAcceptor in project baseio by generallycloud.
the class TestHttpLoadServer method main.
public static void main(String[] args) throws Exception {
final AtomicInteger res = new AtomicInteger();
final AtomicInteger req = new AtomicInteger();
IoEventHandleAdaptor eventHandleAdaptor = new IoEventHandleAdaptor() {
@Override
public void accept(SocketSession session, Future future) throws Exception {
future.write("hello world!");
session.flush(future);
// System.out.println("req======================"+req.getAndIncrement());
}
};
ServerConfiguration c = new ServerConfiguration(8080);
// c.setSERVER_MEMORY_POOL_CAPACITY(2560000);
c.setSERVER_MEMORY_POOL_UNIT(256);
c.setSERVER_ENABLE_MEMORY_POOL_DIRECT(true);
// c.setSERVER_CORE_SIZE(2);
c.setSERVER_ENABLE_MEMORY_POOL(true);
c.setSERVER_MEMORY_POOL_CAPACITY_RATE(4);
SocketChannelContext context = new NioSocketChannelContext(c);
SocketChannelAcceptor acceptor = new SocketChannelAcceptor(context);
context.setProtocolFactory(new ServerHTTPProtocolFactory());
context.setIoEventHandleAdaptor(eventHandleAdaptor);
context.addSessionEventListener(new LoggerSocketSEListener());
acceptor.bind();
}
Aggregations