use of com.tvd12.ezyfoxserver.api.EzyStreamingApi in project ezyfox-server by youngmonkeys.
the class EzyStreamBytesImplTest method exceptionCaseTest.
@Test
public void exceptionCaseTest() throws Exception {
EzySimpleSettings settings = new EzySimpleSettings();
settings.setDebug(true);
EzyStreamingApi streamingApi = spy(EzyStreamingApi.class);
doThrow(new IllegalArgumentException()).when(streamingApi).response(any(EzyBytesPackage.class));
EzySimpleServer server = new EzySimpleServer();
server.setStreamingApi(streamingApi);
server.setSettings(settings);
EzyStreamBytesImpl cmd = new EzyStreamBytesImpl(server);
EzySession recipient = spy(EzyAbstractSession.class);
cmd.execute(new byte[] { 1, 2, 3 }, recipient);
cmd.execute(new byte[] { 1, 2, 3 }, Lists.newArrayList(recipient));
}
use of com.tvd12.ezyfoxserver.api.EzyStreamingApi in project ezyfox-server by youngmonkeys.
the class EzyStreamBytesImplTest method normalCaseTest.
@Test
public void normalCaseTest() {
EzySimpleSettings settings = new EzySimpleSettings();
settings.setDebug(true);
EzyStreamingApi streamingApi = spy(EzyAbstractStreamingApi.class);
EzySimpleServer server = new EzySimpleServer();
server.setStreamingApi(streamingApi);
server.setSettings(settings);
EzyStreamBytesImpl cmd = new EzyStreamBytesImpl(server);
EzySession recipient = spy(EzyAbstractSession.class);
cmd.execute(new byte[] { 1, 2, 3 }, recipient);
cmd.execute(new byte[] { 1, 2, 3 }, Lists.newArrayList(recipient));
}
use of com.tvd12.ezyfoxserver.api.EzyStreamingApi in project ezyfox-server by youngmonkeys.
the class EzyStreamBytesImpl method execute.
@Override
public void execute(byte[] bytes, EzySession recipient, EzyTransportType transportType) {
EzyStreamingApi streamingApi = server.getStreamingApi();
EzySimpleBytesPackage pack = newPackage(bytes, transportType);
pack.addRecipient(recipient);
try {
streamingApi.response(pack);
} catch (Exception e) {
logger.warn("send {} bytes {}, to client: {} error", bytes.length, recipient.getName(), e);
} finally {
pack.release();
}
}
use of com.tvd12.ezyfoxserver.api.EzyStreamingApi in project ezyfox-server by youngmonkeys.
the class EzyNioServerBootstrapTest method test.
@Test
public void test() throws Exception {
SSLContext sslContext = SSLContext.getDefault();
EzyResponseApi responseApi = mock(EzyResponseApi.class);
EzyStreamingApi streamingApi = mock(EzyStreamingApi.class);
EzySocketStreamQueue streamQueue = new EzyBlockingSocketStreamQueue();
EzyHandlerGroupManager handlerGroupManager = mock(EzyHandlerGroupManager.class);
EzySessionTicketsQueue socketSessionTicketsQueue = new EzyBlockingSessionTicketsQueue();
EzySessionTicketsQueue websocketSessionTicketsQueue = new EzyBlockingSessionTicketsQueue();
EzySessionTicketsRequestQueues sessionTicketsRequestQueues = new EzySessionTicketsRequestQueues();
EzySocketDisconnectionQueue socketDisconnectionQueue = new EzySocketDisconnectionQueue() {
final BlockingQueue<EzySocketDisconnection> queue = new LinkedBlockingQueue<>();
@Override
public EzySocketDisconnection take() throws InterruptedException {
return queue.take();
}
@Override
public int size() {
return 0;
}
@Override
public void remove(EzySocketDisconnection disconnection) {
}
@Override
public boolean isEmpty() {
return false;
}
@Override
public void clear() {
}
@Override
public boolean add(EzySocketDisconnection disconnection) {
return false;
}
};
EzySimpleConfig config = new EzySimpleConfig();
EzySimpleSettings settings = new EzySimpleSettings();
EzySimpleStreamingSetting streaming = settings.getStreaming();
streaming.setEnable(true);
settings.getUdp().setActive(true);
EzySimpleServer server = new EzySimpleServer();
EzyServerControllers serverControllers = EzyServerControllersImpl.builder().build();
server.setControllers(serverControllers);
EzyEventControllersSetting eventControllersSetting = new EzySimpleEventControllersSetting();
EzyEventControllers eventControllers = EzyEventControllersImpl.create(eventControllersSetting);
server.setEventControllers(eventControllers);
server.setConfig(config);
server.setSettings(settings);
EzySimpleServerContext serverContext = new EzySimpleServerContext();
serverContext.setProperty(EzySocketUserRemovalQueue.class, new EzyBlockingSocketUserRemovalQueue());
serverContext.setServer(server);
serverContext.init();
ExBootstrap localBootstrap = new ExBootstrap(new EzyBootstrap.Builder().context(serverContext));
EzyNioServerBootstrap bootstrap = new EzyNioServerBootstrap();
bootstrap.setContext(serverContext);
bootstrap.setLocalBootstrap(localBootstrap);
bootstrap.setSslContext(sslContext);
bootstrap.setResponseApi(responseApi);
bootstrap.setStreamingApi(streamingApi);
bootstrap.setStreamQueue(streamQueue);
bootstrap.setHandlerGroupManager(handlerGroupManager);
bootstrap.setSocketSessionTicketsQueue(socketSessionTicketsQueue);
bootstrap.setWebsocketSessionTicketsQueue(websocketSessionTicketsQueue);
bootstrap.setSocketDisconnectionQueue(socketDisconnectionQueue);
bootstrap.setSocketSessionTicketsRequestQueues(sessionTicketsRequestQueues);
bootstrap.start();
bootstrap.destroy();
bootstrap.destroy();
}
use of com.tvd12.ezyfoxserver.api.EzyStreamingApi in project ezyfox-server by youngmonkeys.
the class EzyStreamBytesImpl method execute.
@Override
public void execute(byte[] bytes, Collection<EzySession> recipients, EzyTransportType transportType) {
EzyStreamingApi streamingApi = server.getStreamingApi();
EzySimpleBytesPackage pack = newPackage(bytes, transportType);
pack.addRecipients(recipients);
try {
streamingApi.response(pack);
} catch (Exception e) {
logger.warn("send: {} bytes, to client: {} error", bytes.length, getRecipientsNames(recipients), e);
} finally {
pack.release();
}
}
Aggregations