use of com.generallycloud.baseio.configuration.ServerConfiguration in project baseio by generallycloud.
the class ConnectExecutable method exec.
@Override
public CmdResponse exec(CommandContext context, HashMap<String, String> params) {
CmdResponse response = new CmdResponse();
SocketChannelConnector connector = getClientConnector(context);
if (connector != null) {
response.setResponse("已登录。");
return response;
}
String username = params.get("-un");
String password = params.get("-p");
String host = params.get("-host");
String port = params.get("-port");
if (StringUtil.isNullOrBlank(username) || StringUtil.isNullOrBlank(password) || StringUtil.isNullOrBlank(host) || StringUtil.isNullOrBlank(port)) {
response.setResponse("参数不正确!\n" + "example:\n" + "connect -host:localhost -port:8300 -un:admin -p:admin100");
return response;
}
try {
NioSocketChannelContext baseContext = new NioSocketChannelContext(new ServerConfiguration(Integer.parseInt(port)));
connector = new SocketChannelConnector(baseContext);
SimpleIoEventHandle eventHandle = new SimpleIoEventHandle();
baseContext.setIoEventHandleAdaptor(eventHandle);
baseContext.addSessionEventListener(new LoggerSocketSEListener());
FixedSession session = new FixedSession(connector.connect());
// FIXME denglu cuowu
session.login(username, password);
MessageBrowser browser = new DefaultMessageBrowser(session);
response.setResponse("连接成功!");
setClientConnector(context, connector);
setMessageBrowser(context, browser);
} catch (Exception e) {
setClientConnector(context, null);
setMessageBrowser(context, null);
response.setResponse(e.getMessage());
// debug
logger.debug(e);
}
return response;
}
use of com.generallycloud.baseio.configuration.ServerConfiguration in project baseio by generallycloud.
the class ThreadEventLoop method doStartup.
@Override
protected void doStartup() throws Exception {
ServerConfiguration sc = context.getServerConfiguration();
int eventQueueSize = sc.getSERVER_WORK_EVENT_QUEUE_SIZE();
this.jobs = new ArrayBlockingQueue<>(eventQueueSize);
super.doStartup();
}
use of com.generallycloud.baseio.configuration.ServerConfiguration in project baseio by generallycloud.
the class UnpooledByteBufAllocatorManager method doStart.
@Override
protected void doStart() throws Exception {
ServerConfiguration c = context.getServerConfiguration();
boolean isDirect = c.isSERVER_ENABLE_MEMORY_POOL_DIRECT();
unpooledByteBufAllocator = new UnpooledByteBufAllocator(isDirect);
LifeCycleUtil.start(unpooledByteBufAllocator);
}
use of com.generallycloud.baseio.configuration.ServerConfiguration in project baseio by generallycloud.
the class SimpleTestFIxedLengthClientPush method main.
@SuppressWarnings("resource")
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(">msg from server: " + future.getReadText());
}
};
SocketChannelContext context = new NioSocketChannelContext(new ServerConfiguration("localhost", 18300));
SocketChannelConnector connector = new SocketChannelConnector(context);
context.setIoEventHandleAdaptor(eventHandleAdaptor);
context.addSessionEventListener(new LoggerSocketSEListener());
context.setProtocolFactory(new FixedLengthProtocolFactory());
SocketSession session = connector.connect();
ThreadUtil.execute(new Runnable() {
@Override
public void run() {
System.out.println("************************************************");
System.out.println("提示:");
System.out.println("list(获取所有客户端id)");
System.out.println("id(获取当前客户端id)");
System.out.println("push id msg(推送消息到)");
System.out.println("broadcast msg(广播消息)");
System.out.println("exit(退出客户端)");
System.out.println("仅用于演示,msg请勿包含空格");
System.out.println("************************************************");
Scanner scanner = new Scanner(System.in);
for (; ; ) {
System.out.println(">");
String line = scanner.nextLine();
if ("exit".equals(line)) {
CloseUtil.close(session);
break;
}
FixedLengthFuture future = new FixedLengthFutureImpl(context);
future.write(line);
session.flush(future);
}
}
});
}
use of com.generallycloud.baseio.configuration.ServerConfiguration 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();
}
Aggregations